#!/usr/bin/env php
<?php
declare(strict_types=1);

if (file_exists(__DIR__ . '/../../../../autoload.php')) {
    require_once __DIR__ . '/../../../../autoload.php';
} elseif (file_exists(__DIR__ . '/../../vendor/autoload.php')) {
    // Required for local testing
    require_once __DIR__ . '/../../vendor/autoload.php';
} else {
    throw new RuntimeException('Autoload not found');
}

require __DIR__ . DIRECTORY_SEPARATOR . 'run-paraunit.inc.php';
