@php-wasm/web 1.1.2 → 1.1.4
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 +10 -10
- package/index.cjs.map +1 -1
- package/index.js +522 -620
- package/index.js.map +1 -1
- package/lib/index.d.ts +1 -2
- package/lib/tls/utils.d.ts +0 -2
- package/package.json +9 -8
- package/php/asyncify/7_2_34/php_7_2.wasm +0 -0
- package/php/asyncify/7_3_33/php_7_3.wasm +0 -0
- package/php/asyncify/7_4_33/php_7_4.wasm +0 -0
- package/php/asyncify/8_0_30/php_8_0.wasm +0 -0
- package/php/asyncify/8_1_23/php_8_1.wasm +0 -0
- package/php/asyncify/8_2_10/php_8_2.wasm +0 -0
- package/php/asyncify/8_3_0/php_8_3.wasm +0 -0
- package/php/asyncify/8_4_0/php_8_4.wasm +0 -0
- package/php/asyncify/php_7_2.js +2 -2
- package/php/asyncify/php_7_3.js +2 -2
- package/php/asyncify/php_7_4.js +2 -2
- package/php/asyncify/php_8_0.js +2 -2
- package/php/asyncify/php_8_1.js +4 -4
- package/php/asyncify/php_8_2.js +2 -2
- package/php/asyncify/php_8_3.js +2 -2
- package/php/asyncify/php_8_4.js +2 -2
- package/php/jspi/7_2_34/php_7_2.wasm +0 -0
- package/php/jspi/7_3_33/php_7_3.wasm +0 -0
- package/php/jspi/7_4_33/php_7_4.wasm +0 -0
- package/php/jspi/8_0_30/php_8_0.wasm +0 -0
- package/php/jspi/8_1_23/php_8_1.wasm +0 -0
- package/php/jspi/8_2_10/php_8_2.wasm +0 -0
- package/php/jspi/8_3_0/php_8_3.wasm +0 -0
- package/php/jspi/8_4_0/php_8_4.wasm +0 -0
- package/php/jspi/php_7_2.js +2 -2
- package/php/jspi/php_7_3.js +2 -2
- package/php/jspi/php_7_4.js +2 -2
- package/php/jspi/php_8_0.js +2 -2
- package/php/jspi/php_8_1.js +2 -2
- package/php/jspi/php_8_2.js +2 -2
- package/php/jspi/php_8_3.js +2 -2
- package/php/jspi/php_8_4.js +2 -2
- package/lib/api.d.ts +0 -17
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export * from './api';
|
|
2
|
-
export type { WithAPIState as WithIsReady } from './api';
|
|
3
1
|
export type { LoaderOptions as PHPWebLoaderOptions } from './load-runtime';
|
|
4
2
|
export { loadWebRuntime } from './load-runtime';
|
|
5
3
|
export { getPHPLoaderModule } from './get-php-loader-module';
|
|
@@ -10,3 +8,4 @@ export type { MountDevice, MountOptions, SyncProgress, SyncProgressCallback, } f
|
|
|
10
8
|
export * from './tls/certificates';
|
|
11
9
|
export type { TCPOverFetchOptions } from './tcp-over-fetch-websocket';
|
|
12
10
|
export { fetchWithCorsProxy } from './fetch-with-cors-proxy';
|
|
11
|
+
export { consumeAPI, exposeAPI, type RemoteAPI, type PublicAPI, type WithAPIState, type WithIsReady, } from '@php-wasm/universal';
|
package/lib/tls/utils.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
export declare function flipObject(obj: Record<any, any>): any;
|
|
2
|
-
export declare function concatUint8Arrays(arrays: Uint8Array[]): Uint8Array;
|
|
3
|
-
export declare function concatArrayBuffers(buffers: ArrayBuffer[]): ArrayBuffer;
|
|
4
2
|
export declare function as2Bytes(value: number): Uint8Array;
|
|
5
3
|
export declare function as3Bytes(value: number): Uint8Array;
|
|
6
4
|
export declare function as8Bytes(value: number): Uint8Array;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@php-wasm/web",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "PHP.wasm for the web",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,23 +37,24 @@
|
|
|
37
37
|
"main": "./index.cjs",
|
|
38
38
|
"module": "./index.js",
|
|
39
39
|
"types": "index.d.ts",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "ed646326d99ba84bad911d65b6634265f508f073",
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.18.3",
|
|
43
43
|
"npm": ">=10.1.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"comlink": "^4.4.
|
|
46
|
+
"comlink": "^4.4.2",
|
|
47
47
|
"express": "4.21.2",
|
|
48
|
+
"fs-ext": "2.1.1",
|
|
48
49
|
"ini": "4.1.2",
|
|
49
50
|
"wasm-feature-detect": "1.8.0",
|
|
50
51
|
"ws": "8.18.1",
|
|
51
52
|
"yargs": "17.7.2",
|
|
52
|
-
"@php-wasm/
|
|
53
|
-
"@php-wasm/
|
|
54
|
-
"@php-wasm/logger": "1.1.
|
|
55
|
-
"@php-wasm/fs-journal": "1.1.
|
|
56
|
-
"@php-wasm/web-service-worker": "1.1.
|
|
53
|
+
"@php-wasm/util": "1.1.4",
|
|
54
|
+
"@php-wasm/universal": "1.1.4",
|
|
55
|
+
"@php-wasm/logger": "1.1.4",
|
|
56
|
+
"@php-wasm/fs-journal": "1.1.4",
|
|
57
|
+
"@php-wasm/web-service-worker": "1.1.4"
|
|
57
58
|
},
|
|
58
59
|
"overrides": {
|
|
59
60
|
"rollup": "^4.34.6",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|