I am trying to set up Laravels Valet (Valet is a Laravel development environment for Mac). Everything works until it comes to the command \"valet install\". This command mus
Make sure that ~/.composer/vendor/bin directory is in your system's PATH, you can check this by running:
echo $PATH
If not there, open your ~/.bash_profile and add this code:
export PATH=$PATH:~/.composer/vendor/bin
Then run:
composer global require laravel/valet --dev
Once it is done, run:
valet install