Skip to content

Instantly share code, notes, and snippets.

@jackfruh
Created December 18, 2015 04:33
Show Gist options
  • Save jackfruh/fd0972e20a295f7ea332 to your computer and use it in GitHub Desktop.
Save jackfruh/fd0972e20a295f7ea332 to your computer and use it in GitHub Desktop.
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "5.1.*",
"guzzlehttp/guzzle": "~5.0",
"laravelcollective/html": "5.1.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"laravel/homestead": "^2.1",
"jackfruh/SwissArmyCrudForLaravel": "dev-master"
},
"repositories" :[
{
"type": "vcs",
"url": "https://github.com/jackfruh/SwissArmyCrudForLaravel.git"
}
],
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"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 -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment