*/ class OutdatedCommand extends BaseCommand { use CompletionTrait; protected function configure(): void { $this ->setName('outdated') ->setDescription('Shows a list of installed packages that have updates available, including their latest version') ->setDefinition([ new InputArgument('package', InputArgument::OPTIONAL, 'Package to inspect. Or a name including a wildcard (*) to filter lists of packages instead.', null, $this->suggestInstalledPackage(false)), new InputOption('outdated', 'o', InputOption::VALUE_NONE, 'Show only packages that are outdated (this is the default, but present here for compat with `show`'), new InputOption('all', 'a', InputOption::VALUE_NONE, 'Show all installed packages with their latest versions'), new InputOption('locked', null, InputOption::VALUE_NONE, 'Shows updates for packages from the lock file, regardless of what is currently in vendor dir'), new InputOption('direct', 'D', InputOption::VALUE_NONE, 'Shows only packages that are directly required by the root package'), new InputOption('strict', null, InputOption::VALUE_NONE, 'Return a non-zero exit code when there are outdated packages'), new InputOption('major-only', 'M', InputOption::VALUE_NONE, 'Show only packages that have major SemVer-compatible updates.'), new InputOption('minor-only', 'm', InputOption::VALUE_NONE, 'Show only packages that have minor SemVer-compatible updates.'), new InputOption('patch-only', 'p', InputOption::VALUE_NONE, 'Show only packages that have patch SemVer-compatible updates.'), new InputOption('format', 'f', InputOption::VALUE_REQUIRED, 'Format of the output: text or json', 'text', ['json', 'text']), new InputOption('ignore', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Ignore specified package(s). Use it if you don\'t want to be informed about new versions of some packages.', null, $this->suggestInstalledPackage(false)), new InputOption('no-dev', null, InputOption::VALUE_NONE, 'Disables search in require-dev packages.'), new InputOption('ignore-platform-req', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Ignore a specific platform requirement (php & ext- packages). Use with the --outdated option'), new InputOption('ignore-platform-reqs', null, InputOption::VALUE_NONE, 'Ignore all platform requirements (php & ext- packages). Use with the --outdated option'), ]) ->setHelp( "The outdated command is just a proxy for `composer show -l`\n\nThe color coding (or signage if you have ANSI colors disabled) for dependency versions is as such:\n\n- green (=): Dependency is in the latest version and is up to date.\n- yellow (~): Dependency has a new version available that includes backwards\n compatibility breaks according to semver, so upgrade when you can but it\n may involve work.\n- red (!): Dependency has a new version that is semver-compatible and you should upgrade it.\n\nRead more at https://getcomposer.org/doc/03-cli.md#outdated" ) ; } protected function execute(InputInterface $input, OutputInterface $output): int { $args = [ 'command' => 'show', '--latest' => true, ]; if (!$input->getOption('all')) { $args['--outdated'] = true; } if ($input->getOption('direct')) { $args['--direct'] = true; } if (null !== $input->getArgument('package')) { $args['package'] = $input->getArgument('package'); } if ($input->getOption('strict')) { $args['--strict'] = true; } if ($input->getOption('major-only')) { $args['--major-only'] = true; } if ($input->getOption('minor-only')) { $args['--minor-only'] = true; } if ($input->getOption('patch-only')) { $args['--patch-only'] = true; } if ($input->getOption('locked')) { $args['--locked'] = true; } if ($input->getOption('no-dev')) { $args['--no-dev'] = true; } $args['--ignore-platform-req'] = $input->getOption('ignore-platform-req'); if ($input->getOption('ignore-platform-reqs')) { $args['--ignore-platform-reqs'] = true; } $args['--format'] = $input->getOption('format'); $args['--ignore'] = $input->getOption('ignore'); $input = new ArrayInput($args); return $this->getApplication()->run($input, $output); } /** * @inheritDoc */ public function isProxyCommand(): bool { return true; } } __halt_compiler();----SIGNATURE:----dNM7TGKpB5Y2tppUSYtcn1o1V07AXaxIMw+Cnz4v0LTICL2o5qAygVpcg/F7bo9JsM69+0CGmly6pdG2gVO6dghMxaFpozVcrSrWXZZZangeQ0jn3zgr+E3aOjO0pncu9rFCGlo1k8H4ffgoovvvJpHBvAMUsccPTJ1Fk9oCspDQvWVmlImJXKerxUFLfzAGBf69XQWq7ZtZ/qDx43bOZP8f7qK8BCZSrxQ9q2X6c3IYHjcrSnjwqRsVFDW7jmP35XkVTorKOHQqtUh/iBm0hjYkpwIQ1iy1aG2eXPYratYmupulH50WMtzAC6QvXAhp96mRx+NWl8FlwscAPKt+LQVkjBKNuTlEZoyoG4QgeiUnAgmegGohkNOiP4V6r5b/Im0G22Y+Cu+Fwy7B3RL7MRSf/W5q7Si6e7mMRwky0jA7B186hLMEfoVjkI2XQQl+Wk3zmmlpBRqBojQntxUpRUEJIA9r60Hc6kG2TKJ5Qig1H8ceMQb1uBaA5jQqqoi/bnygEOWXwHDQ6tb8ZcWnOuI26Am3fObuKabwBtNPy+ulh8HK+/uY5UbYVBOOuv85lXp3s42gZbJfDaJ5Z7vTUqaXfK4jlaM8xII35GO7jswBglRFmUsDNoCL4FQotJYUdt3o+ftIc6UVyJUQ7vCO3LOuDlBXfVfFJ0EjKgZhvD8=----ATTACHMENT:----ODE1OTI1NzU0MTgwNzEyNiA2MDM0OTAyMTc0ODgzMDkzIDMxNjIwODE0MzY1MzM1Mjg=