mirror of
https://github.com/composer/composer
synced 2025-05-10 09:02:59 +00:00
support COMPOSER env var in validate command (#6834)
* support COMPOSER env var in validate command
This commit is contained in:
parent
6256e17149
commit
ecb26c7b75
1 changed files with 2 additions and 2 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue