Looking to hire Laravel developers? Try LaraJobs

laravel-sqs-fifo maintained by culturalinfusion

Description
Laravel SQS FIFO
Last update
2025/04/21 07:18 (dev-master)
License
Downloads
23 588
Tags

Comments
comments powered by Disqus

License

Laravel SQS FIFO

Table of contents

Intro

Laravel SQS FIFO provides a queue driver for Laravel.

Version Compatibility

Package Version Laravel Version
2.x Laravel 11.x, 12.x
1.x Laravel 8.x, 9.x, 10.x

How to use

  1. Run composer require culturalinfusion/laravel-sqs-fifo
  2. Update config/queue.php of the application with sample from config/queue.php of package (Currently Laravel does not support automated config merge for multi-dimensional configuration array, so needs to be done manually):
  • SQS endpoint structure is https://sqs.${AWS_REGION}.amazonaws.com/${prefix}/${queue_name_prefix}${queue}${suffix}.fifo
  • No need to add .fifo to queue name in application side, package takes care of it.

Testing

To run tests using PHPUnit, execute ./vendor/bin/phpunit .