How to install Laravel installer on Mac Os
Jul 27, 2017 · 1 min read

Creating a laravel application using laravel installer is painless and time consuming. You no need to run any command after creating an app using laravel installer. Here’s how can you install it?
Run this command to install laravel installer globally on your computer
composer global require "laravel/installer"
After finishing the installation you have to set path variable for the installer. You just have to run this command on your terminal`
export PATH=”~/.composer/vendor/bin:$PATH”
Voilaaa!! Here you go.
Now run laravel new <yourappname> to create a fresh application.
Happy coding :)
