From 2c94b6f05e12106e2da64ecd1e066ca4ecb330df Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 15 May 2026 23:47:09 +0900 Subject: feat(port): port VcsDriver.php --- crates/shirabe-php-shim/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crates/shirabe-php-shim') diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs index 43786a0..d2052a3 100644 --- a/crates/shirabe-php-shim/src/lib.rs +++ b/crates/shirabe-php-shim/src/lib.rs @@ -391,6 +391,11 @@ pub fn realpath(path: &str) -> Option { todo!() } +pub const JSON_UNESCAPED_UNICODE: i64 = 256; +pub const JSON_UNESCAPED_SLASHES: i64 = 64; +pub const JSON_PRETTY_PRINT: i64 = 128; +pub const JSON_THROW_ON_ERROR: i64 = 4194304; + pub fn json_encode(value: &PhpMixed) -> Option { todo!() } -- cgit v1.3.1