mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 09:16:12 +01:00
10 lines
298 B
PHP
10 lines
298 B
PHP
|
<?php
|
||
|
|
||
|
$filePath = '.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php';
|
||
|
|
||
|
if (getenv('TYPO3_VERSION') === '~7.6') {
|
||
|
$filePath = '.Build/vendor/typo3/cms/typo3/sysext/core/Build/UnitTestsBootstrap.php';
|
||
|
}
|
||
|
|
||
|
require_once dirname(dirname(__DIR__)) . '/' . $filePath;
|