PHP code example of webpatser / resonate-delivery

1. Go to this page and download the library: Download webpatser/resonate-delivery library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

webpatser / resonate-delivery example snippets


'default' => env('BROADCAST_DRIVER', 'resonate-delivery'),

'connections' => [
    // ... keep your existing 'reverb' connection as-is

    'resonate-delivery' => [
        'driver' => 'resonate-delivery',
        'underlying' => 'reverb',
    ],
],

'plugins' => [
    \Webpatser\ResonateDelivery\MessageReplayPlugin::class,
],
bash
php artisan vendor:publish --tag=resonate-delivery-config