diff --git a/src/Handler.php b/src/Handler.php index 0472c497e0d703014b323512ac1e7203f138ab67..fdba9b2f81a1aab2a25a375572434d59513089d0 100644 --- a/src/Handler.php +++ b/src/Handler.php @@ -42,8 +42,8 @@ class Handler extends BaseHandler { $rootDir = getcwd(); $installationManager = $this->composer->getInstallationManager(); - foreach ($this->composer->getRepositoryManager()->getLocalRepository()->search('lakedrops/*') as $pkg) { - $pluginRoot = $installationManager->getInstallPath($this->getPackage($pkg['name'])); + foreach ($this->composer->getRepositoryManager()->getLocalRepository()->getPackages() as $pkg) { + $pluginRoot = $installationManager->getInstallPath($pkg); if (file_exists($pluginRoot . '/.ahoy.l3d.yml')) { $pluginAhoy = Yaml::parseFile($pluginRoot . '/.ahoy.l3d.yml'); foreach ($pluginAhoy['commands'] as $command => $commands) {