aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/plugin/fixtures/alias-v1/Alias/Plugin.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-07 20:51:59 +0900
committernsfisis <nsfisis@gmail.com>2026-08-07 20:51:59 +0900
commit427e059e4ffc6ce5ff130c803f9e533b7c125089 (patch)
tree96b7c8690bbba0f3238dfe8f52e7fb572dced1e7 /crates/shirabe/tests/plugin/fixtures/alias-v1/Alias/Plugin.php
parentae365645730b95d5b01b0df7382b91668d5fa24e (diff)
downloadphp-shirabe-427e059e4ffc6ce5ff130c803f9e533b7c125089.tar.gz
php-shirabe-427e059e4ffc6ce5ff130c803f9e533b7c125089.tar.zst
php-shirabe-427e059e4ffc6ce5ff130c803f9e533b7c125089.zip
feat(plugin): cross alias packages over RPC as proxy stubs
AliasPackage, CompleteAliasPackage and RootAliasPackage now have generated proxy stubs, so a package handed to a plugin no longer has to be a real package: it crosses as the stub matching its concrete variant, answers getAliasOf / setRootPackageAlias / isRootPackageAlias / hasSelfVersionRequires, and can be constructed from plugin code. The setters RootPackageInterface declares are routed through that interface for every root package instead of through the base Package state. Only the alias variant needs it -- RootAliasPackage overrides all nine to write through to the package it aliases -- but a real RootPackage delegates to the same base state either way, so both take one path. An alias of an alias has no representation here, so narrowing the constructor argument to a real package is an explicit error rather than a silent demotion. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/tests/plugin/fixtures/alias-v1/Alias/Plugin.php')
-rw-r--r--crates/shirabe/tests/plugin/fixtures/alias-v1/Alias/Plugin.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/crates/shirabe/tests/plugin/fixtures/alias-v1/Alias/Plugin.php b/crates/shirabe/tests/plugin/fixtures/alias-v1/Alias/Plugin.php
new file mode 100644
index 00000000..373348e8
--- /dev/null
+++ b/crates/shirabe/tests/plugin/fixtures/alias-v1/Alias/Plugin.php
@@ -0,0 +1,63 @@
+<?php
+
+namespace Alias;
+
+use Composer\Composer;
+use Composer\IO\IOInterface;
+use Composer\Package\AliasPackage;
+use Composer\Package\CompleteAliasPackage;
+use Composer\Package\RootAliasPackage;
+use Composer\Plugin\PluginInterface;
+
+class Plugin implements PluginInterface
+{
+ public function activate(Composer $composer, IOInterface $io)
+ {
+ $aliased = null;
+ foreach ($composer->getRepositoryManager()->getLocalRepository()->getPackages() as $package) {
+ if (!$package instanceof AliasPackage) {
+ continue;
+ }
+ $aliased = $package->getAliasOf();
+ $io->write('alias: ' . self::describe($package));
+ $io->write('alias description: ' . $package->getDescription());
+ $io->write('alias self-version: ' . ($package->hasSelfVersionRequires() ? 'yes' : 'no'));
+ $io->write('alias root-flag: ' . ($package->isRootPackageAlias() ? 'yes' : 'no'));
+ $package->setRootPackageAlias(true);
+ $io->write('alias root-flag: ' . ($package->isRootPackageAlias() ? 'yes' : 'no'));
+ }
+
+ $root = $composer->getPackage();
+ if (!$root instanceof RootAliasPackage) {
+ throw new \RuntimeException('not a RootAliasPackage: ' . get_class($root));
+ }
+ $io->write('root: ' . self::describe($root));
+ $io->write('root aliasOf identity: ' . ($root->getAliasOf() === $root->getAliasOf() ? 'same' : 'distinct'));
+ $io->write('root minimum stability: ' . $root->getMinimumStability());
+ $root->setMinimumStability('dev');
+ $root->setExtra(['seen-by' => 'alias-v1']);
+
+ $built = new CompleteAliasPackage($aliased, '9.9.9.9', '9.9.9');
+ $io->write('built: ' . self::describe($built));
+ }
+
+ public function deactivate(Composer $composer, IOInterface $io)
+ {
+ }
+
+ public function uninstall(Composer $composer, IOInterface $io)
+ {
+ }
+
+ private static function describe(AliasPackage $package): string
+ {
+ return sprintf(
+ '%s %s %s of %s %s',
+ get_class($package),
+ $package->getName(),
+ $package->getPrettyVersion(),
+ get_class($package->getAliasOf()),
+ $package->getAliasOf()->getPrettyVersion()
+ );
+ }
+}