composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "cache/redis-adapter",
  3. "type": "library",
  4. "description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
  5. "keywords": [
  6. "cache",
  7. "psr-6",
  8. "phpredis",
  9. "redis",
  10. "tag"
  11. ],
  12. "homepage": "http://www.php-cache.com/en/latest/",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Aaron Scherer",
  17. "email": "aequasi@gmail.com",
  18. "homepage": "https://github.com/aequasi"
  19. },
  20. {
  21. "name": "Tobias Nyholm",
  22. "email": "tobias.nyholm@gmail.com",
  23. "homepage": "https://github.com/nyholm"
  24. }
  25. ],
  26. "require": {
  27. "php": "^5.6 || ^7.0 || ^8.0",
  28. "cache/adapter-common": "^1.0",
  29. "cache/hierarchical-cache": "^1.0",
  30. "psr/cache": "^1.0",
  31. "psr/simple-cache": "^1.0"
  32. },
  33. "provide": {
  34. "psr/cache-implementation": "^1.0",
  35. "psr/simple-cache-implementation": "^1.0"
  36. },
  37. "require-dev": {
  38. "cache/integration-tests": "^0.16",
  39. "phpunit/phpunit": "^5.7.21"
  40. },
  41. "suggest": {
  42. "ext-redis": "The extension required to use this pool."
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.1-dev"
  47. }
  48. },
  49. "autoload": {
  50. "psr-4": {
  51. "Cache\\Adapter\\Redis\\": ""
  52. },
  53. "exclude-from-classmap": [
  54. "/Tests/"
  55. ]
  56. },
  57. "minimum-stability": "dev",
  58. "prefer-stable": true
  59. }