composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. "support": {
  18. "issues": "https://github.com/sebastianbergmann/diff/issues",
  19. "security": "https://github.com/sebastianbergmann/diff/security/policy"
  20. },
  21. "prefer-stable": true,
  22. "config": {
  23. "platform": {
  24. "php": "8.1.0"
  25. },
  26. "optimize-autoloader": true,
  27. "sort-packages": true
  28. },
  29. "require": {
  30. "php": ">=8.1"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^10.0",
  34. "symfony/process": "^6.4"
  35. },
  36. "autoload": {
  37. "classmap": [
  38. "src/"
  39. ]
  40. },
  41. "autoload-dev": {
  42. "classmap": [
  43. "tests/"
  44. ]
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-main": "5.1-dev"
  49. }
  50. }
  51. }