function Installer::setRunScripts
set whether to run scripts or not
This is disabled implicitly when enabling dryRun
Return value
Deprecated
Use setRunScripts(false) on the EventDispatcher instance being injected instead
File
-
vendor/
composer/ composer/ src/ Composer/ Installer.php, line 1332
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 setRunScripts(bool $runScripts = true) : self {
$this->runScripts = $runScripts;
return $this;
}