From a2d32c9cb4238b08c49d098d8faef74c7b642ac2 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Sat, 25 Oct 2025 09:50:23 -0700 Subject: [PATCH] ext/lexbor: use PHP_VERSION for extension version To match most other bundled extensions, instead of having no version at all --- ext/lexbor/php_lexbor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/lexbor/php_lexbor.c b/ext/lexbor/php_lexbor.c index 9421af0884223..7f847bfb0afeb 100644 --- a/ext/lexbor/php_lexbor.c +++ b/ext/lexbor/php_lexbor.c @@ -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 };