Closed Henning256 closed 8 months ago
Hi. Package depends on some other packages that are not really often update to latest versions of psr/*
, unfortunately.
Try to delete composer.lock
file - it seems that main issue is psr/*
packages and in most cases packages support several versions of psr/*
. I'm currently on Laravel 10.24 with php_redis
extension (cache/redis-adapter
package) and everything works fine, so problem might be in composer.lock
.
Also consider using php_redis
extension and cache/redis-adapter
- extension is much faster and more stable than predis
(I've tested and moved to extension and never had any issues for years now).
I'm going to try to move to Symfony cache in future - it seems that tagging works like expected there, but I had no time to research this.
Just follow README and manually add the require in composer.json should be fine.
"require": {
"swayok/alternative-laravel-cache": "6.1.*"
}
And don't forget to enable PHP ZIP extension before install.
Hi,
I went into trouble installing your packet. I updated my Laravel 10 project (laravel/framework v10.24.0)
and tried to install your package
but it is not possible because of conflicting requirements. Is this something I would have do deal with after every other update if I manage to install this into my project?
Don't get me wrong. The original implementation does not make sense. I just have to take responsibility in my company for each additional dependency I bring in...
Cheers Henning