faulker / laravel5-rackspace-cloudqueue
Rackspace CloudQueue driver for Laravel 5 Queue
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Installs: 14 363
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 5
pkg:composer/faulker/laravel5-rackspace-cloudqueue
Requires
- illuminate/queue: 5.*
- rackspace/php-opencloud: 1.*
This package is not auto-updated.
Last update: 2020-06-05 01:17:08 UTC
README
NOTE: This is a fork of Russell Todd's Laravel 5.0 branch (https://github.com/npmweb/laravel-rackspace-cloudqueue)
##Installation
Install via Composer
Require this package in your composer.json and run composer update:
"faulker/laravel5-rackspace-cloudqueue": "~1.0"
Add Configuration
// 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] (default: internalURL) publicURL if connection from remote network or internalURL if connection from RackSpace network. ] ), );,
Add Service Provider
/// config/app.php return array( 'providers' => array( 'Faulker\RackspaceCloudQueue\RackspaceCloudQueueServiceProvider' ), );