本文整理匯總了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());
}