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 306

Dependents: 6

Suggesters: 0

Stars: 72

v3.11.2 2026-05-28 11:57 UTC

This package is auto-updated.

Last update: 2026-05-28 12:00:14 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