Rackspace CloudQueue driver for Laravel Queue
tailwind/laravel-rackspace-cloudqueue is a Laravel package for rackspace cloudqueue driver for laravel queue.
It currently has 2 GitHub stars and 517 downloads on Packagist (latest version v2.0.2).
Install it with composer require tailwind/laravel-rackspace-cloudqueue.
Discover more Laravel packages by tailwind
or browse all Laravel packages to compare alternatives.
Last updated
Note: Currently there is only support for Laravel 4.2.
##Installation
Require this package in your composer.json and run composer update:
"tailwind/laravel-rackspace-cloudqueue": "~2.0"
/// config/queue.php
return array(
'default' => 'rackspace',
'connections' => array(
'rackspace' => [
'driver' => 'rackspace',
'queue' => 'default_tube', /// the default queue
'endpoint' => 'US', /// US or UK
'username' => 'SOME_RACKSPACE_USERNAME',
'apiKey' => 'SOME_RACKSPACE_API_KEY',
'region' => 'ORD', /// THE REGION WHERE THE QUEUE IS SETUP
'urlType' => 'internalURL', /// Optional, defaults to internalURL
]
),
);,
/// config/app.php
return array(
'providers' => array(
'Tailwind\RackspaceCloudQueue\RackspaceCloudQueueServiceProvider'
),
);