assurrussa / dummy-cache
Dummy cache for Laravel.
Installs: 627
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/assurrussa/dummy-cache
Requires
- php: >=5.5.9
- laravel/framework: 5.*
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2018-08-09 13:38:40 UTC
README
Install packages
useful in developing.
- Added in
composer.json
andcomposer update
"require": {
...
"assurrussa/dummy-cache": "~1.0"
...
or composer require assurrussa/dummy-cache
config/app.php
'providers' => [
...
Assurrussa\DummyCache\DummyCacheServiceProvider::class,
...
config/cache.php
'default' => 'dummy',
...
'dummy' => [
'driver' => 'dummy',
'path' => null,
],