Skip to content

Commit 850e79f

Browse files
authored
Merge pull request #11 from cdoco/develop
Update phpinfo
2 parents b4475b2 + 78b5742 commit 850e79f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

jwt.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -729,9 +729,10 @@ PHP_MSHUTDOWN_FUNCTION(jwt)
729729
PHP_MINFO_FUNCTION(jwt)
730730
{
731731
php_info_print_table_start();
732-
php_info_print_table_header(2, "jwt support", "enabled");
733-
php_info_print_table_row(2, "Version", PHP_JWT_VERSION);
734-
php_info_print_table_row(2, "JWT SSL library", "OpenSSL");
732+
php_info_print_table_header(2, "JWT support", "enabled");
733+
php_info_print_table_row(2, "JWT Version", PHP_JWT_VERSION);
734+
php_info_print_table_row(2, "JWT Author", "ZiHang Gao <[email protected]>");
735+
php_info_print_table_row(2, "JWT Issues", "https://github.com./cdoco/php-jwt/issues");
735736

736737
/* openssl version info */
737738
php_info_print_table_row(2, "OpenSSL Library Version", SSLeay_version(SSLEAY_VERSION));

0 commit comments

Comments
 (0)