-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
57 lines (57 loc) · 1.35 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
{
"name": "laravel/lumen",
"description": "The Laravel Lumen Framework.",
"keywords": [
"framework",
"laravel",
"lumen"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/lumen-framework": "5.2.*",
"vlucas/phpdotenv": "~2.2",
"league/flysystem": "~1.0",
"tymon/jwt-auth": "0.5.*",
"illuminate/routing": "^5.2",
"illuminate/hashing": "^5.2",
"illuminate/cookie": "^5.2",
"dingo/api": "1.0.*@dev",
"barryvdh/laravel-cors": "^0.8.0",
"doctrine/dbal": "v2.4.2",
"illuminate/mail": "~5.1",
"guzzlehttp/guzzle": "~5.3|~6.0",
"ext-fileinfo": "*",
"intervention/image": "^2.3",
"nesbot/carbon": "1.21.*",
"google/recaptcha": "~1.1",
"florianv/swap": "2.4.1",
"guzzlehttp/oauth-subscriber": "0.3.0",
"barryvdh/laravel-ide-helper": "^2.1",
"tedivm/jshrink": "~1.0",
"easy-slug/easy-slug": "2.0.*",
"paypal/rest-api-sdk-php": "v1.6.4",
"netshell/paypal": "dev-master"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Plugins\\": "app/Plugins",
"Intervention\\Image\\": "src/Intervention/Image"
}
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
],
"files": [
"app/helpers.php"
]
}
}