team-reflex / onoi-illuminate
Laravel/Illuminate cache driver for onoi/cache.
v1.0
2017-01-24 10:58 UTC
Requires
- php: >=5.4.0
- illuminate/cache: >=5.0
- onoi/cache: ^1.2
This package is auto-updated.
Last update: 2024-10-29 04:42:07 UTC
README
Laravel/Illuminate cache driver for onoi/cache.
Install
composer require team-reflex/onoi-illuminate
Usage
Either pull the Illuminate cache repository from the container or typehint an instance.
use Illuminate\Cache\Repository; use Reflex\OnoiIlluminate\IlluminateCache; $cache = new IlluminateCache(app(Repository::class));