based on the laravel5 plugin.
This plugin adds some aliases for common Laravel commands.
To use it, follow the instructions below:
- clone this repo into your
~/.oh-my-zsh/custom/plugins
directory
cd ~/.oh-my-zsh/custom/plugins
git clone git@github.com:rsthegeek/oh-my-zsh-laravelx.git laravelX
- add
laravelX
to the plugins array in your~/.zshrc
file
plugins=(... laravelX)
Alias | Command | Description |
---|---|---|
a | php artisan |
Main Artisan command |
a:cc | php artisan cache:clear |
Flush the application cache |
a:rc | php artisan route:clear |
Clear all cached routes |
a:rl | php artisan route:list |
List all registered routes |
a:vp | php artisan vendor:publish |
Publish any publishable assets from vendor package |
Pull requests are welcome.
Please see the LICENSE included in this repository for a full copy of the MIT license, which this project is licensed under.