2017 © Pedro Peláez
 

library laravel-queue-azure

Azure Queue driver for Laravel Queue

image

heedworks/laravel-queue-azure

Azure Queue driver for Laravel Queue

  • Monday, February 17, 2014
  • by nealerickson
  • Repository
  • 1 Watchers
  • 5 Stars
  • 495 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Azure Queue driver for Laravel

Installation

Add the following to your composer.json file to include this package as a dependency, (*1)

{
    "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., (*2)

Heedworks\LaravelQueueAzure\LaravelQueueAzureServiceProvider

Configuration

Configure your connection in app/config/queue.php:, (*3)

'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, (*4)

The Versions

17/02 2014

dev-master

9999999-dev

Azure Queue driver for Laravel Queue

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel queue azure windows