1
0
Fork 0

Added deprecated warning for the dev option

pull/3517/head
Wouter J 2014-12-08 01:03:58 +01:00 committed by WouterJ
parent 029f709300
commit 32218e97d1
2 changed files with 8 additions and 0 deletions

View File

@ -74,6 +74,10 @@ EOT
$input->setOption('no-plugins', true);
}
if ($input->getOption('dev')) {
$output->writeln('<warning>You are using the deprecated option "dev". Dev packages are installed by default now.</warning>');
}
$composer = $this->getComposer(true, $input->getOption('no-plugins'));
$composer->getDownloadManager()->setOutputProgress(!$input->getOption('no-progress'));
$io = $this->getIO();

View File

@ -76,6 +76,10 @@ EOT
$input->setOption('no-plugins', true);
}
if ($input->getOption('dev')) {
$output->writeln('<warning>You are using the deprecated option "dev". Dev packages are installed by default now.</warning>');
}
$composer = $this->getComposer(true, $input->getOption('no-plugins'));
$composer->getDownloadManager()->setOutputProgress(!$input->getOption('no-progress'));
$io = $this->getIO();