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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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

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 if null or not present, will automatically search for storage/key.json.

If you also add like this GOOGLE_PUBSUB_BROADCASTER_CREDENTIALS=storage/google-key.json in your .env, it will search for storage/google-key.json, just a magic use of Str::startsWith documentation.

You can enable auto creation of topic in auto_create_topic (boolean type, default false), BUT make sure your credentials have permission of Pub/Sub Viewer.

You can also override most of all PubSubClient related configuration on override_config EXCEPT projectId:

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

PHP Build Version
Package Version
Requires php Version ^7.1
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jag/laravel-broadcaster-google-pubsub contains the following files

Loading the files please wait ....