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 226

Dependents: 6

Suggesters: 0

Stars: 73

v3.7.0 2026-03-24 13:10 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