]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/laravel5/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / laravel5 / README.md
1 # Laravel 5 plugin
2
3 This plugin adds some aliases for common [Laravel 5](https://laravel.com/docs) commands.
4
5 To use it, add `laravel5` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... laravel5)
9 ```
10
11 ## Aliases
12
13 | Alias     | Command                      | Description                                        |
14 |-----------|------------------------------|----------------------------------------------------|
15 | la5       | `php artisan`                | Main Artisan command                               |
16 | la5cache  | `php artisan cache:clear`    | Flush the application cache                        |
17 | la5routes | `php artisan route:list`     | List all registered routes                         |
18 | la5vendor | `php artisan vendor:publish` | Publish any publishable assets from vendor package |