composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "support": {
  13. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  14. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy"
  15. },
  16. "prefer-stable": true,
  17. "config": {
  18. "platform": {
  19. "php": "8.2.0"
  20. },
  21. "optimize-autoloader": true,
  22. "sort-packages": true
  23. },
  24. "require": {
  25. "php": ">=8.2"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^11.0"
  29. },
  30. "autoload": {
  31. "classmap": [
  32. "src/"
  33. ]
  34. },
  35. "autoload-dev": {
  36. "classmap": [
  37. "tests/_fixture/"
  38. ]
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-main": "4.0-dev"
  43. }
  44. }
  45. }