-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "pfilsx/dto-param-converter-bundle",
"type": "symfony-bundle",
"description": "This Symfony bundle provides a way to convert requests into dto easily",
"license": "MIT",
"keywords": [
"param-converter",
"Symfony",
"bundle",
"api",
"rest"
],
"authors": [
{
"name": "Pavel Filimonov",
"email": "pfilsx@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ^8.0",
"symfony/framework-bundle": "^4.4|^5.3|^6.0",
"doctrine/annotations": "^1.0|^2.0",
"symfony/serializer": "^4.4|^5.3|^6.0",
"symfony/property-access": "^4.4|^5.3|^6.0",
"symfony/property-info": "^4.4|^5.3|^6.0"
},
"require-dev": {
"ext-json": "*",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.11|^2.0",
"symfony/expression-language": "^4.4|^5.3|^6.0",
"symfony/validator": "^4.4|^5.3|^6.0",
"symfony/security-core": "^5.3|^6.0",
"symfony/phpunit-bridge": "^6.0",
"phpunit/phpunit": "^9.5",
"symfony/yaml": "^5.3|^6.0",
"symfony/browser-kit": "^5.3|^6.0",
"dg/bypass-finals": "^1.3",
"friendsofphp/php-cs-fixer": "^3.3"
},
"autoload": {
"psr-4": {
"Pfilsx\\DtoParamConverter\\": "src"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Pfilsx\\DtoParamConverter\\Tests\\": "tests/"
}
}
}