1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ext/lexbor: use PHP_VERSION for extension version (#20291)

To match most other bundled extensions, instead of having no version at all
This commit is contained in:
Daniel Scherzer
2025-10-28 10:51:05 -07:00
committed by GitHub
parent df9141079c
commit b35b5e0050

View File

@@ -72,7 +72,7 @@ zend_module_entry lexbor_module_entry = {
NULL, /* per-request startup function */
NULL, /* per-request shutdown function */
PHP_MINFO(lexbor), /* information function */
NULL,
PHP_VERSION,
STANDARD_MODULE_PROPERTIES
};