From 13642d59d996c11f5707f360f326ce32815e0dca Mon Sep 17 00:00:00 2001 From: KodeStar Date: Wed, 8 Jul 2026 20:40:49 +0100 Subject: [PATCH] Fix committed PHPUnit vendor path casing for case-sensitive CI PHPUnit 12 renamed PHPT -> Phpt (src/Framework/Exception/PhptAssertionFailedError.php and the src/Runner/Phpt/ directory). Because this repo commits vendor/ and the macOS dev filesystem is case-insensitive, git kept the old-case paths in the index while Composer wrote the new case to disk, so the change went undetected locally. On CI's case-sensitive Linux filesystem the checked-out old-case files don't satisfy PHPUnit's require of the new-case names and 'php artisan test' fatals before running. Re-track these 8 files under their correct case. --- ...{PHPTAssertionFailedError.php => PhptAssertionFailedError.php} | 0 .../Runner/{PHPT => Phpt}/Exception/InvalidPhptFileException.php | 0 .../Exception/PhptExternalFileCannotBeLoadedException.php | 0 .../{PHPT => Phpt}/Exception/UnsupportedPhptSectionException.php | 0 vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/Parser.php | 0 vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/Renderer.php | 0 vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/TestCase.php | 0 .../phpunit/phpunit/src/Runner/{PHPT => Phpt}/templates/phpt.tpl | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename vendor/phpunit/phpunit/src/Framework/Exception/{PHPTAssertionFailedError.php => PhptAssertionFailedError.php} (100%) rename vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/Exception/InvalidPhptFileException.php (100%) rename vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/Exception/PhptExternalFileCannotBeLoadedException.php (100%) rename vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/Exception/UnsupportedPhptSectionException.php (100%) rename vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/Parser.php (100%) rename vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/Renderer.php (100%) rename vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/TestCase.php (100%) rename vendor/phpunit/phpunit/src/Runner/{PHPT => Phpt}/templates/phpt.tpl (100%) diff --git a/vendor/phpunit/phpunit/src/Framework/Exception/PHPTAssertionFailedError.php b/vendor/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php similarity index 100% rename from vendor/phpunit/phpunit/src/Framework/Exception/PHPTAssertionFailedError.php rename to vendor/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php diff --git a/vendor/phpunit/phpunit/src/Runner/PHPT/Exception/InvalidPhptFileException.php b/vendor/phpunit/phpunit/src/Runner/Phpt/Exception/InvalidPhptFileException.php similarity index 100% rename from vendor/phpunit/phpunit/src/Runner/PHPT/Exception/InvalidPhptFileException.php rename to vendor/phpunit/phpunit/src/Runner/Phpt/Exception/InvalidPhptFileException.php diff --git a/vendor/phpunit/phpunit/src/Runner/PHPT/Exception/PhptExternalFileCannotBeLoadedException.php b/vendor/phpunit/phpunit/src/Runner/Phpt/Exception/PhptExternalFileCannotBeLoadedException.php similarity index 100% rename from vendor/phpunit/phpunit/src/Runner/PHPT/Exception/PhptExternalFileCannotBeLoadedException.php rename to vendor/phpunit/phpunit/src/Runner/Phpt/Exception/PhptExternalFileCannotBeLoadedException.php diff --git a/vendor/phpunit/phpunit/src/Runner/PHPT/Exception/UnsupportedPhptSectionException.php b/vendor/phpunit/phpunit/src/Runner/Phpt/Exception/UnsupportedPhptSectionException.php similarity index 100% rename from vendor/phpunit/phpunit/src/Runner/PHPT/Exception/UnsupportedPhptSectionException.php rename to vendor/phpunit/phpunit/src/Runner/Phpt/Exception/UnsupportedPhptSectionException.php diff --git a/vendor/phpunit/phpunit/src/Runner/PHPT/Parser.php b/vendor/phpunit/phpunit/src/Runner/Phpt/Parser.php similarity index 100% rename from vendor/phpunit/phpunit/src/Runner/PHPT/Parser.php rename to vendor/phpunit/phpunit/src/Runner/Phpt/Parser.php diff --git a/vendor/phpunit/phpunit/src/Runner/PHPT/Renderer.php b/vendor/phpunit/phpunit/src/Runner/Phpt/Renderer.php similarity index 100% rename from vendor/phpunit/phpunit/src/Runner/PHPT/Renderer.php rename to vendor/phpunit/phpunit/src/Runner/Phpt/Renderer.php diff --git a/vendor/phpunit/phpunit/src/Runner/PHPT/TestCase.php b/vendor/phpunit/phpunit/src/Runner/Phpt/TestCase.php similarity index 100% rename from vendor/phpunit/phpunit/src/Runner/PHPT/TestCase.php rename to vendor/phpunit/phpunit/src/Runner/Phpt/TestCase.php diff --git a/vendor/phpunit/phpunit/src/Runner/PHPT/templates/phpt.tpl b/vendor/phpunit/phpunit/src/Runner/Phpt/templates/phpt.tpl similarity index 100% rename from vendor/phpunit/phpunit/src/Runner/PHPT/templates/phpt.tpl rename to vendor/phpunit/phpunit/src/Runner/Phpt/templates/phpt.tpl