function Installer::disablePlugins
Disables plugins.
Call this if you want to ensure that third-party code never gets executed. The default is to automatically install, and execute custom third-party installers.
Return value
File
-
vendor/
composer/ composer/ src/ Composer/ Installer.php, line 1565
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 disablePlugins() : self {
$this->installationManager
->disablePlugins();
return $this;
}