composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "doctrine/cache",
  3. "type": "library",
  4. "description": "Caching library offering an object-oriented API for many cache backends",
  5. "keywords": ["cache", "caching"],
  6. "homepage": "http://www.doctrine-project.org",
  7. "license": "MIT",
  8. "authors": [
  9. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  10. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  11. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  12. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  13. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
  14. ],
  15. "require": {
  16. "php": ">=5.3.2"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": ">=3.7",
  20. "satooshi/php-coveralls": "~0.6",
  21. "predis/predis": "~1.0"
  22. },
  23. "conflict": {
  24. "doctrine/common": ">2.2,<2.4"
  25. },
  26. "autoload": {
  27. "psr-0": { "Doctrine\\Common\\Cache\\": "lib/" }
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "1.5.x-dev"
  32. }
  33. }
  34. }