@php-wasm/universal 3.1.33 → 3.1.35
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 +1 -1
- package/index.cjs.map +1 -1
- package/index.js +13 -11
- package/index.js.map +1 -1
- package/lib/load-extension.d.ts +2 -2
- package/package.json +6 -6
package/lib/load-extension.d.ts
CHANGED
|
@@ -203,8 +203,8 @@ export interface InstallPHPExtensionFilesOptions {
|
|
|
203
203
|
export declare function resolvePHPExtension(options: DataToResolvePhpExtension): Promise<ResolvedPHPExtension>;
|
|
204
204
|
/**
|
|
205
205
|
* Adds resolved extensions to Emscripten options. The returned options install
|
|
206
|
-
* extension files during `
|
|
207
|
-
*
|
|
206
|
+
* extension files during `preRun` and update `PHP_INI_SCAN_DIR` before PHP
|
|
207
|
+
* startup.
|
|
208
208
|
*/
|
|
209
209
|
export declare function withResolvedPHPExtensions(options: EmscriptenOptions, extensions: ResolvedPHPExtension[]): EmscriptenOptions;
|
|
210
210
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@php-wasm/universal",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.35",
|
|
4
4
|
"description": "PHP.wasm – emscripten bindings for PHP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
"module": "./index.js",
|
|
38
38
|
"types": "index.d.ts",
|
|
39
39
|
"license": "GPL-2.0-or-later",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "9d29b73246e12465902d8ce42c0fe747125bc69a",
|
|
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/logger": "3.1.
|
|
48
|
-
"@php-wasm/util": "3.1.
|
|
49
|
-
"@php-wasm/stream-compression": "3.1.
|
|
50
|
-
"@php-wasm/progress": "3.1.
|
|
47
|
+
"@php-wasm/logger": "3.1.35",
|
|
48
|
+
"@php-wasm/util": "3.1.35",
|
|
49
|
+
"@php-wasm/stream-compression": "3.1.35",
|
|
50
|
+
"@php-wasm/progress": "3.1.35"
|
|
51
51
|
},
|
|
52
52
|
"packageManager": "npm@10.9.2",
|
|
53
53
|
"overrides": {
|