composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "sebastian/code-unit-reverse-lookup",
  3. "description": "Looks up which function or method a line of code belongs to",
  4. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  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/code-unit-reverse-lookup/issues",
  14. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy"
  15. },
  16. "config": {
  17. "platform": {
  18. "php": "8.2.0"
  19. },
  20. "optimize-autoloader": true,
  21. "sort-packages": true
  22. },
  23. "prefer-stable": true,
  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. "extra": {
  36. "branch-alias": {
  37. "dev-main": "4.0-dev"
  38. }
  39. }
  40. }