feat(laravel): add alias for artisan test command

This commit is contained in:
Reza Askari 2024-04-08 09:26:59 +03:30 committed by GitHub
commit 4ecdb0a003
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ plugins=(... laravel)
|:-:|:-:|
| `artisan` | `php artisan` |
| `pas` | `php artisan serve` |
| `pat` | `php artisan test` |
| `pats` | `php artisan test` |
## Database

View file

@ -4,7 +4,7 @@ alias bob='php artisan bob::build'
# Development
alias pas='php artisan serve'
alias pat='php artisan test'
alias pats='php artisan test'
# Database
alias pam='php artisan migrate'