#!/usr/bin/env php
<?php
/**
 * @author    Nicolas Dupont <nicolas@akeneo.com>
 * @copyright 2015 Akeneo SAS (http://www.akeneo.com)
 * @license   http://opensource.org/licenses/MIT MIT
 */

if (file_exists($file = __DIR__.'/../vendor/autoload.php')) {
    require_once $file;
} else {
    require_once __DIR__.'/../../../autoload.php';
}

use Akeneo\CouplingDetector\Console\Application;
$application = new Application();
$application->run();
