composer.json 666 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "hamcrest/hamcrest-php",
  3. "type": "library",
  4. "description": "This is the PHP port of Hamcrest Matchers",
  5. "keywords": ["test"],
  6. "license": "BSD",
  7. "authors": [
  8. ],
  9. "autoload": {
  10. "classmap": ["hamcrest"]
  11. },
  12. "autoload-dev": {
  13. "classmap": ["tests", "generator"]
  14. },
  15. "require": {
  16. "php": "^5.3|^7.0"
  17. },
  18. "require-dev": {
  19. "satooshi/php-coveralls": "^1.0",
  20. "phpunit/php-file-iterator": "1.3.3",
  21. "phpunit/phpunit": "~4.0"
  22. },
  23. "replace": {
  24. "kodova/hamcrest-php": "*",
  25. "davedevelopment/hamcrest-php": "*",
  26. "cordoval/hamcrest-php": "*"
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "2.0-dev"
  31. }
  32. }
  33. }