stayallive / laravel-azure-servicebus-queue
Extending the Laravel queue to support the Microsoft Azure Service Bus Queue.
Requires
- php: >=5.6.4
- illuminate/container: 5.2.*
- illuminate/encryption: 5.2.*
- illuminate/support: 5.2.*
- microsoft/windowsazure: ^0.4
This package is auto-updated.
Last update: 2020-03-04 16:16:36 UTC
README
Installation
Require this package in your composer.json
:
"stayallive/laravel-azure-servicebus-queue": "2.*"
Run composer update!
After composer update is finished you need to add ServiceProvider to your providers
array in app/config/app.php
:
'Stayallive\LaravelAzureServicebusQueue\Support\Serviceprovider',
add the following to the connection
array in app/config/queue.php
, set your default
connection to azure
and fill out your own connection data from the Azure Management portal:
'azure' => array(
'driver' => 'azure.servicebus',
'endpoint' => 'https://*.servicebus.windows.net',
'secret' => '',
'secretissuer' => 'owner',
'queue' => ''
)
Usage
Once you completed the configuration you can use Laravel Queue API. If you used other queue drivers you do not need to change anything else. If you do not know how to use Queue API, please refer to the official Laravel documentation.
Contribution
You can contribute to this package by opening issues/pr's. Enjoy!