dev-master
9999999-devPubNub broadcasting events driver for Laravel
MIT
The Requires
by Christopher Thomas
Wallogit.com
2017 © Pedro Peláez
PubNub broadcasting events driver for Laravel
composer require cwt137/laravel-pubnub-broadcast-driver
Add the service provider Cwt137\PubnubDriver\PubnubServiceProvider in your config/app.php file. Then in the .env file, add the following API keys:, (*1)
PUBNUB_PUBLISH_KEY={YOUR_PUBNUB_PUBLISH_KEY}
PUBNUB_SUBSCRIBE_KEY={YOUR_PUBNUB_SUBSCRIBE_KEY}
Where {YOUR_PUBNUB_PUBLISH_KEY} and {YOUR_PUBNUB_SUBSCRIBE_KEY} are your PubNub publish and subscribe keys, respectively., (*2)
Next in your config/broadcasting.php file, under the connections array, add the PubNub settings:, (*3)
'pubnub' => [
'driver' => 'pubnub',
'publish_key' => env('PUBNUB_PUBLISH_KEY'),
'subscribe_key' => env('PUBNUB_SUBSCRIBE_KEY'),
],
You probably want to change the defaut driver to pubnub., (*4)
You can use php artisan make:event {Name} to make a Laravel Event. Inside the event, implement the ShouldBroadcast interface by declaring a broadcastOn method. In that method you should return an array of channels you want to broadcast on., (*5)
PubNub broadcasting events driver for Laravel
MIT