{
    "name": "neos/cache",
    "description": "Neos Cache Framework",
    "type": "library",
    "homepage": "http://flow.neos.io",
    "license": ["MIT"],
    "require": {
        "php": "^8.2",
        "psr/simple-cache": "^2.0 || ^3.0",
        "psr/cache": "^2.0 || ^3.0",
        "psr/log": "^2.0 || ^3.0",
        "neos/utility-files": "self.version",
        "neos/utility-pdo": "self.version",
        "neos/utility-opcodecache": "self.version"
    },
    "require-dev": {
        "mikey179/vfsstream": "^1.6.10",
        "phpunit/phpunit": "~9.1"
    },
    "autoload": {
        "psr-4": {
            "Neos\\Cache\\": "Classes"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Neos\\Cache\\Tests\\": "Tests"
        }
    },
    "provide": {
        "psr/cache-implementation": "2.0.0 || 3.0.0",
        "psr/simple-cache-implementation": "2.0.0 || 3.0.0"
    },
    "extra": {
        "neos": {
            "package-key": "Neos.Cache"
        }
    },
    "suggest": {
        "ext-memcache": "If you have a memcache server and want to use it for caching.",
        "ext-memcached": "Alternative, if you have a memcache server and want to use it for caching.",
        "ext-redis": "If you have a redis server and want to use it for caching.",
        "ext-igbinary": "The igbinary extension is a replacement for the standard PHP serializer"
    }
}
