-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.1 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
{
"name": "mops1k/request-object-resolver-bundle",
"description": "Bundle for resolving and validate http request to object",
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"doctrine/inflector": "^2.0",
"symfony/framework-bundle": "^6.0",
"symfony/property-access": "^6.0",
"symfony/serializer": "^6.0",
"symfony/validator": "^6.0"
},
"require-dev": {
"doctrine/annotations": "^1.14",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/php-code-coverage": "^10.1",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"symplify/easy-coding-standard": "^11.5",
"symplify/config-transformer": "^12.0"
},
"autoload": {
"psr-4": {
"RequestObjectResolverBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RequestObjectResolverBundle\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Aleksandr Kvintilyanov",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
}
}