Setup a Mac for running Laravel
Install PHP
First see if I have it installed already:
brew search phpAnd check the version:
php -vIf I don't have it, then install it:
brew install phpInstall MySQL
Search for it:
brew search mysqlIf I don't have it, install it:
brew install mysqlSet it to always start mysql on login:
Get composer
Check to see if I have it by running
If not, then follow instructions for downloading and installing composer here: https://getcomposer.org/
Laravel Installer
Get the composer package for easily creating a new laraval project.
Last updated