PHP CLI Application.
- PHP >= 5.6
composer require "fastd/console:3.0.x-dev" -vvvuseFastD\Console\Console;
include_once__DIR__ . '/tests/OutputHelloCommand.php';
include_once__DIR__ . '/tests/OutputWorldCommand.php';
$console = newConsole();
$console->addCommand(newOutputWorldCommand());
$console->addCommand(newOutputHelloCommand());
$console->run();phpunit