Redis configuration.

This commit is contained in:
Taylor Otwell 2015-04-27 15:52:54 -05:00
parent f8da2892bd
commit b7c237397b
1 changed files with 6 additions and 1 deletions

View File

@ -30,11 +30,16 @@
'pusher' => [ 'pusher' => [
'driver' => 'pusher', 'driver' => 'pusher',
'key' => env('PUSHER_KEY'), 'key' => env('PUSHER_KEY'),
'secret' => env('PUSHER_SECRET'), 'secret' => env('PUSHER_SECRET'),
'app_id' => env('PUSHER_APP_ID'), 'app_id' => env('PUSHER_APP_ID'),
], ],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
], ],
]; ];