mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 14:20:08 +00:00
added test commands
This commit is contained in:
parent
708ea42384
commit
71dff06157
2 changed files with 13 additions and 0 deletions
|
@ -11,6 +11,14 @@ plugins=(... laravel)
|
|||
| `artisan` | `php artisan` |
|
||||
| `pas` | `php artisan serve` |
|
||||
|
||||
## Tests
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `pat` | `php artisan test` |
|
||||
| `pu` | `vendor/bin/phpunit` |
|
||||
| `puf` | `vendor/bin/phpunit --filter` |
|
||||
|
||||
## Database
|
||||
|
||||
| Alias | Description |
|
||||
|
|
|
@ -5,6 +5,11 @@ alias bob='php artisan bob::build'
|
|||
# Development
|
||||
alias pas='php artisan serve'
|
||||
|
||||
#test
|
||||
alias pat="php artisan test"
|
||||
alias pu="vendor/bin/phpunit"
|
||||
alias puf="vendor/bin/phpunit --filter"
|
||||
|
||||
# Database
|
||||
alias pam='php artisan migrate'
|
||||
alias pamf='php artisan migrate:fresh'
|
||||
|
|
Loading…
Reference in a new issue