From d76c40e766869dd4e79cb6cc2d3eaa54dc1b7fca Mon Sep 17 00:00:00 2001 From: Gaetan Date: Sun, 25 Oct 2020 16:13:53 +0100 Subject: [PATCH] fix(plugin): Add new abstract methods Mandatory since Composer 2.0 --- src/ThemeInstallerPlugin.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/ThemeInstallerPlugin.php b/src/ThemeInstallerPlugin.php index 8993f8f..9ba2ee0 100644 --- a/src/ThemeInstallerPlugin.php +++ b/src/ThemeInstallerPlugin.php @@ -17,4 +17,20 @@ public function activate(Composer $composer, IOInterface $io) $composer->getInstallationManager()->addInstaller($installer); } + + /** + * {@inheritdoc} + */ + public function deactivate(Composer $composer, IOInterface $io) + { + // + } + + /** + * {@inheritdoc} + */ + public function uninstall(Composer $composer, IOInterface $io) + { + // + } }