forked from laravel/lumen-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.02 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": "http://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": ">=5.6.4",
"illuminate/auth": "5.3.*",
"illuminate/broadcasting": "5.3.*",
"illuminate/bus": "5.3.*",
"illuminate/cache": "5.3.*",
"illuminate/config": "5.3.*",
"illuminate/container": "5.3.*",
"illuminate/contracts": "5.3.*",
"illuminate/database": "5.3.*",
"illuminate/encryption": "5.3.*",
"illuminate/events": "5.3.*",
"illuminate/filesystem": "5.3.*",
"illuminate/hashing": "5.3.*",
"illuminate/http": "5.3.*",
"illuminate/pagination": "5.3.*",
"illuminate/pipeline": "5.3.*",
"illuminate/queue": "5.3.*",
"illuminate/support": "5.3.*",
"illuminate/translation": "5.3.*",
"illuminate/validation": "5.3.*",
"illuminate/view": "5.3.*",
"monolog/monolog": "~1.11",
"mtdowling/cron-expression": "~1.0",
"nikic/fast-route": "~1.0",
"paragonie/random_compat": "~1.4|~2.0",
"symfony/http-kernel": "3.1.*",
"symfony/http-foundation": "3.1.*"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9"
},
"suggest": {
"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.3-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}