diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-09 18:44:31 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-09 18:44:31 +0900 |
| commit | f9671f2dcde92d5c037595d0d3f01396a8190970 (patch) | |
| tree | 56e1bfcb8f9940a49bd9e658c982514cdde0c367 /crates/mozart/src/commands/global.rs | |
| parent | 0802fd44ed11283f15900d2993fc495acf1bed01 (diff) | |
| download | php-mozart-f9671f2dcde92d5c037595d0d3f01396a8190970.tar.gz php-mozart-f9671f2dcde92d5c037595d0d3f01396a8190970.tar.zst php-mozart-f9671f2dcde92d5c037595d0d3f01396a8190970.zip | |
refactor(composer): move Composer and Factory from mozart-core to mozart
Composer needs DownloadManager (from mozart-registry), but mozart-core
sits below mozart-registry in the dependency graph — adding the field
would create a dependency cycle. Moving Composer and create_composer to
the mozart CLI crate breaks the cycle and lets the root state container
hold a DownloadManager.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'crates/mozart/src/commands/global.rs')
| -rw-r--r-- | crates/mozart/src/commands/global.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/global.rs b/crates/mozart/src/commands/global.rs index 1a8a5f8..05e8aae 100644 --- a/crates/mozart/src/commands/global.rs +++ b/crates/mozart/src/commands/global.rs @@ -1,4 +1,5 @@ use clap::Args; +use mozart_core::composer::composer_home; #[derive(Args)] pub struct GlobalArgs { @@ -27,7 +28,7 @@ pub async fn execute( } }; - let home = super::config_helpers::composer_home(); + let home = composer_home(); fs::create_dir_all(&home)?; |
