function BaseInstaller::getLocations
Gets the installer's locations
Return value
array<string, string> map of package types => install path
1 call to BaseInstaller::getLocations()
- BaseInstaller::getInstallPath in vendor/
composer/ installers/ src/ Composer/ Installers/ BaseInstaller.php - Return the install path based on package type.
2 methods override BaseInstaller::getLocations()
- CakePHPInstaller::getLocations in vendor/
composer/ installers/ src/ Composer/ Installers/ CakePHPInstaller.php - Change the default plugin location when cakephp >= 3.0
- ExpressionEngineInstaller::getLocations in vendor/
composer/ installers/ src/ Composer/ Installers/ ExpressionEngineInstaller.php - Gets the installer's locations
File
-
vendor/
composer/ installers/ src/ Composer/ Installers/ BaseInstaller.php, line 85
Class
Namespace
Composer\InstallersCode
public function getLocations(string $frameworkType) {
return $this->locations;
}