@php-wasm/universal 0.9.38 → 0.9.39

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.
@@ -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 '../../../web/src/index.ts';
72
+ * import { PHP } from '@php-wasm/web';
73
73
  *
74
74
  * const php = await PHP.load( '7.4', {
75
75
  * requestHandler: {
@@ -1,4 +1,4 @@
1
- import { EmscriptenDownloadMonitor } from '../../../progress/src/index.ts';
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 '../../../util/src/index.ts';
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.38",
3
+ "version": "0.9.39",
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": "f07ef4e59813c2d43d71d639237457b029dea995",
40
+ "gitHead": "cbb5ec6aeed54bebf0fd6503f207c93261b3e4ba",
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.38",
49
- "@php-wasm/logger": "0.9.38",
50
- "@php-wasm/util": "0.9.38",
51
- "@php-wasm/stream-compression": "0.9.38",
52
- "@php-wasm/progress": "0.9.38"
48
+ "@php-wasm/node-polyfills": "0.9.39",
49
+ "@php-wasm/logger": "0.9.39",
50
+ "@php-wasm/util": "0.9.39",
51
+ "@php-wasm/stream-compression": "0.9.39",
52
+ "@php-wasm/progress": "0.9.39"
53
53
  }
54
54
  }