Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ vendor/
dist/
artifacts/
runtime-overlays/*
!runtime-overlays/php-wasm-node-8-3-3.1.46.tgz
!runtime-overlays/php-wasm-node-8-3/
!runtime-overlays/php-wasm-node-8-3/**
!runtime-overlays/provenance.json
scripts/uploads/
*.tsbuildinfo
Expand Down
29 changes: 16 additions & 13 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"npm-shrinkwrap.json",
"scripts/apply-development-patches.mjs",
"patches",
"runtime-overlays/php-wasm-node-8-3-3.1.46.tgz",
"runtime-overlays/php-wasm-node-8-3",
"runtime-overlays/provenance.json",
"README.md",
"LICENSE"
Expand Down Expand Up @@ -343,7 +343,7 @@
"@automattic/wp-codebox-cli": "file:packages/cli",
"@automattic/wp-codebox-core": "file:packages/runtime-core",
"@automattic/wp-codebox-playground": "file:packages/runtime-playground",
"@php-wasm/node-8-3": "file:runtime-overlays/php-wasm-node-8-3-3.1.46.tgz",
"@php-wasm/node-8-3": "file:runtime-overlays/php-wasm-node-8-3",
"@php-wasm/node-8-4": "3.1.46",
"@php-wasm/universal": "3.1.46",
"@types/pngjs": "^6.0.5",
Expand Down
33 changes: 33 additions & 0 deletions runtime-overlays/php-wasm-node-8-3/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# @php-wasm/node-8-3

PHP 8.3 WebAssembly binaries for Node.js.

This package contains:

- JSPI and Asyncify variants of PHP 8.3 compiled to WebAssembly
- intl extension for PHP 8.3
- xdebug extension for PHP 8.3

## Installation

```bash
npm install @php-wasm/node-8-3
```

## Usage

```typescript
import { getPHPLoaderModule, getIntlExtensionPath } from '@php-wasm/node-8-3';

const loaderModule = await getPHPLoaderModule();
const intlPath = await getIntlExtensionPath();
```

## Related Packages

- [@php-wasm/node](https://www.npmjs.com/package/@php-wasm/node) - Main package (requires version packages)
- [@php-wasm/universal](https://www.npmjs.com/package/@php-wasm/universal) - Universal PHP.wasm bindings

## License

GPL-2.0-or-later
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# intl.la - a libtool library file
# Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.492 2008/01/30 06:40:56)
#
# Please DO NOT delete this file!
# It is necessary for linking the library.

# The name that we can dlopen(3).
dlname='intl.so'

# Names of this library.
library_names='intl.so intl.so intl.so'

# The name of the static archive.
old_library=''

# Libraries that this one depends upon.
dependency_libs=' -L/root/lib'

# Version information for intl.
current=0
age=0
revision=0

# Is this an already installed library?
installed=yes

# Should we warn about portability when linking against -modules?
shouldnotlink=yes

# Files to dlopen/dlpreopen
dlopen=''
dlpreopen=''

# Directory that this library needs to be installed in:
libdir='/root/php-src/ext/intl/modules'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# xdebug.la - a libtool library file
# Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.492 2008/01/30 06:40:56)
#
# Please DO NOT delete this file!
# It is necessary for linking the library.

# The name that we can dlopen(3).
dlname='xdebug.so'

# Names of this library.
library_names='xdebug.so xdebug.so xdebug.so'

# The name of the static archive.
old_library=''

# Libraries that this one depends upon.
dependency_libs=''

# Version information for xdebug.
current=0
age=0
revision=0

# Is this an already installed library?
installed=yes

# Should we warn about portability when linking against -modules?
shouldnotlink=yes

# Files to dlopen/dlpreopen
dlopen=''
dlpreopen=''

# Directory that this library needs to be installed in:
libdir='/root/xdebug/modules'
Binary file not shown.
Loading
Loading