for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the phpdish/theme-installer package.
*
* (c) Slince <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPDish\ThemeInstaller;
use Composer\Composer;
use Composer\IO\IOInterface;
use Composer\Plugin\PluginInterface;
class ThemeInstallerPlugin implements PluginInterface
{
/**
* {@inheritdoc}
public function activate(Composer $composer, IOInterface $io)
$composer->getInstallationManager()->addInstaller(new ThemeInstaller($io, $composer));
}