tempest/console

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

Maintainers

Package info

github.com/tempestphp/tempest-console

pkg:composer/tempest/console

Statistics

Installs: 49 244

Dependents: 6

Suggesters: 0

Stars: 73

v3.9.0 2026-04-01 06:15 UTC

This package is auto-updated.

Last update: 2026-04-01 16:32:49 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