diff options
-rw-r--r-- | PHPINFO | 4 | ||||
-rw-r--r-- | REFLECTION | 6 | ||||
-rw-r--r-- | php-ast.spec | 5 |
3 files changed, 10 insertions, 5 deletions
@@ -2,5 +2,5 @@ ast ast support => enabled -extension version => 1.0.13 -AST version => Current version is 80. All versions (including experimental): {50, 60, 70, 80, 85} +extension version => 1.0.14 +AST version => Current version is 90. All versions (including experimental): {50, 60, 70, 80, 85, 90} @@ -1,6 +1,6 @@ -Extension [ <persistent> extension #67 ast version 1.0.13 ] { +Extension [ <persistent> extension #67 ast version 1.0.14 ] { - - Constants [197] { + - Constants [199] { Constant [ int ast\AST_ARG_LIST ] { 128 } Constant [ int ast\AST_LIST ] { 255 } Constant [ int ast\AST_ARRAY ] { 129 } @@ -33,6 +33,7 @@ Extension [ <persistent> extension #67 ast version 1.0.13 ] { Constant [ int ast\AST_CLASS ] { 70 } Constant [ int ast\AST_MAGIC_CONST ] { 0 } Constant [ int ast\AST_TYPE ] { 1 } + Constant [ int ast\AST_CALLABLE_CONVERT ] { 3 } Constant [ int ast\AST_VAR ] { 256 } Constant [ int ast\AST_CONST ] { 257 } Constant [ int ast\AST_UNPACK ] { 258 } @@ -117,6 +118,7 @@ Extension [ <persistent> extension #67 ast version 1.0.13 ] { Constant [ int ast\flags\MODIFIER_STATIC ] { 16 } Constant [ int ast\flags\MODIFIER_ABSTRACT ] { 64 } Constant [ int ast\flags\MODIFIER_FINAL ] { 32 } + Constant [ int ast\flags\MODIFIER_READONLY ] { 128 } Constant [ int ast\flags\PARAM_MODIFIER_PUBLIC ] { 4 } Constant [ int ast\flags\PARAM_MODIFIER_PROTECTED ] { 8 } Constant [ int ast\flags\PARAM_MODIFIER_PRIVATE ] { 16 } diff --git a/php-ast.spec b/php-ast.spec index 72b561a..f732ea9 100644 --- a/php-ast.spec +++ b/php-ast.spec @@ -21,7 +21,7 @@ Summary: Abstract Syntax Tree Name: %{?scl_prefix}php-ast -Version: 1.0.13 +Version: 1.0.14 %if 0%{?gh_date:1} Release: 0.7.%{gh_date}git%{gh_short}%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} %else @@ -224,6 +224,9 @@ fi %changelog +* Sun Jul 25 2021 Remi Collet <remi@remirepo.net> - 1.0.14-1 +- update to 1.0.14 + * Thu Jul 8 2021 Remi Collet <remi@remirepo.net> - 1.0.13-1 - update to 1.0.13 |