aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-23 13:37:11 +0900
committernsfisis <nsfisis@gmail.com>2026-02-23 13:39:40 +0900
commit6f027ee80846a14e653ae128e4369e9cec221a63 (patch)
treedc4af936b96425820f7264fe4c1307724795ecfa /crates/mozart/src/commands.rs
parentd8ecb21a7931ec6f1d7b447d0c15f53de32bfc45 (diff)
downloadphp-mozart-6f027ee80846a14e653ae128e4369e9cec221a63.tar.gz
php-mozart-6f027ee80846a14e653ae128e4369e9cec221a63.tar.zst
php-mozart-6f027ee80846a14e653ae128e4369e9cec221a63.zip
fix(cli): align subcommand help text with Composer
Sync descriptions with upstream Composer. Replace product name references (Composer/composer) with Mozart. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'crates/mozart/src/commands.rs')
-rw-r--r--crates/mozart/src/commands.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/crates/mozart/src/commands.rs b/crates/mozart/src/commands.rs
index c03abcc..c648754 100644
--- a/crates/mozart/src/commands.rs
+++ b/crates/mozart/src/commands.rs
@@ -87,7 +87,7 @@ pub struct Cli {
#[derive(clap::Subcommand)]
pub enum Commands {
- /// Short information about Composer
+ /// Shows a short information about Mozart
About(about::AboutArgs),
/// Creates an archive of this composer package
@@ -100,14 +100,14 @@ pub enum Commands {
#[command(alias = "home")]
Browse(browse::BrowseArgs),
- /// Increases the lower limit of your package version constraints
+ /// Increases the lower limit of your composer.json requirements to the currently installed versions
Bump(bump::BumpArgs),
/// Check that platform requirements are satisfied
#[command(name = "check-platform-reqs")]
CheckPlatformReqs(check_platform_reqs::CheckPlatformReqsArgs),
- /// Clears Composer's internal package cache
+ /// Clears Mozart's internal package cache
#[command(name = "clear-cache", alias = "clearcache", alias = "cc")]
ClearCache(clear_cache::ClearCacheArgs),
@@ -138,7 +138,7 @@ pub enum Commands {
/// Discover how to help fund the maintenance of your dependencies
Fund(fund::FundArgs),
- /// Allows running commands in the global Composer dir
+ /// Allows running commands in the global composer dir ($COMPOSER_HOME)
Global(global::GlobalArgs),
/// Creates a basic composer.json file in current directory
@@ -151,7 +151,7 @@ pub enum Commands {
/// Shows information about licenses of dependencies
Licenses(licenses::LicensesArgs),
- /// Shows a list of installed packages that have updates available
+ /// Shows a list of installed packages that have updates available, including their latest version
Outdated(outdated::OutdatedArgs),
/// Shows which packages prevent the given package from being installed
@@ -165,7 +165,7 @@ pub enum Commands {
#[command(alias = "rm", alias = "uninstall")]
Remove(remove::RemoveArgs),
- /// Manage repositories
+ /// Manages repositories
#[command(alias = "repo")]
Repository(repository::RepositoryArgs),
@@ -180,7 +180,7 @@ pub enum Commands {
/// Searches for packages
Search(search::SearchArgs),
- /// Updates Composer to the latest version
+ /// Updates Mozart to the latest version
#[command(name = "self-update", alias = "selfupdate")]
SelfUpdate(self_update::SelfUpdateArgs),
@@ -197,7 +197,7 @@ pub enum Commands {
)]
Suggests(suggests::SuggestsArgs),
- /// Updates your dependencies to the latest version according to composer.json
+ /// Updates your dependencies to the latest version according to composer.json, and updates the composer.lock file
#[command(alias = "u", alias = "upgrade")]
Update(update::UpdateArgs),