composer.json 674 B

1234567891011121314151617181920212223242526272829
  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. "require": {
  13. "php": "^5.6 || ^7.0"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^5.7 || ^6.0"
  17. },
  18. "autoload": {
  19. "classmap": [
  20. "src/"
  21. ]
  22. },
  23. "extra": {
  24. "branch-alias": {
  25. "dev-master": "1.0.x-dev"
  26. }
  27. }
  28. }