composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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": ">=8.1",
  20. "symfony/deprecation-contracts": "^2.5|^3",
  21. "symfony/property-info": "^5.4|^6.0|^7.0"
  22. },
  23. "require-dev": {
  24. "symfony/cache": "^5.4|^6.0|^7.0"
  25. },
  26. "autoload": {
  27. "psr-4": { "Symfony\\Component\\PropertyAccess\\": "" },
  28. "exclude-from-classmap": [
  29. "/Tests/"
  30. ]
  31. },
  32. "minimum-stability": "dev"
  33. }