team-reflex/onoi-illuminate

Laravel/Illuminate cache driver for onoi/cache.

v1.0 2017-01-24 10:58 UTC

This package is auto-updated.

Last update: 2024-03-29 03:20:37 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));