forked from laravel/lumen-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "laravel/lumen-framework",
"description": "The Laravel Lumen Framework.",
"keywords": ["framework", "laravel", "lumen"],
"license": "MIT",
"homepage": "https://lumen.laravel.com",
"support": {
"issues": "https://github.com/laravel/lumen-framework/issues",
"source": "https://github.com/laravel/lumen-framework"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/auth": "^8.65",
"illuminate/broadcasting": "^8.65",
"illuminate/bus": "^8.65",
"illuminate/cache": "^8.65",
"illuminate/collections": "^8.65",
"illuminate/config": "^8.65",
"illuminate/console": "^8.65",
"illuminate/container": "^8.65",
"illuminate/contracts": "^8.65",
"illuminate/database": "^8.65",
"illuminate/encryption": "^8.65",
"illuminate/events": "^8.65",
"illuminate/filesystem": "^8.65",
"illuminate/hashing": "^8.65",
"illuminate/http": "^8.65",
"illuminate/macroable": "^8.65",
"illuminate/pagination": "^8.65",
"illuminate/pipeline": "^8.65",
"illuminate/queue": "^8.65",
"illuminate/support": "^8.65",
"illuminate/testing": "^8.65",
"illuminate/translation": "^8.65",
"illuminate/validation": "^8.65",
"illuminate/view": "^8.65",
"illuminate/log": "^8.65",
"dragonmantank/cron-expression": "^3.0.2",
"nikic/fast-route": "^1.3",
"symfony/console": "^5.1",
"symfony/error-handler": "^5.1",
"symfony/http-kernel": "^5.1",
"symfony/http-foundation": "^5.1",
"symfony/mime": "^5.1",
"symfony/var-dumper": "^5.1",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^8.5.19|^9.5.8"
},
"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)."
},
"autoload": {
"psr-4": {
"Laravel\\Lumen\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "8.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}