[ Finder::create()->files()->in('src'), Finder::create()->files()->in('assets'), Finder::create() ->files() ->ignoreVCS(true) ->notName('/LICENSE|.*\\.md|.*\\.dist|Makefile|composer\\.json|composer\\.lock/') ->exclude([ 'doc', 'test', 'test_old', 'tests', 'Tests', 'vendor-bin', ]) ->in('vendor'), Finder::create()->append([ 'composer.json', 'composer.lock', 'config.xsd', 'psalm' ]), ], 'whitelist' => [ ], 'patchers' => [ function ($filePath, $prefix, $contents) { // // PHP-Parser patch // if ($filePath === realpath(__DIR__ . '/vendor/nikic/php-parser/lib/PhpParser/NodeAbstract.php')) { $length = 15 + strlen($prefix) + 1; return preg_replace( '%strpos\((.+?)\) \+ 15%', sprintf('strpos($1) + %d', $length), $contents ); } return $contents; }, function ($filePath, $prefix, $contents) { if ($filePath === realpath(__DIR__ . '/src/Psalm/Config.php')) { return str_replace( $prefix . '\Composer\Autoload\ClassLoader', 'Composer\Autoload\ClassLoader', $contents ); } return $contents; }, function ($filePath, $prefix, $contents) { if (strpos($filePath, realpath(__DIR__ . '/src/Psalm')) === 0) { return str_replace( [' \\Psalm\\', ' \\PhpParser\\'], [' \\' . $prefix . '\\Psalm\\', ' \\' . $prefix . '\\PhpParser\\'], $contents ); } return $contents; }, function ($filePath, $prefix, $contents) { if (strpos($filePath, realpath(__DIR__ . '/vendor/openlss')) === 0) { return str_replace( $prefix . '\\DomDocument', 'DomDocument', $contents ); } return $contents; }, function ($filePath, $prefix, $contents) { if ($filePath === realpath(__DIR__ . '/src/Psalm/PropertyMap.php') || $filePath === realpath(__DIR__ . '/src/Psalm/CallMap.php') || $filePath === realpath(__DIR__ . '/src/Psalm/Stubs/CoreGenericFunctions.php') || $filePath === realpath(__DIR__ . '/src/Psalm/Stubs/CoreGenericClasses.php') ) { $contents = str_replace( ['namespace ' . $prefix . ';', $prefix . '\\\\', $prefix . '\\'], '', $contents ); $contents = str_replace( ['\'phpparser\\\\', 'PhpParser\\\\'], ['\'' . strtolower($prefix) . '\\\\phpparser\\\\', $prefix . '\\\\PhpParser\\\\'], $contents ); return str_replace('Psalm\\\\', $prefix . '\\\\Psalm\\\\', $contents); } return $contents; }, function ($filePath, $prefix, $contents) { if ($filePath === realpath(__DIR__ . '/src/Psalm/Checker/Statements/Expression/Call/MethodCallChecker.php')) { return str_replace( 'case \'Psalm\\\\', 'case \'' . $prefix . '\\\\Psalm\\\\', $contents ); } return $contents; }, function ($filePath, $prefix, $contents) { if ($filePath === realpath(__DIR__ . '/src/Psalm/Type.php')) { return str_replace( 'get_class($type) === \'Psalm\\\\', 'get_class($type) === \'' . $prefix . '\\\\Psalm\\\\', $contents ); } return $contents; }, function ($filePath, $prefix, $contents) { if ($filePath === realpath(__DIR__ . '/src/psalm.php')) { return str_replace( '\\' . $prefix . '\\PSALM_VERSION', 'PSALM_VERSION', $contents ); } return $contents; }, ], ];