You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.0 KiB

3 years ago
  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. "prefer-stable": true,
  13. "config": {
  14. "platform": {
  15. "php": "7.3.0"
  16. },
  17. "optimize-autoloader": true,
  18. "sort-packages": true
  19. },
  20. "require": {
  21. "php": ">=7.3",
  22. "sebastian/object-reflector": "^2.0",
  23. "sebastian/recursion-context": "^4.0"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^9.3"
  27. },
  28. "autoload": {
  29. "classmap": [
  30. "src/"
  31. ]
  32. },
  33. "autoload-dev": {
  34. "classmap": [
  35. "tests/_fixture/"
  36. ]
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "4.0-dev"
  41. }
  42. }
  43. }