Drupal investigation

composer.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.3.9",
  20. "symfony/polyfill-php55": "~1.0"
  21. },
  22. "require-dev": {
  23. "symfony/yaml": "^2.0.5|~3.0.0",
  24. "symfony/config": "~2.2|~3.0.0",
  25. "symfony/property-access": "~2.3|~3.0.0",
  26. "doctrine/annotations": "~1.0",
  27. "doctrine/cache": "~1.0"
  28. },
  29. "suggest": {
  30. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  31. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  32. "symfony/yaml": "For using the default YAML mapping loader.",
  33. "symfony/config": "For using the XML mapping loader.",
  34. "symfony/property-access": "For using the ObjectNormalizer."
  35. },
  36. "autoload": {
  37. "psr-4": { "Symfony\\Component\\Serializer\\": "" },
  38. "exclude-from-classmap": [
  39. "/Tests/"
  40. ]
  41. },
  42. "minimum-stability": "dev",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "2.8-dev"
  46. }
  47. }
  48. }