Download the PHP package alesima/laravel-azure-service-bus without Composer

On this page you can find all versions of the php package alesima/laravel-azure-service-bus. 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-azure-service-bus

Laravel Azure Service Bus Queue Driver 🚀

Packagist Coverage Status GitHub issues License

Integrate Azure Service Bus as a queue driver and Pub/Sub module in Laravel, now with support for multiple topics.

This package provides a custom queue driver for Laravel that integrates with Azure Service Bus and adds support for Topics and Subscriptions (Pub/Sub), enabling both queue-based and publish/subscribe messaging models with the ability to manage multiple topics dynamically.


Features 🎯


Installation ⚙️

1. Install the package via Composer:

2. Publish the configuration:

After installing, publish the configuration file to adjust your Azure Service Bus settings.

3. Configure .env file:

In your .env file, set the Azure Service Bus connection details:

4. Define Azure Service Bus Configuration

Update your config/queue.php file to include the following configuration for the Azure Service Bus driver:


5. Register the service provider and the queue manager (optional):

If you are using Lumen, you need to register the service provider in bootstrap/app.php:

Also you might to register the queue manager in config/app.php:


Local Development & Testing with Docker 🐳

For local development and testing, you can use the official PHP 7.4 Docker image to ensure compatibility.

Run the following command to install dependencies using Docker:

How to test:


Usage 🛠️

Queue Operations

Push Jobs onto the Queue ⬆️

You can push jobs to Azure Service Bus using the standard Laravel syntax:

Use later() for Delayed Jobs ⏳

You can schedule jobs to be pushed after a delay using various formats:

Handle Jobs 🚀

When a job is received from the queue, it will be processed as a standard Laravel job:


Pub/Sub Module

The Pub/Sub module enables publishing messages to Azure Service Bus topics and receiving them from subscriptions. This now supports managing multiple topics dynamically.

Publish Messages to a Topic 📢

You can publish a message to a specific topic:

Subscribe to a Specific Topic 🔔

To retrieve messages from a subscription under a specific topic:

Retrieve Messages from Multiple Topics 🔄

To work with multiple topics dynamically:


Compatibility 🧩

This package is compatible with:


Testing ⚡️

You can run tests using PHPUnit:


License 📜

This package is licensed under the MIT License. See LICENSE for more information.


Contributing 🤝

We welcome contributions to make this package even better!

  1. Fork the repository.
  2. Create a new branch.
  3. Make your changes and commit them.
  4. Open a pull request.

Credits 🏆


Attribution

Inspired by https://github.com/goavega-software/laravel-azure-servicebus-topic & https://github.com/pawprintdigital/laravel-queue-raw-sqs


Contact 📬

For any questions, feel free to reach out to us via GitHub Issues or email us at [email protected].


All versions of laravel-azure-service-bus with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
illuminate/container Version ^5.0|^6.0|^7.0|^8.0
illuminate/support Version ^5.0|^6.0|^7.0|^8.0
illuminate/encryption Version ^5.0|^6.0|^7.0|^8.0
illuminate/queue Version ^5.0|^6.0|^7.0|^8.0
microsoft/windowsazure Version ^0.5
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 alesima/laravel-azure-service-bus contains the following files

Loading the files please wait ....