2017 © Pedro Peláez
 

library dumber

Yet another dummy cache driver for laravel

image

topcu/dumber

Yet another dummy cache driver for laravel

  • Friday, May 12, 2017
  • by topcu
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

Dumber Laravel Dummy Cache Driver

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

Installation

Via Composer, (*2)

    $ composer require topcu/dumber

Add the service provider to the providers array in config/app.php., (*3)

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

Usage

In your config/cache.php change add a store using dumber as driver., (*4)

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

And set your default store if needed., (*5)

    'default' => 'dumber',

Enabling Logging

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

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

app/config/dumber.php :, (*7)

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

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

The Versions

12/05 2017

dev-master

9999999-dev

Yet another dummy cache driver for laravel

  Sources   Download

MIT

The Requires

 

by H. Çağrı TOPÇU

12/05 2017

2.0.4

2.0.4.0

Yet another dummy cache driver for laravel

  Sources   Download

MIT

The Requires

 

by H. Çağrı TOPÇU

12/05 2017

2.0.3

2.0.3.0

Yet another dummy cache driver for laravel

  Sources   Download

MIT

The Requires

 

by H. Çağrı TOPÇU

12/05 2017

2.0.2

2.0.2.0

Yet another dummy cache driver for laravel

  Sources   Download

MIT

The Requires

 

by H. Çağrı TOPÇU

12/05 2017

2.0.1

2.0.1.0

Yet another dummy cache driver for laravel

  Sources   Download

MIT

The Requires

 

by H. Çağrı TOPÇU

12/05 2017

2.0

2.0.0.0

Yet another dummy cache driver for laravel

  Sources   Download

MIT

The Requires

 

by H. Çağrı TOPÇU

01/02 2015

1.0

1.0.0.0

Yet another dummy cache driver for laravel

  Sources   Download

MIT

The Requires

 

by H. Çağrı TOPÇU