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.

36 lines
834 B

3 years ago
  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. "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. "extra": {
  32. "branch-alias": {
  33. "dev-master": "2.0-dev"
  34. }
  35. }
  36. }