annotate vendor/symfony/serializer/composer.json @ 19:fa3358dc1485 tip

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