-
Notifications
You must be signed in to change notification settings - Fork 416
/
composer.json
80 lines (80 loc) · 2.59 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
79
80
{
"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": "taylor@laravel.com"
}
],
"require": {
"php": "^8.2",
"composer-runtime-api": "^2.2",
"illuminate/auth": "^11.0",
"illuminate/broadcasting": "^11.0",
"illuminate/bus": "^11.0",
"illuminate/cache": "^11.0",
"illuminate/collections": "^11.0",
"illuminate/config": "^11.0",
"illuminate/console": "^11.0",
"illuminate/container": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/database": "^11.0",
"illuminate/encryption": "^11.0",
"illuminate/events": "^11.0",
"illuminate/filesystem": "^11.0",
"illuminate/hashing": "^11.0",
"illuminate/http": "^11.0",
"illuminate/macroable": "^11.0",
"illuminate/pagination": "^11.0",
"illuminate/pipeline": "^11.0",
"illuminate/queue": "^11.0",
"illuminate/support": "^11.0",
"illuminate/testing": "^11.0",
"illuminate/translation": "^11.0",
"illuminate/validation": "^11.0",
"illuminate/view": "^11.0",
"illuminate/log": "^11.0",
"dragonmantank/cron-expression": "^3.1",
"laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
"nikic/fast-route": "^1.3",
"symfony/console": "^7.0",
"symfony/error-handler": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/mime": "^7.0",
"symfony/var-dumper": "^7.0",
"vlucas/phpdotenv": "^5.4.1"
},
"require-dev": {
"mockery/mockery": "^1.6.10",
"phpunit/phpunit": "^10.5.35"
},
"suggest": {
"laravel/tinker": "Required to use the tinker console command (^2.7).",
"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": "11.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}