{
    "name": "spiritix/lada-cache",
    "type": "library",
    "description": "A Redis based, automated and scalable database caching layer for Laravel",
    "license": "MIT",
    "keywords": ["php","laravel","cache","caching","redis","database","eloquent","model"],
    "authors": [
        {
            "name": "Matthias Isler",
            "email": "mi@matthias-isler.ch"
        }
    ],
    "require": {
        "php": ">=7.1",
        "illuminate/support": "~5.7",
        "illuminate/database": "~5.7",
        "illuminate/redis": "~5.7",
        "predis/predis": "~1.0"
    },
    "require-dev": {
        "phpunit/phpunit": "~7.0",
        "codeclimate/php-test-reporter": "dev-master",
        "orchestra/testbench": "~3.7",
        "laracasts/testdummy": "~2.3",
        "mockery/mockery": "^1.0"
    },
    "suggest": {
        "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
        "barryvdh/laravel-debugbar": "Provides debug information about the cache"
    },
    "autoload": {
        "psr-4": {
            "Spiritix\\LadaCache\\": "src/Spiritix/LadaCache/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Spiritix\\LadaCache\\Tests\\": "tests/",
            "Spiritix\\LadaCache\\Tests\\Database\\": "database/"
        }
    },
    "minimum-stability": "stable"
}
