Plugin8.php 423 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Installer;
  3. use Composer\Composer;
  4. use Composer\IO\IOInterface;
  5. use Composer\Plugin\PluginInterface;
  6. use Composer\Plugin\CommandsProviderInterface;
  7. class Plugin8 implements PluginInterface, CommandsProviderInterface
  8. {
  9. public $version = 'installer-v8';
  10. public function activate(Composer $composer, IOInterface $io)
  11. {
  12. }
  13. public function getCommands()
  14. {
  15. return null;
  16. }
  17. }