Aucune description

composer.json 878B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "sebastian/diff",
  3. "description": "Diff implementation",
  4. "keywords": ["diff", "udiff", "unidiff", "unified diff"],
  5. "homepage": "https://github.com/sebastianbergmann/diff",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de"
  11. },
  12. {
  13. "name": "Kore Nordmann",
  14. "email": "mail@kore-nordmann.de"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.1"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^7.5 || ^8.0",
  22. "symfony/process": "^2 || ^3.3 || ^4"
  23. },
  24. "autoload": {
  25. "classmap": [
  26. "src/"
  27. ]
  28. },
  29. "autoload-dev": {
  30. "classmap": [
  31. "tests/"
  32. ]
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "3.0-dev"
  37. }
  38. }
  39. }