Skip to content

Instantly share code, notes, and snippets.

@lemesdaniel
Created August 11, 2015 20:17
Show Gist options
  • Save lemesdaniel/b7882596bef3c0507225 to your computer and use it in GitHub Desktop.
Save lemesdaniel/b7882596bef3c0507225 to your computer and use it in GitHub Desktop.
<?php
return [
'default' => env('BROADCAST_DRIVER', 'fanout'),
'connections' => [
'fanout' => [
'driver' => 'fanout',
'realm_id' => '<my-realm-id>',
'realm_key' => '<my-realm-key>',
'ssl' => true,
'publish_async' => false
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
'log' => [
'driver' => 'log',
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment