From f812b41f5c17a1476bdc436e2a6031c13328cff9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 17 Oct 2015 08:12:25 +0200 Subject: php-pecl-yaml: 2.0.0RC1 (php7) --- REFLECTION-DEV | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 REFLECTION-DEV (limited to 'REFLECTION-DEV') diff --git a/REFLECTION-DEV b/REFLECTION-DEV new file mode 100644 index 0000000..753248c --- /dev/null +++ b/REFLECTION-DEV @@ -0,0 +1,105 @@ +Extension [ extension #99 yaml version 2.0.0RC2 ] { + + - Dependencies { + Dependency [ date (Optional) ] + } + + - INI { + Entry [ yaml.decode_binary ] + Current = '0' + } + Entry [ yaml.decode_timestamp ] + Current = '0' + } + Entry [ yaml.decode_php ] + Current = '1' + } + Entry [ yaml.output_canonical ] + Current = '0' + } + Entry [ yaml.output_indent ] + Current = '2' + } + Entry [ yaml.output_width ] + Current = '80' + } + } + + - Constants [25] { + Constant [ integer YAML_ANY_SCALAR_STYLE ] { 0 } + Constant [ integer YAML_PLAIN_SCALAR_STYLE ] { 1 } + Constant [ integer YAML_SINGLE_QUOTED_SCALAR_STYLE ] { 2 } + Constant [ integer YAML_DOUBLE_QUOTED_SCALAR_STYLE ] { 3 } + Constant [ integer YAML_LITERAL_SCALAR_STYLE ] { 4 } + Constant [ integer YAML_FOLDED_SCALAR_STYLE ] { 5 } + Constant [ string YAML_NULL_TAG ] { tag:yaml.org,2002:null } + Constant [ string YAML_BOOL_TAG ] { tag:yaml.org,2002:bool } + Constant [ string YAML_STR_TAG ] { tag:yaml.org,2002:str } + Constant [ string YAML_INT_TAG ] { tag:yaml.org,2002:int } + Constant [ string YAML_FLOAT_TAG ] { tag:yaml.org,2002:float } + Constant [ string YAML_TIMESTAMP_TAG ] { tag:yaml.org,2002:timestamp } + Constant [ string YAML_SEQ_TAG ] { tag:yaml.org,2002:seq } + Constant [ string YAML_MAP_TAG ] { tag:yaml.org,2002:map } + Constant [ string YAML_PHP_TAG ] { !php/object } + Constant [ string YAML_MERGE_TAG ] { tag:yaml.org,2002:merge } + Constant [ string YAML_BINARY_TAG ] { tag:yaml.org,2002:binary } + Constant [ integer YAML_ANY_ENCODING ] { 0 } + Constant [ integer YAML_UTF8_ENCODING ] { 1 } + Constant [ integer YAML_UTF16LE_ENCODING ] { 2 } + Constant [ integer YAML_UTF16BE_ENCODING ] { 3 } + Constant [ integer YAML_ANY_BREAK ] { 0 } + Constant [ integer YAML_CR_BREAK ] { 1 } + Constant [ integer YAML_LN_BREAK ] { 2 } + Constant [ integer YAML_CRLN_BREAK ] { 3 } + } + + - Functions { + Function [ function yaml_parse ] { + + - Parameters [4] { + Parameter #0 [ $input ] + Parameter #1 [ $pos ] + Parameter #2 [ &$ndocs ] + Parameter #3 [ array $callbacks ] + } + } + Function [ function yaml_parse_file ] { + + - Parameters [4] { + Parameter #0 [ $filename ] + Parameter #1 [ $pos ] + Parameter #2 [ &$ndocs ] + Parameter #3 [ array $callbacks ] + } + } + Function [ function yaml_parse_url ] { + + - Parameters [4] { + Parameter #0 [ $url ] + Parameter #1 [ $pos ] + Parameter #2 [ &$ndocs ] + Parameter #3 [ array $callbacks ] + } + } + Function [ function yaml_emit ] { + + - Parameters [4] { + Parameter #0 [ $data ] + Parameter #1 [ $encoding ] + Parameter #2 [ $linebreak ] + Parameter #3 [ array $callbacks ] + } + } + Function [ function yaml_emit_file ] { + + - Parameters [5] { + Parameter #0 [ $filename ] + Parameter #1 [ $data ] + Parameter #2 [ $encoding ] + Parameter #3 [ $linebreak ] + Parameter #4 [ array $callbacks ] + } + } + } +} + -- cgit