diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-23 01:46:32 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-23 01:57:52 +0900 |
| commit | 1ab3d928a2d350ce407205d9ee6ea9569cd38424 (patch) | |
| tree | 99e61392275066b1c8c6fb7e7681aa2946073c42 | |
| parent | b36361a630add03a08f49eb80412b85c4f7791f9 (diff) | |
| download | php-mozart-1ab3d928a2d350ce407205d9ee6ea9569cd38424.tar.gz php-mozart-1ab3d928a2d350ce407205d9ee6ea9569cd38424.tar.zst php-mozart-1ab3d928a2d350ce407205d9ee6ea9569cd38424.zip | |
fix(suggests): add long help text with documentation URL
Match Composer's help output by adding long_about with a description
and link to https://getcomposer.org/doc/03-cli.md#suggests.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
| -rw-r--r-- | crates/mozart/src/commands.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/mozart/src/commands.rs b/crates/mozart/src/commands.rs index e633526..c03abcc 100644 --- a/crates/mozart/src/commands.rs +++ b/crates/mozart/src/commands.rs @@ -192,6 +192,9 @@ pub enum Commands { Status(status::StatusArgs), /// Shows package suggestions + #[command( + long_about = "Shows package suggestions.\n\nRead more at https://getcomposer.org/doc/03-cli.md#suggests" + )] Suggests(suggests::SuggestsArgs), /// Updates your dependencies to the latest version according to composer.json |
