-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.07 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
{
"name": "fireguard/lumen-api",
"description": "Basic API Implementing with Lumen.",
"keywords": ["framework", "lumen", "fireguard", "api"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.0",
"laravel/lumen-framework": "5.4.*",
"vlucas/phpdotenv": "~2.2",
"tymon/jwt-auth": "^1.0@dev",
"league/fractal": "^0.16.0",
"intervention/image": "^2.3",
"league/flysystem": " ~1.0",
"league/flysystem-aws-s3-v3": "^1.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helpers/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}