composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "symfony/property-access",
  3. "type": "library",
  4. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  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/deprecation-contracts": "^2.1",
  21. "symfony/polyfill-php80": "^1.15",
  22. "symfony/property-info": "^5.2"
  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. }