phpunit tools symlink fix, phpunit boostrap update

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

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive"> <phive xmlns="https://phar.io/phive">
<phar name="phpunit" version="^10.3.5" installed="10.3.5" location="./tools/phpunit" copy="false"/> <phar name="phpunit" version="^9.6" installed="9.6.13" location="./tools/phpunit" copy="false"/>
<phar name="phpcs" version="^3.7.2" installed="3.7.2" location="./tools/phpcs" copy="false"/> <phar name="phpcs" version="^3.7.2" installed="3.7.2" location="./tools/phpcs" copy="false"/>
<phar name="phpcbf" version="^3.7.2" installed="3.7.2" location="./tools/phpcbf" copy="false"/> <phar name="phpcbf" version="^3.7.2" installed="3.7.2" location="./tools/phpcbf" copy="false"/>
<phar name="psalm" version="^5.15.0" installed="5.15.0" location="./tools/psalm" copy="false"/> <phar name="psalm" version="^5.15.0" installed="5.15.0" location="./tools/psalm" copy="false"/>

View File

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

View File

@@ -1 +1 @@
/home/clemens/.phive/phars/phpunit-10.3.5.phar /home/clemens/.phive/phars/phpunit-9.6.13.phar