heedworks/laravel-queue-azure

Azure Queue driver for Laravel Queue
522 4
Install
composer require heedworks/laravel-queue-azure
PHP:>=5.3.0
License:MIT
Last Updated:Feb 17, 2014
Links: GitHub  ·  Packagist
Maintainer: nealerickson

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

Related Packages

heedworks/laravel-azure-blob-storage

Laravel wrapper for Azure Blob Storage. Uses Azure library from https://github.c...

20,534 1
squigg/azure-queue-laravel

Laravel Queue Driver for Microsoft Azure Storage Queue

281,793 43
jeffersonlicet/azure-queue-laravel

Laravel 5.4 Queue Driver for Microsoft Azure Storage Queue

32 0
marchie/laravel-queue-azure-restarter

Restart Laravel queue workers on Azure when they fail

304 3
pmatseykanets/artisan-beans

Easily manage your Beanstalkd job queues right from the Laravel artisan command

82,424 42