This package allows batch the authentication requests from pusher in one request using Dirk Bonhomme authorizor plugin.
Once installed you will see authorization requests towards your channels in batches.
This package can be used in Laravel 5.5 or higher.
You can install the package via composer:
composer require morloderex/batched-pusher-channels
In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php
file:
'providers' => [
// ...
Morloderex\PusherBatch\Providers\BatchedPusherProvider::class,
];
Once installed through composer by the require command. You then change the BROADCAST_PROVIDER environment variable to be BatchedPusher
And you should be all set.
phpunit
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security-related issues, please email michael.lundboel@gmail.com instead of using the issue tracker.
- Michael Lundbøl (website is coming)
- All Contributors
This package is heavily based on Dirk Bonhomme's awesome Package
The MIT License (MIT). Please see License File for more information.