@php-wasm/universal 0.9.38 → 0.9.40
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/lib/php-request-handler.d.ts +1 -1
- package/lib/php-worker.d.ts +1 -1
- package/lib/php.d.ts +1 -1
- package/package.json +7 -7
|
@@ -69,7 +69,7 @@ export type PHPRequestHandlerConfiguration = BaseConfiguration & ({
|
|
|
69
69
|
* @public
|
|
70
70
|
* @example Use PHPRequestHandler implicitly with a new PHP instance:
|
|
71
71
|
* ```js
|
|
72
|
-
* import { PHP } from '
|
|
72
|
+
* import { PHP } from '@php-wasm/web';
|
|
73
73
|
*
|
|
74
74
|
* const php = await PHP.load( '7.4', {
|
|
75
75
|
* requestHandler: {
|
package/lib/php-worker.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EmscriptenDownloadMonitor } from '
|
|
1
|
+
import { EmscriptenDownloadMonitor } from '@php-wasm/progress';
|
|
2
2
|
import { PHP } from './php';
|
|
3
3
|
import { PHPRequestHandler } from './php-request-handler';
|
|
4
4
|
import { PHPResponse } from './php-response';
|
package/lib/php.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { PHPResponse } from './php-response';
|
|
|
2
2
|
import type { PHPRuntimeId } from './load-php-runtime';
|
|
3
3
|
import { MessageListener, PHPRequest, PHPRequestHeaders, PHPRunOptions, SpawnHandler, PHPEventListener, PHPEvent } from './universal-php';
|
|
4
4
|
import { RmDirOptions, ListFilesOptions } from './fs-helpers';
|
|
5
|
-
import { Semaphore } from '
|
|
5
|
+
import { Semaphore } from '@php-wasm/util';
|
|
6
6
|
import { PHPRequestHandler } from './php-request-handler';
|
|
7
7
|
import { Emscripten } from './emscripten-types';
|
|
8
8
|
export declare const __private__dont__use: unique symbol;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@php-wasm/universal",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.40",
|
|
4
4
|
"description": "PHP.wasm – emscripten bindings for PHP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"module": "./index.js",
|
|
38
38
|
"types": "index.d.ts",
|
|
39
39
|
"license": "GPL-2.0-or-later",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "f2cae683a18c3fe90148b712eeab8f2f714c6ec2",
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=18.18.0",
|
|
43
43
|
"npm": ">=8.11.0"
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"comlink": "^4.4.1",
|
|
47
47
|
"ini": "4.1.2",
|
|
48
|
-
"@php-wasm/node-polyfills": "0.9.
|
|
49
|
-
"@php-wasm/logger": "0.9.
|
|
50
|
-
"@php-wasm/util": "0.9.
|
|
51
|
-
"@php-wasm/stream-compression": "0.9.
|
|
52
|
-
"@php-wasm/progress": "0.9.
|
|
48
|
+
"@php-wasm/node-polyfills": "0.9.40",
|
|
49
|
+
"@php-wasm/logger": "0.9.40",
|
|
50
|
+
"@php-wasm/util": "0.9.40",
|
|
51
|
+
"@php-wasm/stream-compression": "0.9.40",
|
|
52
|
+
"@php-wasm/progress": "0.9.40"
|
|
53
53
|
}
|
|
54
54
|
}
|