You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.3 KiB

3 years ago
  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.3",
  28. "sebastian/diff": "^4.0",
  29. "sebastian/exporter": "^4.0"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^9.3"
  33. },
  34. "config": {
  35. "platform": {
  36. "php": "7.3.0"
  37. },
  38. "optimize-autoloader": true,
  39. "sort-packages": true
  40. },
  41. "autoload": {
  42. "classmap": [
  43. "src/"
  44. ]
  45. },
  46. "autoload-dev": {
  47. "classmap": [
  48. "tests/_fixture"
  49. ]
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "4.0-dev"
  54. }
  55. }
  56. }