-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 870 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"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.2.*",
"vlucas/phpdotenv": "~2.2",
"barryvdh/laravel-ide-helper": "^2.1",
"dingo/api": "1.0.*@dev",
"basicit/lumen-vendor-publish": "^1.0",
"tymon/jwt-auth": "0.6.*@dev",
"wn/lumen-generators": "^1.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
}
}