本文整理汇总了PHP中Composer\Composer::getPluginManager方法的典型用法代码示例。如果您正苦于以下问题:PHP Composer::getPluginManager方法的具体用法?PHP Composer::getPluginManager怎么用?PHP Composer::getPluginManager使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Composer\Composer
的用法示例。
在下文中一共展示了Composer::getPluginManager方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addComposerPlugin
private function addComposerPlugin(PluginInterface $plugin)
{
$pluginManagerReflection = new \ReflectionClass($this->composer->getPluginManager());
$addPluginReflection = $pluginManagerReflection->getMethod('addPlugin');
$addPluginReflection->setAccessible(true);
$addPluginReflection->invoke($this->composer->getPluginManager(), $plugin);
}
示例2: test_it_receives_event
public function test_it_receives_event()
{
$this->composer->getPluginManager()->addPlugin(new ChangelogsPlugin());
$initialPackage = new Package('foo/bar', '1.0.0.0', 'v1.0.0');
$initialPackage->setSourceUrl('https://github.com/foo/bar.git');
$targetPackage = new Package('foo/bar', '1.0.1.0', 'v1.0.1');
$targetPackage->setSourceUrl('https://github.com/foo/bar.git');
$operation = new UpdateOperation($initialPackage, $targetPackage);
$this->composer->getEventDispatcher()->dispatchPackageEvent(PackageEvents::POST_PACKAGE_UPDATE, false, new DefaultPolicy(false, false), new Pool(), new CompositeRepository([]), new Request(new Pool()), [$operation], $operation);
$this->composer->getEventDispatcher()->dispatchScript(ScriptEvents::POST_UPDATE_CMD);
$expectedOutput = <<<OUTPUT
Changelogs summary:
- foo/bar updated from v1.0.0 to v1.0.1
See changes: https://github.com/foo/bar/compare/v1.0.0...v1.0.1
Release notes: https://github.com/foo/bar/releases/tag/v1.0.1
OUTPUT;
$this->assertSame($expectedOutput, $this->io->getOutput());
}