-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.45 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
{
"name": "fazland/dto-management-bundle",
"type": "library",
"description": "DTO finder and param converter bundle",
"license": "proprietary",
"authors": [
{
"name": "Massimiliano Braglia",
"email": "[email protected]"
},
{
"name": "Alessandro Chitolina",
"email": "[email protected]"
},
{
"name": "Fazland Dev Team",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"doctrine/annotations": "^1.6",
"kcs/class-finder": "^0.1,>0.1.3",
"ocramius/proxy-manager": "^2.1",
"symfony/config": "^3.4|^4.0|^5.0",
"symfony/framework-bundle": "^3.4|^4.0|^5.0"
},
"require-dev": {
"kcs/serializer": "^2.1.1|^3.0",
"phpunit/phpunit": "^7.4|^8.0",
"symfony/browser-kit": "^3.4|^4.0|^5.0",
"symfony/debug-bundle": "^3.4|^4.0|^5.0",
"symfony/expression-language": "^3.4|^4.0|^5.0",
"symfony/security-bundle": "^3.4|^4.0|^5.0",
"symfony/var-dumper": "^3.4|^4.0|^5.0",
"symfony/yaml": "^3.4|^4.0|^5.0"
},
"autoload": {
"psr-4": {
"Fazland\\DtoManagementBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fazland\\DtoManagementBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}