This repository was archived by the owner on Jan 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.3 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.3 KB
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
{
"name": "laravel/lumen",
"type": "project",
"authors": [
{
"name": "Graham Campbell",
"email": "graham@alt-three.com"
}
],
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-mbstring": "*"
},
"require": {
"php": "^7.1",
"alt-three/throttle": "^2.0",
"bugsnag/bugsnag-laravel": "^2.4",
"graham-campbell/exceptions": "^9.3",
"graham-campbell/guzzle-factory": "^2.0",
"guzzlehttp/guzzle": "^6.2.3",
"illuminate/redis": "~5.4.0",
"laravel/lumen-framework": "~5.4.3",
"laravel/tinker": "^1.0",
"symfony/process": "^3.0",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"fzaninotto/faker": "^1.6",
"graham-campbell/testbench-core": "^2.0",
"phpunit/phpunit": "^6.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.1.0"
},
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}