-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.48 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
48
49
50
51
52
53
{
"name": "orchestra/lumen",
"description": "Lumen Framework for Orchestra Platform",
"keywords": ["framework", "laravel", "lumen", "orchestral", "orchestra-platform"],
"license": "MIT",
"support": {
"issues": "https://github.com/orchestral/lumen/issues",
"source": "https://github.com/orchestral/lumen"
},
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
},
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Laravel\\Lumen\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": ">=7.2.5",
"laravie/api": "^4.0",
"nikic/fast-route": "^1.3",
"orchestra/foundation": "^5.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.4 || ^9.0"
},
"suggest": {
"laravel/tinker": "Required to use the tinker console command (^2.0).",
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
"symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
"tymon/jwt-auth": "Allows to use JWT-Auth support (^1.0)."
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}