Looking to hire Laravel developers? Try LaraJobs

laravel-sqs-fifo maintained by maqe

Description
Laravel package that enables support for SQS FIFO Queue
Author
Last update
2017/07/21 07:57 (dev-master)
License
Links
Downloads
137 765
Tags

Comments
comments powered by Disqus

Laravel SQS FIFO Queue

Adds support for SQS FIFO Queue to Laravel.

Setup

Add package dependency to your project:

composer require maqe/laravel-sqs-fifo

Before Laravel 5.5, add package's service provider to your project's config/app.php:

'providers' => [
    Maqe\LaravelSqsFifo\LaravelSqsFifoServiceProvider::class,
],

This package is auto discoverable by Laravel 5.5.

Configure

You can then create an SQS FIFO queue connection by adding it to your config/queue.php file:

'connections' => [

    ...

    'my_sqs_fifo' => [
        'driver' => 'sqsfifo',
        'key'    => env('AWS_ACCESS_KEY_ID'),
        'secret' => env('AWS_SECRET_ACCESS_KEY'),
        'queue'  => env('AWS_SQS_URL'),
        'region' => env('AWS_SQS_REGION'),
    ],
],

Then you may use this FIFO queue as the default by setting in config/queue.php:

    'default' => 'my_sqs_fifo',

Or call/listen to the FIFO queue specifically:

Queue::connection('my_sqs_fifo')->pushOn('my_queue_name', new MyQueueJob); // Laravel 5.1

(new MyQueueJob)->onConnection('my_sqs_fifo'); // Laravel 5.2+
php artisan queue:listen connection
php artisan queue:work connection