nealerickson / laravel-queue-azure by nealerickson

Azure Queue driver for Laravel Queue
522
4
2
Package Data
Maintainer Username: nealerickson
Maintainer Contact: neal@heedworks.com (Neal Erickson)
Package Create Date: 2014-02-15
Package Last Update: 2014-02-17
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-25 03:03:06
Package Statistics
Total Downloads: 522
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 4
Total Watchers: 2
Total Forks: 0
Total Open Issues: 1

Azure Queue driver for Laravel

#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