diff --git a/src/Handler.php b/src/Handler.php index df4d726769a640adebc3e20316a9ead176f65ab8..c590a8d7da823740b99de12594a54415dcb0a2da 100644 --- a/src/Handler.php +++ b/src/Handler.php @@ -72,6 +72,12 @@ class Handler { 'ahoyapi' => 'v2', 'commands' => [], ]; + + $settings = new Utils($this->composer); + foreach ($settings->getSubSubSection('extra', 'lakedrops', 'ahoy') as $command => $commands) { + $ahoy['commands'][$command] = $commands; + } + $installationManager = $this->composer->getInstallationManager(); foreach ($this->composer->getRepositoryManager()->getLocalRepository()->search('lakedrops/*') as $pkg) { $pluginRoot = $installationManager->getInstallPath($this->getPackage($pkg['name']));