{
    "name":              "cache/redis-adapter",
    "description":       "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
    "type":              "library",
    "license":           "MIT",
    "minimum-stability": "stable",
    "keywords":          [
        "cache",
        "psr-6",
        "phpredis",
        "redis",
        "tag"
    ],
    "homepage":          "http://www.php-cache.com/en/latest/",
    "authors":           [
        {
            "name":     "Aaron Scherer",
            "email":    "aequasi@gmail.com",
            "homepage": "https://github.com/aequasi"
        },
        {
            "name":     "Tobias Nyholm",
            "email":    "tobias.nyholm@gmail.com",
            "homepage": "https://github.com/nyholm"
        }
    ],
    "require":           {
        "php":                      "^5.5 || ^7.0",
        "psr/cache":                "^1.0",
        "cache/adapter-common":     "^0.3",
        "cache/taggable-cache":     "^0.4",
        "cache/hierarchical-cache": "^0.3"
    },
    "require-dev":       {
        "phpunit/phpunit":         "^4.0 || ^5.1",
        "cache/integration-tests": "^0.11"
    },
    "suggest":          {
        "ext-redis": "The extension required to use this pool."
    },
    "provide":           {
        "psr/cache-implementation": "^1.0"
    },
    "autoload":          {
        "psr-4":                 {
            "Cache\\Adapter\\Redis\\": ""
        },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    }
}
