@php-wasm/universal 3.1.14 → 3.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs +5 -5
- package/index.cjs.map +1 -1
- package/index.js +93 -52
- package/index.js.map +1 -1
- package/lib/universal-php.d.ts +1 -0
- package/package.json +7 -7
package/lib/universal-php.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export type UniversalPHP = LimitedPHPApi | Remote<LimitedPHPApi> | Pooled<Limite
|
|
|
48
48
|
export type MessageListener = (data: string) => Promise<string | Uint8Array | void> | string | void;
|
|
49
49
|
export interface EventEmitter {
|
|
50
50
|
on(event: string, listener: (...args: any[]) => void): this;
|
|
51
|
+
off(event: string, listener: (...args: any[]) => void): this;
|
|
51
52
|
emit(event: string, ...args: any[]): boolean;
|
|
52
53
|
}
|
|
53
54
|
export type ChildProcess = EventEmitter & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@php-wasm/universal",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.15",
|
|
4
4
|
"description": "PHP.wasm – emscripten bindings for PHP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"module": "./index.js",
|
|
38
38
|
"types": "index.d.ts",
|
|
39
39
|
"license": "GPL-2.0-or-later",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "65a430c046c86341e7dc3cf6f30c9a5aeb8aa67d",
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.10.0",
|
|
43
43
|
"npm": ">=10.2.3"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"ini": "4.1.2",
|
|
47
|
-
"@php-wasm/node-polyfills": "3.1.
|
|
48
|
-
"@php-wasm/logger": "3.1.
|
|
49
|
-
"@php-wasm/util": "3.1.
|
|
50
|
-
"@php-wasm/stream-compression": "3.1.
|
|
51
|
-
"@php-wasm/progress": "3.1.
|
|
47
|
+
"@php-wasm/node-polyfills": "3.1.15",
|
|
48
|
+
"@php-wasm/logger": "3.1.15",
|
|
49
|
+
"@php-wasm/util": "3.1.15",
|
|
50
|
+
"@php-wasm/stream-compression": "3.1.15",
|
|
51
|
+
"@php-wasm/progress": "3.1.15"
|
|
52
52
|
},
|
|
53
53
|
"packageManager": "npm@10.9.2",
|
|
54
54
|
"overrides": {
|