Skip to content

Instantly share code, notes, and snippets.

@remluben
Last active December 28, 2015 17:38
Show Gist options
  • Save remluben/7536848 to your computer and use it in GitHub Desktop.
Save remluben/7536848 to your computer and use it in GitHub Desktop.
Composer: Laravel 4.x composer.json
{
"name": "remluben/project",
"description": "The project description.",
"license": "WTFPL",
"authors": [
{
"name": "remluben",
"email": "ulmer.benjamin@gmail.com"
}
],
"require": {
"laravel/framework": "4.1.*",
},
"require-dev" : {
"behat/behat": "@stable",
"behat/mink": "@stable",
"behat/mink-extension": "@stable",
"behat/mink-sahi-driver": "@stable",
"behat/mink-goutte-driver": "@stable",
"codeception/codeception": "2.0.*@dev",
"sebastian/phpcpd": "@stable",
"pdepend/pdepend": "@stable",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "@stable",
"barryvdh/laravel-debugbar": "@stable",
"way/generators": "@stable"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"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": "dev"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment