composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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. },
  22. "conflict": {
  23. "doctrine/common": ">2.2,<2.4"
  24. },
  25. "autoload": {
  26. "psr-0": { "Doctrine\\Common\\Cache\\": "lib/" }
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.4.x-dev"
  31. }
  32. }
  33. }