-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.67 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.67 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "laravel/lumen",
"description": "The Laravel Lumen Framework.",
"keywords": ["framework", "laravel", "lumen"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1.3",
"barryvdh/laravel-cors": "^0.11.3",
"buzzina-social/traits": "^1.0",
"dingo/api": "^2.1",
"doctrine/dbal": "^2.9",
"guzzlehttp/guzzle": "^6.3",
"illuminate/mail": "^5.8",
"illuminate/notifications": "^5.8",
"laravel/lumen-framework": "5.8.*",
"league/flysystem": "^1.0",
"prettus/l5-repository": "^2.6",
"tymon/jwt-auth": "1.0.0-rc.4",
"vlucas/phpdotenv": "^3.3",
"creativeorange/gravatar": "~1.0"
},
"require-dev": {
"ext-json": "*",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0",
"fzaninotto/faker": "^1.4",
"barryvdh/laravel-debugbar": "^3.2",
"barryvdh/laravel-ide-helper": "^2.6",
"rap2hpoutre/laravel-log-viewer": "^1.1"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Supports/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}