Created
May 11, 2017 10:37
-
-
Save gandra/0082846ab0aeb0fcf8faf2c61fd9b923 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "laravel/laravel", | |
"description": "The Laravel Framework.", | |
"keywords": ["framework", "laravel"], | |
"license": "MIT", | |
"type": "project", | |
"require": { | |
"php": ">=5.6.4", | |
"caouecs/laravel-lang": "~3.0", | |
"darkaonline/l5-swagger": "~4.0", | |
"graham-campbell/exceptions": "^9.3", | |
"graham-campbell/flysystem": "^3.7", | |
"itsgoingd/clockwork": "^1.13", | |
"laravel/framework": "5.4.*", | |
"laravel/tinker": "~1.0", | |
"league/flysystem-sftp": "^1.0", | |
"maatwebsite/excel": "^2.1", | |
"prettus/l5-repository": "^2.6", | |
"sentry/sentry-laravel": "^0.7.0", | |
"spatie/laravel-fractal": "^3.4", | |
"tremby/laravel-git-version": "^1.1", | |
"tymon/jwt-auth": "dev-develop", | |
"webpatser/laravel-uuid": "2.*" | |
}, | |
"require-dev": { | |
"barryvdh/laravel-ide-helper": "^2.3", | |
"fzaninotto/faker": "~1.4", | |
"laravel/homestead": "^5.0", | |
"mockery/mockery": "0.9.*", | |
"phpunit/phpunit": "~5.0", | |
"sebastian/phpcpd": "^3.0" | |
}, | |
"autoload": { | |
"classmap": [ | |
"database" | |
], | |
"psr-4": { | |
"Dnc\\": "app/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Tests\\": "tests/" | |
} | |
}, | |
"scripts": { | |
"post-root-package-install": [ | |
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |
], | |
"post-create-project-cmd": [ | |
"php artisan key:generate" | |
], | |
"post-install-cmd": [ | |
"Illuminate\\Foundation\\ComposerScripts::postInstall", | |
"php artisan optimize" | |
], | |
"post-update-cmd": [ | |
"Illuminate\\Foundation\\ComposerScripts::postUpdate", | |
"php artisan ide-helper:generate", | |
"php artisan ide-helper:meta", | |
"php artisan optimize" | |
] | |
}, | |
"config": { | |
"preferred-install": "dist", | |
"sort-packages": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment