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.

41 lines
929 B

3 years ago
  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. "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. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^9.3"
  25. },
  26. "autoload": {
  27. "classmap": [
  28. "src/"
  29. ]
  30. },
  31. "autoload-dev": {
  32. "classmap": [
  33. "tests/_fixture/"
  34. ]
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "2.0-dev"
  39. }
  40. }
  41. }