#!/usr/bin/env php
<?php
error_reporting(0);
if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
    require __DIR__ . '/../vendor/autoload.php';
} elseif (file_exists(__DIR__ . '/../../../autoload.php')) {
    require __DIR__ . '/../../../autoload.php';
} else {
    fwrite(STDERR, 'ERROR: Composer dependencies not properly set up! Run "composer install"' . PHP_EOL);
    exit(1);
}

use Benemohamed\Console\Application;

$app = new Application();

$app->run();