composer.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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": "~2.8|~3.0",
  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. },
  36. "suggest": {
  37. "psr/cache-implementation": "For using the metadata cache.",
  38. "symfony/property-info": "To deserialize relations.",
  39. "symfony/yaml": "For using the default YAML mapping loader.",
  40. "symfony/config": "For using the XML mapping loader.",
  41. "symfony/property-access": "For using the ObjectNormalizer.",
  42. "symfony/http-foundation": "To use the DataUriNormalizer.",
  43. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  44. "doctrine/cache": "For using the default cached annotation reader and metadata cache."
  45. },
  46. "autoload": {
  47. "psr-4": { "Symfony\\Component\\Serializer\\": "" },
  48. "exclude-from-classmap": [
  49. "/Tests/"
  50. ]
  51. },
  52. "minimum-stability": "dev",
  53. "extra": {
  54. "branch-alias": {
  55. "dev-master": "3.1-dev"
  56. }
  57. }
  58. }