-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.62 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.62 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
56
57
{
"name": "laravel/lumen",
"description": "The Laravel Lumen Framework.",
"keywords": ["framework", "laravel", "lumen"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.6.4",
"laravel/lumen-framework": "5.3.*",
"vlucas/phpdotenv": "~2.2",
"tymon/jwt-auth": "^1.0@dev",
"jenssegers/mongodb": "^3.1",
"dingo/api": "1.0.*@dev",
"league/flysystem": " ~1.0",
"barryvdh/laravel-cors": "^0.8.6",
"doctrine/dbal": "^2.5",
"sentry/sentry": "^1.6",
"sentry/sentry-laravel": "^0.6.1",
"willdurand/geocoder": "3.x-dev",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message": "^1.5",
"intervention/image": "^2.3",
"alexpechkarev/google-maps": "1.0.7",
"HighSolutions/laravel-lang-import-export": "5.4.*",
"mandrill/mandrill": "^1.0",
"guzzlehttp/guzzle": "^6.2",
"dimsav/laravel-translatable": "^6.0"
},
"require-dev": {
"fzaninotto/faker": "^1.7",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9",
"wn/lumen-generators": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers/helpers.php",
"app/Libraries/Achievements.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}