Files
website-typo3/web/typo3conf/ext/ep_track/Tests/bootstrap.php
T
2018-04-18 17:24:00 +02:00

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/');