forked from PoweredLocal/vrata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.12 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
{
"name": "PoweredLocal/vrata",
"description": "API gateway written in PHP7 and Lumen",
"keywords": ["microservices", "gateway", "lumen"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1.3",
"laravel/lumen-framework": "5.8.*",
"doctrine/dbal": "~2.3",
"vlucas/phpdotenv": "~3.3",
"appzcoder/lumen-routes-list": "^1.0",
"dusterio/lumen-passport": "^0.2",
"guzzlehttp/guzzle": "~6.0",
"webpatser/laravel-uuid": "2.*",
"league/flysystem": "^1.0",
"barryvdh/laravel-cors": "^0.11"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~6.0",
"codeclimate/php-test-reporter": "dev-master",
"filp/whoops": "~2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}