Skip to content

topcu/dumber

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dumber Laravel Dummy Cache Driver

Another Dummy Cache driver, which can log every call made to the driver if enabled by config.

Installation

Via Composer

    $ composer require topcu/dumber

Add the service provider to the providers array in config/app.php.

    # ...
    'providers' => array(
        # ...
        'Topcu\Dumber\DumberServiceProvider',
    ),
    # ...

Usage

In your config/cache.php change add a store using dumber as driver.

    # ...
    'stores' => [
    # ...
        'dumber' => [
            'driver' => 'dumber',
        ],
    # ...

And set your default store if needed.

    'default' => 'dumber',

Enabling Logging

If you wish to enable logging, you need do publish package config file and set log_enabled to true

    php artisan vendor:publish --provider="Topcu\Dumber\DumberServiceProvider"

app/config/dumber.php :

    <?php
    return [
        "log_enabled" => true,
        "log_level" => "notice"
    ];

You can also enable/disable logging on-the-fly with $cache->enableLog() and $cache->disableLog()

About

Yet another dummy cache driver for laravel

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages