composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "sebastian/lines-of-code",
  3. "description": "Library for counting the lines of code in PHP source code",
  4. "type": "library",
  5. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de",
  11. "role": "lead"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  16. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy"
  17. },
  18. "prefer-stable": true,
  19. "require": {
  20. "php": ">=8.1",
  21. "nikic/php-parser": "^4.18 || ^5.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^10.0"
  25. },
  26. "config": {
  27. "platform": {
  28. "php": "8.1"
  29. },
  30. "optimize-autoloader": true,
  31. "sort-packages": true
  32. },
  33. "autoload": {
  34. "classmap": [
  35. "src/"
  36. ]
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-main": "2.0-dev"
  41. }
  42. }
  43. }