topcu/dumber
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()
Related Packages
erirk/paypalpayment
laravel-paypalpayment is simple package help you process direct credit card paym...
0
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
628,058,007
9,707