13 lines
362 B
Text
13 lines
362 B
Text
|
|
#!/usr/bin/env php
|
||
|
|
<?php
|
||
|
|
|
||
|
|
require __DIR__ . '/../autoload.php';
|
||
|
|
|
||
|
|
use Lvl0\AnagramFinder\TUI\Commands\FindAnagramWordsCommand;
|
||
|
|
use Symfony\Component\Console\Application;
|
||
|
|
|
||
|
|
$application = new Application('Anagram Finder', '1.0.0');
|
||
|
|
$application->addCommand(new FindAnagramWordsCommand());
|
||
|
|
$application->setDefaultCommand('anagram:find-words');
|
||
|
|
$application->run();
|