rackbeat / laravel-sqs-fifo-queue
Adds a Laravel queue driver for Amazon SQS FIFO queues.
Package info
github.com/Rackbeat/laravel-sqs-fifo-queue
pkg:composer/rackbeat/laravel-sqs-fifo-queue
1.3
2021-02-08 12:31 UTC
Requires
- php: >=5.5.0
- aws/aws-sdk-php: ~3.0
- illuminate/queue: >=4.1
- ramsey/uuid: ~3.0||^4.0
Requires (Dev)
- illuminate/encryption: >=4.1
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
- shiftonelabs/codesniffer-standard: 0.*
- squizlabs/php_codesniffer: 2.*
- vlucas/phpdotenv: ~2.2
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
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.