performing / horizon-thread-pool
Run Laravel Horizon workers inside an Async thread pool.
Package info
github.com/performingdigital/horizon-thread-pool
pkg:composer/performing/horizon-thread-pool
dev-main
2026-06-22 13:24 UTC
Requires
- php: ^8.4
- illuminate/support: ^12.0
- laravel/horizon: ^5.43
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