composer.json 897 B

1234567891011121314151617181920212223242526272829303132
  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"],
  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": ">=7.2.5",
  20. "symfony/polyfill-php80": "^1.15"
  21. },
  22. "require-dev": {
  23. "symfony/var-dumper": "^4.4.9|^5.0.9"
  24. },
  25. "autoload": {
  26. "psr-4": { "Symfony\\Component\\VarExporter\\": "" },
  27. "exclude-from-classmap": [
  28. "/Tests/"
  29. ]
  30. },
  31. "minimum-stability": "dev"
  32. }