-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 894 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 894 Bytes
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
{
"name": "phpro/api-problem",
"description": "RFC7807 Problem details implementation",
"type": "library",
"require-dev": {
"php-cs-fixer/shim": "^3.88",
"phpro/grumphp-shim": "^2.17",
"phpspec/phpspec": "^7.2",
"symfony/validator": "^5.4 || ^6.0 || ^7.0",
"sebastian/comparator": "^4.0"
},
"license": "MIT",
"authors": [
{
"name": "Toon Verwerft",
"email": "toon.verwerft@phpro.be"
}
],
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true
}
},
"autoload": {
"psr-4": {
"Phpro\\ApiProblem\\": "src/"
}
},
"suggest": {
"symfony/validator": "If you want to use the ValidationApiProblem"
}
}