| Package Data | |
|---|---|
| Maintainer Username: | KingDarkness |
| Maintainer Contact: | taylor@laravel.com (Taylor Otwell) |
| Package Create Date: | 2020-04-13 |
| Package Last Update: | 2022-03-29 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-03 15:19:50 |
| Package Statistics | |
|---|---|
| Total Downloads: | 8,222 |
| Monthly Downloads: | 164 |
| Daily Downloads: | 0 |
| Total Stars: | 3 |
| Total Watchers: | 2 |
| Total Forks: | 0 |
| Total Open Issues: | 1 |
Lumen Horizon is based on the official Laravel Horizon (v3.7.2) package. It provides the same features as original package except the UI. Tested with Lumen 5.8
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');
composer require kingdarkness/lumen-horizon
horizon.php to config/horizon cp vendor/kingdarkness/horizon-lumen/config/horizon.php config/horizon.php
bootstrap/app.php
// add provider
$app->register(Laravel\Horizon\HorizonServiceProvider::class);
// add config
$app->configure('horizon');
Documentation for Horizon can be found on the Laravel website.