説明なし

composer.json 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "prefer-stable": true,
  26. "require": {
  27. "php": ">=7.1",
  28. "sebastian/diff": "^3.0",
  29. "sebastian/exporter": "^3.1"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^8.5"
  33. },
  34. "config": {
  35. "optimize-autoloader": true,
  36. "sort-packages": true
  37. },
  38. "autoload": {
  39. "classmap": [
  40. "src/"
  41. ]
  42. },
  43. "autoload-dev": {
  44. "classmap": [
  45. "tests/_fixture"
  46. ]
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "3.0-dev"
  51. }
  52. }
  53. }