Browse Source

Suggest using -p when a platform package can not be found in show command

Jordi Boggiano 5 years ago
parent
commit
b9d00153d9
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/Composer/Command/ShowCommand.php

+ 3 - 0
src/Composer/Command/ShowCommand.php

@@ -201,6 +201,9 @@ EOT
                 if (empty($package)) {
                     $options = $input->getOptions();
                     if (!isset($options['working-dir']) || !file_exists('composer.json')) {
+                        if (preg_match(PlatformRepository::PLATFORM_PACKAGE_REGEX, $input->getArgument('package')) && !$input->getOption('platform')) {
+                            throw new \InvalidArgumentException('Package ' . $packageFilter . ' not found, try using --platform (-p) to show platform packages.');
+                        }
                         throw new \InvalidArgumentException('Package ' . $packageFilter . ' not found');
                     }