d7dbfc6509c092b351e0f771bbe539ea886629dd
[yaffs-website] / serializer / composer.json
1 {
2     "name": "symfony/serializer",
3     "type": "library",
4     "description": "Symfony Serializer Component",
5     "keywords": [],
6     "homepage": "https://symfony.com",
7     "license": "MIT",
8     "authors": [
9         {
10             "name": "Fabien Potencier",
11             "email": "fabien@symfony.com"
12         },
13         {
14             "name": "Symfony Community",
15             "homepage": "https://symfony.com/contributors"
16         }
17     ],
18     "require": {
19         "php": ">=5.5.9"
20     },
21     "require-dev": {
22         "symfony/yaml": "~3.1",
23         "symfony/config": "~2.8|~3.0",
24         "symfony/property-access": "~2.8|~3.0",
25         "symfony/http-foundation": "~2.8|~3.0",
26         "symfony/cache": "~3.1",
27         "symfony/property-info": "~3.1",
28         "doctrine/annotations": "~1.0",
29         "doctrine/cache": "~1.0",
30         "phpdocumentor/reflection-docblock": "~3.0"
31     },
32     "conflict": {
33         "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
34         "symfony/property-info": "<3.1",
35         "symfony/yaml": "<3.1"
36     },
37     "suggest": {
38         "psr/cache-implementation": "For using the metadata cache.",
39         "symfony/property-info": "To deserialize relations.",
40         "symfony/yaml": "For using the default YAML mapping loader.",
41         "symfony/config": "For using the XML mapping loader.",
42         "symfony/property-access": "For using the ObjectNormalizer.",
43         "symfony/http-foundation": "To use the DataUriNormalizer.",
44         "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
45         "doctrine/cache": "For using the default cached annotation reader and metadata cache."
46     },
47     "autoload": {
48         "psr-4": { "Symfony\\Component\\Serializer\\": "" },
49         "exclude-from-classmap": [
50             "/Tests/"
51         ]
52     },
53     "minimum-stability": "dev",
54     "extra": {
55         "branch-alias": {
56             "dev-master": "3.2-dev"
57         }
58     }
59 }