-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.71 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
{
"name": "nelexa/request-dto-bundle",
"type": "symfony-bundle",
"description": "This Symfony Bundle provides request objects support for Symfony controller actions",
"keywords": [
"request",
"bundle",
"dto"
],
"license": "MIT",
"require": {
"php": "^7.4 | ^8.0",
"symfony/dependency-injection": "^4.4 | ^5.1 | ^6.0",
"symfony/http-kernel": "^4.4 | ^5.1 | ^6.0",
"symfony/property-access": "^4.4 | ^5.1 | ^6.0",
"symfony/property-info": "^4.4 | ^5.1 | ^6.0",
"symfony/serializer": "^4.4 | ^5.1 | ^6.0",
"symfony/validator": "^4.4 | ^5.1 | ^6.0"
},
"require-dev": {
"ext-json": "*",
"ext-simplexml": "*",
"doctrine/annotations": "^1.10",
"symfony/browser-kit": "^4.4 | ^5.1 | ^6.0",
"symfony/css-selector": "^4.4 | ^5.1 | ^6.0",
"symfony/framework-bundle": "^4.4 | ^5.1 | ^6.0",
"symfony/mime": "^4.4 | ^5.1 | ^6.0",
"symfony/phpunit-bridge": "^4.4 | ^5.1 | ^6.0",
"symfony/var-dumper": "^4.4 | ^5.1 | ^6.0"
},
"conflict": {
"symfony/framework-bundle": "<4.4 | 5.0.*"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Nelexa\\RequestDtoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nelexa\\RequestDtoBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"php:fix": "php .php-cs-fixer.php --force",
"php:fix:debug": "php .php-cs-fixer.php"
},
"suggest": {
"doctrine/annotations": "For support @Assert annotations"
},
"minimum-stability": "stable"
}