Skip to content

Instantly share code, notes, and snippets.

@Edwin-Luijten
Created October 10, 2012 08:03
Show Gist options
  • Save Edwin-Luijten/3863934 to your computer and use it in GitHub Desktop.
Save Edwin-Luijten/3863934 to your computer and use it in GitHub Desktop.
Install Illuminate (Laravel 4)

Install Illuminate (Laravel 4)

1 Install Composer

If you don't already have Composer installed: Launch Git Bash, enter the following command: curl -s https://getcomposer.org/installer | php

This installs composer...

2 Clone Illuminate (Laravel 4)

If you aren't already in your project folder, cd to it.

Now we clone Illuminate (Laravel 4) and install it's dependencies with composer:

git clone git://github.com/illuminate/app.git && cd app && composer update

Now you are ready to test Laravel 4

Note: As it is under heavy develeopment you may want to fork it to keep track of its changes.

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