소스 검색

support COMPOSER env var in validate command (#6834)

* support COMPOSER env var in validate command
Markus Staab 7 년 전
부모
커밋
ecb26c7b75
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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)) {