-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "artyuum/request-dto-mapper-bundle",
"description": "This bundle provides an easy way to automatically map the incoming request data to a DTO and optionally validate it.",
"keywords": [
"symfony",
"bundle",
"dto",
"api",
"request-mapper",
"mapper"
],
"type": "symfony-bundle",
"require": {
"php": "^8.0",
"phpdocumentor/reflection-docblock": "^5.3",
"symfony/config": "^5.0 || ^6.0|| ^7.0",
"symfony/event-dispatcher": "^5.0 || ^6.0|| ^7.0",
"symfony/framework-bundle": "^5.0 || ^6.0|| ^7.0",
"symfony/http-kernel": "^5.0 || ^6.0|| ^7.0",
"symfony/property-access": "^5.0 || ^6.0|| ^7.0",
"symfony/property-info": "^5.0 || ^6.0|| ^7.0",
"symfony/serializer": "^5.0 || ^6.0|| ^7.0"
},
"suggest": {
"symfony/validator": "For validating the DTO (if the validation is enabled)."
},
"license": "MIT",
"authors": [
{
"name": "Dynèsh HASSANALY",
"email": "artyum@protonmail.com"
}
],
"autoload": {
"psr-4": {
"Artyum\\RequestDtoMapperBundle\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"symfony/validator": "^6.0"
},
"scripts": {
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix",
"phpstan": "./vendor/bin/phpstan analyze"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}