morloderex / batched-pusher-channels
Returns batched pusher auth responses
Requires
- illuminate/broadcasting: ^5.5||^5.6
- illuminate/http: ^5.5||^5.6
- pusher/pusher-php-server: ^3.0
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^3.6
- phpunit/phpunit: ^7.0
This package is not auto-updated.
Last update: 2025-04-27 07:22:58 UTC
README
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.
Installation
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, ];
Change your broadcast provider
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.
Testing
phpunit
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security-related issues, please email michael.lundboel@gmail.com instead of using the issue tracker.
Credits
- Michael Lundbøl (website is coming)
- All Contributors
This package is heavily based on Dirk Bonhomme's awesome Package
License
The MIT License (MIT). Please see License File for more information.