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.

42 lines
998 B

3 years ago
  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. },
  17. "prefer-stable": true,
  18. "require": {
  19. "php": ">=7.3",
  20. "nikic/php-parser": "^4.6"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^9.3"
  24. },
  25. "config": {
  26. "platform": {
  27. "php": "7.3.0"
  28. },
  29. "optimize-autoloader": true,
  30. "sort-packages": true
  31. },
  32. "autoload": {
  33. "classmap": [
  34. "src/"
  35. ]
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.0-dev"
  40. }
  41. }
  42. }