forked from phpro/api-problem-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.08 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "phpro/api-problem-bundle",
"description": "RFC7807 Problem details integration for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Toon Verwerft",
"email": "toon.verwerft@phpro.be"
}
],
"require": {
"php": "^8.0",
"phpro/api-problem": "^1.0",
"symfony/dependency-injection": "^5.3 || ^6.0",
"symfony/event-dispatcher": "^5.3 || ^6.0",
"symfony/http-kernel": "^5.3 || ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"phpro/grumphp-shim": "^1.6.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.4",
"symfony/security-core": "^5.3 || ^6.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Phpro\\ApiProblemBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhproTest\\ApiProblemBundle\\": "test/"
}
}
}