From d0336078c5b63b174e7313d54d973a1832228928 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 25 Jun 2026 14:39:00 +0900 Subject: feat(external-packages,shim): implement impl todos across components Port seld/jsonlint JsonParser (+hand-written Lexer), unblocking 10 json_file parse-error tests verified byte-for-byte against PHP. Implement Symfony Finder SplFileInfo, executable finders, String classes (byte/code-point/unicode), ZipArchive shim (via the zip crate), SPDX license validation, and shim date/stream functions. Genuinely-blocked sites (reflection, PHP runtime constants, non-UTF-8 transcoding, recursive PCRE) stay todo!() with reasons. Co-Authored-By: Claude Opus 4.8 (1M context) --- crates/shirabe-php-shim/src/output.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crates/shirabe-php-shim/src/output.rs') diff --git a/crates/shirabe-php-shim/src/output.rs b/crates/shirabe-php-shim/src/output.rs index 17f7ab9..698f3bf 100644 --- a/crates/shirabe-php-shim/src/output.rs +++ b/crates/shirabe-php-shim/src/output.rs @@ -1,3 +1,6 @@ +// PHP output buffering captures everything the interpreter would echo to stdout. The shim has no +// general echo-to-buffer routing, and its only producer in Composer (`phpinfo`) depends on PHP +// runtime configuration that is itself unmodeled, so a buffer here would silently capture nothing. pub fn ob_start() -> bool { todo!() } -- cgit v1.3.1