Download the PHP package jag/laravel-broadcaster-google-pubsub without Composer
On this page you can find all versions of the php package jag/laravel-broadcaster-google-pubsub. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jag/laravel-broadcaster-google-pubsub
More information about jag/laravel-broadcaster-google-pubsub
Files in jag/laravel-broadcaster-google-pubsub
Package laravel-broadcaster-google-pubsub
Short Description Google PubSub on Laravel Broadcaster
License MIT
Informations about the package laravel-broadcaster-google-pubsub
Google PubSub (Laravel Broadcaster)
Laravel Broadcaster using Google PubSub
⚠️ NOTE: Currently on development, changes may drastically occur without further notice
Requirements
- PHP
^7.1
- Laravel/Lumen
^7.0
(support older version?: issue#1) - gRPC (Optional but increase performance)
Getting Started
Install Composer
Add Service Provider
Since Laravel 5.5 Auto Discovery is enabled by default, but in case you disable or uses Lumen Framework, add the service provider:
On config/app.php
If Lumen however, on your bootstrap/app.php
Configuration
In Laravel & Lumen
Make sure your BROADCAST_DRIVER
is google
On your .env
In Lumen
In case you are using Lumen, you need to copy broadcasting configuration usually found at vendor/laravel/lumen-framework/config/broadcasting.php
to your config/broadcasting.php
, then add these configuration:
You can also find these configuration at vendor/jag/laravel-broadcaster-google-pubsub/config/google.php
Configuration
GOOGLE_PUBSUB_BROADCASTER_CREDENTIALS
ifnull
or not present, will automatically search forstorage/key.json
.If you also add like this
GOOGLE_PUBSUB_BROADCASTER_CREDENTIALS=storage/google-key.json
in your.env
, it will search forstorage/google-key.json
, just a magic use ofStr::startsWith
documentation.You can enable auto creation of topic in
auto_create_topic
(boolean type, default false
), BUT make sure your credentials have permission ofPub/Sub Viewer
.You can also override most of all PubSubClient related configuration on
override_config
EXCEPTprojectId
:
Key | Description | Type | Default |
---|---|---|---|
project_id | PubSub Project ID | String | env('GOOGLE_PUBSUB_BROADCASTER_PROJECT_ID', env('GOOGLE_PROJECT_ID', env('GCLOUD_PROJECT'))) |
credentials_path | Path for credentials | String | env('GOOGLE_PUBSUB_BROADCASTER_CREDENTIALS', env('GOOGLE_APPLICATION_CREDENTIALS')) |
auto_create_topic | Create Topic if non-existing | Boolean | env('GOOGLE_PUBSUB_BROADCASTER_AUTO_CREATE_TOPIC', false), |
override_config | Override configuration except projectId | Array | [] |
Usage
To use these in your Events, make sure to implement Illuminate\Contracts\Broadcasting\ShouldBroadcast
and add the topic on broadcastOn()
.
On your channel, the topic name will be based on channel's name
But you can also override this by $topic
public property.
Created and Developed by Jay Are Galinada
All versions of laravel-broadcaster-google-pubsub with dependencies
ext-json Version *
google/cloud-pubsub Version ^1.24
illuminate/broadcasting Version ^7.0
illuminate/config Version ^7.0
illuminate/contracts Version ^7.0
illuminate/log Version ^7.0
illuminate/support Version ^7.0
jag/laravel-contracts-google-pubsub Version ^0.1.3
jag/laravel-exceptions-google-pubsub Version ^0.1.2