laravel-lumen/horizon
最新稳定版本:v1.0.7
Composer 安装命令:
composer require laravel-lumen/horizon
包简介
Dashboard and code-driven configuration for Laravel-lumen queues.
README 文档
README
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 laravel-lumen/horizon
- Publish config
add the
horizon.phpto config/horizon
cp vendor/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.
统计信息
- 总下载量: 4.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-12-27