mirror of https://github.com/ohmyzsh/ohmyzsh.git
feat(laravel): add `artisan test` alias (`pats`) (#12310)
parent
5bff59f78e
commit
982ea721bd
|
@ -10,6 +10,7 @@ plugins=(... laravel)
|
|||
|:-:|:-:|
|
||||
| `artisan` | `php artisan` |
|
||||
| `pas` | `php artisan serve` |
|
||||
| `pats` | `php artisan test` |
|
||||
|
||||
## Database
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ alias bob='php artisan bob::build'
|
|||
|
||||
# Development
|
||||
alias pas='php artisan serve'
|
||||
alias pats='php artisan test'
|
||||
|
||||
# Database
|
||||
alias pam='php artisan migrate'
|
||||
|
|
Loading…
Reference in New Issue