12 lines
385 B
PHP
12 lines
385 B
PHP
<?php
|
|
// Register composer autoloader
|
|
if (!file_exists(__DIR__ . '/../vendor/autoload.php')) {
|
|
throw new \RuntimeException(
|
|
'Could not find vendor/autoload.php, make sure you ran composer.'
|
|
);
|
|
}
|
|
|
|
/** @var Composer\Autoload\ClassLoader $autoloader */
|
|
$autoloader = require __DIR__ . '/../vendor/autoload.php';
|
|
$autoloader->addPsr4('EP\\EpTrack\\Tests\\Unit\\', __DIR__ . '/Unit/');
|