-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.24 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.24 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
41
42
43
44
{
"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.3.0 || ~8.4.0 || ~8.5.0",
"phpro/api-problem": "^1.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/event-dispatcher": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^6.2",
"php-cs-fixer/shim": "^3.94",
"phpro/grumphp-shim": "^2.19",
"phpspec/prophecy": "^1.25",
"phpspec/prophecy-phpunit": "^2.5",
"phpunit/phpunit": "^12.5",
"symfony/security-core": "^6.4 || ^7.4 || ^8.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true
}
},
"autoload": {
"psr-4": {
"Phpro\\ApiProblemBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhproTest\\ApiProblemBundle\\": "test/"
}
}
}