├── .appveyor.yml ├── .appveyor ├── build.ps1 ├── install.ps1 └── test.ps1 ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CREDITS ├── LICENSE ├── README ├── TODO ├── composer.json ├── config.m4 ├── config.w32 ├── detect.c ├── dev-tools ├── README.packaging ├── maintainer-clean.sh ├── pull-request.sh ├── sync-upstream.sh ├── test-all.sh ├── test-build.sh ├── test-coverage.sh └── test.sh ├── docs ├── index.html ├── phpdoc │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── entities.functions.xml │ ├── examples.xml │ ├── functions │ │ ├── yaml-emit-file.xml │ │ ├── yaml-emit.xml │ │ ├── yaml-parse-file.xml │ │ ├── yaml-parse-url.xml │ │ └── yaml-parse.xml │ ├── ini.xml │ ├── reference.xml │ ├── setup.xml │ └── versions.xml └── site.css ├── emit.c ├── package.xml ├── parse.c ├── php_yaml.h ├── php_yaml_int.h ├── tests ├── bug_21995.phpt ├── bug_59860.phpt ├── bug_60628.phpt ├── bug_61770.phpt ├── bug_61923.phpt ├── bug_64019.phpt ├── bug_64694.phpt ├── bug_69465.phpt ├── bug_69616.phpt ├── bug_69617.phpt ├── bug_72204.phpt ├── bug_72540.phpt ├── bug_74799.phpt ├── bug_74799.yaml ├── bug_74886.phpt ├── bug_75029.phpt ├── bug_76309.phpt ├── bug_77720.phpt ├── bug_79494.phpt ├── bug_79567.phpt ├── bug_79866.phpt ├── bug_80324.phpt ├── bug_parsing_alias.phpt ├── yaml_001.phpt ├── yaml_002.phpt ├── yaml_emit_001.phpt ├── yaml_emit_002.phpt ├── yaml_emit_003.phpt ├── yaml_emit_004.phpt ├── yaml_emit_005.phpt ├── yaml_emit_006.phpt ├── yaml_emit_007.phpt ├── yaml_emit_008.phpt ├── yaml_emit_009.phpt ├── yaml_emit_file_basic.phpt ├── yaml_parse_001.phpt ├── yaml_parse_002.phpt ├── yaml_parse_003.phpt ├── yaml_parse_004.phpt ├── yaml_parse_005.phpt ├── yaml_parse_006.phpt ├── yaml_parse_007.phpt ├── yaml_parse_008.phpt ├── yaml_parse_file_001.phpt ├── yaml_parse_file_001.yaml ├── yaml_parse_file_002.phpt ├── yaml_parse_file_003.phpt ├── yaml_parse_file_003.yaml ├── yaml_parse_spec_binary.phpt ├── yaml_parse_spec_bool.phpt ├── yaml_parse_spec_float.phpt ├── yaml_parse_spec_int.phpt ├── yaml_parse_spec_map.phpt ├── yaml_parse_spec_merge.phpt ├── yaml_parse_spec_null.phpt ├── yaml_parse_spec_omap.phpt ├── yaml_parse_spec_pairs.phpt ├── yaml_parse_spec_seq.phpt ├── yaml_parse_spec_set.phpt ├── yaml_parse_spec_str.phpt ├── yaml_parse_spec_timestamp.phpt ├── yaml_parse_url_001.phpt ├── yaml_parse_wiki_YtsBasicTests_001.phpt ├── yaml_parse_wiki_YtsBasicTests_002.phpt ├── yaml_parse_wiki_YtsBasicTests_003.phpt ├── yaml_parse_wiki_YtsBasicTests_004.phpt ├── yaml_parse_wiki_YtsBasicTests_005.phpt ├── yaml_parse_wiki_YtsBasicTests_006.phpt ├── yaml_parse_wiki_YtsBasicTests_007.phpt ├── yaml_parse_wiki_YtsBasicTests_008.phpt ├── yaml_parse_wiki_YtsBasicTests_009.phpt ├── yaml_parse_wiki_YtsBlockMapping_001.phpt ├── yaml_parse_wiki_YtsBlockMapping_002.phpt ├── yaml_parse_wiki_YtsBlockMapping_003.phpt ├── yaml_parse_wiki_YtsBlockMapping_004.phpt ├── yaml_parse_wiki_YtsMapInSeq_001.phpt ├── yaml_parse_wiki_YtsMapInSeq_002.phpt ├── yaml_parse_wiki_YtsMapInSeq_003.phpt ├── yaml_parse_wiki_YtsStrangeKeys_001.phpt └── yaml_parse_wiki_YtsStrangeKeys_002.phpt └── yaml.c /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.appveyor/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/.appveyor/build.ps1 -------------------------------------------------------------------------------- /.appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/.appveyor/install.ps1 -------------------------------------------------------------------------------- /.appveyor/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/.appveyor/test.ps1 -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | yaml 2 | Bryan Davis, Ryusuke Sekiyama 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/TODO -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/composer.json -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/config.w32 -------------------------------------------------------------------------------- /detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/detect.c -------------------------------------------------------------------------------- /dev-tools/README.packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/README.packaging -------------------------------------------------------------------------------- /dev-tools/maintainer-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/maintainer-clean.sh -------------------------------------------------------------------------------- /dev-tools/pull-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/pull-request.sh -------------------------------------------------------------------------------- /dev-tools/sync-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/sync-upstream.sh -------------------------------------------------------------------------------- /dev-tools/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/test-all.sh -------------------------------------------------------------------------------- /dev-tools/test-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/test-build.sh -------------------------------------------------------------------------------- /dev-tools/test-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/test-coverage.sh -------------------------------------------------------------------------------- /dev-tools/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/dev-tools/test.sh -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/phpdoc/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/book.xml -------------------------------------------------------------------------------- /docs/phpdoc/configure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/configure.xml -------------------------------------------------------------------------------- /docs/phpdoc/constants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/constants.xml -------------------------------------------------------------------------------- /docs/phpdoc/entities.functions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/entities.functions.xml -------------------------------------------------------------------------------- /docs/phpdoc/examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/examples.xml -------------------------------------------------------------------------------- /docs/phpdoc/functions/yaml-emit-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/functions/yaml-emit-file.xml -------------------------------------------------------------------------------- /docs/phpdoc/functions/yaml-emit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/functions/yaml-emit.xml -------------------------------------------------------------------------------- /docs/phpdoc/functions/yaml-parse-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/functions/yaml-parse-file.xml -------------------------------------------------------------------------------- /docs/phpdoc/functions/yaml-parse-url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/functions/yaml-parse-url.xml -------------------------------------------------------------------------------- /docs/phpdoc/functions/yaml-parse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/functions/yaml-parse.xml -------------------------------------------------------------------------------- /docs/phpdoc/ini.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/ini.xml -------------------------------------------------------------------------------- /docs/phpdoc/reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/reference.xml -------------------------------------------------------------------------------- /docs/phpdoc/setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/setup.xml -------------------------------------------------------------------------------- /docs/phpdoc/versions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/phpdoc/versions.xml -------------------------------------------------------------------------------- /docs/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/docs/site.css -------------------------------------------------------------------------------- /emit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/emit.c -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/package.xml -------------------------------------------------------------------------------- /parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/parse.c -------------------------------------------------------------------------------- /php_yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/php_yaml.h -------------------------------------------------------------------------------- /php_yaml_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/php_yaml_int.h -------------------------------------------------------------------------------- /tests/bug_21995.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_21995.phpt -------------------------------------------------------------------------------- /tests/bug_59860.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_59860.phpt -------------------------------------------------------------------------------- /tests/bug_60628.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_60628.phpt -------------------------------------------------------------------------------- /tests/bug_61770.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_61770.phpt -------------------------------------------------------------------------------- /tests/bug_61923.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_61923.phpt -------------------------------------------------------------------------------- /tests/bug_64019.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_64019.phpt -------------------------------------------------------------------------------- /tests/bug_64694.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_64694.phpt -------------------------------------------------------------------------------- /tests/bug_69465.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_69465.phpt -------------------------------------------------------------------------------- /tests/bug_69616.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_69616.phpt -------------------------------------------------------------------------------- /tests/bug_69617.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_69617.phpt -------------------------------------------------------------------------------- /tests/bug_72204.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_72204.phpt -------------------------------------------------------------------------------- /tests/bug_72540.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_72540.phpt -------------------------------------------------------------------------------- /tests/bug_74799.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_74799.phpt -------------------------------------------------------------------------------- /tests/bug_74799.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | key: 3 | !value 4 | ... -------------------------------------------------------------------------------- /tests/bug_74886.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_74886.phpt -------------------------------------------------------------------------------- /tests/bug_75029.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_75029.phpt -------------------------------------------------------------------------------- /tests/bug_76309.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_76309.phpt -------------------------------------------------------------------------------- /tests/bug_77720.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_77720.phpt -------------------------------------------------------------------------------- /tests/bug_79494.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_79494.phpt -------------------------------------------------------------------------------- /tests/bug_79567.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_79567.phpt -------------------------------------------------------------------------------- /tests/bug_79866.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_79866.phpt -------------------------------------------------------------------------------- /tests/bug_80324.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_80324.phpt -------------------------------------------------------------------------------- /tests/bug_parsing_alias.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/bug_parsing_alias.phpt -------------------------------------------------------------------------------- /tests/yaml_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_001.phpt -------------------------------------------------------------------------------- /tests/yaml_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_002.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_001.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_002.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_003.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_004.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_005.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_006.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_007.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_008.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_009.phpt -------------------------------------------------------------------------------- /tests/yaml_emit_file_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_emit_file_basic.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_001.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_002.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_003.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_004.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_005.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_006.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_007.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_008.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_file_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_file_001.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_file_001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_file_001.yaml -------------------------------------------------------------------------------- /tests/yaml_parse_file_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_file_002.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_file_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_file_003.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_file_003.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_file_003.yaml -------------------------------------------------------------------------------- /tests/yaml_parse_spec_binary.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_binary.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_bool.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_bool.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_float.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_float.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_int.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_map.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_map.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_merge.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_merge.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_null.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_null.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_omap.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_omap.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_pairs.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_pairs.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_seq.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_seq.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_set.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_set.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_str.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_str.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_spec_timestamp.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_spec_timestamp.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_url_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_url_001.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_001.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_002.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_003.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_004.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_005.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_006.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_007.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_008.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBasicTests_009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBasicTests_009.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBlockMapping_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBlockMapping_001.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBlockMapping_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBlockMapping_002.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBlockMapping_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBlockMapping_003.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsBlockMapping_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsBlockMapping_004.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsMapInSeq_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsMapInSeq_001.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsMapInSeq_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsMapInSeq_002.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsMapInSeq_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsMapInSeq_003.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsStrangeKeys_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsStrangeKeys_001.phpt -------------------------------------------------------------------------------- /tests/yaml_parse_wiki_YtsStrangeKeys_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/tests/yaml_parse_wiki_YtsStrangeKeys_002.phpt -------------------------------------------------------------------------------- /yaml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-file_formats-yaml/HEAD/yaml.c --------------------------------------------------------------------------------