heedworks / laravel-queue-azure
Azure Queue driver for Laravel Queue
dev-master
2014-02-17 02:38 UTC
Requires
- php: >=5.3.0
- microsoft/windowsazure: *
Requires (Dev)
- illuminate/config: 4.1.*
- illuminate/queue: 4.1.*
- illuminate/support: 4.1.*
This package is not auto-updated.
Last update: 2024-11-23 16:50:31 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