mirror of https://github.com/flarum/flarum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
607 B
33 lines
607 B
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": ["framework", "laravel"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"laravel/framework": "5.0.*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
}
|