forked from rezonant/RezonantMapperBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (31 loc) · 875 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
34
{
"name": "rezonant/mapper-bundle",
"type": "symfony-bundle",
"description": "A Symfony2 bundle providing a flexible mechanism for object-to-object mapping (and back)",
"keywords": ["mapping", "models"],
"homepage": "http://github.com/rezonant/RezonantMapperBundle",
"license": "MIT",
"authors": [
{
"name": "William Lahti",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/rezonant/RezonantMapperBundle/issues"
},
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.3 | ~3.0",
"symfony/yaml": "~2.3 | ~3.0",
"symfony/validator": "~2.3 | ~3.0",
"doctrine/common": "~2.4"
},
"suggest": {
"friendsofsymfony/rest-bundle": "~1.0",
"jms/serializer-bundle": "~0.11|~1.0"
},
"autoload": {
"psr-4": { "Rezonant\\MapperBundle\\": "src/" }
}
}