Http Queue Driver for Laravel (Post to server)
movilizame/laravel-http-queue is a Laravel package for http queue driver for laravel (post to server).
It currently has 0 GitHub stars and 12 downloads on Packagist (latest version v0.1.0).
Install it with composer require movilizame/laravel-http-queue.
Discover more Laravel packages by movilizame
or browse all Laravel packages to compare alternatives.
Last updated
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.