tempest/console

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

Installs: 38 794

Dependents: 5

Suggesters: 0

Security: 0

Stars: 72

Watchers: 5

Forks: 2

pkg:composer/tempest/console

v2.3.1 2025-10-07 07:18 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