mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
Merge 71dff06157 into 0f45f82c0a
This commit is contained in:
commit
dc0accf61a
2 changed files with 13 additions and 0 deletions
|
|
@ -12,6 +12,14 @@ plugins=(... laravel)
|
||||||
| `pas` | `php artisan serve` |
|
| `pas` | `php artisan serve` |
|
||||||
| `pats` | `php artisan test` |
|
| `pats` | `php artisan test` |
|
||||||
|
|
||||||
|
## Tests
|
||||||
|
|
||||||
|
| Alias | Description |
|
||||||
|
|:-:|:-:|
|
||||||
|
| `pat` | `php artisan test` |
|
||||||
|
| `pu` | `vendor/bin/phpunit` |
|
||||||
|
| `puf` | `vendor/bin/phpunit --filter` |
|
||||||
|
|
||||||
## Database
|
## Database
|
||||||
|
|
||||||
| Alias | Description |
|
| Alias | Description |
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,11 @@ alias bob='php artisan bob::build'
|
||||||
alias pas='php artisan serve'
|
alias pas='php artisan serve'
|
||||||
alias pats='php artisan test'
|
alias pats='php artisan test'
|
||||||
|
|
||||||
|
#test
|
||||||
|
alias pat="php artisan test"
|
||||||
|
alias pu="vendor/bin/phpunit"
|
||||||
|
alias puf="vendor/bin/phpunit --filter"
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
alias pam='php artisan migrate'
|
alias pam='php artisan migrate'
|
||||||
alias pamf='php artisan migrate:fresh'
|
alias pamf='php artisan migrate:fresh'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue