phpunit tools symlink fix, phpunit boostrap update

This commit is contained in:
Clemens Schwaighofer
2023-10-04 15:01:23 +09:00
parent 128d6533fc
commit 4edacc0d13
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
<?php
$set = 0;
foreach (['/../..', '/..', '/../../www', '/../www'] as $src) {
foreach (['/../../www', '/../www', '/../..', '/..', '/../../src', '/../src'] as $src) {
if (is_file(dirname(__DIR__) . $src . '/vendor/autoload.php')) {
require dirname(__DIR__) . $src . '/vendor/autoload.php';
$set = 1;