summaryrefslogtreecommitdiffstats
path: root/excimer-info.patch
blob: 3cba206003fe3e2092216413ddbc5e49bfd6eaff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From a70fe7ae6ca3c1c621e902fdd43a2f51e1537c77 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Wed, 6 Oct 2021 06:17:21 +0200
Subject: [PATCH] add ext version in phpinfo

---
 excimer.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/excimer.c b/excimer.c
index 347bdd8..110f0a2 100644
--- a/excimer.c
+++ b/excimer.c
@@ -560,6 +560,7 @@ static PHP_MINFO_FUNCTION(excimer)
 {
 	php_info_print_table_start();
 	php_info_print_table_header(2, "excimer support", "enabled");
+	php_info_print_table_row(2, "excimer version", PHP_EXCIMER_VERSION);
 	php_info_print_table_end();
 }
 /* }}} */