-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: broadcasting.php required modifications #79
Comments
Did you run the |
Yes I did EDIT: I noticed in the code that you attempt to inject it, you should however add to the documentation that this is required for it to work |
@tarreislam Something has to be mistaken here - reverb would be using the pusher connection/driver. |
@tarreislam Ignore me - trying to get this running in a Laravel 10 upgraded project as well - seems you are correct about the broadcasting config - this is only added with new applications, not upgraded ones. Block should be: 'reverb' => [
'driver' => 'reverb',
'key' => env('REVERB_APP_KEY'),
'secret' => env('REVERB_APP_SECRET'),
'app_id' => env('REVERB_APP_ID'),
'options' => [
'host' => env('REVERB_HOST'),
'port' => env('REVERB_PORT', 443),
'scheme' => env('REVERB_SCHEME', 'https'),
'useTLS' => env('REVERB_SCHEME', 'https') === 'https',
],
'client_options' => [
// Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html
],
], |
Laravel ver
10->11
PHP VER
8.3
Description+Reproduce
Before I could get reverb to broadcast eventsI had to make sure the configuration was done in
config/broadcasting.php
I just copied pusher and changed name and driver to
reverb
I am comming from laravel 10 to laravel 11
Otherwise I would get
The text was updated successfully, but these errors were encountered: