-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
33 lines (33 loc) · 879 Bytes
/
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
{
"name": "prugala/symfony-request-dto",
"type": "library",
"description": "Convert Symfony request to DTO object",
"license": "MIT",
"require": {
"php": "^8.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/serializer": "^5.4 || ^6.0",
"symfony/validator": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/property-access": "^5.4 || ^6.0",
"doctrine/annotations": "^1.13 || ^2.0",
"symfony/cache": "^5.4 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Prugala\\RequestDto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Prugala\\RequestDto\\Tests\\": "tests/"
}
},
"scripts": {
"tests": "phpunit"
},
"prefer-stable": true
}