Nav apraksta

composer.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "phpunit/php-code-coverage",
  3. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4. "type": "library",
  5. "keywords": [
  6. "coverage",
  7. "testing",
  8. "xunit"
  9. ],
  10. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11. "license": "BSD-3-Clause",
  12. "authors": [
  13. {
  14. "name": "Sebastian Bergmann",
  15. "email": "sebastian@phpunit.de",
  16. "role": "lead"
  17. }
  18. ],
  19. "support": {
  20. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues"
  21. },
  22. "config": {
  23. "optimize-autoloader": true,
  24. "sort-packages": true
  25. },
  26. "prefer-stable": true,
  27. "require": {
  28. "php": "^7.1",
  29. "ext-dom": "*",
  30. "ext-xmlwriter": "*",
  31. "phpunit/php-file-iterator": "^2.0",
  32. "phpunit/php-token-stream": "^3.0",
  33. "phpunit/php-text-template": "^1.2.1",
  34. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  35. "sebastian/environment": "^3.1 || ^4.0",
  36. "sebastian/version": "^2.0.1",
  37. "theseer/tokenizer": "^1.1"
  38. },
  39. "require-dev": {
  40. "phpunit/phpunit": "^7.0"
  41. },
  42. "suggest": {
  43. "ext-xdebug": "^2.6.0"
  44. },
  45. "autoload": {
  46. "classmap": [
  47. "src/"
  48. ]
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "6.1-dev"
  53. }
  54. }
  55. }