PHP code example of unoapp-dev / laravel-pubnub

1. Go to this page and download the library: Download unoapp-dev/laravel-pubnub 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/ */

    

unoapp-dev / laravel-pubnub example snippets


composer 

'providers' => [
    'Unoappdev\PubnubDriver\PubnubServiceProvider',
]

$app->register(Unoappdev\PubnubDriver\PubnubServiceProvider::class);

'pubnub' => [
    'driver' => 'pubnub',
    'publish_key' => env('PUBNUB_PUBLISH_KEY'),
    'subscribe_key' => env('PUBNUB_SUBSCRIBE_KEY'),
],