2017 © Pedro Peláez
 

library laravel-azure-blob-queue

Extending the Laravel queue to support the Microsoft Azure Blob Queue.

image

stayallive/laravel-azure-blob-queue

Extending the Laravel queue to support the Microsoft Azure Blob Queue.

  • Friday, August 26, 2016
  • by stayallive
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Windows Azure Blob Queue driver for Laravel

Installation

Require this package in your composer.json:, (*1)

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

Add the following pear repository in your composer.json required by the Azure SDK:, (*2)

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

Run composer update!, (*3)

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

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

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

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

Contribution

You can contribute to this package by opening issues/pr's. Enjoy!, (*8)

The Versions

26/08 2016

dev-master

9999999-dev

Extending the Laravel queue to support the Microsoft Azure Blob Queue.

  Sources   Download

MIT

The Requires

 

laravel queue azure blob

26/08 2016

dev-analysis-zOLBBJ

dev-analysis-zOLBBJ

Extending the Laravel queue to support the Microsoft Azure Blob Queue.

  Sources   Download

MIT

The Requires

 

laravel queue azure blob

25/08 2014

v1.0.0

1.0.0.0

Extending the Laravel queue to support the Microsoft Azure Blob Queue.

  Sources   Download

MIT

The Requires

 

laravel queue azure blob