Skip to content

Commit 4e3f8cc

Browse files
CybotTMclaude
andcommitted
fix: correct path case sensitivity in PHPStan config
Build/phpstan.neon was using incorrect lowercase .build paths, causing "File is missing or is not readable" errors in CI. Changes: - .build → .Build (4 occurrences in includes section) - .build/* → .Build/* (excludePaths section) The actual vendor directory is .Build (uppercase B) as configured in composer.json. Linux CI environments are case-sensitive, so incorrect case causes file not found errors. This fixes PHPStan analysis startup failures in CI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3e150a2 commit 4e3f8cc

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Build/phpstan.neon

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
includes:
2-
- %currentWorkingDirectory%/.build/vendor/phpstan/phpstan-strict-rules/rules.neon
3-
- %currentWorkingDirectory%/.build/vendor/phpstan/phpstan-deprecation-rules/rules.neon
4-
# - %currentWorkingDirectory%/.build/vendor/phpstan/phpstan-phpunit/rules.neon
5-
- %currentWorkingDirectory%/.build/vendor/saschaegerer/phpstan-typo3/extension.neon
2+
- %currentWorkingDirectory%/.Build/vendor/phpstan/phpstan-strict-rules/rules.neon
3+
- %currentWorkingDirectory%/.Build/vendor/phpstan/phpstan-deprecation-rules/rules.neon
4+
# - %currentWorkingDirectory%/.Build/vendor/phpstan/phpstan-phpunit/rules.neon
5+
- %currentWorkingDirectory%/.Build/vendor/saschaegerer/phpstan-typo3/extension.neon
66
- %currentWorkingDirectory%/Build/phpstan-baseline.neon
77

88
parameters:
@@ -17,7 +17,7 @@ parameters:
1717
- %currentWorkingDirectory%/ext_localconf.php
1818

1919
excludePaths:
20-
- %currentWorkingDirectory%/.build/*
20+
- %currentWorkingDirectory%/.Build/*
2121
- %currentWorkingDirectory%/ext_emconf.php
2222

2323
# Strict configuration options for maximum code quality

0 commit comments

Comments
 (0)