Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

58 lignes
1.5 KiB

  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Default Broadcaster
  6. |--------------------------------------------------------------------------
  7. |
  8. | This option controls the default broadcaster that will be used by the
  9. | framework when an event needs to be broadcast. You may set this to
  10. | any of the connections defined in the "connections" array below.
  11. |
  12. | Supported: "pusher", "redis", "log", "null"
  13. |
  14. */
  15. 'default' => env('BROADCAST_DRIVER', 'null'),
  16. /*
  17. |--------------------------------------------------------------------------
  18. | Broadcast Connections
  19. |--------------------------------------------------------------------------
  20. |
  21. | Here you may define all of the broadcast connections that will be used
  22. | to broadcast events to other systems or over websockets. Samples of
  23. | each available type of connection are provided inside this array.
  24. |
  25. */
  26. 'connections' => [
  27. 'pusher' => [
  28. 'driver' => 'pusher',
  29. 'key' => env('PUSHER_APP_KEY'),
  30. 'secret' => env('PUSHER_APP_SECRET'),
  31. 'app_id' => env('PUSHER_APP_ID'),
  32. 'options' => [
  33. //
  34. ],
  35. ],
  36. 'redis' => [
  37. 'driver' => 'redis',
  38. 'connection' => 'default',
  39. ],
  40. 'log' => [
  41. 'driver' => 'log',
  42. ],
  43. 'null' => [
  44. 'driver' => 'null',
  45. ],
  46. ],
  47. ];