composer.json
{
"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.3",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/redis": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"mockery/mockery": "^1.3",
"barryvdh/laravel-debugbar": "^3.2"
},
"suggest": {
"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/",
"Spiritix\\LadaCache\\Tests\\Database\\Factories\\": "database/factories"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Spiritix\\LadaCache\\LadaCacheServiceProvider"
]
}
}
}