2013-08-13 13:55:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Installer;
|
|
|
|
|
|
|
|
use Composer\Composer;
|
2013-08-15 14:58:48 +00:00
|
|
|
use Composer\IO\IOInterface;
|
2013-08-13 13:55:52 +00:00
|
|
|
use Composer\Plugin\PluginInterface;
|
|
|
|
|
|
|
|
class Plugin2 implements PluginInterface
|
|
|
|
{
|
|
|
|
public $version = 'installer-v2';
|
|
|
|
|
2013-08-15 14:58:48 +00:00
|
|
|
public function activate(Composer $composer, IOInterface $io)
|
2013-08-13 13:55:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|