Skip to content

Commit

Permalink
Merge pull request #27 from Ayesh/composer2
Browse files Browse the repository at this point in the history
Add support for Composer version 2
  • Loading branch information
johnpbloch authored Apr 16, 2020
2 parents bb894f3 + 7410911 commit 237faae
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/johnpbloch/Composer/WordPressCorePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,16 @@ public function activate( Composer $composer, IOInterface $io ) {
$composer->getInstallationManager()->addInstaller( $installer );
}

public function deactivate(Composer $composer, IOInterface $io)
{
}
/**
* {@inheritDoc}
*/
public function deactivate( Composer $composer, IOInterface $io ) {
}

/**
* {@inheritDoc}
*/
public function uninstall( Composer $composer, IOInterface $io ) {
}

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

0 comments on commit 237faae

Please sign in to comment.