lukaszaleckas / laravel-mysql-queue
There is no license information available for the latest version (dev-main) of this package.
dev-main
2024-10-05 11:58 UTC
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: 2024-12-05 12:22:11 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 ]