2013-08-13 13:55:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Installer;
|
|
|
|
|
|
|
|
use Composer\Composer;
|
|
|
|
use Composer\Plugin\PluginInterface;
|
|
|
|
|
|
|
|
class Plugin1 implements PluginInterface
|
|
|
|
{
|
|
|
|
public $name = 'plugin1';
|
|
|
|
public $version = 'installer-v4';
|
|
|
|
|
2013-08-14 17:13:27 +00:00
|
|
|
public function activate()
|
2013-08-13 13:55:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|