Rackbeat / laravel-sqs-fifo-queue by lasserafn
forked from shiftonelabs/laravel-sqs-fifo-queue

Adds a Laravel queue driver for Amazon SQS FIFO queues.
26,548
0
2
Package Data
Maintainer Username: lasserafn
Maintainer Contact: patrick@shiftonelabs.com (Patrick Carlo-Hickman)
Package Create Date: 2018-07-10
Package Last Update: 2022-11-26
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:16:29
Package Statistics
Total Downloads: 26,548
Monthly Downloads: 636
Daily Downloads: 13
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

laravel-sqs-fifo-queue

Forked from: https://github.com/shiftonelabs/laravel-sqs-fifo-queue

Change

FIFO queues does not accept a delay per job, which the original package prevents by throwing an exception, which is good. Issue is, that in Laravel, Mailables always use delay, even if null, so queueing mailables in a FIFO queue was not possible.

This fork simply ignores the delay.