Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<?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/');
|
||||
Reference in New Issue
Block a user