lukaszaleckas / laravel-mysql-queue
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lukaszaleckas/laravel-mysql-queue
Requires
- php: ^8.1
- ext-json: *
- laravel/framework: ^10.0|^11.0
Requires (Dev)
- mockery/mockery: ^1.5
- nunomaduro/larastan: ^2.0
- orchestra/testbench: ^8.0
- phpstan/phpstan-mockery: ^1.0
- phpunit/phpunit: ^9.5
- slevomat/coding-standard: ^6.4
- squizlabs/php_codesniffer: ^3.6
This package is auto-updated.
Last update: 2025-10-05 14:22:34 UTC
README
Installation
- Run:
composer require lukaszaleckas/laravel-mysql-queue
Service provider should be automatically registered, if not add
LaravelMysqlQueue\MysqlQueueServiceProvider::class
to application's your app.php
.
- Add Mysql's connection to your
queue.php
config:
'mysql' => [ 'driver' => 'mysql', 'default_queue' => 'default', 'connection' => 'mysql', 'lock_name_prefix' => 'mysql_queue_', 'lock_timeout' => 60 ]