Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
fb64ee06
Commit
fb64ee06
authored
Nov 18, 2015
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding broadcasting config file
parent
f6e914af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
+52
-0
broadcasting.php
config/broadcasting.php
+52
-0
No files found.
config/broadcasting.php
0 → 100644
View file @
fb64ee06
<?php
return
[
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an event needs to be broadcast. You may set this to
| any of the connections defined in the "connections" array below.
|
*/
'default'
=>
env
(
'BROADCAST_DRIVER'
,
'pusher'
),
/*
|--------------------------------------------------------------------------
| Broadcast Connections
|--------------------------------------------------------------------------
|
| Here you may define all of the broadcast connections that will be used
| to broadcast events to other systems or over websockets. Samples of
| each available type of connection are provided inside this array.
|
*/
'connections'
=>
[
'pusher'
=>
[
'driver'
=>
'pusher'
,
'key'
=>
env
(
'PUSHER_KEY'
),
'secret'
=>
env
(
'PUSHER_SECRET'
),
'app_id'
=>
env
(
'PUSHER_APP_ID'
),
'options'
=>
[
//
],
],
'redis'
=>
[
'driver'
=>
'redis'
,
'connection'
=>
'default'
,
],
'log'
=>
[
'driver'
=>
'log'
,
],
],
];
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment