mmanos / laravel-sqspushqueue by mmanos

An AWS SQS push queue driver for Laravel 4.
1,331
3
2
Package Data
Maintainer Username: mmanos
Maintainer Contact: mark@airpac.com (Mark Manos)
Package Create Date: 2014-12-24
Package Last Update: 2016-06-21
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:03:19
Package Statistics
Total Downloads: 1,331
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 2
Total Open Issues: 0

AWS SQS push queue driver for Laravel 4

This package provides a laravel queue driver with support for AWS SQS push queues. This technique is used by the AWS Elastic Beanstalk worker tier environments.

Installation Via Composer

Add this to you composer.json file, in the require object:

"mmanos/laravel-sqspushqueue": "dev-master"

After that, run composer install to install the package.

Add the service provider to app/config/app.php, within the providers array.

'providers' => array(
	// ...
	'Mmanos\SqsPushQueue\SqsPushQueueServiceProvider',
)

Configuration

Update the existing queue.php config file and change the sqs driver to be sqspush. This driver will use the existing sqs config properites (key, secret, etc...). The main queue driver should still be sqs.