mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 05:36:11 +01:00
Daniel Siepmann
dfb3f897e7
Instead of hardcoding and tight coupling of relation resolving, we now provide a dataprocessor instead. Therefore you need to configure resolving for each indexed type. This resolves #149 and #147.
11 lines
333 B
PHP
11 lines
333 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';
|
|
}
|
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
require_once dirname(dirname(__DIR__)) . '/' . $filePath;
|