forked from schmittjoh/JMSSerializerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 874 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
{
"name": "jms/serializer-bundle",
"type": "symfony-bundle",
"description": "Allows you to easily serialize, and deserialize object graphs of any complexity",
"keywords": ["serialization", "deserialization", "json", "jaxb", "xml"],
"homepage": "http://jmsyst.com/bundles/JMSSerializerBundle",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"jms/metadata": ">=1.1.0"
},
"require-dev": {
"symfony/framework-bundle": "2.*",
"symfony/yaml": "2.*",
"symfony/form": "2.*",
"symfony/validator": "2.*",
"twig/twig": "dev-master"
},
"autoload": {
"psr-0": { "JMS\\SerializerBundle": "" }
},
"target-dir": "JMS/SerializerBundle"
}