mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
laravel: add README (#7222)
This commit is contained in:
parent
d05bf3962b
commit
a6d40b8f8b
1 changed files with 19 additions and 0 deletions
19
plugins/laravel/README.md
Normal file
19
plugins/laravel/README.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Laravel plugin
|
||||
|
||||
This plugin adds aliases and autocompletion for Laravel [Artisan](https://laravel.com/docs/artisan) and [Bob](http://daylerees.github.io/laravel-bob/) command-line interfaces.
|
||||
|
||||
**NOTE:** completion might not work for recent Laravel versions since it hasn't been updated since 2012.
|
||||
In that case, check out plugins `laravel4` and `laravel5`.
|
||||
|
||||
To use it, add `laravel` to the plugins array in your zshrc file:
|
||||
|
||||
```zsh
|
||||
plugins=(... laravel)
|
||||
```
|
||||
|
||||
## Aliases
|
||||
|
||||
| Alias | Command | Description |
|
||||
|-----------|--------------------------|----------------------|
|
||||
| artisan | `php artisan` | Main Artisan command |
|
||||
| bob | `php artisan bob::build` | Main Bob command |
|
Loading…
Reference in a new issue