composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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": ">=5.3.3",
  27. "sebastian/diff": "~1.2",
  28. "sebastian/exporter": "~1.2 || ~2.0"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "~4.4"
  32. },
  33. "autoload": {
  34. "classmap": [
  35. "src/"
  36. ]
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "1.2.x-dev"
  41. }
  42. }
  43. }