-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.29 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": "weierophinney/problem-details",
"description": "Problem Details for PSR-7 HTTP APIs",
"type": "library",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true
},
"require": {
"ext-json": "*",
"fig/http-message-util": "^1.1.2",
"http-interop/http-middleware": "^0.4.1",
"php": "^7.1",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"spatie/array-to-xml": "^2.3",
"willdurand/negotiation": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"zendframework/zend-coding-standard": "^1.0",
"zendframework/zend-diactoros": "^1.4"
},
"autoload": {
"psr-4": {
"ProblemDetails\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProblemDetailsTest\\": "test/"
}
},
"extra": {
"zf": {
"config-provider": "ProblemDetails\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v"
}
}