No Description

composer.json 852B

123456789101112131415161718192021222324252627282930313233343536
  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. "require": {
  13. "php": ">=7.0",
  14. "sebastian/object-reflector": "^1.1.1",
  15. "sebastian/recursion-context": "^3.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^6.0"
  19. },
  20. "autoload": {
  21. "classmap": [
  22. "src/"
  23. ]
  24. },
  25. "autoload-dev": {
  26. "classmap": [
  27. "tests/_fixture/"
  28. ]
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "3.0.x-dev"
  33. }
  34. }
  35. }