summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Component/Serializer/composer.json
blob: 0fdd4c37c12590672f49c710f16f0c9f7eb72d8a (plain)
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
{
    "name": "symfony/serializer",
    "type": "library",
    "description": "Symfony Serializer Component",
    "keywords": [],
    "homepage": "https://symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        },
        {
            "name": "Symfony Community",
            "homepage": "https://symfony.com/contributors"
        }
    ],
    "require": {
        "php": ">=5.3.9",
        "symfony/polyfill-ctype": "~1.8",
        "symfony/polyfill-php55": "~1.0"
    },
    "require-dev": {
        "symfony/yaml": "^2.0.5|~3.0.0",
        "symfony/config": "~2.2|~3.0.0",
        "symfony/property-access": "~2.3|~3.0.0",
        "doctrine/annotations": "~1.0",
        "doctrine/cache": "~1.0"
    },
    "suggest": {
        "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
        "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
        "symfony/yaml": "For using the default YAML mapping loader.",
        "symfony/config": "For using the XML mapping loader.",
        "symfony/property-access": "For using the ObjectNormalizer."
    },
    "autoload": {
        "psr-4": { "Symfony\\Component\\Serializer\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "minimum-stability": "dev",
    "extra": {
        "branch-alias": {
            "dev-master": "2.8-dev"
        }
    }
}