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.

47 lines
1.0 KiB

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