12 lines
357 B
PHP
Executable file
12 lines
357 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require __DIR__ . '/../autoload.php';
|
|
|
|
use Lvl0\Countdown\TUI\Commands\FindNumbersCommand;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application('Countdown Numbers Solver', '0.1.3');
|
|
$application->addCommand(new FindNumbersCommand());
|
|
$application->setDefaultCommand('countdown:numbers');
|
|
$application->run();
|