You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
864 B
36 lines
864 B
11 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\composer;
|
||
|
|
||
|
use Composer\Composer;
|
||
|
use Composer\IO\IOInterface;
|
||
|
use Composer\Plugin\PluginInterface;
|
||
|
|
||
|
/**
|
||
11 years ago
|
* Plugin is the composer plugin that registers the Yii composer installer.
|
||
11 years ago
|
*
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
11 years ago
|
class Plugin implements PluginInterface
|
||
11 years ago
|
{
|
||
|
/**
|
||
11 years ago
|
* @inheritdoc
|
||
11 years ago
|
*/
|
||
|
public function activate(Composer $composer, IOInterface $io)
|
||
|
{
|
||
|
$installer = new Installer($io, $composer);
|
||
|
$composer->getInstallationManager()->addInstaller($installer);
|
||
11 years ago
|
$file = rtrim($composer->getConfig()->get('vendor-dir'), '/') . '/yiisoft/extensions.php';
|
||
11 years ago
|
if (!is_file($file)) {
|
||
11 years ago
|
@mkdir(dirname($file));
|
||
11 years ago
|
file_put_contents($file, "<?php\n\nreturn [];\n");
|
||
11 years ago
|
}
|
||
11 years ago
|
}
|
||
|
}
|