-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
45 lines (45 loc) · 1.19 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
{
"name": "elife/dummy-api",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"eLife\\DummyApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\eLife\\DummyApi\\": "test/"
}
},
"require": {
"php": "^7.0",
"elife/api-problem": "^1.0",
"elife/content-negotiator": "^1.0",
"elife/ping": "^1.0",
"jdesrosiers/silex-cors-provider": "^1.2",
"silex/silex": "^2.0",
"symfony/finder": "^3.1",
"symfony/http-foundation": "^3.1",
"symfony/http-kernel": "^3.1"
},
"require-dev": {
"elife/api": "^2.30",
"elife/api-client": "^1.0@dev",
"elife/api-validator": "^1.0@dev",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/psr7": "^1.3",
"justinrainbow/json-schema": "^5.1",
"phpunit/phpunit": "^5.5",
"squizlabs/php_codesniffer": "^3.5",
"symfony/filesystem": "^3.4",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^1.3"
},
"config": {
"platform": {
"php": "7.0.29"
},
"sort-packages": true
}
}