-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
56 lines (56 loc) · 1.19 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": "vklymniuk/dto-mapper-bundle",
"type": "library",
"description": "Symfony mapper bundle, easy way to convert data.",
"license": "MIT",
"authors": [
{
"name": "Vladimir Klymniuk",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"symfony/http-kernel": "^4.0",
"symfony/dependency-injection": "^4.0",
"symfony/config": "^4.0",
"symfony/proxy-manager-bridge": "^4.0",
"vklymniuk/dto-mapper": "^0.3",
"doctrine/annotations": "^1.6"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.2",
"symfony/framework-bundle": "^4.0",
"symfony/yaml": "^4.0"
},
"autoload": {
"psr-4": {
"VKMapperBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"keywords": [
"php",
"object conversion",
"serializer",
"mapper",
"dto",
"dto mapper",
"dto-mapper",
"symfony",
"serialization",
"annotations",
"doctrine annotations",
"hydrator",
"performance",
"deserialization",
"array conversion",
"deserialization"
],
"scripts": {
"test": "phpunit -c tests/phpunit.xml tests/"
}
}