friendsofhyperf / pretty-console
The pretty console component for Hyperf.
v3.2.0
2026-06-07 13:32 UTC
Requires
- hyperf/command: ~3.2.0
- hyperf/contract: ~3.2.0
- hyperf/stringable: ~3.2.0
- hyperf/support: ~3.2.0
- hyperf/tappable: ~3.2.0
- nunomaduro/termwind: ^1.13 || ^2.0
This package is auto-updated.
Last update: 2026-06-07 13:47:44 UTC
README
The pretty console component for Hyperf.
Installation
composer require friendsofhyperf/pretty-console
Usage
<?php use FriendsOfHyperf\PrettyConsole\Traits\Prettyable; use Hyperf\Command\Command as HyperfCommand; use Hyperf\Command\Annotation\Command; #[Command] class FooCommand extends HyperfCommand { use Prettyable; public function function handle() { $this->components->info('Your message here.'); } }
