@php-wasm/node-8-3 3.1.22 → 3.1.26
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/jspi/8_3_30/php_8_3.wasm +0 -0
- package/jspi/php_8_3.js +88 -45
- package/package.json +4 -3
package/jspi/8_3_30/php_8_3.wasm
CHANGED
|
Binary file
|
package/jspi/php_8_3.js
CHANGED
|
@@ -15,7 +15,7 @@ const currentDirPath =
|
|
|
15
15
|
: path.dirname(fileURLToPath(import.meta.url));
|
|
16
16
|
const dependencyFilename = path.join(currentDirPath, '8_3_30', 'php_8_3.wasm');
|
|
17
17
|
export { dependencyFilename };
|
|
18
|
-
export const dependenciesTotalSize =
|
|
18
|
+
export const dependenciesTotalSize = 22832264;
|
|
19
19
|
const phpVersionString = '8.3.30';
|
|
20
20
|
export function init(RuntimeName, PHPLoader) {
|
|
21
21
|
// The rest of the code comes from the built php.js file and esm-suffix.js
|
|
@@ -10367,6 +10367,7 @@ export function init(RuntimeName, PHPLoader) {
|
|
|
10367
10367
|
_zend_get_executed_filename,
|
|
10368
10368
|
_zend_get_executed_filename_ex,
|
|
10369
10369
|
_zend_get_executed_lineno,
|
|
10370
|
+
_zend_get_executed_scope,
|
|
10370
10371
|
__call_user_function_impl,
|
|
10371
10372
|
_zend_call_function,
|
|
10372
10373
|
_zend_call_known_function,
|
|
@@ -10386,6 +10387,8 @@ export function init(RuntimeName, PHPLoader) {
|
|
|
10386
10387
|
_zend_llist_get_first_ex,
|
|
10387
10388
|
_zend_llist_get_last_ex,
|
|
10388
10389
|
_zend_llist_get_next_ex,
|
|
10390
|
+
_destroy_op_array,
|
|
10391
|
+
_zend_destroy_static_vars,
|
|
10389
10392
|
__is_numeric_string_ex,
|
|
10390
10393
|
_convert_to_long,
|
|
10391
10394
|
_zval_get_long_func,
|
|
@@ -10509,6 +10512,7 @@ export function init(RuntimeName, PHPLoader) {
|
|
|
10509
10512
|
_zend_register_persistent_resource,
|
|
10510
10513
|
_zend_get_parameter_attribute_str,
|
|
10511
10514
|
_zend_add_attribute,
|
|
10515
|
+
_zend_execute,
|
|
10512
10516
|
_zend_set_user_opcode_handler,
|
|
10513
10517
|
_zend_get_user_opcode_handler,
|
|
10514
10518
|
_zend_get_zval_ptr,
|
|
@@ -10934,6 +10938,8 @@ export function init(RuntimeName, PHPLoader) {
|
|
|
10934
10938
|
] = wasmExports['zend_get_executed_filename_ex'];
|
|
10935
10939
|
_zend_get_executed_lineno = Module['_zend_get_executed_lineno'] =
|
|
10936
10940
|
wasmExports['zend_get_executed_lineno'];
|
|
10941
|
+
_zend_get_executed_scope = Module['_zend_get_executed_scope'] =
|
|
10942
|
+
wasmExports['zend_get_executed_scope'];
|
|
10937
10943
|
__call_user_function_impl = Module['__call_user_function_impl'] =
|
|
10938
10944
|
wasmExports['_call_user_function_impl'];
|
|
10939
10945
|
_zend_call_function = Module['_zend_call_function'] =
|
|
@@ -10973,6 +10979,10 @@ export function init(RuntimeName, PHPLoader) {
|
|
|
10973
10979
|
wasmExports['zend_llist_get_last_ex'];
|
|
10974
10980
|
_zend_llist_get_next_ex = Module['_zend_llist_get_next_ex'] =
|
|
10975
10981
|
wasmExports['zend_llist_get_next_ex'];
|
|
10982
|
+
_destroy_op_array = Module['_destroy_op_array'] =
|
|
10983
|
+
wasmExports['destroy_op_array'];
|
|
10984
|
+
_zend_destroy_static_vars = Module['_zend_destroy_static_vars'] =
|
|
10985
|
+
wasmExports['zend_destroy_static_vars'];
|
|
10976
10986
|
__is_numeric_string_ex = Module['__is_numeric_string_ex'] =
|
|
10977
10987
|
wasmExports['_is_numeric_string_ex'];
|
|
10978
10988
|
_convert_to_long = Module['_convert_to_long'] =
|
|
@@ -11241,6 +11251,7 @@ export function init(RuntimeName, PHPLoader) {
|
|
|
11241
11251
|
] = wasmExports['zend_get_parameter_attribute_str'];
|
|
11242
11252
|
_zend_add_attribute = Module['_zend_add_attribute'] =
|
|
11243
11253
|
wasmExports['zend_add_attribute'];
|
|
11254
|
+
_zend_execute = Module['_zend_execute'] = wasmExports['zend_execute'];
|
|
11244
11255
|
_zend_set_user_opcode_handler = Module[
|
|
11245
11256
|
'_zend_set_user_opcode_handler'
|
|
11246
11257
|
] = wasmExports['zend_set_user_opcode_handler'];
|
|
@@ -11616,121 +11627,153 @@ export function init(RuntimeName, PHPLoader) {
|
|
|
11616
11627
|
}
|
|
11617
11628
|
|
|
11618
11629
|
var _spl_ce_RuntimeException = (Module['_spl_ce_RuntimeException'] =
|
|
11619
|
-
|
|
11630
|
+
13813612);
|
|
11620
11631
|
|
|
11621
|
-
var
|
|
11632
|
+
var _file_globals = (Module['_file_globals'] = 13824648);
|
|
11622
11633
|
|
|
11623
|
-
var
|
|
11634
|
+
var _core_globals = (Module['_core_globals'] = 13824176);
|
|
11624
11635
|
|
|
11625
|
-
var
|
|
11636
|
+
var _php_ini_opened_path = (Module['_php_ini_opened_path'] = 13717136);
|
|
11626
11637
|
|
|
11627
|
-
var
|
|
11638
|
+
var _php_ini_scanned_path = (Module['_php_ini_scanned_path'] = 13717140);
|
|
11628
11639
|
|
|
11629
|
-
var
|
|
11640
|
+
var _php_ini_scanned_files = (Module['_php_ini_scanned_files'] = 13717144);
|
|
11630
11641
|
|
|
11631
|
-
var
|
|
11642
|
+
var _sapi_module = (Module['_sapi_module'] = 13798328);
|
|
11632
11643
|
|
|
11633
|
-
var
|
|
11644
|
+
var _sapi_globals = (Module['_sapi_globals'] = 13798472);
|
|
11634
11645
|
|
|
11635
|
-
var
|
|
11646
|
+
var _compiler_globals = (Module['_compiler_globals'] = 13827472);
|
|
11636
11647
|
|
|
11637
|
-
var
|
|
11648
|
+
var _executor_globals = (Module['_executor_globals'] = 13827856);
|
|
11638
11649
|
|
|
11639
|
-
var
|
|
11650
|
+
var _zend_compile_file = (Module['_zend_compile_file'] = 13829160);
|
|
11640
11651
|
|
|
11641
|
-
var
|
|
11652
|
+
var _zend_compile_string = (Module['_zend_compile_string'] = 13829164);
|
|
11653
|
+
|
|
11654
|
+
var _zend_execute_ex = (Module['_zend_execute_ex'] = 13827360);
|
|
11655
|
+
|
|
11656
|
+
var _zend_execute_internal = (Module['_zend_execute_internal'] = 13827364);
|
|
11642
11657
|
|
|
11643
11658
|
var _empty_fcall_info = (Module['_empty_fcall_info'] = 10338072);
|
|
11644
11659
|
|
|
11645
11660
|
var _empty_fcall_info_cache = (Module['_empty_fcall_info_cache'] =
|
|
11646
11661
|
10338120);
|
|
11647
11662
|
|
|
11648
|
-
var _zend_write = (Module['_zend_write'] =
|
|
11663
|
+
var _zend_write = (Module['_zend_write'] = 13827396);
|
|
11649
11664
|
|
|
11650
|
-
var _zend_error_cb = (Module['_zend_error_cb'] =
|
|
11665
|
+
var _zend_error_cb = (Module['_zend_error_cb'] = 13827400);
|
|
11651
11666
|
|
|
11652
|
-
var _zend_post_startup_cb = (Module['_zend_post_startup_cb'] =
|
|
11667
|
+
var _zend_post_startup_cb = (Module['_zend_post_startup_cb'] = 13827380);
|
|
11653
11668
|
|
|
11654
|
-
var _module_registry = (Module['_module_registry'] =
|
|
11669
|
+
var _module_registry = (Module['_module_registry'] = 13826232);
|
|
11655
11670
|
|
|
11656
|
-
var _zend_extensions = (Module['_zend_extensions'] =
|
|
11671
|
+
var _zend_extensions = (Module['_zend_extensions'] = 13825e3);
|
|
11657
11672
|
|
|
11658
11673
|
var _zend_empty_array = (Module['_zend_empty_array'] = 13209352);
|
|
11659
11674
|
|
|
11660
11675
|
var _zend_pass_function = (Module['_zend_pass_function'] = 13194440);
|
|
11661
11676
|
|
|
11662
|
-
var
|
|
11677
|
+
var _zend_ce_traversable = (Module['_zend_ce_traversable'] = 13712012);
|
|
11678
|
+
|
|
11679
|
+
var _zend_ce_aggregate = (Module['_zend_ce_aggregate'] = 13712016);
|
|
11680
|
+
|
|
11681
|
+
var _zend_ce_iterator = (Module['_zend_ce_iterator'] = 13712020);
|
|
11682
|
+
|
|
11683
|
+
var _zend_ce_serializable = (Module['_zend_ce_serializable'] = 13712024);
|
|
11684
|
+
|
|
11685
|
+
var _zend_ce_arrayaccess = (Module['_zend_ce_arrayaccess'] = 13712028);
|
|
11663
11686
|
|
|
11664
|
-
var
|
|
11687
|
+
var _zend_ce_countable = (Module['_zend_ce_countable'] = 13712032);
|
|
11665
11688
|
|
|
11666
|
-
var
|
|
11689
|
+
var _zend_ce_stringable = (Module['_zend_ce_stringable'] = 13712036);
|
|
11667
11690
|
|
|
11668
|
-
var _zend_ce_exception = (Module['_zend_ce_exception'] =
|
|
11691
|
+
var _zend_ce_exception = (Module['_zend_ce_exception'] = 13825376);
|
|
11669
11692
|
|
|
11670
|
-
var _zend_ce_error = (Module['_zend_ce_error'] =
|
|
11693
|
+
var _zend_ce_error = (Module['_zend_ce_error'] = 13825492);
|
|
11671
11694
|
|
|
11672
11695
|
var _zend_throw_exception_hook = (Module['_zend_throw_exception_hook'] =
|
|
11673
|
-
|
|
11696
|
+
13825368);
|
|
11674
11697
|
|
|
11675
|
-
var _zend_ce_throwable = (Module['_zend_ce_throwable'] =
|
|
11698
|
+
var _zend_ce_throwable = (Module['_zend_ce_throwable'] = 13825372);
|
|
11676
11699
|
|
|
11677
|
-
var
|
|
11700
|
+
var _zend_ce_division_by_zero_error = (Module[
|
|
11701
|
+
'_zend_ce_division_by_zero_error'
|
|
11702
|
+
] = 13825504);
|
|
11678
11703
|
|
|
11679
|
-
var
|
|
11704
|
+
var _zend_ce_unhandled_match_error = (Module[
|
|
11705
|
+
'_zend_ce_unhandled_match_error'
|
|
11706
|
+
] = 13825508);
|
|
11680
11707
|
|
|
11681
|
-
var
|
|
11708
|
+
var _gc_collect_cycles = (Module['_gc_collect_cycles'] = 13712424);
|
|
11682
11709
|
|
|
11683
|
-
var
|
|
11710
|
+
var _zend_ce_closure = (Module['_zend_ce_closure'] = 13818828);
|
|
11711
|
+
|
|
11712
|
+
var _zend_empty_string = (Module['_zend_empty_string'] = 13710480);
|
|
11713
|
+
|
|
11714
|
+
var _zend_known_strings = (Module['_zend_known_strings'] = 13710484);
|
|
11684
11715
|
|
|
11685
11716
|
var _zend_string_init_interned = (Module['_zend_string_init_interned'] =
|
|
11686
|
-
|
|
11717
|
+
13710548);
|
|
11687
11718
|
|
|
11688
|
-
var _zend_one_char_string = (Module['_zend_one_char_string'] =
|
|
11719
|
+
var _zend_one_char_string = (Module['_zend_one_char_string'] = 13710560);
|
|
11689
11720
|
|
|
11690
11721
|
var _std_object_handlers = (Module['_std_object_handlers'] = 13208768);
|
|
11691
11722
|
|
|
11723
|
+
var _zend_ce_unit_enum = (Module['_zend_ce_unit_enum'] = 13712428);
|
|
11724
|
+
|
|
11725
|
+
var _zend_ce_backed_enum = (Module['_zend_ce_backed_enum'] = 13712432);
|
|
11726
|
+
|
|
11692
11727
|
var ___memory_base = (Module['___memory_base'] = 0);
|
|
11693
11728
|
|
|
11694
11729
|
var ___table_base = (Module['___table_base'] = 1);
|
|
11695
11730
|
|
|
11696
|
-
var _stderr = (Module['_stderr'] =
|
|
11731
|
+
var _stderr = (Module['_stderr'] = 13703360);
|
|
11732
|
+
|
|
11733
|
+
var _stdin = (Module['_stdin'] = 13703512);
|
|
11734
|
+
|
|
11735
|
+
var _stdout = (Module['_stdout'] = 13703664);
|
|
11697
11736
|
|
|
11698
|
-
var
|
|
11737
|
+
var __playground_zend_side_module_data_exports = (Module[
|
|
11738
|
+
'__playground_zend_side_module_data_exports'
|
|
11739
|
+
] = 13210112);
|
|
11699
11740
|
|
|
11700
|
-
var
|
|
11741
|
+
var __playground_zend_side_module_function_exports = (Module[
|
|
11742
|
+
'__playground_zend_side_module_function_exports'
|
|
11743
|
+
] = 13210208);
|
|
11701
11744
|
|
|
11702
|
-
var _z_errmsg = (Module['_z_errmsg'] =
|
|
11745
|
+
var _z_errmsg = (Module['_z_errmsg'] = 13211088);
|
|
11703
11746
|
|
|
11704
|
-
var _timezone = (Module['_timezone'] =
|
|
11747
|
+
var _timezone = (Module['_timezone'] = 14164448);
|
|
11705
11748
|
|
|
11706
|
-
var _tzname = (Module['_tzname'] =
|
|
11749
|
+
var _tzname = (Module['_tzname'] = 14164456);
|
|
11707
11750
|
|
|
11708
|
-
var ___heap_base =
|
|
11751
|
+
var ___heap_base = 15226720;
|
|
11709
11752
|
|
|
11710
11753
|
var __ZNSt3__25ctypeIcE2idE = (Module['__ZNSt3__25ctypeIcE2idE'] =
|
|
11711
|
-
|
|
11754
|
+
14178124);
|
|
11712
11755
|
|
|
11713
11756
|
var __ZSt7nothrow = (Module['__ZSt7nothrow'] = 12787178);
|
|
11714
11757
|
|
|
11715
11758
|
var __ZTVN10__cxxabiv120__si_class_type_infoE = (Module[
|
|
11716
11759
|
'__ZTVN10__cxxabiv120__si_class_type_infoE'
|
|
11717
|
-
] =
|
|
11760
|
+
] = 13703952);
|
|
11718
11761
|
|
|
11719
11762
|
var __ZTVN10__cxxabiv117__class_type_infoE = (Module[
|
|
11720
11763
|
'__ZTVN10__cxxabiv117__class_type_infoE'
|
|
11721
|
-
] =
|
|
11764
|
+
] = 13703912);
|
|
11722
11765
|
|
|
11723
11766
|
var __ZTVN10__cxxabiv121__vmi_class_type_infoE = (Module[
|
|
11724
11767
|
'__ZTVN10__cxxabiv121__vmi_class_type_infoE'
|
|
11725
|
-
] =
|
|
11768
|
+
] = 13704004);
|
|
11726
11769
|
|
|
11727
11770
|
var __ZTISt20bad_array_new_length = (Module[
|
|
11728
11771
|
'__ZTISt20bad_array_new_length'
|
|
11729
|
-
] =
|
|
11772
|
+
] = 13704124);
|
|
11730
11773
|
|
|
11731
|
-
var __ZTVSt12length_error = (Module['__ZTVSt12length_error'] =
|
|
11774
|
+
var __ZTVSt12length_error = (Module['__ZTVSt12length_error'] = 13704200);
|
|
11732
11775
|
|
|
11733
|
-
var __ZTISt12length_error = (Module['__ZTISt12length_error'] =
|
|
11776
|
+
var __ZTISt12length_error = (Module['__ZTISt12length_error'] = 13704220);
|
|
11734
11777
|
|
|
11735
11778
|
var wasmImports = {
|
|
11736
11779
|
/** @export */ __assert_fail: ___assert_fail,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@php-wasm/node-8-3",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.26",
|
|
4
4
|
"description": "PHP 8.3 WebAssembly binaries for node",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,12 +35,13 @@
|
|
|
35
35
|
"node": ">=20.10.0",
|
|
36
36
|
"npm": ">=10.2.3"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "6acfccb8e79f4e664429e3f729f04dbf2ff55303",
|
|
39
39
|
"dependencies": {
|
|
40
|
+
"ajv": "8.12.0",
|
|
40
41
|
"ini": "4.1.2",
|
|
41
42
|
"wasm-feature-detect": "1.8.0",
|
|
42
43
|
"ws": "8.18.0",
|
|
43
|
-
"@php-wasm/universal": "3.1.
|
|
44
|
+
"@php-wasm/universal": "3.1.26"
|
|
44
45
|
},
|
|
45
46
|
"packageManager": "npm@10.9.2",
|
|
46
47
|
"overrides": {
|