-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
47 lines (47 loc) · 1.19 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
41
42
43
44
45
46
47
{
"name": "elcobvg/lumen-realworld-example-app",
"description": "Exemplary real world backend API built with Lumen + MongoDB",
"keywords": ["laravel", "lumen", "mongodb", "jwt", "examples"],
"authors": [
{
"name": "Elco Brouwer von Gonzenbach",
"email": "[email protected]"
}
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1",
"barryvdh/laravel-cors": "^0.11",
"jenssegers/mongodb": "^3.3",
"laravel/lumen-framework": "5.8.*",
"tymon/jwt-auth": "dev-develop",
"vlucas/phpdotenv": "~3.3"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~7.0",
"squizlabs/php_codesniffer": "^3.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}