From 8ecb8e5ea476886cb3f62a8efa4a8189e2aa4740 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 21 Feb 2026 11:18:26 +0900 Subject: feat(autoload): generate Composer-compatible PHP autoloader files Implement autoloader generation that produces all standard Composer autoloader files (autoload.php, autoload_real.php, autoload_static.php, autoload_psr4.php, autoload_namespaces.php, autoload_classmap.php, autoload_files.php, installed.php) plus embeds ClassLoader.php, InstalledVersions.php, and LICENSE from the Composer submodule. Wire into the install command (gated by --no-autoloader) and replace the todo!() in dump-autoload with a working implementation. Co-Authored-By: Claude Opus 4.6 --- crates/mozart/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/mozart/src/lib.rs') diff --git a/crates/mozart/src/lib.rs b/crates/mozart/src/lib.rs index d2b3533..fb25e77 100644 --- a/crates/mozart/src/lib.rs +++ b/crates/mozart/src/lib.rs @@ -1,3 +1,4 @@ +pub mod autoload; pub mod commands; pub mod console; pub mod constraint; -- cgit v1.3.1