暂无描述

composer.json 752B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "sebastian/object-reflector",
  3. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  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. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^6.0"
  17. },
  18. "autoload": {
  19. "classmap": [
  20. "src/"
  21. ]
  22. },
  23. "autoload-dev": {
  24. "classmap": [
  25. "tests/_fixture/"
  26. ]
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.1-dev"
  31. }
  32. }
  33. }