tempest/console

The console component provides a way to build commands within the framework or standalone command-line applications.

1.0-alpha2 2024-10-03 04:52 UTC

This package is auto-updated.

Last update: 2024-10-22 08:00:31 UTC


README

composer require tempest/console
final readonly class Hello
{
    public function __construct(private Console $console) {}

    #[ConsoleCommand]
    public function world(): void
    {
        $this->console->writeln('Hello World!');
    }
}

Get started here

Join the Tempest Discord