1{
2    "name": "jms/serializer",
3    "type": "library",
4    "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
5    "keywords": ["serialization", "deserialization", "json", "jaxb", "xml"],
6    "homepage": "http://jmsyst.com/libs/serializer",
7    "license": "MIT",
8    "authors": [
9        {
10            "name": "Johannes M. Schmitt",
11            "email": "schmittjoh@gmail.com"
12        },
13        {
14            "name": "Asmir Mustafic",
15            "email": "goetas@gmail.com"
16        }
17    ],
18    "require": {
19        "php": "^7.2",
20        "jms/metadata": "^2.0",
21        "doctrine/annotations": "^1.0",
22        "doctrine/instantiator": "^1.0.3",
23        "hoa/compiler": "^3.17.08.08"
24    },
25    "suggest": {
26        "symfony/yaml": "Required if you'd like to use the YAML metadata format.",
27        "doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
28        "doctrine/cache": "Required if you like to use cache functionality."
29    },
30    "require-dev": {
31        "ext-pdo_sqlite": "*",
32        "twig/twig": "^1.12|^2.0",
33        "doctrine/orm": "~2.1",
34        "jackalope/jackalope-doctrine-dbal": "^1.1.5",
35        "doctrine/phpcr-odm": "^1.3|^2.0",
36        "psr/container": "^1.0",
37        "symfony/dependency-injection": "^3.0|^4.0",
38        "symfony/yaml": "^3.3|^4.0",
39        "symfony/translation": "^3.0|^4.0",
40        "symfony/validator": "^3.1.9|^4.0",
41        "symfony/form": "^3.0|^4.0",
42        "symfony/filesystem": "^3.0|^4.0",
43        "symfony/expression-language": "^3.0|^4.0",
44        "phpunit/phpunit": "^7.1",
45        "doctrine/coding-standard": "^5.0"
46    },
47    "conflict": {
48        "hoa/core": "*",
49        "hoa/consistency": "<1.17.05.02",
50        "hoa/iterator": "<2.16.03.15"
51    },
52    "autoload": {
53        "psr-4": {
54            "JMS\\Serializer\\": "src/"
55        }
56    },
57    "autoload-dev": {
58        "psr-4": {
59            "JMS\\Serializer\\Tests\\": "tests/"
60        }
61    },
62    "extra": {
63        "branch-alias": {
64            "dev-master": "2.2-dev"
65        }
66    }
67}
68