The pretty console component for Hyperf.
composer require friendsofhyperf/pretty-console<?phpuseFriendsOfHyperf\PrettyConsole\Traits\Prettyable;
useHyperf\Command\CommandasHyperfCommand;
useHyperf\Command\Annotation\Command;
#[Command]
class FooCommand extends HyperfCommand
{
use Prettyable;
publicfunction function handle()
{
$this->components->info('Your message here.');
}
}