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