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
Yes, you need to make sure that ~/.composer/vendor/bin directory is in your system's PATH, you can check this by running:
~/.composer/vendor/bin
PATH
echo $PATH
If you can't see it there, then you need to add this to your ~/.bash_profile:
~/.bash_profile
export PATH=$PATH:~/.composer/vendor/bin