stayallive/laravel-azure-servicebus-queue

This package is abandoned and no longer maintained. No replacement package was suggested.

Extending the Laravel queue to support the Microsoft Azure Service Bus Queue.

v2.0.0 2016-08-20 19:26 UTC

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!