#!/usr/bin/env php
<?php

require __DIR__.'/vendor/autoload.php';

use Symfony\Component\Console\Application;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

use Povils\Figlet\Command\FigletCommand;

$application = new Application('figlet', '1.0.0');
$command = new FigletCommand();

$application->add($command);

$application->setDefaultCommand($command->getName(), true);
$application->run();