From d71c4e3b3024c1e16a9adca72e95112e3ef43b10 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 31 Mar 2020 10:32:34 +0200 Subject: update to 2.2.0 enable json, igbinary and msgpack serializers rename configuration file to 50-yac.ini to ensure proper load order --- REFLECTION | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index e970cb0..a7b3b62 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,10 @@ -Extension [ extension #112 yac version 2.1.2 ] { +Extension [ extension #112 yac version 2.2.0 ] { + + - Dependencies { + Dependency [ msgpack (Required) ] + Dependency [ igbinary (Required) ] + Dependency [ json (Required) ] + } - INI { Entry [ yac.enable ] @@ -19,14 +25,21 @@ Extension [ extension #112 yac version 2.1.2 ] { Entry [ yac.enable_cli ] Current = '0' } + Entry [ yac.serializer ] + Current = 'php' + } } - - Constants [5] { - Constant [ string YAC_VERSION ] { 2.1.2 } + - Constants [9] { + Constant [ string YAC_VERSION ] { 2.2.0 } Constant [ int YAC_MAX_KEY_LEN ] { 48 } Constant [ int YAC_MAX_VALUE_RAW_LEN ] { 67108863 } Constant [ int YAC_MAX_RAW_COMPRESSED_LEN ] { 1048576 } - Constant [ string YAC_SERIALIZER ] { PHP } + Constant [ int YAC_SERIALIZER_PHP ] { 0 } + Constant [ int YAC_SERIALIZER_MSGPACK ] { 2 } + Constant [ int YAC_SERIALIZER_IGBINARY ] { 3 } + Constant [ int YAC_SERIALIZER_JSON ] { 1 } + Constant [ int YAC_SERIALIZER ] { 0 } } - Classes [1] { -- cgit