Browse Source

List supported drives in cache and broadcasting configs

Jerguš Lejko 7 years ago
parent
commit
a20533c511
2 changed files with 4 additions and 0 deletions
  1. 2 0
      config/broadcasting.php
  2. 2 0
      config/cache.php

+ 2 - 0
config/broadcasting.php

@@ -11,6 +11,8 @@ return [
     | framework when an event needs to be broadcast. You may set this to
     | any of the connections defined in the "connections" array below.
     |
+    | Supported: "pusher", "redis", "log"
+    |
     */
 
     'default' => env('BROADCAST_DRIVER', 'pusher'),

+ 2 - 0
config/cache.php

@@ -11,6 +11,8 @@ return [
     | using this caching library. This connection is used when another is
     | not explicitly specified when executing a given caching function.
     |
+    | Supported: "apc", "array", "database", "file", "memcached", "redis"
+    |
     */
 
     'default' => env('CACHE_DRIVER', 'file'),