-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 KB
/
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
36
37
38
39
40
{
"name": "mosufy/lumen-api",
"description": "API-Centric Architecture",
"keywords": ["api", "laravel", "lumen", "OAuth", "OAuth2"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/lumen-framework": "5.3.*",
"vlucas/phpdotenv": "~2.2",
"guzzlehttp/guzzle": "~6.0",
"lucadegasperi/oauth2-server-laravel": "^5.0",
"jenssegers/agent": "^2.3",
"predis/predis": "^1.1",
"illuminate/redis": "5.2.*",
"illuminate/mail": "5.2.*",
"ramsey/uuid": "^3.5",
"elasticsearch/elasticsearch": "^2.2"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~4.0",
"codeception/codeception": "2.1.x-dev",
"flow/jsonpath": "~0.3"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helpers/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
}
}