composer.json 793 B

1234567891011121314151617181920212223242526272829303132333435
  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": ">=5.6",
  14. "sebastian/recursion-context": "~2.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "~5"
  18. },
  19. "autoload": {
  20. "classmap": [
  21. "src/"
  22. ]
  23. },
  24. "autoload-dev": {
  25. "classmap": [
  26. "tests/"
  27. ]
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "2.0.x-dev"
  32. }
  33. }
  34. }