assurrussa/dummy-cache

This package is abandoned and no longer maintained. No replacement package was suggested.

Dummy cache for Laravel.

1.0 2017-03-11 08:40 UTC

This package is not auto-updated.

Last update: 2018-08-09 13:38:40 UTC


README

Install packages

useful in developing.

  1. Added in composer.json and composer update
        "require": {
             ...
            "assurrussa/dummy-cache": "~1.0"
            ...

or composer require assurrussa/dummy-cache

  1. config/app.php
    'providers' => [
        ...
        Assurrussa\DummyCache\DummyCacheServiceProvider::class,
        ...
  1. config/cache.php
    'default' => 'dummy',
    ...
    'dummy' => [
        'driver' => 'dummy',
        'path'   => null,
    ],

Finish!