composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "doctrine/cache",
  3. "type": "library",
  4. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  5. "keywords": [
  6. "php",
  7. "cache",
  8. "caching",
  9. "abstraction",
  10. "redis",
  11. "memcached",
  12. "couchdb",
  13. "xcache",
  14. "apcu"
  15. ],
  16. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  17. "license": "MIT",
  18. "authors": [
  19. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  20. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  21. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  22. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  23. {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}
  24. ],
  25. "require": {
  26. "php": "~7.1 || ^8.0"
  27. },
  28. "require-dev": {
  29. "alcaeus/mongo-php-adapter": "^1.1",
  30. "mongodb/mongodb": "^1.1",
  31. "phpunit/phpunit": "^7.0",
  32. "predis/predis": "~1.0",
  33. "doctrine/coding-standard": "^6.0"
  34. },
  35. "suggest": {
  36. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  37. },
  38. "conflict": {
  39. "doctrine/common": ">2.2,<2.4"
  40. },
  41. "autoload": {
  42. "psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" }
  43. },
  44. "autoload-dev": {
  45. "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "1.9.x-dev"
  50. }
  51. }
  52. }