mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
52 lines
1.2 KiB
JSON
Executable File
52 lines
1.2 KiB
JSON
Executable File
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": ["framework", "laravel"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=5.5.9",
|
|
"laravel/framework": "5.1.*"
|
|
},
|
|
"require-dev": {
|
|
"fzaninotto/faker": "~1.4",
|
|
"mockery/mockery": "0.9.*",
|
|
"phpunit/phpunit": "~4.0",
|
|
"phpspec/phpspec": "~2.1"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"psr-4": {
|
|
"Gwent\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize"
|
|
],
|
|
"pre-update-cmd": [
|
|
"php artisan clear-compiled"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan optimize"
|
|
],
|
|
"post-root-package-install": [
|
|
"php -r \"copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
}
|
|
}
|