composer.json 584 B

123456789101112131415161718192021222324252627282930313233
  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. "files": ["hamcrest/Hamcrest.php"]
  12. },
  13. "autoload-dev": {
  14. "classmap": ["tests", "generator"]
  15. },
  16. "require": {
  17. "php": ">=5.3.2"
  18. },
  19. "require-dev": {
  20. "satooshi/php-coveralls": "dev-master",
  21. "phpunit/php-file-iterator": "1.3.3"
  22. },
  23. "replace": {
  24. "kodova/hamcrest-php": "*",
  25. "davedevelopment/hamcrest-php": "*",
  26. "cordoval/hamcrest-php": "*"
  27. }
  28. }