Last active
July 16, 2022 10:43
-
-
Save daguilarm/58dc666efd4cbdc344801ae07dd948dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nano ~/.bash_profile | |
export PATH=~/.composer/vendor/bin:$PATH | |
alias composer="php /usr/local/bin/composer.phar" to: alias composer="php /usr/local/bin/composer" | |
alias art="php artisan" | |
alias phpunit="vendor/bin/phpunit" | |
alias test="clear && phpunit" | |
alias dracarys="art migrate:refresh --seed" | |
alias dev="npm run dev" | |
alias production="npm run production" | |
alias watch="npm run watch" | |
alias dusk="clear && art dusk" | |
alias pest="./vendor/bin/pest" | |
alias pint="./vendor/bin/pint" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment