There is no license information available for the latest version (dev-main) of this package.

dev-main 2021-07-02 08:56 UTC

This package is not auto-updated.

Last update: 2024-03-23 13:44:43 UTC


README

⌛ Gearaman Provider in Laravel

This is to make your Gearman easy to use in the laravel framework

Requirement

  1. PHP >= 7.3
  2. illuminate/queue => 7.* | 8.*

Installing

$ composer require laravel-widgets/Gearman -vvv

Optional, you can publish the config file:

$ php artisan vendor:publish --provider="LaravelWidgets\Gearman\ServiceProvider" --tag=config

Change app config config/app.config

    'default' => 'gearman',

    'connections' => [
        'driver' => 'gearman',
        'host'   => 'localhost',
        'queue'  => 'default',
        'port'   => '4730',
        'timeout' => 1000, //milliseconds
    ]