composer.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "symfony/serializer",
  3. "type": "library",
  4. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  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": ">=7.2.5",
  20. "symfony/polyfill-ctype": "~1.8",
  21. "symfony/polyfill-php80": "^1.15"
  22. },
  23. "require-dev": {
  24. "doctrine/annotations": "^1.10.4",
  25. "doctrine/cache": "~1.0",
  26. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  27. "symfony/cache": "^4.4|^5.0",
  28. "symfony/config": "^4.4|^5.0",
  29. "symfony/dependency-injection": "^4.4|^5.0",
  30. "symfony/error-handler": "^4.4|^5.0",
  31. "symfony/filesystem": "^4.4|^5.0",
  32. "symfony/form": "^4.4|^5.0",
  33. "symfony/http-foundation": "^4.4|^5.0",
  34. "symfony/http-kernel": "^4.4|^5.0",
  35. "symfony/mime": "^4.4|^5.0",
  36. "symfony/property-access": "^4.4.9|^5.0.9",
  37. "symfony/property-info": "^4.4|^5.0",
  38. "symfony/uid": "^5.1",
  39. "symfony/validator": "^4.4|^5.0",
  40. "symfony/var-exporter": "^4.4|^5.0",
  41. "symfony/yaml": "^4.4|^5.0"
  42. },
  43. "conflict": {
  44. "phpdocumentor/reflection-docblock": "<3.2.2",
  45. "phpdocumentor/type-resolver": "<1.4.0",
  46. "symfony/dependency-injection": "<4.4",
  47. "symfony/property-access": "<4.4",
  48. "symfony/property-info": "<4.4",
  49. "symfony/yaml": "<4.4"
  50. },
  51. "suggest": {
  52. "psr/cache-implementation": "For using the metadata cache.",
  53. "symfony/property-info": "To deserialize relations.",
  54. "symfony/yaml": "For using the default YAML mapping loader.",
  55. "symfony/config": "For using the XML mapping loader.",
  56. "symfony/property-access": "For using the ObjectNormalizer.",
  57. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  58. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  59. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  60. "symfony/var-exporter": "For using the metadata compiler."
  61. },
  62. "autoload": {
  63. "psr-4": { "Symfony\\Component\\Serializer\\": "" },
  64. "exclude-from-classmap": [
  65. "/Tests/"
  66. ]
  67. },
  68. "minimum-stability": "dev"
  69. }