PHP CLI Application.
- PHP >= 5.6
composer require "fastd/console:3.0.x-dev" -vvv
use FastD\Console\Console;
include_once __DIR__ . '/tests/OutputHelloCommand.php';
include_once __DIR__ . '/tests/OutputWorldCommand.php';
$console = new Console();
$console->addCommand(new OutputWorldCommand());
$console->addCommand(new OutputHelloCommand());
$console->run();
phpunit