cwt137 / laravel-pubnub-broadcast-driver
PubNub broadcasting events driver for Laravel
Installs: 744
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/cwt137/laravel-pubnub-broadcast-driver
Requires
- laravel/framework: ~5.1
- pubnub/pubnub: ~3.7
This package is not auto-updated.
Last update: 2025-10-29 15:20:10 UTC
README
Install Via Composer
composer require cwt137/laravel-pubnub-broadcast-driver
Setup Laravel
Add the service provider Cwt137\PubnubDriver\PubnubServiceProvider in your config/app.php file. Then in the .env file, add the following API keys:
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.
Next in your config/broadcasting.php file, under the connections array, add the PubNub settings:
'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.
Using Driver
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.