laravel-sqs-fifo-queue
laravel-sqs-fifo-queue copied to clipboard
Adds a Laravel queue driver for Amazon SQS FIFO queues.
This adds copy to the readme indicating event listeners are not currently supported - based on discussion [here](https://github.com/shiftonelabs/laravel-sqs-fifo-queue/issues/11).
Hey! This PR updates the `.travis.yml` config so that the tests can also be run on PHP 8.0 and 8.1. It also runs the tests against Laravel 9 :)
Thank you for your great project. Laravel9 was released February 8th, 2022. So, we plan to use Laravel 9 as a web application in our project. And I have a...
Hello and thank you for your efforts on this package! It's much appreciated. I'm working in Laravel 8 on Vapor and am having some trouble getting the queued notifications to...
I have an event with one of its listeners implementing `ShouldQueue` with connection set to `sqs-fifo` like this: ``` class MyEventListener implements ShouldQueue { public $connection = 'sqs-fifo'; public function...
After upgrading from Laravel 8 to Laravel 9 we upgraded to your latest version but now all the places where we used an integer as messageGroupId are failing. ``` In...
When Laravel process queue, not resolve class from SQS message. The SQS message is: `JSON { "uuid":"1234", "displayName":"offer_status_changed", "job":"offer_status_changed", ... "data":{ "id":71, ... } } ` The job name not...
Hello, notice this issue when updated to latest AWS SDK version ### Environment Laravel 9 PHP 8.2 AWS SDK: 3.273.0 ### AWS config example ``` 'sqs-fifo' => [ 'driver' =>...