-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
46 lines (46 loc) · 1.28 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
{
"name": "crell/api-problem",
"type": "library",
"description": "PHP wrapper for the api-problem IETF specification",
"license": "MIT",
"keywords": ["api-problem", "rest", "http", "json", "xml"],
"homepage": "https://github.com/Crell/ApiProblem",
"authors": [
{
"name": "Larry Garfield",
"email": "[email protected]",
"homepage": "http://www.garfieldtech.com/"
}
],
"autoload": {
"psr-4": {"Crell\\ApiProblem\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Crell\\ApiProblem\\": "tests"
}
},
"require": {
"php": "^7.4 || ^8.0"
},
"suggest": {
"psr/http-message": "Common interface for HTTP messages",
"psr/http-factory": "Common interfaces for PSR-7 HTTP message factories"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"psr/http-factory": "^1.0",
"psr/http-message": "1.*",
"phpstan/phpstan": "^1.3"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"test": "php vendor/bin/phpunit",
"test-coverage": "php vendor/bin/phpunit --coverage-html coverage"
}
}