LaravelPackages.net
Acme Inc.
Toggle sidebar
vzool/horizon

Dashboard and code-driven configuration for Laravel queues.

161
3
v1.2.4
About vzool/horizon

vzool/horizon is a Laravel package for dashboard and code-driven configuration for laravel queues.. It currently has 3 GitHub stars and 161 downloads on Packagist (latest version v1.2.4). Install it with composer require vzool/horizon. Discover more Laravel packages by vzool or browse all Laravel packages to compare alternatives.

Last updated

Build Status Total Downloads Latest Stable Version License

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.

Setup

  1. Install by composer (required PHP 7.1+)
composer require vzool/horizon
  1. Add the following to config/app.php
'providers' => [

    // ..

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

    // ..

    "Horizon" => Vzool\Horizon\Horizon::class,
]
  1. Do artisan command

php artisan vendor:publish

  1. Add the follow to app\Providers\AppServiceProvider.php in order to secure /horizon end point.
<?php

namespace App\Providers;

// ..

use Vzool\Horizon\Horizon;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        // ..

        // Add Horizon authentication [IGNORE IN DEV]
        
        Horizon::auth(function ($request) {
        
            // allow admins  only to see this page 
            // return \Auth::user()->is_admin;
            // or return any true / false
        });
    }

    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }
}

  1. Browse /horizon and have fun with your X-Ray Vision. ;)

Official Documentation

Documentation for Horizon can be found on the Laravel website.

License

Laravel Horizon is open-sourced software licensed under the MIT license

Comments