]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/laravel4/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / laravel4 / README.md
1 # Laravel 4 plugin
2
3 This plugin adds some aliases for common [Laravel 4](https://laravel.com/docs/4.2) commands.
4
5 To use it, add `laravel4` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... laravel4)
9 ```
10
11 ## Aliases
12
13 | Alias     | Command                     | Description                         |
14 |-----------|-----------------------------|-------------------------------------|
15 | la4       | `php artisan`               | Main Artisan command                |
16 | la4dump   | `php artisan dump-autoload` | Regenerate framework autoload files |
17 | la4cache  | `php artisan cache:clear`   | Flush the application cache         |
18 | la4routes | `php artisan routes`        | List all registered routes          |