Skip to content

Commit

Permalink
Support Composer v2 PluginInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
erroric authored Oct 28, 2020
1 parent 6a3c1d7 commit fa07af1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/PP/Composer/InstallerPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,12 @@ public function activate(Composer $composer, IOInterface $io) {
$installer = new Installer($io, $composer);
$composer->getInstallationManager()->addInstaller($installer);
}

public function deactivate(Composer $composer, IOInterface $io)
{
}

public function uninstall(Composer $composer, IOInterface $io)
{
}
}

0 comments on commit fa07af1

Please sign in to comment.