Browse Source

support COMPOSER env var in validate command (#6834)

* support COMPOSER env var in validate command
Markus Staab 7 years ago
parent
commit
ecb26c7b75
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Composer/Command/ValidateCommand.php

+ 2 - 2
src/Composer/Command/ValidateCommand.php

@@ -44,7 +44,7 @@ class ValidateCommand extends BaseCommand
                 new InputOption('no-check-publish', null, InputOption::VALUE_NONE, 'Do not check for publish errors'),
                 new InputOption('with-dependencies', 'A', InputOption::VALUE_NONE, 'Also validate the composer.json of all installed dependencies'),
                 new InputOption('strict', null, InputOption::VALUE_NONE, 'Return a non-zero exit code for warnings as well as errors'),
-                new InputArgument('file', InputArgument::OPTIONAL, 'path to composer.json file', './composer.json'),
+                new InputArgument('file', InputArgument::OPTIONAL, 'path to composer.json file'),
             ))
             ->setHelp(<<<EOT
 The validate command validates a given composer.json and composer.lock
@@ -66,7 +66,7 @@ EOT
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
-        $file = $input->getArgument('file');
+        $file = $input->getArgument('file') ?: Factory::getComposerFile();
         $io = $this->getIO();
 
         if (!file_exists($file)) {