diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-10 00:32:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-10 00:32:08 +0900 |
| commit | 8cc1ba8a02c0318b65658f1634de378c780392b9 (patch) | |
| tree | fdd5cb61e488018891a486b25991b87c84220bb8 /crates/mozart-core/src/lib.rs | |
| parent | 72b2e877c01e67ba7edd37e34ac2eadb7a1c62c4 (diff) | |
| download | php-mozart-8cc1ba8a02c0318b65658f1634de378c780392b9.tar.gz php-mozart-8cc1ba8a02c0318b65658f1634de378c780392b9.tar.zst php-mozart-8cc1ba8a02c0318b65658f1634de378c780392b9.zip | |
refactor(workspace): consolidate crates into mozart-core
Merged mozart-archiver, mozart-autoload, mozart-registry,
mozart-sat-resolver, and mozart-vcs into mozart-core to align
the source layout with Composer's structure.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'crates/mozart-core/src/lib.rs')
| -rw-r--r-- | crates/mozart-core/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/mozart-core/src/lib.rs b/crates/mozart-core/src/lib.rs index f37bf43..72f5ae1 100644 --- a/crates/mozart-core/src/lib.rs +++ b/crates/mozart-core/src/lib.rs @@ -1,11 +1,13 @@ extern crate self as mozart_core; pub mod advisory; +pub mod autoload; pub mod composer; pub mod config; pub mod config_source; pub mod config_validator; pub mod console; +pub mod dependency_resolver; pub mod exit_code; pub mod factory; pub mod http; @@ -14,10 +16,12 @@ pub mod package; pub mod package_info; pub mod package_sorter; pub mod platform; +pub mod repository; pub mod repository_utils; pub mod script_events; pub mod suggest; pub mod validation; +pub mod vcs; pub mod version_bumper; pub mod wildcard; |
