Download the PHP package ratheeps/laravel-pub-sub-messaging without Composer

On this page you can find all versions of the php package ratheeps/laravel-pub-sub-messaging. 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-pub-sub-messaging

Laravel Pub/Sub Messaging with AWS

Simple extension to the Illuminate/Queue queue system used in Laravel and Lumen.

Using this connector allows SQS messages originating from a SNS subscription to be worked on with Illuminate\Queue\Jobs\SqsJob.

This is especially useful in a miroservice architecture where multiple services subscribe to a common topic with their queues and publish an event to SNS.

Amazon SQS & SNS Extended Client Library

The Amazon SQS Extended Client Library for Laravel enables you to manage Amazon SQS message payloads with Amazon S3. This is especially useful for storing and retrieving messages with a message payload size greater than the current SQS limit of 256 KB, up to a maximum of 2 GB. Specifically, you can use this library to:

Requirements

Installation

  1. First create a disk that will hold all of your large SQS payloads.

We highly recommend you use a private bucket when storing SQS payloads. Payloads can contain sensitive information and should never be shared publicly.

  1. Run composer require ratheeps/laravel-pub-sub-messaging to install the package.

  2. Then, add the following queue settings to your queue.php file.

4 Then, add the following disk settings to your filesystems.php file.

  1. You can optionally publish the config file with php artisan vendor:publish --provider="Ratheeps\PubSubMessaging\PubSubMessagingServiceProvider" --tag="config" this command Then, modify the following pub sub settings to your pub-sub-messaging.php file.

  2. You'll need to configure .env file

  3. Boot up your queues and profit without having to worry about SQS's 256KB limit :)

Consuming Event

Create a job like below to handle the event and then map that job to SNS topic in the pub-sub-messaging.php config file

Published event

Diagram

This diagram will be describing how your microservices are communicating with help of this package Diagrams

References

Feedback


All versions of laravel-pub-sub-messaging with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0|>=8.0
aws/aws-sdk-php Version ^3.189.0
league/flysystem Version ^1.1
illuminate/container Version ^v7.0.0|^v8.0.0
illuminate/contracts Version ^v7.0.0|^v8.0.0
illuminate/filesystem Version ^v7.0.0|^v8.0.0
illuminate/queue Version ^v7.0.0|^v8.0.0
illuminate/support Version ^v7.0.0|^v8.0.0
ext-json Version *
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 ratheeps/laravel-pub-sub-messaging contains the following files

Loading the files please wait ....