Updated config after upgrade to Laravel 5.2

This commit is contained in:
James Cole
2016-01-08 15:59:21 +01:00
parent 180ec52798
commit 013e16e15f
12 changed files with 271 additions and 151 deletions

28
config/cache.php Normal file → Executable file
View File

@@ -26,38 +26,38 @@ return [
|
*/
'stores' => [
'stores' => [
'apc' => [
'driver' => 'apc'
'apc' => [
'driver' => 'apc',
],
'array' => [
'driver' => 'array'
'array' => [
'driver' => 'array',
],
'database' => [
'driver' => 'database',
'table' => 'cache',
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
],
'file' => [
'file' => [
'driver' => 'file',
'path' => storage_path() . '/framework/cache',
'path' => storage_path('framework/cache'),
],
'memcached' => [
'driver' => 'memcached',
'servers' => [
[
'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100
'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
@@ -74,6 +74,6 @@ return [
|
*/
'prefix' => 'laravel',
'prefix' => 'laravel',
];