Skip to content

Instantly share code, notes, and snippets.

@mitchellvanw
Last active December 30, 2015 11:09
Show Gist options
  • Save mitchellvanw/7820217 to your computer and use it in GitHub Desktop.
Save mitchellvanw/7820217 to your computer and use it in GitHub Desktop.
Install the Laravel Application Creator globally on your *nix machine.
# 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>
@resmo
Copy link

resmo commented Dec 6, 2013

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment