composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "sebastian/comparator",
  3. "description": "Provides the functionality to compare PHP values for equality",
  4. "keywords": ["comparator","compare","equality"],
  5. "homepage": "http://www.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. "require": {
  26. "php": "^7.0",
  27. "sebastian/diff": "^1.2",
  28. "sebastian/exporter": "^3.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^6.0"
  32. },
  33. "autoload": {
  34. "classmap": [
  35. "src/"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "classmap": [
  40. "tests/_fixture"
  41. ]
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "2.0.x-dev"
  46. }
  47. }
  48. }