diff --git a/src/Composer/Command/CreateProjectCommand.php b/src/Composer/Command/CreateProjectCommand.php index ace946f3a..62fc7e0ee 100644 --- a/src/Composer/Command/CreateProjectCommand.php +++ b/src/Composer/Command/CreateProjectCommand.php @@ -104,6 +104,9 @@ EOT $this->updatePreferredOptions($config, $input, $preferSource, $preferDist, true); + if ($input->getOption('dev')) { + $io->writeError('You are using the deprecated option "dev". Dev packages are installed by default now.'); + } if ($input->getOption('no-custom-installers')) { $io->writeError('You are using the deprecated option "no-custom-installers". Use "no-plugins" instead.'); $input->setOption('no-plugins', true);