forked from laravel/lumen-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.05 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
{
"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.0",
"illuminate/auth": "5.5.*",
"illuminate/broadcasting": "5.5.*",
"illuminate/bus": "5.5.*",
"illuminate/cache": "5.5.*",
"illuminate/config": "5.5.*",
"illuminate/container": "5.5.*",
"illuminate/contracts": "5.5.*",
"illuminate/database": "5.5.*",
"illuminate/encryption": "5.5.*",
"illuminate/events": "5.5.*",
"illuminate/filesystem": "5.5.*",
"illuminate/hashing": "5.5.*",
"illuminate/http": "5.5.*",
"illuminate/pagination": "5.5.*",
"illuminate/pipeline": "5.5.*",
"illuminate/queue": "5.5.*",
"illuminate/support": "5.5.*",
"illuminate/translation": "5.5.*",
"illuminate/validation": "5.5.*",
"illuminate/view": "5.5.*",
"monolog/monolog": "~1.12",
"mtdowling/cron-expression": "~1.0",
"nikic/fast-route": "~1.2",
"symfony/http-kernel": "~3.3",
"symfony/http-foundation": "~3.3"
},
"require-dev": {
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.0"
},
"suggest": {
"laravel/tinker": "Required to use the tinker console command (~1.0).",
"vlucas/phpdotenv": "Required to use .env files (~2.2)."
},
"autoload": {
"psr-4": {
"Laravel\\Lumen\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "5.5-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}