ferrisbane / lightning-cache
A Laravel package to extend caching functionality.
Installs: 74
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/ferrisbane/lightning-cache
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2025-09-27 15:48:28 UTC
README
A package to extend Laravel's cache functionality
Installation
To install through composer you can either use composer require ferrisbane/lightning-cache
(while inside your project folder) or include the package in your composer.json
.
"ferrisbane/lightning-cache": "0.1.*"
Then run either composer install
or composer update
to download the package.
To use the package with Laravel 5 add the service provider to the list of service providers in config/app.php
.
'providers' => [ ... Ferrisbane\Cache\Laravel5ServiceProvider::class ... ];