Package Data | |
---|---|
Maintainer Username: | willwashburn |
Package Create Date: | 2014-05-21 |
Package Last Update: | 2018-12-13 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-19 03:05:11 |
Package Statistics | |
---|---|
Total Downloads: | 516 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 28 |
Total Forks: | 3 |
Total Open Issues: | 0 |
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'
),
);