composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  30. "doctrine/coding-standard": "^9",
  31. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  32. "cache/integration-tests": "dev-master",
  33. "symfony/cache": "^4.4 || ^5.4 || ^6",
  34. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  35. },
  36. "conflict": {
  37. "doctrine/common": ">2.2,<2.4"
  38. },
  39. "autoload": {
  40. "psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" }
  41. },
  42. "autoload-dev": {
  43. "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
  44. },
  45. "config": {
  46. "allow-plugins": {
  47. "dealerdirect/phpcodesniffer-composer-installer": true
  48. }
  49. }
  50. }