2015-03-20 18:30:45 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2015-04-19 08:52:39 +01:00
|
|
|
* This file is part of Cachet.
|
2015-03-20 18:30:45 -06:00
|
|
|
*
|
2015-04-19 08:52:39 +01:00
|
|
|
* (c) James Brooks <james@cachethq.io>
|
2015-03-20 18:30:45 -06:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Cache Driver
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This defines the cache driver to be used. It may be the name of any
|
|
|
|
| driver set in config/cache.php. Setting it to null will use the driver
|
|
|
|
| you have set as default in config/cache.php. Please note that a driver
|
|
|
|
| that supports cache tags is required.
|
|
|
|
|
|
|
|
|
| Default: null
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'driver' => null,
|
|
|
|
|
|
|
|
];
|