aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/licenses_command.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-26 02:26:08 +0900
committernsfisis <nsfisis@gmail.com>2026-06-26 02:26:08 +0900
commit8c4dc6cd48457f154eb067f296d79ef911573c91 (patch)
tree10acc2f4f64813f9b206d474306e5680234ec73d /crates/shirabe/src/command/licenses_command.rs
parent6c89c720d9e4728c288e3c66ffb7dcb4cba5121c (diff)
downloadphp-shirabe-8c4dc6cd48457f154eb067f296d79ef911573c91.tar.gz
php-shirabe-8c4dc6cd48457f154eb067f296d79ef911573c91.tar.zst
php-shirabe-8c4dc6cd48457f154eb067f296d79ef911573c91.zip
fix(check-platform-reqs-command): add PlatformRepository to existing composite
execute nested the already-built InstalledRepository inside a second InstalledRepository, tripping the assertion that an InstalledRepository may not contain another. PHP adds a PlatformRepository to the existing composite via addRepository; do the same. Un-ignores CheckPlatformReqsCommandTest::test_failed_platform_requirement. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/command/licenses_command.rs')
-rw-r--r--crates/shirabe/src/command/licenses_command.rs25
1 files changed, 12 insertions, 13 deletions
diff --git a/crates/shirabe/src/command/licenses_command.rs b/crates/shirabe/src/command/licenses_command.rs
index e8d62cc..f2672bd 100644
--- a/crates/shirabe/src/command/licenses_command.rs
+++ b/crates/shirabe/src/command/licenses_command.rs
@@ -201,11 +201,7 @@ impl Command for LicensesCommand {
let mut table = Table::new(output);
table.set_style("compact".into())??;
- table.set_headers(vec![
- "Name".into(),
- "Version".into(),
- "Licenses".into(),
- ]);
+ table.set_headers(vec!["Name".into(), "Version".into(), "Licenses".into()]);
for package in &packages {
let link = PackageInfo::get_view_source_or_homepage_url(package.clone());
let name = if let Some(link) = link {
@@ -227,14 +223,17 @@ impl Command for LicensesCommand {
} else {
pkg_licenses.join(", ")
};
- table.add_row(PhpMixed::List(vec![
- PhpMixed::String(name),
- PhpMixed::String(package.get_full_pretty_version(
- true,
- crate::package::DisplayMode::SourceRefIfDev,
- )),
- PhpMixed::String(licenses_str),
- ]).into());
+ table.add_row(
+ PhpMixed::List(vec![
+ PhpMixed::String(name),
+ PhpMixed::String(package.get_full_pretty_version(
+ true,
+ crate::package::DisplayMode::SourceRefIfDev,
+ )),
+ PhpMixed::String(licenses_str),
+ ])
+ .into(),
+ );
}
table.render();
}