insites-consulting / azure-service-bus-queue
Requires
- php: ^7.1
- ext-json: *
- illuminate/queue: ^7.0|^8.0
- illuminate/support: ^7.0|^8.0
- microsoft/windowsazure: ^0.5
Requires (Dev)
- orchestra/testbench: ^5.0
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2025-03-15 01:17:00 UTC
README
Overview
The library provides support for Service Bus queues. The package should be auto discovered on Laravel > 5.6
Installation
Require this package with composer:
composer require insites-consulting/azure-service-bus-queue
Run composer update!
After composer update has, finished you need to add the following to the connection
array in app/config/queue.php
, and fill out your own connection data from the Azure Management portal:
'azureservicebus' => [
'driver' => 'azureservicebus',
'endpoint' => 'https://*.servicebus.windows.net',
'shared_access_key_name' => '',
'shared_access_key' => 'primary key',
'queue' => '<queue name>',
]
Usage
Once you completed the configuration you can use Laravel Queue API. If you do not know how to use Queue API, please refer to the official Laravel documentation.
From laravel Queue documentation, something like this should work:
$payload = new \stdClass(); $payload->id = 1; $payload->name = 'hello world'; ProcessPodcast::dispatch($payload)->onConnection('azureservicebus')->onQueue('queue-name');
artisan worker should be started as per Laravel's official documentation:
php artisan queue:listen azureservicebus --queue=queue-name
Attribution
Inspired by https://github.com/goavega-software/laravel-azure-servicebus-topic & https://github.com/pawprintdigital/laravel-queue-raw-sqs