Looking to hire Laravel developers? Try LaraJobs

laravel-azure-blob-queue maintained by stayallive

Description
Extending the Laravel queue to support the Microsoft Azure Blob Queue.
Author
Last update
2016/08/26 15:12 (dev-master)
License
Links
Downloads
1
Tags

Comments
comments powered by Disqus

Windows Azure Blob Queue driver for Laravel

Installation

Require this package in your composer.json:

"stayallive/laravel-azure-blob-queue": "1.*"

Add the following pear repository in your composer.json required by the Azure SDK:

"repositories": [
    {
        "type": "pear",
        "url": "http://pear.php.net"
    }
],

Run composer update!

After composer update is finished you need to add ServiceProvider to your providers array in app/config/app.php:

'Stayallive\LaravelAzureBlobQueue\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.blob',
    'protocol'    => 'https',
    'accountname' => '',
    'key'         => '',
    '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.

This queue driver will not accept a closure, you should use classes to handle the queue messages!

Contribution

You can contribute to this package by opening issues/pr's. Enjoy!