Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 374 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 374 Bytes

Onoi-Illuminate

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));