Installation
Install the PHP / Laravel driver via Composer:
composer require babelqueue/laravel
Requirements
- PHP
^8.2 - Laravel 11 or 12
- A running broker for your driver — Redis, RabbitMQ, Amazon SQS
(
babelqueue-sqs, needsaws/aws-sdk-php) or Apache ActiveMQ/Artemis (babelqueue-artemis, needsstomp-php/stomp-php)
Publish the configuration
Publish the package config to config/babelqueue.php:
php artisan vendor:publish --tag=babelqueue-config
This gives you the URN → handler map, the on_unknown_urn policy and the
dead-letter settings you’ll wire up in Configuration.
Next: Configuration.