From f8633e1647e42700ee20c8b77353ef992800dc76 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 2 Jun 2026 02:44:16 +0900 Subject: feat(cli): parse the Composer CLI with bpaf combinators Add a cli module that reproduces every command's argument/option set from the PHP configure() definitions using bpaf combinators (no derive). Output is per-command typed structs plus a top-level Command enum; the bridge into Symfony Console Input is deferred. Verbosity is unified into the global option and bump-after-update models VALUE_OPTIONAL as a three-state enum. Known limitation (bundled subcommand short flags) is recorded as a TODO in the module. Co-Authored-By: Claude Opus 4.8 --- Cargo.lock | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 55fac3c..3267b33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,6 +91,12 @@ dependencies = [ "zeroize", ] +[[package]] +name = "bpaf" +version = "0.9.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b86829876e7e200161a5aa6ea688d46c32d64d70ee3100127790dde84688d6e" + [[package]] name = "bumpalo" version = "3.20.2" @@ -971,6 +977,7 @@ dependencies = [ "anyhow", "async-trait", "base64", + "bpaf", "chrono", "indexmap", "md5", -- cgit v1.3.1