Skip to content

Commit 47d7e2d

Browse files
authored
Merge pull request laravel#3811 from jerguslejko/fix/supported-drivers-docs
List supported drives in cache and broadcasting configs
2 parents 767801a + a20533c commit 47d7e2d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

config/broadcasting.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
| framework when an event needs to be broadcast. You may set this to
1212
| any of the connections defined in the "connections" array below.
1313
|
14+
| Supported: "pusher", "redis", "log"
15+
|
1416
*/
1517

1618
'default' => env('BROADCAST_DRIVER', 'pusher'),

config/cache.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
| using this caching library. This connection is used when another is
1212
| not explicitly specified when executing a given caching function.
1313
|
14+
| Supported: "apc", "array", "database", "file", "memcached", "redis"
15+
|
1416
*/
1517

1618
'default' => env('CACHE_DRIVER', 'file'),

0 commit comments

Comments
 (0)