mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-12 20:31:00 +01:00
added test commands
This commit is contained in:
@@ -11,6 +11,14 @@ plugins=(... laravel)
|
|||||||
| `artisan` | `php artisan` |
|
| `artisan` | `php artisan` |
|
||||||
| `pas` | `php artisan serve` |
|
| `pas` | `php artisan serve` |
|
||||||
|
|
||||||
|
## Tests
|
||||||
|
|
||||||
|
| Alias | Description |
|
||||||
|
|:-:|:-:|
|
||||||
|
| `pat` | `php artisan test` |
|
||||||
|
| `pu` | `vendor/bin/phpunit` |
|
||||||
|
| `puf` | `vendor/bin/phpunit --filter` |
|
||||||
|
|
||||||
## Database
|
## Database
|
||||||
|
|
||||||
| Alias | Description |
|
| Alias | Description |
|
||||||
|
|||||||
@@ -5,6 +5,11 @@ alias bob='php artisan bob::build'
|
|||||||
# Development
|
# Development
|
||||||
alias pas='php artisan serve'
|
alias pas='php artisan serve'
|
||||||
|
|
||||||
|
#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'
|
||||||
|
|||||||
Reference in New Issue
Block a user