Skip to content

Instantly share code, notes, and snippets.

@fordarnold
Created October 26, 2014 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fordarnold/b51ab340ecc5ae589b38 to your computer and use it in GitHub Desktop.
Save fordarnold/b51ab340ecc5ae589b38 to your computer and use it in GitHub Desktop.
Include in your project directory and run "composer install" to install Laravel 4
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "4.2.*"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment