diff --git a/src/keeko/composer/KeekoComposerPlugin.php b/src/keeko/composer/KeekoComposerPlugin.php index 03ba798..3846514 100644 --- a/src/keeko/composer/KeekoComposerPlugin.php +++ b/src/keeko/composer/KeekoComposerPlugin.php @@ -2,13 +2,14 @@ namespace keeko\composer; use Composer\Plugin\PluginInterface; -use Composer\Installer\LibraryInstaller; use Composer\IO\IOInterface; use Composer\Composer; -class KeekoComposerPlugin extends LibraryInstaller implements PluginInterface { +class KeekoComposerPlugin implements PluginInterface { + public function activate(Composer $composer, IOInterface $io) { $installer = new KeekoComposerInstaller($io, $composer); $composer->getInstallationManager()->addInstaller($installer); } + } \ No newline at end of file