From 346ae7bdaf32f5e6e5938ab3ec753d4446facb3c Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 30 May 2026 14:10:36 -0500 Subject: [PATCH] feat(cli): add display-name to manifest_read.php Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) --- cli/manifest_read.php | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/manifest_read.php b/cli/manifest_read.php index 69bd3fb..f24abbd 100644 --- a/cli/manifest_read.php +++ b/cli/manifest_read.php @@ -93,6 +93,7 @@ if ($xml === false) { // Register namespace for XPath (optional, simple path works without) $fields = [ 'name' => (string)($xml->identity->name ?? ''), + 'display-name' => (string)($xml->identity->{"display-name"} ?? ''), 'org' => (string)($xml->identity->org ?? ''), 'description' => (string)($xml->identity->description ?? ''), 'license' => (string)($xml->identity->license ?? ''), -- 2.52.0