Site du proximo, utilisé pour gérer le stock.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

broadcasting.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. 'cluster' => env('PUSHER_APP_CLUSTER'),
  34. 'useTLS' => true,
  35. ],
  36. ],
  37. 'redis' => [
  38. 'driver' => 'redis',
  39. 'connection' => 'default',
  40. ],
  41. 'log' => [
  42. 'driver' => 'log',
  43. ],
  44. 'null' => [
  45. 'driver' => 'null',
  46. ],
  47. ],
  48. ];