Last active
December 30, 2015 11:09
-
-
Save mitchellvanw/7820217 to your computer and use it in GitHub Desktop.
Install the Laravel Application Creator globally on your *nix machine.
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
# Installation | |
curl -o laravel.phar http://laravel.com/laravel.phar | |
chmod 755 laravel.phar | |
mv laravel.phar /usr/local/bin/laravel | |
# Usage | |
laravel new <application_name> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install
wget -q http://laravel.com/laravel.phar
chmod +x laravel.phar
sudo mv laravel.phar /usr/local/bin/laravel
Ubuntu 12.04 depencendies
sudo apt-get install php5-cli php5-curl php5-json
Usage
laravel help