#!/usr/bin/env php
<?php
$p = getcwd();
$limit = 10;
while ($limit-- > 0 && !is_dir($p.'/vendor')) {
    $p = dirname($p);
}

if (file_exists($filename = $p.'/vendor/autoload.php')) {
    require($filename);
}

require(__DIR__.'/../src/cmd-charm-testing.php');
