Rename folder and root command

This commit is contained in:
Michael Barz
2020-10-06 13:41:34 +02:00
parent 48de91ea2c
commit 9ff3ffe19f
165 changed files with 5 additions and 5 deletions
@@ -0,0 +1,14 @@
<?php
$pathToCore = \getenv('PATH_TO_CORE');
if ($pathToCore === false) {
$pathToCore = "../core";
}
require_once $pathToCore . '/tests/acceptance/features/bootstrap/bootstrap.php';
$classLoader = new \Composer\Autoload\ClassLoader();
$classLoader->addPsr4(
"", $pathToCore . "/tests/acceptance/features/bootstrap", true
);
$classLoader->register();