| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-06-27 | refactor(main): minor refactoring | nsfisis | |
| 2026-06-27 | feat(php-shim): drop shutdown function shim, defer OOM message to PHP | nsfisis | |
| Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> | |||
| 2026-06-25 | feat(php-shim): model $_ENV/$_SERVER as OsString snapshots | nsfisis | |
| Rework the environment shim around getenv/putenv on the real environment and $_ENV/$_SERVER as startup snapshots, all over OsString. Migrate every caller off the old server()/server_argv() helpers and force the snapshots in main() before any putenv() runs. Document the porting rules in docs/dev/env-vars-porting.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> | |||
| 2026-06-19 | test(command): add basic smoke tests | nsfisis | |
| 2026-06-19 | feat(command): implement Symfony Command | nsfisis | |
| 2026-06-12 | feat(php-shim): implement runtime functions to run --version | nsfisis | |
| Replace todo!() stubs reached on the `composer --version` path so the command runs without panicking and exits cleanly: - introspection (function_exists, class_exists, extension_loaded, defined) via white-lists modeling a standard Linux PHP CLI - type casts: php_to_string/strval, php_truthy/boolval, substr, byte_at, explode, strtr_array - config/env: error_reporting, ini_get, date_default_timezone_*, server_get/server_contains_key, php_uname("s") - IO: turn PhpResource into an enum (Stdin/Stdout/Stderr/File) and implement fwrite/fflush/stream_isatty/php_fopen resource helpers - shutdown/exit: register_shutdown_function + run_shutdown_functions, exit, error_get_last - preg_match_all_offset_capture via the regex crate; the formatter pattern drops PCRE possessive quantifiers (original kept in a comment with a TODO) proc_open reports unavailable for now (TODO(phase-c)); terminal-size and tty detection fall back to defaults. sprintf calls on this path are rewritten with format!(). OutputFormatterStyleInterface gains clone_box to return shared styles. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> | |||
| 2026-06-11 | feat(php-shim): implement realpath, putenv, and env/server mutators | nsfisis | |
| 2026-06-11 | refactor(argv): use std::env::args instead of server_argv shim | nsfisis | |
| The server_argv() shim merely wrapped command-line arguments, so call std::env::args() directly at each use site and drop the unused shim. | |||
| 2026-06-11 | feat(bin): port composer entry point into main.rs | nsfisis | |
| Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> | |||
| 2026-05-12 | feat(init): add files | nsfisis | |
