-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.18 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "elife/dummy-api",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"eLife\\DummyApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\eLife\\DummyApi\\": "test/"
}
},
"require": {
"php": "8.0.*",
"elife/api-problem": "^1.3",
"elife/content-negotiator": "^1.1",
"elife/ping": "^1.2",
"jdesrosiers/silex-cors-provider": "^1.2",
"nyholm/psr7": "^1.8",
"silexandfriends/silex": "^2.3",
"symfony/finder": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/http-kernel": "^4.4"
},
"require-dev": {
"elife/api": "^2.31",
"elife/api-client": "^1.1",
"elife/api-validator": "^1.1",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.7",
"justinrainbow/json-schema": "^5.1",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.5",
"symfony/filesystem": "^4.4",
"symfony/psr-http-message-bridge": "^2.0"
},
"config": {
"platform": {
"php": "8.0.30"
},
"sort-packages": true
}
}