Allow setting of the cache driver via an env var.

This commit is contained in:
James Brooks
2015-03-09 08:50:21 +00:00
parent ac4a5c926d
commit 2ec4859da9
5 changed files with 49 additions and 42 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ return [
|
*/
'driver' => 'apc',
'driver' => getenv('CACHE_DRIVER') ?: 'apc',
/*
|--------------------------------------------------------------------------