mirror of
https://github.com/composer/composer
synced 2025-05-09 08:32:56 +00:00
Preserve case of packages for installations
This commit is contained in:
parent
b947420cae
commit
2ba48b58db
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class LibraryInstaller implements InstallerInterface
|
|||
public function getInstallPath(PackageInterface $package)
|
||||
{
|
||||
$targetDir = $package->getTargetDir();
|
||||
return ($this->vendorDir ? $this->vendorDir.'/' : '') . $package->getName() . ($targetDir ? '/'.$targetDir : '');
|
||||
return ($this->vendorDir ? $this->vendorDir.'/' : '') . $package->getPrettyName() . ($targetDir ? '/'.$targetDir : '');
|
||||
}
|
||||
|
||||
protected function installBinaries(PackageInterface $package)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue