composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "sebastian/phpcpd",
  3. "description": "Copy/Paste Detector (CPD) for PHP code.",
  4. "homepage": "https://github.com/sebastianbergmann/phpcpd",
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Sebastian Bergmann",
  9. "email": "sebastian@phpunit.de",
  10. "role": "lead"
  11. }
  12. ],
  13. "support": {
  14. "issues": "https://github.com/sebastianbergmann/phpcpd/issues"
  15. },
  16. "config": {
  17. "platform": {
  18. "php": "5.6.0"
  19. },
  20. "optimize-autoloader": true,
  21. "sort-packages": true
  22. },
  23. "prefer-stable": true,
  24. "require": {
  25. "php": "^5.6|^7.0",
  26. "sebastian/finder-facade": "^1.1",
  27. "sebastian/version": "^1.0|^2.0",
  28. "symfony/console": "^2.7|^3.0|^4.0",
  29. "phpunit/php-timer": "^1.0.6"
  30. },
  31. "autoload": {
  32. "classmap": [
  33. "src/"
  34. ]
  35. },
  36. "bin": [
  37. "phpcpd"
  38. ],
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "3.0-dev"
  42. }
  43. }
  44. }