PHP code example of jag / laravel-broadcaster-google-pubsub
1. Go to this page and download the library: Download jag/laravel-broadcaster-google-pubsub 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/ */
jag / laravel-broadcaster-google-pubsub example snippets
// App\Events\NewlyCreatedProductEvent.php
...
class NewlyCreatedProductEvent implements ShouldBroadcast {
...
public function broadcastOn()
{
return [
'text-based-topic-name',
new ProductChannel()
];
}
}
// App\Broadcasting\ProductChannel
...
class ProductChanel extends Channel
{
public function __construct()
{
parent::__construct('product-topic');
}
}
// App\Broadcasting\ProductChannel
...
class ProductChanel extends Channel
{
// or the fully name topic eg. projects/project-id/topics/topic-id
public $topic = 'override-topic-name';
public function __construct()
{
parent::__construct('product-topic');
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.