mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-27 06:25:28 +03:00
36 lines
805 B
JSON
36 lines
805 B
JSON
{
|
|
"name": "laravel/lumen",
|
|
"description": "The Laravel Lumen Framework.",
|
|
"keywords": ["framework", "laravel", "lumen"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=5.5.9",
|
|
"laravel/lumen-framework": "5.1.*",
|
|
"vlucas/phpdotenv": "~1.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.0",
|
|
"fzaninotto/faker": "~1.0",
|
|
"phpspec/phpspec": "2.0.0",
|
|
"codeception/codeception": "2.0.0",
|
|
"wn/lumen-generators": "@dev"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
},
|
|
"classmap": [
|
|
"database/"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
}
|
|
}
|