performing/horizon-thread-pool

Run Laravel Horizon workers inside an Async thread pool.

Maintainers

Package info

github.com/performingdigital/horizon-thread-pool

pkg:composer/performing/horizon-thread-pool

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-06-22 13:24 UTC

This package is auto-updated.

Last update: 2026-06-22 13:27:32 UTC


README

⚠️ Mostly AI generated and very experimental.

You just need to install the package in your laravel application and run horizon.

composer require performing/horizon-thread-pool

You need of course php true async, with docker it would be something like this:

services:
  queue:
    image: ghcr.io/performingdigital/php-async:latest
    command: php -d memory_limit=-1 artisan horizon
    working_dir: /app
    healthcheck:
        disable: true
    volumes:
        - ".:/app"
    depends_on:
        - mysql
        - redis