-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.43 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
{
"name": "elife/recommendations",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"eLife\\Recommendations\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"test\\eLife\\Recommendations\\": "test"
}
},
"require": {
"elife/api-client": "dev-master",
"elife/api-problem": "^1.1",
"elife/api-sdk": "dev-master",
"elife/content-negotiator": "^1.0",
"elife/logging-sdk": "^1.0@dev",
"elife/ping": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/promises": "^1.3",
"psr/log": "^1.0",
"silex/silex": "^2.2",
"symfony/http-foundation": "^3.3",
"symfony/http-kernel": "^3.3",
"willdurand/negotiation": "^2.3"
},
"require-dev": {
"csa/guzzle-cache-middleware": "^1.0",
"csa/guzzle-stopwatch-middleware": "^1.0",
"elife/api": "^2.30",
"elife/api-validator": "^1.0@dev",
"justinrainbow/json-schema": "^5.2",
"mindplay/composer-locator": "^2.1",
"phpunit/phpunit": "^9.2",
"silex/web-profiler": "^2.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/browser-kit": "^4.2",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^2.2"
},
"config": {
"sort-packages": true
}
}