kingdarkness/lumen-horizon
Dashboard and code-driven configuration for Laravel queues.
9,505
3
| Install | |
|---|---|
composer require kingdarkness/lumen-horizon |
|
| Latest Version: | v5.9.3 |
| PHP: | ^7.3|^8.0 |
| License: | MIT |
| Last Updated: | Mar 29, 2022 |
| Links: | GitHub · Packagist |
Maintainer: KingDarkness
Introduction
Lumen Horizon is based on the official Laravel Horizon (v5.x) package. It provides the same features as original package except the UI. Tested with Lumen 8
Installation
- Important!
Uncomment in your
bootstrap/app.php
$app->withFacades();
$app->withEloquent();
Make sure you register Illuminate\Redis\RedisServiceProvider::class in your boorstrap/app.php file.
$app->register(Illuminate\Redis\RedisServiceProvider::class);
Add in your bootstrap/app.php
$app->configure('app');
- Run composer to add the dependency.
composer require kingdarkness/lumen-horizon
- Publish config
add the
horizon.phpto config/horizon
cp vendor/kingdarkness/horizon-lumen/config/horizon.php config/horizon.php
- register provider in your
bootstrap/app.php
// add provider
$app->register(Laravel\Horizon\HorizonServiceProvider::class);
// add config
$app->configure('horizon');
Official Documentation
Documentation for Horizon can be found on the Laravel website.
Related Packages
bschmitt/laravel-amqp
AMQP wrapper for Laravel and Lumen to publish and consume messages
2,584,068
281
yozaz/laravel-swiftmailer
Laravel and SwiftMailer integration fix for Queued deamon workers
73,125
24