@php-wasm/web 0.1.56 → 0.1.57
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.
|
@@ -1372,23 +1372,23 @@ function N(t) {
|
|
|
1372
1372
|
async function We(t = me) {
|
|
1373
1373
|
switch (t) {
|
|
1374
1374
|
case "8.2":
|
|
1375
|
-
return await import("php_8_2.js");
|
|
1375
|
+
return await import("./php_8_2.js");
|
|
1376
1376
|
case "8.1":
|
|
1377
|
-
return await import("php_8_1.js");
|
|
1377
|
+
return await import("./php_8_1.js");
|
|
1378
1378
|
case "8.0":
|
|
1379
|
-
return await import("php_8_0.js");
|
|
1379
|
+
return await import("./php_8_0.js");
|
|
1380
1380
|
case "7.4":
|
|
1381
|
-
return await import("php_7_4.js");
|
|
1381
|
+
return await import("./php_7_4.js");
|
|
1382
1382
|
case "7.3":
|
|
1383
|
-
return await import("php_7_3.js");
|
|
1383
|
+
return await import("./php_7_3.js");
|
|
1384
1384
|
case "7.2":
|
|
1385
|
-
return await import("php_7_2.js");
|
|
1385
|
+
return await import("./php_7_2.js");
|
|
1386
1386
|
case "7.1":
|
|
1387
|
-
return await import("php_7_1.js");
|
|
1387
|
+
return await import("./php_7_1.js");
|
|
1388
1388
|
case "7.0":
|
|
1389
|
-
return await import("php_7_0.js");
|
|
1389
|
+
return await import("./php_7_0.js");
|
|
1390
1390
|
case "5.6":
|
|
1391
|
-
return await import("php_5_6.js");
|
|
1391
|
+
return await import("./php_5_6.js");
|
|
1392
1392
|
}
|
|
1393
1393
|
throw new Error(`Unsupported PHP version ${t}`);
|
|
1394
1394
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@php-wasm/web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.57",
|
|
4
4
|
"description": "PHP.wasm for the web",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"type": "module",
|
|
30
30
|
"main": "index.js",
|
|
31
31
|
"types": "index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "f268ed35766fc4f3725cd8822123c5c3f9abf814"
|
|
33
33
|
}
|