composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "sebastian/object-enumerator",
  3. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Sebastian Bergmann",
  9. "email": "sebastian@phpunit.de"
  10. }
  11. ],
  12. "support": {
  13. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  14. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy"
  15. },
  16. "prefer-stable": true,
  17. "config": {
  18. "platform": {
  19. "php": "8.2.0"
  20. },
  21. "optimize-autoloader": true,
  22. "sort-packages": true
  23. },
  24. "require": {
  25. "php": ">=8.2",
  26. "sebastian/object-reflector": "^4.0",
  27. "sebastian/recursion-context": "^6.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^11.0"
  31. },
  32. "autoload": {
  33. "classmap": [
  34. "src/"
  35. ]
  36. },
  37. "autoload-dev": {
  38. "classmap": [
  39. "tests/_fixture/"
  40. ]
  41. },
  42. "extra": {
  43. "branch-alias": {
  44. "dev-main": "6.0-dev"
  45. }
  46. }
  47. }