composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.2",
  32. "sebastian/diff": "^6.0",
  33. "sebastian/exporter": "^6.0",
  34. "ext-dom": "*",
  35. "ext-mbstring": "*"
  36. },
  37. "suggest": {
  38. "ext-bcmath": "For comparing BcMath\\Number objects"
  39. },
  40. "require-dev": {
  41. "phpunit/phpunit": "^11.4"
  42. },
  43. "config": {
  44. "platform": {
  45. "php": "8.2.0"
  46. },
  47. "optimize-autoloader": true,
  48. "sort-packages": true
  49. },
  50. "autoload": {
  51. "classmap": [
  52. "src/"
  53. ]
  54. },
  55. "autoload-dev": {
  56. "classmap": [
  57. "tests/_fixture"
  58. ]
  59. },
  60. "extra": {
  61. "branch-alias": {
  62. "dev-main": "6.3-dev"
  63. }
  64. }
  65. }