From framework review (docs/framework_review.md). conf/init.php uses explode(':', get_include_path()) but the include path separator is ':' on Unix and ';' on Windows. Makes the autoloader fail on Windows. Fix: explode(PATH_SEPARATOR, get_include_path()).
[[2026-07-17]] Fri 12:27
Changed explode(':', ...) to explode(PATH_SEPARATOR, ...) in conf/init.php. PHP passes php -l.
[[2026-07-17]] Fri 12:27
P0-3 fixed. One-line change in conf/init.php. Ready for your commit.