Add the following line to the composer.json
file:
{
"require": {
"phpgames/hal-helper": "~1.0"
}
}
By default, HAL logo will be shown centered on the screen and without text. To customice the output style please change the constructor parameters:
$hal = new HAL($output);
$hal->sayHello();
$hal = new HAL($output, true, false);
$hal->sayHello();
$hal = new HAL($output, false);
$hal->sayHello();
$hal = new HAL($output, false, false);
$hal->sayHello();
Released under the MIT License attached with this code.