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

use CleverIt\UBL\Invoice\Command\FatCommand;

use CleverIt\UBL\Invoice\Command\RoCommand;

use CleverIt\UBL\Invoice\Command\RooCommand;
use CleverIt\UBL\Invoice\Command\StubCommand;
use CleverIt\UBL\Invoice\Command\UblRuleCommand;

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

// Create the Application
$application = new Symfony\Component\Console\Application;
$application->add(new StubCommand());
$application->add(new FatCommand());

$application->add(new RoCommand());

$application->add(new RooCommand());
$application->add(new UblRuleCommand());

// Run it
$application->run();