composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "sebastian/comparator",
  3. "description": "Provides the functionality to compare PHP values for equality",
  4. "keywords": ["comparator","compare","equality"],
  5. "homepage": "https://github.com/sebastianbergmann/comparator",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de"
  11. },
  12. {
  13. "name": "Jeff Welch",
  14. "email": "whatthejeff@gmail.com"
  15. },
  16. {
  17. "name": "Volker Dusch",
  18. "email": "github@wallbash.com"
  19. },
  20. {
  21. "name": "Bernhard Schussek",
  22. "email": "bschussek@2bepublished.at"
  23. }
  24. ],
  25. "support": {
  26. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  27. "security": "https://github.com/sebastianbergmann/comparator/security/policy"
  28. },
  29. "prefer-stable": true,
  30. "require": {
  31. "php": ">=8.1",
  32. "sebastian/diff": "^5.0",
  33. "sebastian/exporter": "^5.0",
  34. "ext-dom": "*",
  35. "ext-mbstring": "*"
  36. },
  37. "require-dev": {
  38. "phpunit/phpunit": "^10.3"
  39. },
  40. "config": {
  41. "platform": {
  42. "php": "8.1.0"
  43. },
  44. "optimize-autoloader": true,
  45. "sort-packages": true
  46. },
  47. "autoload": {
  48. "classmap": [
  49. "src/"
  50. ]
  51. },
  52. "autoload-dev": {
  53. "classmap": [
  54. "tests/_fixture"
  55. ]
  56. },
  57. "extra": {
  58. "branch-alias": {
  59. "dev-main": "5.0-dev"
  60. }
  61. }
  62. }