mmanos/laravel-sqspushqueue

An AWS SQS push queue driver for Laravel 4.
1,334 3
Install
composer require mmanos/laravel-sqspushqueue
Latest Version:v1.0.0
PHP:>=5.3.0
License:MIT
Last Updated:Jun 21, 2016
Links: GitHub  ·  Packagist
Maintainer: mmanos

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.

Related Packages

lavatech/laravel-aws-worker

Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk...

2,497
dusterio/laravel-aws-worker

Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk...

5,944,225 307
aramirez92/laravel-elasticbeanstalk-queue-worker

Deploy your Laravel application as a queue worker on AWS ElasticBeanstalk

11 0
foxxmd/laravel-elasticbeanstalk-queue-worker

Deploy your Laravel application as a queue worker on AWS ElasticBeanstalk

96,566 53
shiftonelabs/laravel-sqs-fifo-queue

Adds a Laravel queue driver for Amazon SQS FIFO queues.

6,930,980 154