From 828a6547cc621fec6fd81745a8f6c9753f904bf2 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 2 Mar 2022 16:12:35 +0100 Subject: [PATCH] show versions in MINFO see also https://github.com/amzn/ion-c/issues/285 --- ion.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ion.c b/ion.c index 017b5ad..85c1923 100644 --- a/ion.c +++ b/ion.c @@ -1895,6 +1895,8 @@ PHP_MINFO_FUNCTION(ion) { php_info_print_table_start(); php_info_print_table_header(2, "ion support", "enabled"); + php_info_print_table_row(2, "ion version", PHP_ION_VERSION); + php_info_print_table_row(2, "ion-c version", "unknown"); php_info_print_table_end(); } -- 2.30.2