dev-master
9999999-devAzure Queue driver for Laravel Queue
MIT
The Requires
- php >=5.3.0
- microsoft/windowsazure *
The Development Requires
laravel queue azure windows
Wallogit.com
2017 © Pedro Peláez
Azure Queue driver for Laravel Queue
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
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'
)
For information on Laravel Queues please refer to the official documentation: http://laravel.com/docs/queues, (*4)
Azure Queue driver for Laravel Queue
MIT
laravel queue azure windows