From 66d3e4ba472bad9b973d6ead3951156f3413bd58 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 26 Feb 2022 14:12:30 +0100 Subject: [PATCH] Fix phar build --- src/Composer/Compiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Compiler.php b/src/Composer/Compiler.php index 622965076e00..743869923b3f 100644 --- a/src/Composer/Compiler.php +++ b/src/Composer/Compiler.php @@ -136,7 +136,7 @@ public function compile($pharFile = 'composer.phar') $finder = new Finder(); $finder->files() ->ignoreVCS(true) - ->notPath('/\/(composer\.(json|lock)|[A-Z]+\.md|\.gitignore|appveyor.yml|phpunit\.xml\.dist|phpstan\.neon\.dist|phpstan-config\.neon)$/') + ->notPath('/\/(composer\.(json|lock)|[A-Z]+\.md|\.gitignore|appveyor.yml|phpunit\.xml\.dist|phpstan\.neon\.dist|phpstan-config\.neon|phpstan-baseline\.neon)$/') ->notPath('/bin\/(jsonlint|validate-json|simple-phpunit)(\.bat)?$/') ->notPath('symfony/debug/Resources/ext/') ->notPath('justinrainbow/json-schema/demo/')