From 3535037592f149477c915a8b66da974eb59586db Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 21 Feb 2026 16:37:03 +0900 Subject: feat(autoload): add classmap scanning, optimize, APCu, platform checks, and strict-psr Add PHP file scanner (php_scanner.rs) with class/interface/trait/enum detection, comment/string/heredoc stripping, and PSR-4/PSR-0 validation. Extend autoload generation with: classmap directory scanning, --optimize mode (PSR-4/PSR-0 to classmap), --classmap-authoritative, --apcu caching with optional prefix, platform_check.php generation, and --strict-psr violation reporting. Wire new options through dump-autoload, install, require, update, and remove commands. Co-Authored-By: Claude Opus 4.6 --- crates/mozart/src/commands/dump_autoload.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crates/mozart/src/commands/dump_autoload.rs') diff --git a/crates/mozart/src/commands/dump_autoload.rs b/crates/mozart/src/commands/dump_autoload.rs index 2c17c55..7d5b748 100644 --- a/crates/mozart/src/commands/dump_autoload.rs +++ b/crates/mozart/src/commands/dump_autoload.rs @@ -71,6 +71,12 @@ pub fn execute(args: &DumpAutoloadArgs, cli: &super::Cli) -> anyhow::Result<()> dev_mode, suffix, classmap_authoritative: args.classmap_authoritative, + optimize: args.optimize, + apcu: args.apcu, + apcu_prefix: args.apcu_prefix.clone(), + strict_psr: args.strict_psr, + platform_check: crate::autoload::PlatformCheckMode::Full, + ignore_platform_reqs: args.ignore_platform_reqs, })?; eprintln!("Generated autoload files"); -- cgit v1.3.1