movilizame/laravel-http-queue

Http Queue Driver for Laravel (Post to server)

Maintainers

Package info

github.com/movilizame/laravel-http-queue

pkg:composer/movilizame/laravel-http-queue

Statistics

Installs: 12

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2018-04-04 23:16 UTC

This package is not auto-updated.

Last update: 2026-03-21 04:51:07 UTC


README

Install

Require the latest version of this package with Composer

composer require movilizame/laravel-http-queue

Add the Service Provider to the providers array in config/app.php

Movilizame\Queue\HttpServiceProvider::class,

You should now be able to use the http driver in config/queue.php.

'connections' => array(
    ...
    'http' => array(
        'driver' => 'http',
        'host' => 'http://localhost:8080/worker'
    ),
    ...
}

Set the default to http, either by changing to config or setting QUEUE_DRIVER in your .env file to http.