Skip to content

Instantly share code, notes, and snippets.

@austenc
Created April 28, 2014 19:40
Show Gist options
  • Save austenc/11381992 to your computer and use it in GitHub Desktop.
Save austenc/11381992 to your computer and use it in GitHub Desktop.
composer.json including patricktalmadge/bootstrapper, laravelbook/ardent, zizaco/confide and zizaco/entrust
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"laravel/framework": "4.1.*",
"zizaco/confide": "dev-master",
"zizaco/entrust": "dev-master",
"laravelbook/ardent": "dev-master",
"patricktalmadge/bootstrapper": "dev-develop"
},
"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