File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,20 @@ __Добавление пакета через composer__
99
1010` composer require umbrellio/laravel-heavy-jobs `
1111
12- __ Миграция настроек пакета. __
12+ __ Миграция настроек пакета __
1313
1414` php artisan vendor:publish --tag heavy-jobs-config `
1515
16+ __ Проверка зависимостей__
17+
18+ Пакет работает только с редис-клиентом ` php-redis ` , соответственно нужно проверить что в ` config/database.php `
19+ значится что-то вроде
20+
21+ ```
22+ 'redis' => [
23+ 'client' => env('REDIS_CLIENT', 'phpredis'),
24+ ```
25+
1626## Documentation
1727
1828Для того что бы изменить хранилище payload'a джобки, у неё необходимо указать интерфейс
Original file line number Diff line number Diff line change 2828 "require" : {
2929 "php" : " >=7.2" ,
3030 "ext-json" : " *" ,
31+ "ext-redis" : " *" ,
3132 "laravel/framework" : " ^5.8|^6.0|^7.0|^8.0"
3233 },
3334 "require-dev" : {
You can’t perform that action at this time.
0 commit comments