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

define('APP_START', microtime(true));

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

use Symfony\Component\Console\Application;

$application = new Application();

// ... register commands

$application->run();