heedworks/laravel-queue-azure

Azure Queue driver for Laravel Queue

dev-master 2014-02-17 02:38 UTC

This package is not auto-updated.

Last update: 2024-03-16 12:59:48 UTC


README

#Installation

Add the following to your composer.json file to include this package as a dependency

{
    "require": {
        "heedworks/laravel-queue-azure": "dev-master"
    },          
    "repositories": [
        {
            "type": "pear",
            "url": "http://pear.php.net"
        }
    ],
    "minimum-stability": "dev"
}

Register the Azure Queue service provider by adding it to the providers array in the app/config/app.php file.

Heedworks\LaravelQueueAzure\LaravelQueueAzureServiceProvider

#Configuration

Configure your connection in app/config/queue.php:

'azure' => array(
    'driver' => 'azure',    
    'queue' => 'your-queue-name',
    'protocol' => 'your-protocol-choice', // http or https
    'account' => 'your-account-name',
    'key' => 'your-key'
)

#Usage For information on Laravel Queues please refer to the official documentation: http://laravel.com/docs/queues