Created
October 19, 2018 03:06
-
-
Save mikestratton/a7cde74d6a60b25f81e0703a71ee80a3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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": "^7.1.3", | |
"fideloper/proxy": "^4.0", | |
"laravel/framework": "5.7.*", | |
"laravel/tinker": "^1.0" | |
}, | |
"require-dev": { | |
"beyondcode/laravel-dump-server": "^1.0", | |
"filp/whoops": "^2.0", | |
"fzaninotto/faker": "^1.4", | |
"mockery/mockery": "^1.0", | |
"nunomaduro/collision": "^2.0", | |
"phpunit/phpunit": "^7.0" | |
}, | |
"autoload": { | |
"classmap": [ | |
"database/seeds", | |
"database/factories" | |
], | |
"psr-4": { | |
"App\\": "app/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Tests\\": "tests/" | |
} | |
}, | |
"extra": { | |
"laravel": { | |
"dont-discover": [ | |
] | |
} | |
}, | |
"scripts": { | |
"post-root-package-install": [ | |
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |
], | |
"post-create-project-cmd": [ | |
"@php artisan key:generate --ansi" | |
], | |
"post-autoload-dump": [ | |
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | |
"@php artisan package:discover --ansi" | |
] | |
}, | |
"config": { | |
"preferred-install": "dist", | |
"sort-packages": true, | |
"optimize-autoloader": true | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment