-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
38 lines (38 loc) · 1.17 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
{
"name": "akrabat/rka-content-type-renderer",
"description": "Render an array to a JSON/XML/HTML PSR-7 Response based on a PSR-7 Request's Accept header.",
"keywords": [
"psr7", "json", "xml"
],
"homepage": "http://github.com/akrabat/rka-content-type-renderer",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Rob Allen",
"email": "[email protected]",
"homepage": "http://akrabat.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"psr/http-message": "^1.0",
"willdurand/negotiation": "^3.0"
},
"suggest": {
"crell/api-problem": "For creating Api-Problem (RFC7801) data that can be rendered using ApiProblemRenderer",
"nocarrier/hal": "For creating HAL documents that can be rendered using HalRenderer"
},
"require-dev": {
"crell/api-problem": "^3.2",
"nocarrier/hal": "^0.9.12",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5",
"laminas/laminas-diactoros": "^2.8"
},
"autoload": {
"psr-4": {
"RKA\\ContentTypeRenderer\\": "src"
}
}
}