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

use phpDocumentor\AutoloaderLocator;
use phpDocumentor\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;

set_time_limit(0);

require __DIR__ . '/../src/phpDocumentor/AutoloaderLocator.php';
$loader = AutoloaderLocator::autoload();

$application = new Application();
$application->run();
