├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── lib ├── .cargo │ └── config ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs └── src │ └── lib.rs ├── preload.php └── src ├── Deno.php └── Type.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | composer.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/composer.json -------------------------------------------------------------------------------- /lib/.cargo/config: -------------------------------------------------------------------------------- 1 | [build] 2 | rustflags = ["-C", "link-arg=-Wl,-undefined,dynamic_lookup"] -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/lib/Cargo.lock -------------------------------------------------------------------------------- /lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/lib/Cargo.toml -------------------------------------------------------------------------------- /lib/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/lib/build.rs -------------------------------------------------------------------------------- /lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/lib/src/lib.rs -------------------------------------------------------------------------------- /preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/preload.php -------------------------------------------------------------------------------- /src/Deno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/src/Deno.php -------------------------------------------------------------------------------- /src/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestlovewood/php-deno/HEAD/src/Type.php --------------------------------------------------------------------------------