heedworks / laravel-queue-azure
Azure Queue driver for Laravel Queue
Installs: 522
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/heedworks/laravel-queue-azure
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: 2025-10-25 21:07:46 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