PHPackages                             thedigit/horizon - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. thedigit/horizon

ActiveLibrary[Queues &amp; Workers](/categories/queues)

thedigit/horizon
================

Dashboard and code-driven configuration for Laravel queues. Laravel 5.4

v0.1.2(7y ago)013MITPHPPHP &gt;=7.1.0

Since Jul 26Pushed 7y ago1 watchersCompare

[ Source](https://github.com/Thedigit/horizon)[ Packagist](https://packagist.org/packages/thedigit/horizon)[ RSS](/packages/thedigit-horizon/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (11)Versions (5)Used By (0)

[![](https://camo.githubusercontent.com/04fdfc56666b267f1cda0a9fa331b9ad63d5c683f566dc6e31091dae00225952/68747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d686f72697a6f6e2e737667)](https://camo.githubusercontent.com/04fdfc56666b267f1cda0a9fa331b9ad63d5c683f566dc6e31091dae00225952/68747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d686f72697a6f6e2e737667)

[![Build Status](https://camo.githubusercontent.com/7baa445d5923df07a4420cf26aa1a197a9f5b727d27e88d8e15062f8d3734f2b/68747470733a2f2f7472617669732d63692e6f72672f6c61726176656c2f686f72697a6f6e2e737667)](https://travis-ci.org/laravel/horizon)[![Total Downloads](https://camo.githubusercontent.com/8429df12a294a693f0ac4058adf839d241564b1f7c2e75df537577c5614e3ecf/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f686f72697a6f6e2f642f746f74616c2e737667)](https://packagist.org/packages/laravel/horizon)[![Latest Stable Version](https://camo.githubusercontent.com/263cfc3ec99862054ef969960491f014e329ce7aa9458c617412aaff69c67905/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f686f72697a6f6e2f762f737461626c652e737667)](https://packagist.org/packages/laravel/horizon)[![License](https://camo.githubusercontent.com/fec4a5eda0660473b400cf30eaf7aa64d7bcd8d977a8a5898b5ee2814528046b/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2f686f72697a6f6e2f6c6963656e73652e737667)](https://packagist.org/packages/laravel/horizon)

Introduction
------------

[](#introduction)

Horizon provides a beautiful dashboard and code-driven configuration for your Laravel powered Redis queues. Horizon allows you to easily monitor key metrics of your queue system such as job throughput, runtime, and job failures.

All of your worker configuration is stored in a single, simple configuration file, allowing your configuration to stay in source control where your entire team can collaborate.

laravel 5.4 compatible

Setup
-----

[](#setup)

1. Install by composer (required *PHP 7.1+*)

```
composer require thedigit/horizon
```

2. Add the following to `config/app.php`

```
'providers' => [

    // ..

    Thedigit\Horizon\HorizonServiceProvider::class,
],
'aliases' => [

    // ..

    "Horizon" => Thedigit\Horizon\Horizon::class,
]
```

3. Do `artisan` command

```
php artisan vendor:publish
```

4. Add the follow to `app\Providers\AppServiceProvider.php` in order to secure `/horizon` end point.

```
