diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-29 21:56:39 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-29 21:58:35 +0900 |
| commit | 91ccd49cf68bca199e7d41fa65a4a3b0d1368127 (patch) | |
| tree | 77206f45d192ba27f2d322d2cb1df89f0e4c6dc3 /crates/shirabe-php-shim/Cargo.toml | |
| parent | ff90c6b259f597a17d73aaf5c3a437bfdda3e68e (diff) | |
| download | php-shirabe-91ccd49cf68bca199e7d41fa65a4a3b0d1368127.tar.gz php-shirabe-91ccd49cf68bca199e7d41fa65a4a3b0d1368127.tar.zst php-shirabe-91ccd49cf68bca199e7d41fa65a4a3b0d1368127.zip | |
feat(php-shim): implement DirectoryIterator in fs shim
Give DirectoryIteratorEntry a backing path (mirroring
RecursiveIteratorFileInfo) and make directory_iterator enumerate entries,
returning Result to match PHP DirectoryIterator's UnexpectedValueException
on an unopenable directory. Wire the new Result through DumpCompletionCommand's
get_supported_shells.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-php-shim/Cargo.toml')
| -rw-r--r-- | crates/shirabe-php-shim/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/Cargo.toml b/crates/shirabe-php-shim/Cargo.toml index 4226234..f8092ec 100644 --- a/crates/shirabe-php-shim/Cargo.toml +++ b/crates/shirabe-php-shim/Cargo.toml @@ -19,5 +19,8 @@ sha2.workspace = true twox-hash.workspace = true zip.workspace = true +[dev-dependencies] +tempfile.workspace = true + [lints] workspace = true |
