Skip to content

Commit 08c986e

Browse files
committed
Merge branch 'release/v1.0.0'
2 parents 3699674 + 39a0f96 commit 08c986e

File tree

3 files changed

+36
-20
lines changed

3 files changed

+36
-20
lines changed

.github/workflows/release.yml renamed to .github/workflows/auto-release.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1-
name: Generate release
1+
name: Auto Release
22

33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- "v*"
77

88
jobs:
9-
build:
9+
release:
1010
runs-on: ubuntu-latest
11+
12+
permissions:
13+
contents: write
14+
discussions: write
15+
1116
steps:
1217
- name: Checkout
1318
uses: actions/checkout@v3
19+
1420
- name: Generate release
1521
uses: softprops/action-gh-release@v1
1622
env:
@@ -21,4 +27,3 @@ jobs:
2127
files: |
2228
dist/*.zip
2329
dist/*.tar.gz
24-
laravel.plugin.zsh

LICENSE renamed to LICENSE.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
Copyright (c) 2023 Bruno Sales <[email protected]>
1+
# The MIT License (MIT)
2+
3+
Copyright (c) `2023-2025` `Bruno Sales <[email protected]>`
24

35
Permission is hereby granted, free of charge, to any person obtaining a copy
46
of this software and associated documentation files (the "Software"), to deal

README.md

+24-15
Original file line numberDiff line numberDiff line change
@@ -16,40 +16,49 @@ Plugin for skipping the `php` command when running artisan commands and `./sail`
1616

1717
## Installation
1818

19-
### Using Oh-My-Zsh
19+
#### [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh)
2020

21-
```bash
22-
git clone https://github.com/baliestri/laravel.plugin.zsh.git $ZSH_CUSTOM/plugins/laravel.plugin.zsh
21+
```shell
22+
git clone https://github.com/empresslabs/laravel.plugin.zsh.git $ZSH_CUSTOM/plugins/laravel
2323
```
2424

25-
```bash
25+
```shell
2626
~/.zshrc
27-
2827
plugins=(... laravel)
2928
```
3029

31-
### Using Zinit
30+
#### [zinit](https://github.com/zdharma-continuum/zinit)
3231

33-
```bash
34-
zinit light baliestri/laravel.plugin.zsh
32+
```shell
33+
zinit light empresslabs/laravel.plugin.zsh
3534
```
3635

37-
### Using Zi
36+
#### [zi](https://github.com/z-shell/zi)
3837

39-
```bash
40-
zi light baliestri/laravel.plugin.zsh
38+
```shell
39+
zi light empresslabs/laravel.plugin.zsh
4140
```
4241

43-
### Using Zgenom
42+
#### [zgenom](https://github.com/jandamm/zgenom)
4443

45-
```bash
46-
zgenom load baliestri/laravel.plugin.zsh
44+
```shell
45+
zgenom load empresslabs/laravel.plugin.zsh
46+
```
47+
48+
#### [zplug](https://github.com/zplug/zplug)
49+
50+
```shell
51+
zplug empresslabs/laravel.plugin.zsh
4752
```
4853

4954
## Usage
5055

5156
```bash
52-
cd /path/to/laravel/project # or laravel subdirectory
57+
cd /path/to/laravel/project # or subdirectory
5358
artisan # instead of php artisan
5459
sail # instead of ./sail or ./vendor/bin/sail
5560
```
61+
62+
## License
63+
64+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)