We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ae6b2 commit e33f5d4Copy full SHA for e33f5d4
1 file changed
src/ExtensionInstaller.php
@@ -26,6 +26,13 @@ abstract class ExtensionInstaller extends LibraryInstaller
26
27
protected function getRoundcubemailInstallPath(): string
28
{
29
+ $rootPackage = $this->composer->getPackage();
30
+ if ($rootPackage->getName() === 'roundcube/roundcubemail') {
31
+ $this->initializeVendorDir();
32
+
33
+ return dirname($this->vendorDir);
34
+ }
35
36
$roundcubemailPackage = $this->composer
37
->getRepositoryManager()
38
->findPackage('roundcube/roundcubemail', '*');
0 commit comments