composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "symfony/property-access",
  3. "type": "library",
  4. "description": "Symfony PropertyAccess Component",
  5. "keywords": ["property", "index", "access", "object", "array", "extraction", "injection", "reflection", "property path"],
  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/inflector": "^4.4|^5.0",
  21. "symfony/polyfill-php80": "^1.15",
  22. "symfony/property-info": "^5.1.1"
  23. },
  24. "require-dev": {
  25. "symfony/cache": "^4.4|^5.0"
  26. },
  27. "suggest": {
  28. "psr/cache-implementation": "To cache access methods."
  29. },
  30. "autoload": {
  31. "psr-4": { "Symfony\\Component\\PropertyAccess\\": "" },
  32. "exclude-from-classmap": [
  33. "/Tests/"
  34. ]
  35. },
  36. "minimum-stability": "dev",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "5.1-dev"
  40. }
  41. }
  42. }