`composer bump` - Fix typo in the warning message (#10841)
Change warning text 'Alternatively you can use --dev-only to only bump dependencies within "require-dev"' that said `--dev` instead of `--dev-only`.pull/10840/head^2
parent
6186d0c1d5
commit
3e844cc48f
|
@ -126,7 +126,7 @@ EOT
|
||||||
$contents = $composerJson->read();
|
$contents = $composerJson->read();
|
||||||
if (!isset($contents['type'])) {
|
if (!isset($contents['type'])) {
|
||||||
$io->writeError('<warning>If your package is not a library, you can explicitly specify the "type" by using "composer config type project".</warning>');
|
$io->writeError('<warning>If your package is not a library, you can explicitly specify the "type" by using "composer config type project".</warning>');
|
||||||
$io->writeError('<warning>Alternatively you can use --dev to only bump dependencies within "require-dev".</warning>');
|
$io->writeError('<warning>Alternatively you can use --dev-only to only bump dependencies within "require-dev".</warning>');
|
||||||
}
|
}
|
||||||
unset($contents);
|
unset($contents);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue