phptest

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

namespace Taeluf {
    $vendorAutoload = getcwd().'/vendor/autoload.php';
    if (is_file($vendorAutoload)){
        include_once($vendorAutoload);
    }
    // for backward compatibility
    class Tester extends \Tlf\Tester{}
}

namespace Taeluf\Tester {
    $dir = getcwd();
    $cli = new \Tlf\Tester\NewCli($dir, array_slice($argv,1));
    $cli->run();
}