composer.json 1.7 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 || ^8.0 || ^9.0",
  32. "predis/predis": "~1.0",
  33. "doctrine/coding-standard": "^8.0",
  34. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  35. "cache/integration-tests": "dev-master",
  36. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  37. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  38. },
  39. "suggest": {
  40. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  41. },
  42. "conflict": {
  43. "doctrine/common": ">2.2,<2.4"
  44. },
  45. "autoload": {
  46. "psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" }
  47. },
  48. "autoload-dev": {
  49. "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
  50. }
  51. }