You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://packagist.org/packages/madewithlove/illuminate-psr-cache-bridge)
To start using a `Psr\Cache\CacheItemPoolInterface` typed implementation that stores data in Laravel's configured cache, add this to a service provider:
12
+
13
+
```
14
+
use Illuminate\Contracts\Cache\Repository;
15
+
use Madewithlove\IlluminatePsrCacheBridge\Laravel\CacheItemPool;
16
+
use Psr\Cache\CacheItemPoolInterface;
17
+
18
+
$this->app->share(CacheItemPoolInterface::class, function () {
0 commit comments