morloderex/batched-pusher-channels

Returns batched pusher auth responses

1.0.3 2018-07-14 12:36 UTC

This package is not auto-updated.

Last update: 2024-05-12 02:41:05 UTC


README

Build Status

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

This package is heavily based on Dirk Bonhomme's awesome Package

License

The MIT License (MIT). Please see License File for more information.