MathExecutor/tests/bootstrap.php
Bruce Wells b7b46bfc47
Phpcs fixer (#103)
* Configuring PHP CS Fixer

Dropping PHP 7,3 support

* Fixing merge issue
2022-04-26 17:31:50 -04:00

12 lines
284 B
PHP

<?php
$vendorDir = __DIR__ . '/../../..';
if (\file_exists($file = $vendorDir . '/autoload.php')) {
require_once $file;
} elseif (\file_exists($file = './vendor/autoload.php')) {
require_once $file;
} else {
throw new \RuntimeException('Not found composer autoload');
}