function Installer::setMinimalUpdate
Only relevant for partial updates (with setUpdateAllowList), if this is enabled currently locked versions will be preferred for packages which are not in the allowlist
This reduces the update to
Return value
File
-
vendor/
composer/ composer/ src/ Composer/ Installer.php, line 1483
Class
- Installer
- @author Jordi Boggiano <j.boggiano@seld.be> @author Beau Simensen <beau@dflydev.com> @author Konstantin Kudryashov <ever.zet@gmail.com> @author Nils Adermann <naderman@naderman.de>
Namespace
ComposerCode
public function setMinimalUpdate(bool $minimalUpdate = true) : self {
$this->minimalUpdate = $minimalUpdate;
return $this;
}