mirror of https://github.com/ohmyzsh/ohmyzsh.git
Merge 71dff06157
into 6e7ac0544e
This commit is contained in:
commit
93b4035a54
|
@ -12,6 +12,14 @@ plugins=(... laravel)
|
|||
| `pas` | `php artisan serve` |
|
||||
| `pats` | `php artisan test` |
|
||||
|
||||
## Tests
|
||||
|
||||
| Alias | Description |
|
||||
|:-:|:-:|
|
||||
| `pat` | `php artisan test` |
|
||||
| `pu` | `vendor/bin/phpunit` |
|
||||
| `puf` | `vendor/bin/phpunit --filter` |
|
||||
|
||||
## Database
|
||||
|
||||
| Alias | Description |
|
||||
|
|
|
@ -6,6 +6,11 @@ alias bob='php artisan bob::build'
|
|||
alias pas='php artisan serve'
|
||||
alias pats='php artisan test'
|
||||
|
||||
#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 New Issue