composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "symfony/var-exporter",
  3. "type": "library",
  4. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  5. "keywords": ["export", "serialize", "instantiate", "hydrate", "construct", "clone", "lazy-loading", "proxy"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=8.2",
  20. "symfony/deprecation-contracts": "^2.5|^3"
  21. },
  22. "require-dev": {
  23. "symfony/property-access": "^6.4|^7.0|^8.0",
  24. "symfony/serializer": "^6.4|^7.0|^8.0",
  25. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  26. },
  27. "autoload": {
  28. "psr-4": { "Symfony\\Component\\VarExporter\\": "" },
  29. "exclude-from-classmap": [
  30. "/Tests/"
  31. ]
  32. },
  33. "minimum-stability": "dev"
  34. }