diff --git a/packages/ChangesReporting/Output/JsonOutputFormatter.php b/packages/ChangesReporting/Output/JsonOutputFormatter.php index b4a5762c82d8..d2d56804a387 100644 --- a/packages/ChangesReporting/Output/JsonOutputFormatter.php +++ b/packages/ChangesReporting/Output/JsonOutputFormatter.php @@ -30,7 +30,7 @@ public function getName() : string } public function report(\Rector\Core\ValueObject\ProcessResult $processResult, \Rector\Core\ValueObject\Configuration $configuration) : void { - $errorsJson = ['meta' => ['config' => $configuration->getMainConfigFilePath()], 'totals' => ['changed_files' => \count($processResult->getFileDiffs()), 'removed_and_added_files_count' => $processResult->getRemovedAndAddedFilesCount(), 'removed_node_count' => $processResult->getRemovedNodeCount()]]; + $errorsJson = ['totals' => ['changed_files' => \count($processResult->getFileDiffs()), 'removed_and_added_files_count' => $processResult->getRemovedAndAddedFilesCount(), 'removed_node_count' => $processResult->getRemovedNodeCount()]]; $fileDiffs = $processResult->getFileDiffs(); \ksort($fileDiffs); foreach ($fileDiffs as $fileDiff) { diff --git a/packages/Parallel/Application/ParallelFileProcessor.php b/packages/Parallel/Application/ParallelFileProcessor.php index b9a0fa611501..b055add7b800 100644 --- a/packages/Parallel/Application/ParallelFileProcessor.php +++ b/packages/Parallel/Application/ParallelFileProcessor.php @@ -61,7 +61,7 @@ public function __construct(\Rector\Parallel\Command\WorkerCommandLineFactory $w * @param Closure(int): void|null $postFileCallback Used for progress bar jump * @return mixed[] */ - public function process(\RectorPrefix20220107\Symplify\EasyParallel\ValueObject\Schedule $schedule, string $mainScript, \Closure $postFileCallback, ?string $projectConfigFile, \RectorPrefix20220107\Symfony\Component\Console\Input\InputInterface $input) : array + public function process(\RectorPrefix20220107\Symplify\EasyParallel\ValueObject\Schedule $schedule, string $mainScript, \Closure $postFileCallback, \RectorPrefix20220107\Symfony\Component\Console\Input\InputInterface $input) : array { $jobs = \array_reverse($schedule->getJobs()); $streamSelectLoop = new \RectorPrefix20220107\React\EventLoop\StreamSelectLoop(); @@ -110,7 +110,7 @@ public function process(\RectorPrefix20220107\Symplify\EasyParallel\ValueObject\ break; } $processIdentifier = \RectorPrefix20220107\Nette\Utils\Random::generate(); - $workerCommandLine = $this->workerCommandLineFactory->create($mainScript, \Rector\Core\Console\Command\ProcessCommand::class, \RectorPrefix20220107\Symplify\PackageBuilder\Console\Command\CommandNaming::classToName(\Rector\Core\Console\Command\WorkerCommand::class), $projectConfigFile, $input, $processIdentifier, $serverPort); + $workerCommandLine = $this->workerCommandLineFactory->create($mainScript, \Rector\Core\Console\Command\ProcessCommand::class, \RectorPrefix20220107\Symplify\PackageBuilder\Console\Command\CommandNaming::classToName(\Rector\Core\Console\Command\WorkerCommand::class), $input, $processIdentifier, $serverPort); $parallelProcess = new \RectorPrefix20220107\Symplify\EasyParallel\ValueObject\ParallelProcess($workerCommandLine, $streamSelectLoop, self::TIMEOUT_IN_SECONDS); $parallelProcess->start( // 1. callable on data diff --git a/packages/Parallel/Command/WorkerCommandLineFactory.php b/packages/Parallel/Command/WorkerCommandLineFactory.php index 95494a722f6b..9cd00b7b1512 100644 --- a/packages/Parallel/Command/WorkerCommandLineFactory.php +++ b/packages/Parallel/Command/WorkerCommandLineFactory.php @@ -31,7 +31,7 @@ public function __construct() /** * @param class-string $mainCommandClass */ - public function create(string $mainScript, string $mainCommandClass, string $workerCommandName, ?string $projectConfigFile, \RectorPrefix20220107\Symfony\Component\Console\Input\InputInterface $input, string $identifier, int $port) : string + public function create(string $mainScript, string $mainCommandClass, string $workerCommandName, \RectorPrefix20220107\Symfony\Component\Console\Input\InputInterface $input, string $identifier, int $port) : string { $commandArguments = \array_slice($_SERVER['argv'], 1); $args = \array_merge([\PHP_BINARY, $mainScript], $commandArguments); @@ -51,10 +51,6 @@ public function create(string $mainScript, string $mainCommandClass, string $wor $workerCommandArray[] = \escapeshellarg($arg); } $workerCommandArray[] = $workerCommandName; - if ($projectConfigFile !== null) { - $workerCommandArray[] = self::OPTION_DASHES . \Rector\Core\Configuration\Option::CONFIG; - $workerCommandArray[] = \escapeshellarg($projectConfigFile); - } $mainCommandOptionNames = $this->getCommandOptionNames($mainCommand); $workerCommandOptions = $this->mirrorCommandOptions($input, $mainCommandOptionNames); $workerCommandArray = \array_merge($workerCommandArray, $workerCommandOptions); @@ -74,6 +70,10 @@ public function create(string $mainScript, string $mainCommandClass, string $wor // disable colors, breaks json_decode() otherwise // @see https://github.com/symfony/symfony/issues/1238 $workerCommandArray[] = '--no-ansi'; + if ($input->hasOption(\Rector\Core\Configuration\Option::CONFIG)) { + $workerCommandArray[] = '--config'; + $workerCommandArray[] = $input->getOption(\Rector\Core\Configuration\Option::CONFIG); + } return \implode(' ', $workerCommandArray); } private function shouldSkipOption(\RectorPrefix20220107\Symfony\Component\Console\Input\InputInterface $input, string $optionName) : bool diff --git a/src/Application/ApplicationFileProcessor.php b/src/Application/ApplicationFileProcessor.php index c1cafde97654..516a9464ebc9 100644 --- a/src/Application/ApplicationFileProcessor.php +++ b/src/Application/ApplicationFileProcessor.php @@ -255,7 +255,7 @@ private function runParallel(array $fileInfos, \Rector\Core\ValueObject\Configur throw new \RectorPrefix20220107\Symplify\EasyParallel\Exception\ParallelShouldNotHappenException('[parallel] Main script was not found'); } // mimics see https://github.com/phpstan/phpstan-src/commit/9124c66dcc55a222e21b1717ba5f60771f7dda92#diff-387b8f04e0db7a06678eb52ce0c0d0aff73e0d7d8fc5df834d0a5fbec198e5daR139 - return $this->parallelFileProcessor->process($schedule, $mainScript, $postFileCallback, $configuration->getConfig(), $input); + return $this->parallelFileProcessor->process($schedule, $mainScript, $postFileCallback, $input); } /** * Path to called "ecs" binary file, e.g. "vendor/bin/ecs" returns "vendor/bin/ecs" This is needed to re-call the diff --git a/src/Application/VersionResolver.php b/src/Application/VersionResolver.php index 55a3e8ebf042..7bfe66b18d40 100644 --- a/src/Application/VersionResolver.php +++ b/src/Application/VersionResolver.php @@ -16,11 +16,11 @@ final class VersionResolver /** * @var string */ - public const PACKAGE_VERSION = '111bf5d78adbd38f740505bd5a98292834407897'; + public const PACKAGE_VERSION = 'e33afe6434a9707374815bb977cff09b6e57c199'; /** * @var string */ - public const RELEASE_DATE = '2022-01-07 13:35:52'; + public const RELEASE_DATE = '2022-01-07 16:38:10'; public static function resolvePackageVersion() : string { $process = new \RectorPrefix20220107\Symfony\Component\Process\Process(['git', 'log', '--pretty="%H"', '-n1', 'HEAD'], __DIR__); diff --git a/src/Configuration/ConfigurationFactory.php b/src/Configuration/ConfigurationFactory.php index f2cc7e228881..26a9aeb58c27 100644 --- a/src/Configuration/ConfigurationFactory.php +++ b/src/Configuration/ConfigurationFactory.php @@ -4,7 +4,6 @@ namespace Rector\Core\Configuration; use Rector\ChangesReporting\Output\ConsoleOutputFormatter; -use Rector\Core\Bootstrap\RectorConfigsResolver; use Rector\Core\ValueObject\Configuration; use RectorPrefix20220107\Symfony\Component\Console\Input\InputInterface; use RectorPrefix20220107\Symfony\Component\Console\Style\SymfonyStyle; @@ -49,8 +48,7 @@ public function createFromInput(\RectorPrefix20220107\Symfony\Component\Console\ $isParallel = $this->parameterProvider->provideBoolParameter(\Rector\Core\Configuration\Option::PARALLEL); $parallelPort = (string) $input->getOption(\Rector\Core\Configuration\Option::PARALLEL_PORT); $parallelIdentifier = (string) $input->getOption(\Rector\Core\Configuration\Option::PARALLEL_IDENTIFIER); - $rectorConfigsResolver = new \Rector\Core\Bootstrap\RectorConfigsResolver(); - return new \Rector\Core\ValueObject\Configuration($isDryRun, $showProgressBar, $shouldClearCache, $outputFormat, $fileExtensions, $paths, $showDiffs, $rectorConfigsResolver->provide(), $parallelPort, $parallelIdentifier, $isParallel); + return new \Rector\Core\ValueObject\Configuration($isDryRun, $showProgressBar, $shouldClearCache, $outputFormat, $fileExtensions, $paths, $showDiffs, $parallelPort, $parallelIdentifier, $isParallel); } private function shouldShowProgressBar(\RectorPrefix20220107\Symfony\Component\Console\Input\InputInterface $input, string $outputFormat) : bool { diff --git a/src/ValueObject/Configuration.php b/src/ValueObject/Configuration.php index d67d1d3cc804..9d9d80351400 100644 --- a/src/ValueObject/Configuration.php +++ b/src/ValueObject/Configuration.php @@ -5,8 +5,6 @@ use RectorPrefix20220107\JetBrains\PhpStorm\Immutable; use Rector\ChangesReporting\Output\ConsoleOutputFormatter; -use Rector\Core\ValueObject\Bootstrap\BootstrapConfigs; -use Symplify\SmartFileSystem\SmartFileInfo; #[Immutable] final class Configuration { @@ -45,11 +43,6 @@ final class Configuration * @var bool */ private $showDiffs = \true; - /** - * @readonly - * @var \Rector\Core\ValueObject\Bootstrap\BootstrapConfigs|null - */ - private $bootstrapConfigs; /** * @readonly * @var string|null @@ -71,7 +64,7 @@ final class Configuration * @param string|null $parallelPort * @param string|null $parallelIdentifier */ - public function __construct(bool $isDryRun = \false, bool $showProgressBar = \true, bool $shouldClearCache = \false, string $outputFormat = \Rector\ChangesReporting\Output\ConsoleOutputFormatter::NAME, array $fileExtensions = ['php'], array $paths = [], bool $showDiffs = \true, ?\Rector\Core\ValueObject\Bootstrap\BootstrapConfigs $bootstrapConfigs = null, $parallelPort = null, $parallelIdentifier = null, bool $isParallel = \false) + public function __construct(bool $isDryRun = \false, bool $showProgressBar = \true, bool $shouldClearCache = \false, string $outputFormat = \Rector\ChangesReporting\Output\ConsoleOutputFormatter::NAME, array $fileExtensions = ['php'], array $paths = [], bool $showDiffs = \true, $parallelPort = null, $parallelIdentifier = null, bool $isParallel = \false) { $this->isDryRun = $isDryRun; $this->showProgressBar = $showProgressBar; @@ -80,7 +73,6 @@ public function __construct(bool $isDryRun = \false, bool $showProgressBar = \tr $this->fileExtensions = $fileExtensions; $this->paths = $paths; $this->showDiffs = $showDiffs; - $this->bootstrapConfigs = $bootstrapConfigs; $this->parallelPort = $parallelPort; $this->parallelIdentifier = $parallelIdentifier; $this->isParallel = $isParallel; @@ -119,18 +111,6 @@ public function shouldShowDiffs() : bool { return $this->showDiffs; } - public function getMainConfigFilePath() : ?string - { - if ($this->bootstrapConfigs === null) { - return null; - } - $mainConfigFile = $this->bootstrapConfigs->getMainConfigFile(); - if (!\is_string($mainConfigFile)) { - return null; - } - $mainConfigFileInfo = new \Symplify\SmartFileSystem\SmartFileInfo($mainConfigFile); - return $mainConfigFileInfo->getRelativeFilePathFromCwd(); - } public function getParallelPort() : ?string { return $this->parallelPort; @@ -143,11 +123,4 @@ public function isParallel() : bool { return $this->isParallel; } - /** - * @return string|null - */ - public function getConfig() - { - return $this->getMainConfigFilePath(); - } } diff --git a/vendor/autoload.php b/vendor/autoload.php index e36100755819..7a848f2bc514 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747::getLoader(); +return ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index be86d1c7437a..22fabaed17b3 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747 +class ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066 { private static $loader; @@ -22,15 +22,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); - spl_autoload_unregister(array('ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit53331b101b45a9a0e15c7c77733ca747::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitdee307f2a8c055650fa59d4c018b6066::getInitializer($loader)); } else { $classMap = require __DIR__ . '/autoload_classmap.php'; if ($classMap) { @@ -42,12 +42,12 @@ public static function getLoader() $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit53331b101b45a9a0e15c7c77733ca747::$files; + $includeFiles = Composer\Autoload\ComposerStaticInitdee307f2a8c055650fa59d4c018b6066::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire53331b101b45a9a0e15c7c77733ca747($fileIdentifier, $file); + composerRequiredee307f2a8c055650fa59d4c018b6066($fileIdentifier, $file); } return $loader; @@ -59,7 +59,7 @@ public static function getLoader() * @param string $file * @return void */ -function composerRequire53331b101b45a9a0e15c7c77733ca747($fileIdentifier, $file) +function composerRequiredee307f2a8c055650fa59d4c018b6066($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 71fb44c5235e..698f9e0b57f5 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit53331b101b45a9a0e15c7c77733ca747 +class ComposerStaticInitdee307f2a8c055650fa59d4c018b6066 { public static $files = array ( '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', @@ -3852,9 +3852,9 @@ class ComposerStaticInit53331b101b45a9a0e15c7c77733ca747 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit53331b101b45a9a0e15c7c77733ca747::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit53331b101b45a9a0e15c7c77733ca747::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit53331b101b45a9a0e15c7c77733ca747::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitdee307f2a8c055650fa59d4c018b6066::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitdee307f2a8c055650fa59d4c018b6066::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInitdee307f2a8c055650fa59d4c018b6066::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 04347771b5d3..1c262e44b152 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -1012,17 +1012,17 @@ }, { "name": "phpstan\/phpstan", - "version": "1.3.2", - "version_normalized": "1.3.2.0", + "version": "1.3.3", + "version_normalized": "1.3.3.0", "source": { "type": "git", "url": "https:\/\/github.com\/phpstan\/phpstan.git", - "reference": "84eaa569d48ea79d3bebe2c3ec5d302537a6ae8a" + "reference": "151a51f6149855785fbd883e79768c0abc96b75f" }, "dist": { "type": "zip", - "url": "https:\/\/api.github.com\/repos\/phpstan\/phpstan\/zipball\/84eaa569d48ea79d3bebe2c3ec5d302537a6ae8a", - "reference": "84eaa569d48ea79d3bebe2c3ec5d302537a6ae8a", + "url": "https:\/\/api.github.com\/repos\/phpstan\/phpstan\/zipball\/151a51f6149855785fbd883e79768c0abc96b75f", + "reference": "151a51f6149855785fbd883e79768c0abc96b75f", "shasum": "" }, "require": { @@ -1031,7 +1031,7 @@ "conflict": { "phpstan\/phpstan-shim": "*" }, - "time": "2022-01-06T17:11:15+00:00", + "time": "2022-01-07T09:49:03+00:00", "bin": [ "phpstan", "phpstan.phar" @@ -1055,7 +1055,7 @@ "description": "PHPStan - PHP Static Analysis Tool", "support": { "issues": "https:\/\/github.com\/phpstan\/phpstan\/issues", - "source": "https:\/\/github.com\/phpstan\/phpstan\/tree\/1.3.2" + "source": "https:\/\/github.com\/phpstan\/phpstan\/tree\/1.3.3" }, "funding": [ { diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 8f27e34b8afd..dc1d5ebb772b 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -2,4 +2,4 @@ namespace RectorPrefix20220107; -return array('root' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(0 => '0.12.x-dev'), 'reference' => \NULL, 'name' => 'rector/rector-src', 'dev' => \false), 'versions' => array('clue/ndjson-react' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/ndjson-react', 'aliases' => array(), 'reference' => '708411c7e45ac85371a99d50f52284971494bede', 'dev_requirement' => \false), 'composer/pcre' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/./pcre', 'aliases' => array(), 'reference' => '3d322d715c43a1ac36c7fe215fa59336265500f2', 'dev_requirement' => \false), 'composer/semver' => array('pretty_version' => '3.2.7', 'version' => '3.2.7.0', 'type' => 'library', 'install_path' => __DIR__ . '/./semver', 'aliases' => array(), 'reference' => 'deac27056b57e46faf136fae7b449eeaa71661ee', 'dev_requirement' => \false), 'composer/xdebug-handler' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/./xdebug-handler', 'aliases' => array(), 'reference' => '0c1a3925ec58a4ec98e992b9c7d171e9e184be0a', 'dev_requirement' => \false), 'cweagans/composer-patches' => array('pretty_version' => '1.7.1', 'version' => '1.7.1.0', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../cweagans/composer-patches', 'aliases' => array(), 'reference' => '9888dcc74993c030b75f3dd548bb5e20cdbd740c', 'dev_requirement' => \false), 'doctrine/inflector' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/inflector', 'aliases' => array(), 'reference' => '8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89', 'dev_requirement' => \false), 'ergebnis/json-printer' => array('pretty_version' => '3.2.0', 'version' => '3.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../ergebnis/json-printer', 'aliases' => array(), 'reference' => '651cab2b7604a6b338d0d16749f5ea0851a68005', 'dev_requirement' => \false), 'evenement/evenement' => array('pretty_version' => 'v3.0.1', 'version' => '3.0.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../evenement/evenement', 'aliases' => array(), 'reference' => '531bfb9d15f8aa57454f5f0285b18bec903b8fb7', 'dev_requirement' => \false), 'helmich/typo3-typoscript-parser' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'type' => 'library', 'install_path' => __DIR__ . '/../helmich/typo3-typoscript-parser', 'aliases' => array(0 => '9999999-dev'), 'reference' => '0ccb3a6', 'dev_requirement' => \false), 'idiosyncratic/editorconfig' => array('pretty_version' => '0.1.3', 'version' => '0.1.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../idiosyncratic/editorconfig', 'aliases' => array(), 'reference' => '3445fa4a1e00f95630d4edc729c2effb116db19b', 'dev_requirement' => \false), 'myclabs/php-enum' => array('pretty_version' => '1.8.3', 'version' => '1.8.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../myclabs/php-enum', 'aliases' => array(), 'reference' => 'b942d263c641ddb5190929ff840c68f78713e937', 'dev_requirement' => \false), 'nette/neon' => array('pretty_version' => 'v3.3.2', 'version' => '3.3.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../nette/neon', 'aliases' => array(), 'reference' => '54b287d8c2cdbe577b02e28ca1713e275b05ece2', 'dev_requirement' => \false), 'nette/utils' => array('pretty_version' => 'v3.2.6', 'version' => '3.2.6.0', 'type' => 'library', 'install_path' => __DIR__ . '/../nette/utils', 'aliases' => array(), 'reference' => '2f261e55bd6a12057442045bf2c249806abc1d02', 'dev_requirement' => \false), 'nikic/php-parser' => array('pretty_version' => 'v4.13.2', 'version' => '4.13.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/php-parser', 'aliases' => array(), 'reference' => '210577fe3cf7badcc5814d99455df46564f3c077', 'dev_requirement' => \false), 'phpstan/phpdoc-parser' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../phpstan/phpdoc-parser', 'aliases' => array(), 'reference' => 'dbc093d7af60eff5cd575d2ed761b15ed40bd08e', 'dev_requirement' => \false), 'phpstan/phpstan' => array('pretty_version' => '1.3.2', 'version' => '1.3.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../phpstan/phpstan', 'aliases' => array(), 'reference' => '84eaa569d48ea79d3bebe2c3ec5d302537a6ae8a', 'dev_requirement' => \false), 'phpstan/phpstan-phpunit' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'type' => 'phpstan-extension', 'install_path' => __DIR__ . '/../phpstan/phpstan-phpunit', 'aliases' => array(), 'reference' => '9eb88c9f689003a8a2a5ae9e010338ee94dc39b3', 'dev_requirement' => \false), 'psr/cache' => array('pretty_version' => '3.0.0', 'version' => '3.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/cache', 'aliases' => array(), 'reference' => 'aa5030cfa5405eccfdcb1083ce040c2cb8d253bf', 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/event-dispatcher' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/event-dispatcher', 'aliases' => array(), 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'dev_requirement' => \false), 'psr/log' => array('pretty_version' => '2.0.0', 'version' => '2.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'reference' => 'ef29f6d262798707a9edd554e2b82517ef3a9376', 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0|2.0|3.0')), 'react/cache' => array('pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/cache', 'aliases' => array(), 'reference' => '4bf736a2cccec7298bdf745db77585966fc2ca7e', 'dev_requirement' => \false), 'react/child-process' => array('pretty_version' => 'v0.6.4', 'version' => '0.6.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/child-process', 'aliases' => array(), 'reference' => 'a778f3fb828d68caf8a9ab6567fd8342a86f12fe', 'dev_requirement' => \false), 'react/dns' => array('pretty_version' => 'v1.9.0', 'version' => '1.9.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/dns', 'aliases' => array(), 'reference' => '6d38296756fa644e6cb1bfe95eff0f9a4ed6edcb', 'dev_requirement' => \false), 'react/event-loop' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/event-loop', 'aliases' => array(), 'reference' => 'be6dee480fc4692cec0504e65eb486e3be1aa6f2', 'dev_requirement' => \false), 'react/promise' => array('pretty_version' => 'v2.8.0', 'version' => '2.8.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/promise', 'aliases' => array(), 'reference' => 'f3cff96a19736714524ca0dd1d4130de73dbbbc4', 'dev_requirement' => \false), 'react/promise-timer' => array('pretty_version' => 'v1.8.0', 'version' => '1.8.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/promise-timer', 'aliases' => array(), 'reference' => '0bbbcc79589e5bfdddba68a287f1cb805581a479', 'dev_requirement' => \false), 'react/socket' => array('pretty_version' => 'v1.10.0', 'version' => '1.10.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/socket', 'aliases' => array(), 'reference' => 'd132fde589ea97f4165f2d94b5296499eac125ec', 'dev_requirement' => \false), 'react/stream' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/stream', 'aliases' => array(), 'reference' => '7a423506ee1903e89f1e08ec5f0ed430ff784ae9', 'dev_requirement' => \false), 'rector/extension-installer' => array('pretty_version' => '0.11.1', 'version' => '0.11.1.0', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../rector/extension-installer', 'aliases' => array(), 'reference' => '527fcbd19f7aeb79a6fd043e1edfeab7831b59af', 'dev_requirement' => \false), 'rector/rector' => array('dev_requirement' => \false, 'replaced' => array(0 => '0.12.x-dev', 1 => 'dev-main')), 'rector/rector-cakephp' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-cakephp', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'f601f07c22bbe5d37cce17b81f62cfa99cbdf59b', 'dev_requirement' => \false), 'rector/rector-doctrine' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-doctrine', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'd65a9b076fd28e3ce85f06ea4b3a983bd9a02ca6', 'dev_requirement' => \false), 'rector/rector-generator' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-generator', 'aliases' => array(0 => '9999999-dev'), 'reference' => 'df58e868b99405e9400e8d80cb71a39b90fc3165', 'dev_requirement' => \false), 'rector/rector-laravel' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-laravel', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '96d50d4383d37615cf69d2415cc469f36c8b552f', 'dev_requirement' => \false), 'rector/rector-nette' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-nette', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'eb859a55eee64bc5dcb60e0b0254f77b8f4790d2', 'dev_requirement' => \false), 'rector/rector-phpoffice' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-phpoffice', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '3f56f3b7d7b0fd5595de4a33906caca92e76e18e', 'dev_requirement' => \false), 'rector/rector-phpunit' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-phpunit', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'cd2eb3d70f324d0c71bea89d26349f47f5ba6bd2', 'dev_requirement' => \false), 'rector/rector-src' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(0 => '0.12.x-dev'), 'reference' => \NULL, 'dev_requirement' => \false), 'rector/rector-symfony' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-symfony', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '5c3c503bf3792f3934bcee5c1e868e7d36e1881f', 'dev_requirement' => \false), 'sebastian/diff' => array('pretty_version' => '4.0.4', 'version' => '4.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../sebastian/diff', 'aliases' => array(), 'reference' => '3461e3fccc7cfdfc2720be910d3bd73c69be590d', 'dev_requirement' => \false), 'ssch/typo3-rector' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../ssch/typo3-rector', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '0233a19d2c6531d689d644e42a95a12775ad92b7', 'dev_requirement' => \false), 'symfony/cache-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/config' => array('pretty_version' => 'v5.4.2', 'version' => '5.4.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/config', 'aliases' => array(), 'reference' => '2e082dae50da563c639119b7b52347a2a3db4ba5', 'dev_requirement' => \false), 'symfony/console' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/console', 'aliases' => array(), 'reference' => 'dd434fa8d69325e5d210f63070014d889511fcb3', 'dev_requirement' => \false), 'symfony/contracts' => array('pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/contracts', 'aliases' => array(), 'reference' => '1f4c95d47bddf0c1579779d4b85602c923ed2f1c', 'dev_requirement' => \false), 'symfony/dependency-injection' => array('pretty_version' => 'v5.4.2', 'version' => '5.4.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/dependency-injection', 'aliases' => array(), 'reference' => 'ba94559be9738d77cd29e24b5d81cf3b89b7d628', 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/event-dispatcher-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/filesystem' => array('pretty_version' => 'v6.0.0', 'version' => '6.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/filesystem', 'aliases' => array(), 'reference' => '52b3c9cce673b014915445a432339f282e002ce6', 'dev_requirement' => \false), 'symfony/finder' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), 'reference' => '03d2833e677d48317cac852f9c0287fb048c3c5c', 'dev_requirement' => \false), 'symfony/http-client-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'reference' => '30885182c981ab175d4d034db0f6f469898070ab', 'dev_requirement' => \false), 'symfony/polyfill-intl-grapheme' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme', 'aliases' => array(), 'reference' => '81b86b50cf841a64252b439e738e97f4a34e2783', 'dev_requirement' => \false), 'symfony/polyfill-intl-normalizer' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer', 'aliases' => array(), 'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8', 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'reference' => '0abb51d2f102e00a4eefcf46ba7fec406d245825', 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'reference' => '57b712b08eddb97c762a8caa32c84e037892d2e9', 'dev_requirement' => \false), 'symfony/polyfill-php81' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php81', 'aliases' => array(), 'reference' => '5de4ba2d41b15f9bd0e19b2ab9674135813ec98f', 'dev_requirement' => \false), 'symfony/process' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/process', 'aliases' => array(), 'reference' => '71da2b7f3fdba460fcf61a97c8d3d14bbf3391ad', 'dev_requirement' => \false), 'symfony/service-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/service-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0|2.0')), 'symfony/string' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/string', 'aliases' => array(), 'reference' => 'bae261d0c3ac38a1f802b4dfed42094296100631', 'dev_requirement' => \false), 'symfony/translation-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/var-exporter' => array('pretty_version' => 'v6.0.0', 'version' => '6.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/var-exporter', 'aliases' => array(), 'reference' => '32cf62f12d35d441da1ca4a4c0fc1cd5f2a207af', 'dev_requirement' => \false), 'symfony/yaml' => array('pretty_version' => 'v5.4.2', 'version' => '5.4.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/yaml', 'aliases' => array(), 'reference' => 'b9eb163846a61bb32dfc147f7859e274fab38b58', 'dev_requirement' => \false), 'symplify/astral' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'phpstan-extension', 'install_path' => __DIR__ . '/../symplify/astral', 'aliases' => array(), 'reference' => '1427b3f7ded4cc5e6fd2ebc6684f4e54938aea88', 'dev_requirement' => \false), 'symplify/autowire-array-parameter' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/autowire-array-parameter', 'aliases' => array(), 'reference' => '6f848cd8673f32f7b514ad8d290843327c235d47', 'dev_requirement' => \false), 'symplify/composer-json-manipulator' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'symfony-bundle', 'install_path' => __DIR__ . '/../symplify/composer-json-manipulator', 'aliases' => array(), 'reference' => '10fc9fbb5df4ef044e1b4fa5981c746b999e5c78', 'dev_requirement' => \false), 'symplify/console-color-diff' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/console-color-diff', 'aliases' => array(), 'reference' => '8cb50fd157c8bd5e07f240aa77a03ed26e329406', 'dev_requirement' => \false), 'symplify/easy-parallel' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/easy-parallel', 'aliases' => array(), 'reference' => '0d66e896130df8d29a638fb60fedc7e059a63010', 'dev_requirement' => \false), 'symplify/easy-testing' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'symfony-bundle', 'install_path' => __DIR__ . '/../symplify/easy-testing', 'aliases' => array(), 'reference' => '29f20157ee20c0ebbde8f6624fefbeefc77438eb', 'dev_requirement' => \false), 'symplify/package-builder' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/package-builder', 'aliases' => array(), 'reference' => '958ed10eb6c1f83d4719b41c87c0b3e68d981e9c', 'dev_requirement' => \false), 'symplify/rule-doc-generator-contracts' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/rule-doc-generator-contracts', 'aliases' => array(), 'reference' => '7cb38705941a9be09798d7a53dfc771aeabdc390', 'dev_requirement' => \false), 'symplify/simple-php-doc-parser' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/simple-php-doc-parser', 'aliases' => array(), 'reference' => 'f4a55b53d4e6428828db720af575cf059e110db4', 'dev_requirement' => \false), 'symplify/skipper' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/skipper', 'aliases' => array(), 'reference' => '0e2484bb010d7e78de41d35acd4f4b3e1d3567ee', 'dev_requirement' => \false), 'symplify/smart-file-system' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/smart-file-system', 'aliases' => array(), 'reference' => '9f3042ce10241291221609f7bb2f58ad67e42f81', 'dev_requirement' => \false), 'symplify/symfony-php-config' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/symfony-php-config', 'aliases' => array(), 'reference' => '55c28df2115ed48fb5bb1923aa6c7d31c1a8a753', 'dev_requirement' => \false), 'symplify/symplify-kernel' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/symplify-kernel', 'aliases' => array(), 'reference' => '28150b7841866d50ac54d3675bc827eb0843d94e', 'dev_requirement' => \false), 'symplify/vendor-patches' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/vendor-patches', 'aliases' => array(), 'reference' => '0e838df280a092018513f7f82ef04c32d820ffce', 'dev_requirement' => \false), 'tracy/tracy' => array('pretty_version' => 'v2.9.0', 'version' => '2.9.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../tracy/tracy', 'aliases' => array(), 'reference' => '551a7d936dfbd7075ced9a604b9527d1f7bfa8b4', 'dev_requirement' => \false), 'webmozart/assert' => array('pretty_version' => '1.10.0', 'version' => '1.10.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../webmozart/assert', 'aliases' => array(), 'reference' => '6964c76c7804814a842473e0c8fd15bab0f18e25', 'dev_requirement' => \false))); +return array('root' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(0 => '0.12.x-dev'), 'reference' => \NULL, 'name' => 'rector/rector-src', 'dev' => \false), 'versions' => array('clue/ndjson-react' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/ndjson-react', 'aliases' => array(), 'reference' => '708411c7e45ac85371a99d50f52284971494bede', 'dev_requirement' => \false), 'composer/pcre' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/./pcre', 'aliases' => array(), 'reference' => '3d322d715c43a1ac36c7fe215fa59336265500f2', 'dev_requirement' => \false), 'composer/semver' => array('pretty_version' => '3.2.7', 'version' => '3.2.7.0', 'type' => 'library', 'install_path' => __DIR__ . '/./semver', 'aliases' => array(), 'reference' => 'deac27056b57e46faf136fae7b449eeaa71661ee', 'dev_requirement' => \false), 'composer/xdebug-handler' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/./xdebug-handler', 'aliases' => array(), 'reference' => '0c1a3925ec58a4ec98e992b9c7d171e9e184be0a', 'dev_requirement' => \false), 'cweagans/composer-patches' => array('pretty_version' => '1.7.1', 'version' => '1.7.1.0', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../cweagans/composer-patches', 'aliases' => array(), 'reference' => '9888dcc74993c030b75f3dd548bb5e20cdbd740c', 'dev_requirement' => \false), 'doctrine/inflector' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/inflector', 'aliases' => array(), 'reference' => '8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89', 'dev_requirement' => \false), 'ergebnis/json-printer' => array('pretty_version' => '3.2.0', 'version' => '3.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../ergebnis/json-printer', 'aliases' => array(), 'reference' => '651cab2b7604a6b338d0d16749f5ea0851a68005', 'dev_requirement' => \false), 'evenement/evenement' => array('pretty_version' => 'v3.0.1', 'version' => '3.0.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../evenement/evenement', 'aliases' => array(), 'reference' => '531bfb9d15f8aa57454f5f0285b18bec903b8fb7', 'dev_requirement' => \false), 'helmich/typo3-typoscript-parser' => array('pretty_version' => 'dev-master', 'version' => 'dev-master', 'type' => 'library', 'install_path' => __DIR__ . '/../helmich/typo3-typoscript-parser', 'aliases' => array(0 => '9999999-dev'), 'reference' => '0ccb3a6', 'dev_requirement' => \false), 'idiosyncratic/editorconfig' => array('pretty_version' => '0.1.3', 'version' => '0.1.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../idiosyncratic/editorconfig', 'aliases' => array(), 'reference' => '3445fa4a1e00f95630d4edc729c2effb116db19b', 'dev_requirement' => \false), 'myclabs/php-enum' => array('pretty_version' => '1.8.3', 'version' => '1.8.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../myclabs/php-enum', 'aliases' => array(), 'reference' => 'b942d263c641ddb5190929ff840c68f78713e937', 'dev_requirement' => \false), 'nette/neon' => array('pretty_version' => 'v3.3.2', 'version' => '3.3.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../nette/neon', 'aliases' => array(), 'reference' => '54b287d8c2cdbe577b02e28ca1713e275b05ece2', 'dev_requirement' => \false), 'nette/utils' => array('pretty_version' => 'v3.2.6', 'version' => '3.2.6.0', 'type' => 'library', 'install_path' => __DIR__ . '/../nette/utils', 'aliases' => array(), 'reference' => '2f261e55bd6a12057442045bf2c249806abc1d02', 'dev_requirement' => \false), 'nikic/php-parser' => array('pretty_version' => 'v4.13.2', 'version' => '4.13.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../nikic/php-parser', 'aliases' => array(), 'reference' => '210577fe3cf7badcc5814d99455df46564f3c077', 'dev_requirement' => \false), 'phpstan/phpdoc-parser' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../phpstan/phpdoc-parser', 'aliases' => array(), 'reference' => 'dbc093d7af60eff5cd575d2ed761b15ed40bd08e', 'dev_requirement' => \false), 'phpstan/phpstan' => array('pretty_version' => '1.3.3', 'version' => '1.3.3.0', 'type' => 'library', 'install_path' => __DIR__ . '/../phpstan/phpstan', 'aliases' => array(), 'reference' => '151a51f6149855785fbd883e79768c0abc96b75f', 'dev_requirement' => \false), 'phpstan/phpstan-phpunit' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'type' => 'phpstan-extension', 'install_path' => __DIR__ . '/../phpstan/phpstan-phpunit', 'aliases' => array(), 'reference' => '9eb88c9f689003a8a2a5ae9e010338ee94dc39b3', 'dev_requirement' => \false), 'psr/cache' => array('pretty_version' => '3.0.0', 'version' => '3.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/cache', 'aliases' => array(), 'reference' => 'aa5030cfa5405eccfdcb1083ce040c2cb8d253bf', 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/event-dispatcher' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/event-dispatcher', 'aliases' => array(), 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', 'dev_requirement' => \false), 'psr/http-message' => array('pretty_version' => '1.0.1', 'version' => '1.0.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', 'dev_requirement' => \false), 'psr/log' => array('pretty_version' => '2.0.0', 'version' => '2.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'reference' => 'ef29f6d262798707a9edd554e2b82517ef3a9376', 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0|2.0|3.0')), 'react/cache' => array('pretty_version' => 'v1.1.1', 'version' => '1.1.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/cache', 'aliases' => array(), 'reference' => '4bf736a2cccec7298bdf745db77585966fc2ca7e', 'dev_requirement' => \false), 'react/child-process' => array('pretty_version' => 'v0.6.4', 'version' => '0.6.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/child-process', 'aliases' => array(), 'reference' => 'a778f3fb828d68caf8a9ab6567fd8342a86f12fe', 'dev_requirement' => \false), 'react/dns' => array('pretty_version' => 'v1.9.0', 'version' => '1.9.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/dns', 'aliases' => array(), 'reference' => '6d38296756fa644e6cb1bfe95eff0f9a4ed6edcb', 'dev_requirement' => \false), 'react/event-loop' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/event-loop', 'aliases' => array(), 'reference' => 'be6dee480fc4692cec0504e65eb486e3be1aa6f2', 'dev_requirement' => \false), 'react/promise' => array('pretty_version' => 'v2.8.0', 'version' => '2.8.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/promise', 'aliases' => array(), 'reference' => 'f3cff96a19736714524ca0dd1d4130de73dbbbc4', 'dev_requirement' => \false), 'react/promise-timer' => array('pretty_version' => 'v1.8.0', 'version' => '1.8.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/promise-timer', 'aliases' => array(), 'reference' => '0bbbcc79589e5bfdddba68a287f1cb805581a479', 'dev_requirement' => \false), 'react/socket' => array('pretty_version' => 'v1.10.0', 'version' => '1.10.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/socket', 'aliases' => array(), 'reference' => 'd132fde589ea97f4165f2d94b5296499eac125ec', 'dev_requirement' => \false), 'react/stream' => array('pretty_version' => 'v1.2.0', 'version' => '1.2.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../react/stream', 'aliases' => array(), 'reference' => '7a423506ee1903e89f1e08ec5f0ed430ff784ae9', 'dev_requirement' => \false), 'rector/extension-installer' => array('pretty_version' => '0.11.1', 'version' => '0.11.1.0', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../rector/extension-installer', 'aliases' => array(), 'reference' => '527fcbd19f7aeb79a6fd043e1edfeab7831b59af', 'dev_requirement' => \false), 'rector/rector' => array('dev_requirement' => \false, 'replaced' => array(0 => '0.12.x-dev', 1 => 'dev-main')), 'rector/rector-cakephp' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-cakephp', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'f601f07c22bbe5d37cce17b81f62cfa99cbdf59b', 'dev_requirement' => \false), 'rector/rector-doctrine' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-doctrine', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'd65a9b076fd28e3ce85f06ea4b3a983bd9a02ca6', 'dev_requirement' => \false), 'rector/rector-generator' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-generator', 'aliases' => array(0 => '9999999-dev'), 'reference' => 'df58e868b99405e9400e8d80cb71a39b90fc3165', 'dev_requirement' => \false), 'rector/rector-laravel' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-laravel', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '96d50d4383d37615cf69d2415cc469f36c8b552f', 'dev_requirement' => \false), 'rector/rector-nette' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-nette', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'eb859a55eee64bc5dcb60e0b0254f77b8f4790d2', 'dev_requirement' => \false), 'rector/rector-phpoffice' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-phpoffice', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '3f56f3b7d7b0fd5595de4a33906caca92e76e18e', 'dev_requirement' => \false), 'rector/rector-phpunit' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-phpunit', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => 'cd2eb3d70f324d0c71bea89d26349f47f5ba6bd2', 'dev_requirement' => \false), 'rector/rector-src' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(0 => '0.12.x-dev'), 'reference' => \NULL, 'dev_requirement' => \false), 'rector/rector-symfony' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../rector/rector-symfony', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '5c3c503bf3792f3934bcee5c1e868e7d36e1881f', 'dev_requirement' => \false), 'sebastian/diff' => array('pretty_version' => '4.0.4', 'version' => '4.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../sebastian/diff', 'aliases' => array(), 'reference' => '3461e3fccc7cfdfc2720be910d3bd73c69be590d', 'dev_requirement' => \false), 'ssch/typo3-rector' => array('pretty_version' => 'dev-main', 'version' => 'dev-main', 'type' => 'rector-extension', 'install_path' => __DIR__ . '/../ssch/typo3-rector', 'aliases' => array(0 => '0.11.x-dev'), 'reference' => '0233a19d2c6531d689d644e42a95a12775ad92b7', 'dev_requirement' => \false), 'symfony/cache-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/config' => array('pretty_version' => 'v5.4.2', 'version' => '5.4.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/config', 'aliases' => array(), 'reference' => '2e082dae50da563c639119b7b52347a2a3db4ba5', 'dev_requirement' => \false), 'symfony/console' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/console', 'aliases' => array(), 'reference' => 'dd434fa8d69325e5d210f63070014d889511fcb3', 'dev_requirement' => \false), 'symfony/contracts' => array('pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/contracts', 'aliases' => array(), 'reference' => '1f4c95d47bddf0c1579779d4b85602c923ed2f1c', 'dev_requirement' => \false), 'symfony/dependency-injection' => array('pretty_version' => 'v5.4.2', 'version' => '5.4.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/dependency-injection', 'aliases' => array(), 'reference' => 'ba94559be9738d77cd29e24b5d81cf3b89b7d628', 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/event-dispatcher-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/filesystem' => array('pretty_version' => 'v6.0.0', 'version' => '6.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/filesystem', 'aliases' => array(), 'reference' => '52b3c9cce673b014915445a432339f282e002ce6', 'dev_requirement' => \false), 'symfony/finder' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/finder', 'aliases' => array(), 'reference' => '03d2833e677d48317cac852f9c0287fb048c3c5c', 'dev_requirement' => \false), 'symfony/http-client-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/polyfill-ctype' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', 'aliases' => array(), 'reference' => '30885182c981ab175d4d034db0f6f469898070ab', 'dev_requirement' => \false), 'symfony/polyfill-intl-grapheme' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme', 'aliases' => array(), 'reference' => '81b86b50cf841a64252b439e738e97f4a34e2783', 'dev_requirement' => \false), 'symfony/polyfill-intl-normalizer' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer', 'aliases' => array(), 'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8', 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'reference' => '0abb51d2f102e00a4eefcf46ba7fec406d245825', 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'reference' => '57b712b08eddb97c762a8caa32c84e037892d2e9', 'dev_requirement' => \false), 'symfony/polyfill-php81' => array('pretty_version' => 'v1.24.0', 'version' => '1.24.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php81', 'aliases' => array(), 'reference' => '5de4ba2d41b15f9bd0e19b2ab9674135813ec98f', 'dev_requirement' => \false), 'symfony/process' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/process', 'aliases' => array(), 'reference' => '71da2b7f3fdba460fcf61a97c8d3d14bbf3391ad', 'dev_requirement' => \false), 'symfony/service-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/service-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0|2.0')), 'symfony/string' => array('pretty_version' => 'v6.0.2', 'version' => '6.0.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/string', 'aliases' => array(), 'reference' => 'bae261d0c3ac38a1f802b4dfed42094296100631', 'dev_requirement' => \false), 'symfony/translation-contracts' => array('dev_requirement' => \false, 'replaced' => array(0 => 'v2.5.0')), 'symfony/var-exporter' => array('pretty_version' => 'v6.0.0', 'version' => '6.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/var-exporter', 'aliases' => array(), 'reference' => '32cf62f12d35d441da1ca4a4c0fc1cd5f2a207af', 'dev_requirement' => \false), 'symfony/yaml' => array('pretty_version' => 'v5.4.2', 'version' => '5.4.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/yaml', 'aliases' => array(), 'reference' => 'b9eb163846a61bb32dfc147f7859e274fab38b58', 'dev_requirement' => \false), 'symplify/astral' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'phpstan-extension', 'install_path' => __DIR__ . '/../symplify/astral', 'aliases' => array(), 'reference' => '1427b3f7ded4cc5e6fd2ebc6684f4e54938aea88', 'dev_requirement' => \false), 'symplify/autowire-array-parameter' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/autowire-array-parameter', 'aliases' => array(), 'reference' => '6f848cd8673f32f7b514ad8d290843327c235d47', 'dev_requirement' => \false), 'symplify/composer-json-manipulator' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'symfony-bundle', 'install_path' => __DIR__ . '/../symplify/composer-json-manipulator', 'aliases' => array(), 'reference' => '10fc9fbb5df4ef044e1b4fa5981c746b999e5c78', 'dev_requirement' => \false), 'symplify/console-color-diff' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/console-color-diff', 'aliases' => array(), 'reference' => '8cb50fd157c8bd5e07f240aa77a03ed26e329406', 'dev_requirement' => \false), 'symplify/easy-parallel' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/easy-parallel', 'aliases' => array(), 'reference' => '0d66e896130df8d29a638fb60fedc7e059a63010', 'dev_requirement' => \false), 'symplify/easy-testing' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'symfony-bundle', 'install_path' => __DIR__ . '/../symplify/easy-testing', 'aliases' => array(), 'reference' => '29f20157ee20c0ebbde8f6624fefbeefc77438eb', 'dev_requirement' => \false), 'symplify/package-builder' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/package-builder', 'aliases' => array(), 'reference' => '958ed10eb6c1f83d4719b41c87c0b3e68d981e9c', 'dev_requirement' => \false), 'symplify/rule-doc-generator-contracts' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/rule-doc-generator-contracts', 'aliases' => array(), 'reference' => '7cb38705941a9be09798d7a53dfc771aeabdc390', 'dev_requirement' => \false), 'symplify/simple-php-doc-parser' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/simple-php-doc-parser', 'aliases' => array(), 'reference' => 'f4a55b53d4e6428828db720af575cf059e110db4', 'dev_requirement' => \false), 'symplify/skipper' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/skipper', 'aliases' => array(), 'reference' => '0e2484bb010d7e78de41d35acd4f4b3e1d3567ee', 'dev_requirement' => \false), 'symplify/smart-file-system' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/smart-file-system', 'aliases' => array(), 'reference' => '9f3042ce10241291221609f7bb2f58ad67e42f81', 'dev_requirement' => \false), 'symplify/symfony-php-config' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/symfony-php-config', 'aliases' => array(), 'reference' => '55c28df2115ed48fb5bb1923aa6c7d31c1a8a753', 'dev_requirement' => \false), 'symplify/symplify-kernel' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/symplify-kernel', 'aliases' => array(), 'reference' => '28150b7841866d50ac54d3675bc827eb0843d94e', 'dev_requirement' => \false), 'symplify/vendor-patches' => array('pretty_version' => '10.0.4', 'version' => '10.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../symplify/vendor-patches', 'aliases' => array(), 'reference' => '0e838df280a092018513f7f82ef04c32d820ffce', 'dev_requirement' => \false), 'tracy/tracy' => array('pretty_version' => 'v2.9.0', 'version' => '2.9.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../tracy/tracy', 'aliases' => array(), 'reference' => '551a7d936dfbd7075ced9a604b9527d1f7bfa8b4', 'dev_requirement' => \false), 'webmozart/assert' => array('pretty_version' => '1.10.0', 'version' => '1.10.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../webmozart/assert', 'aliases' => array(), 'reference' => '6964c76c7804814a842473e0c8fd15bab0f18e25', 'dev_requirement' => \false))); diff --git a/vendor/phpstan/phpstan/phpstan.phar b/vendor/phpstan/phpstan/phpstan.phar index 3fd92fdbcce1..7843d2e88a62 100644 Binary files a/vendor/phpstan/phpstan/phpstan.phar and b/vendor/phpstan/phpstan/phpstan.phar differ diff --git a/vendor/phpstan/phpstan/phpstan.phar.asc b/vendor/phpstan/phpstan/phpstan.phar.asc index c42d964ff924..2043f2bd0ec9 100644 --- a/vendor/phpstan/phpstan/phpstan.phar.asc +++ b/vendor/phpstan/phpstan/phpstan.phar.asc @@ -1,16 +1,16 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEE0yaA1ZV9xxFr4pwUzxoQjQ565yAFAmHXIrMACgkQzxoQjQ56 -5yDxSQ//aQCmImNh4Bp0rTLH9wr4RWymWS5VYMsAif9IcaI7rgYranZFt6z2Tjcy -uR7NNa6EumExgY4fZvQ8XF/4P36ckyk+z6mCPhd4YiM8xswNFq6jdOgNzOAQATS3 -fWdEaQHiwx2ffb+saoz85BUIEv4w4AUjSja5CpZuavw/MFTrMEsUTuak10yfvnZ/ -YPkxQgEmvJ2fh66F2nIfOFLj/QFnepFaiEeUEgi0JWkYW7pa/TXSJ0ESf6pIt057 -PuAI1XaDlBhYOx+Vw8N0IRPhedz6tKL3t8Qwoi5Sp+gvJA1Z40n7KwQv57XMWGto -4w50K2WEwnmDLME6cmw0CwZEeu+vNsbdReZlpIkyBj9TNxbpZ8MPgXxAcuG3gTwX -+mkgvRE7od20iyAZCmPe/wiNr3RhaIbcn0ZGjixvW3FwX0WUfYUkbATHUPwI785H -bvdmjP4YeHqd9HGWfCdthpzLATdxSoCtR7ZqopU1cMwyq70zu8heA4hg6nxZYBT3 -1HkYpjklKgXoKMbww+miP+0hcbNXE19KNNGT9XWCmgQXXFT9UG7389dhptnep1Aj -aQ0gWVBQ5PT9kFjetmu7fuAYQgDFjXvyprlRaYTwStpiy5gaq8ON72KXUky0jI9f -a2AUoF/irs7asRJuadWGwjcgMcxGNssvxmhIrp1fmjzaBtXlbqk= -=r+5D +iQIzBAABCgAdFiEE0yaA1ZV9xxFr4pwUzxoQjQ565yAFAmHYDI4ACgkQzxoQjQ56 +5yDZKA/8CdsoOocXxJvA9aJZSCszu7+/l5AZFTKjemR1hbpsiHCHfqDkdFZGYd3j +j1FZkYn6yyiJnY+WfEfwYjqtscoDcyfaunONrmOtw3iDUrxXkla60SBxN2b1sufA +jnkg2iKXksTh4Xxh6frHxo6uqRVweW60FPDfA//DaJgAASiSP+YA2Wl8iVyVNS8L +C4Xs4Jwp21TUlnRndCa4QSZLOPzdnypc3yfNfF1mCv1CeU5f2BWWjCH8ErikRTWy +61rSfDA8wHEvrpLC5ktu/Qk5f1XwZyw306q7O30BwwtzSFg6d5KagXU7nDIwLPhd +DD2bPW8DI3wV+1cXxigUEmJTMaYKSQflh+B7VU6gmFwN2bPdILBb6GIGPYGVJace +LZ3nL7t8qEmxlzrx/xmEobZn/KZ4j+dykgrLHojb7zAwiliLFAFuG99M+PLUWhVv +xfj58D+HtE5si3d7E4sbJIZHs9BVmeFShlG5pMYIKMq5XRyr0aZLdNUBchJdINTS +9iVF5vQcpYKpe1EMa90k1SqYW/02oDuOia2mMhmXZNQnpQBnTRoem5JgSAmBRkP2 +0Utsx37ieHdPFzT5cP8/USE0ojxYWboG05CVcaL7ez8VYj2qFQTkfwLVF0sACHqb +VPXxBweKES0ZBXbeD8Im2ArLvWP4aEKmD7R/yn7fqICKLJuR9iM= +=hEnx -----END PGP SIGNATURE----- diff --git a/vendor/scoper-autoload.php b/vendor/scoper-autoload.php index d3402de68e3c..76d876a410cf 100644 --- a/vendor/scoper-autoload.php +++ b/vendor/scoper-autoload.php @@ -9,8 +9,8 @@ if (!class_exists('AutoloadIncluder', false) && !interface_exists('AutoloadIncluder', false) && !trait_exists('AutoloadIncluder', false)) { spl_autoload_call('RectorPrefix20220107\AutoloadIncluder'); } -if (!class_exists('ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747', false) && !interface_exists('ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747', false) && !trait_exists('ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747', false)) { - spl_autoload_call('RectorPrefix20220107\ComposerAutoloaderInit53331b101b45a9a0e15c7c77733ca747'); +if (!class_exists('ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066', false) && !interface_exists('ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066', false) && !trait_exists('ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066', false)) { + spl_autoload_call('RectorPrefix20220107\ComposerAutoloaderInitdee307f2a8c055650fa59d4c018b6066'); } if (!class_exists('Helmich\TypoScriptParser\Parser\AST\Statement', false) && !interface_exists('Helmich\TypoScriptParser\Parser\AST\Statement', false) && !trait_exists('Helmich\TypoScriptParser\Parser\AST\Statement', false)) { spl_autoload_call('RectorPrefix20220107\Helmich\TypoScriptParser\Parser\AST\Statement'); @@ -71,9 +71,9 @@ function print_node() { return \RectorPrefix20220107\print_node(...func_get_args()); } } -if (!function_exists('composerRequire53331b101b45a9a0e15c7c77733ca747')) { - function composerRequire53331b101b45a9a0e15c7c77733ca747() { - return \RectorPrefix20220107\composerRequire53331b101b45a9a0e15c7c77733ca747(...func_get_args()); +if (!function_exists('composerRequiredee307f2a8c055650fa59d4c018b6066')) { + function composerRequiredee307f2a8c055650fa59d4c018b6066() { + return \RectorPrefix20220107\composerRequiredee307f2a8c055650fa59d4c018b6066(...func_get_args()); } } if (!function_exists('scanPath')) {