├── .appveyor.yml ├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── integration.yml ├── .gitignore ├── CMakeLists.txt ├── CREDITS ├── LICENSE ├── README.md ├── benchmark ├── README.md ├── benchmark.php ├── composer.json └── phpbench │ ├── DecodeBench.php │ ├── KeyValueBench.php │ ├── MultipleAccessBench.php │ └── SingleCharStringsBench.php ├── config.m4 ├── config.w32 ├── docker_php7.1-alpine ├── docker_php7.2-alpine ├── docker_php7.3-alpine ├── docker_php7.4-alpine ├── docker_php8.0-alpine ├── docker_php8.1-alpine ├── docker_php8.2-alpine ├── jsonexamples ├── apache_builds.json ├── canada.json ├── citm_catalog.json ├── github_events.json ├── gsoc-2018.json ├── instruments.json ├── marine_ik.json ├── mesh.json ├── mesh.pretty.json ├── numbers.json ├── random.json ├── small │ ├── adversarial.json │ ├── demo.json │ ├── flatadversarial.json │ ├── jsoniter_scala │ │ ├── README.md │ │ ├── che-1.geo.json │ │ ├── che-2.geo.json │ │ ├── che-3.geo.json │ │ ├── google_maps_api_compact_response.json │ │ ├── google_maps_api_response.json │ │ ├── twitter_api_compact_response.json │ │ └── twitter_api_response.json │ ├── repeat.json │ ├── truenull.json │ └── twitter_timeline.json ├── stringifiedphp.json ├── test_parsing │ ├── i_number_double_huge_neg_exp.json │ ├── i_number_huge_exp.json │ ├── i_number_neg_int_huge_exp.json │ ├── i_number_pos_double_huge_exp.json │ ├── i_number_real_neg_overflow.json │ ├── i_number_real_pos_overflow.json │ ├── i_number_real_underflow.json │ ├── i_number_too_big_neg_int.json │ ├── i_number_too_big_pos_int.json │ ├── i_number_very_big_negative_int.json │ ├── i_object_key_lone_2nd_surrogate.json │ ├── i_string_1st_surrogate_but_2nd_missing.json │ ├── i_string_1st_valid_surrogate_2nd_invalid.json │ ├── i_string_UTF-16LE_with_BOM.json │ ├── i_string_UTF-8_invalid_sequence.json │ ├── i_string_UTF8_surrogate_U+D800.json │ ├── i_string_incomplete_surrogate_and_escape_valid.json │ ├── i_string_incomplete_surrogate_pair.json │ ├── i_string_incomplete_surrogates_escape_valid.json │ ├── i_string_invalid_lonely_surrogate.json │ ├── i_string_invalid_surrogate.json │ ├── i_string_invalid_utf-8.json │ ├── i_string_inverted_surrogates_U+1D11E.json │ ├── i_string_iso_latin_1.json │ ├── i_string_lone_second_surrogate.json │ ├── i_string_lone_utf8_continuation_byte.json │ ├── i_string_not_in_unicode_range.json │ ├── i_string_overlong_sequence_2_bytes.json │ ├── i_string_overlong_sequence_6_bytes.json │ ├── i_string_overlong_sequence_6_bytes_null.json │ ├── i_string_truncated-utf-8.json │ ├── i_string_utf16BE_no_BOM.json │ ├── i_string_utf16LE_no_BOM.json │ ├── i_structure_500_nested_arrays.json │ ├── i_structure_UTF-8_BOM_empty_object.json │ ├── n_array_1_true_without_comma.json │ ├── n_array_a_invalid_utf8.json │ ├── n_array_colon_instead_of_comma.json │ ├── n_array_comma_after_close.json │ ├── n_array_comma_and_number.json │ ├── n_array_double_comma.json │ ├── n_array_double_extra_comma.json │ ├── n_array_extra_close.json │ ├── n_array_extra_comma.json │ ├── n_array_incomplete.json │ ├── n_array_incomplete_invalid_value.json │ ├── n_array_inner_array_no_comma.json │ ├── n_array_invalid_utf8.json │ ├── n_array_items_separated_by_semicolon.json │ ├── n_array_just_comma.json │ ├── n_array_just_minus.json │ ├── n_array_missing_value.json │ ├── n_array_newlines_unclosed.json │ ├── n_array_number_and_comma.json │ ├── n_array_number_and_several_commas.json │ ├── n_array_spaces_vertical_tab_formfeed.json │ ├── n_array_star_inside.json │ ├── n_array_unclosed.json │ ├── n_array_unclosed_trailing_comma.json │ ├── n_array_unclosed_with_new_lines.json │ ├── n_array_unclosed_with_object_inside.json │ ├── n_incomplete_false.json │ ├── n_incomplete_null.json │ ├── n_incomplete_true.json │ ├── n_multidigit_number_then_00.json │ ├── n_number_++.json │ ├── n_number_+1.json │ ├── n_number_+Inf.json │ ├── n_number_-01.json │ ├── n_number_-1.0..json │ ├── n_number_-2..json │ ├── n_number_-NaN.json │ ├── n_number_.-1.json │ ├── n_number_.2e-3.json │ ├── n_number_0.1.2.json │ ├── n_number_0.3e+.json │ ├── n_number_0.3e.json │ ├── n_number_0.e1.json │ ├── n_number_0_capital_E+.json │ ├── n_number_0_capital_E.json │ ├── n_number_0e+.json │ ├── n_number_0e.json │ ├── n_number_1.0e+.json │ ├── n_number_1.0e-.json │ ├── n_number_1.0e.json │ ├── n_number_1_000.json │ ├── n_number_1eE2.json │ ├── n_number_2.e+3.json │ ├── n_number_2.e-3.json │ ├── n_number_2.e3.json │ ├── n_number_9.e+.json │ ├── n_number_Inf.json │ ├── n_number_NaN.json │ ├── n_number_U+FF11_fullwidth_digit_one.json │ ├── n_number_expression.json │ ├── n_number_hex_1_digit.json │ ├── n_number_hex_2_digits.json │ ├── n_number_infinity.json │ ├── n_number_invalid+-.json │ ├── n_number_invalid-negative-real.json │ ├── n_number_invalid-utf-8-in-bigger-int.json │ ├── n_number_invalid-utf-8-in-exponent.json │ ├── n_number_invalid-utf-8-in-int.json │ ├── n_number_minus_infinity.json │ ├── n_number_minus_sign_with_trailing_garbage.json │ ├── n_number_minus_space_1.json │ ├── n_number_neg_int_starting_with_zero.json │ ├── n_number_neg_real_without_int_part.json │ ├── n_number_neg_with_garbage_at_end.json │ ├── n_number_real_garbage_after_e.json │ ├── n_number_real_with_invalid_utf8_after_e.json │ ├── n_number_real_without_fractional_part.json │ ├── n_number_starting_with_dot.json │ ├── n_number_with_alpha.json │ ├── n_number_with_alpha_char.json │ ├── n_number_with_leading_zero.json │ ├── n_object_bad_value.json │ ├── n_object_bracket_key.json │ ├── n_object_comma_instead_of_colon.json │ ├── n_object_double_colon.json │ ├── n_object_emoji.json │ ├── n_object_garbage_at_end.json │ ├── n_object_key_with_single_quotes.json │ ├── n_object_lone_continuation_byte_in_key_and_trailing_comma.json │ ├── n_object_missing_colon.json │ ├── n_object_missing_key.json │ ├── n_object_missing_semicolon.json │ ├── n_object_missing_value.json │ ├── n_object_no-colon.json │ ├── n_object_non_string_key.json │ ├── n_object_non_string_key_but_huge_number_instead.json │ ├── n_object_repeated_null_null.json │ ├── n_object_several_trailing_commas.json │ ├── n_object_single_quote.json │ ├── n_object_trailing_comma.json │ ├── n_object_trailing_comment.json │ ├── n_object_trailing_comment_open.json │ ├── n_object_trailing_comment_slash_open.json │ ├── n_object_trailing_comment_slash_open_incomplete.json │ ├── n_object_two_commas_in_a_row.json │ ├── n_object_unquoted_key.json │ ├── n_object_unterminated-value.json │ ├── n_object_with_single_string.json │ ├── n_object_with_trailing_garbage.json │ ├── n_single_space.json │ ├── n_string_1_surrogate_then_escape.json │ ├── n_string_1_surrogate_then_escape_u.json │ ├── n_string_1_surrogate_then_escape_u1.json │ ├── n_string_1_surrogate_then_escape_u1x.json │ ├── n_string_accentuated_char_no_quotes.json │ ├── n_string_backslash_00.json │ ├── n_string_escape_x.json │ ├── n_string_escaped_backslash_bad.json │ ├── n_string_escaped_ctrl_char_tab.json │ ├── n_string_escaped_emoji.json │ ├── n_string_incomplete_escape.json │ ├── n_string_incomplete_escaped_character.json │ ├── n_string_incomplete_surrogate.json │ ├── n_string_incomplete_surrogate_escape_invalid.json │ ├── n_string_invalid-utf-8-in-escape.json │ ├── n_string_invalid_backslash_esc.json │ ├── n_string_invalid_unicode_escape.json │ ├── n_string_invalid_utf8_after_escape.json │ ├── n_string_leading_uescaped_thinspace.json │ ├── n_string_no_quotes_with_bad_escape.json │ ├── n_string_single_doublequote.json │ ├── n_string_single_quote.json │ ├── n_string_single_string_no_double_quotes.json │ ├── n_string_start_escape_unclosed.json │ ├── n_string_unescaped_crtl_char.json │ ├── n_string_unescaped_newline.json │ ├── n_string_unescaped_tab.json │ ├── n_string_unicode_CapitalU.json │ ├── n_string_with_trailing_garbage.json │ ├── n_structure_100000_opening_arrays.json │ ├── n_structure_U+2060_word_joined.json │ ├── n_structure_UTF8_BOM_no_data.json │ ├── n_structure_angle_bracket_..json │ ├── n_structure_angle_bracket_null.json │ ├── n_structure_array_trailing_garbage.json │ ├── n_structure_array_with_extra_array_close.json │ ├── n_structure_array_with_unclosed_string.json │ ├── n_structure_ascii-unicode-identifier.json │ ├── n_structure_capitalized_True.json │ ├── n_structure_close_unopened_array.json │ ├── n_structure_comma_instead_of_closing_brace.json │ ├── n_structure_double_array.json │ ├── n_structure_end_array.json │ ├── n_structure_incomplete_UTF8_BOM.json │ ├── n_structure_lone-invalid-utf-8.json │ ├── n_structure_lone-open-bracket.json │ ├── n_structure_no_data.json │ ├── n_structure_null-byte-outside-string.json │ ├── n_structure_number_with_trailing_garbage.json │ ├── n_structure_object_followed_by_closing_object.json │ ├── n_structure_object_unclosed_no_value.json │ ├── n_structure_object_with_comment.json │ ├── n_structure_object_with_trailing_garbage.json │ ├── n_structure_open_array_apostrophe.json │ ├── n_structure_open_array_comma.json │ ├── n_structure_open_array_object.json │ ├── n_structure_open_array_open_object.json │ ├── n_structure_open_array_open_string.json │ ├── n_structure_open_array_string.json │ ├── n_structure_open_object.json │ ├── n_structure_open_object_close_array.json │ ├── n_structure_open_object_comma.json │ ├── n_structure_open_object_open_array.json │ ├── n_structure_open_object_open_string.json │ ├── n_structure_open_object_string_with_apostrophes.json │ ├── n_structure_open_open.json │ ├── n_structure_single_eacute.json │ ├── n_structure_single_star.json │ ├── n_structure_trailing_#.json │ ├── n_structure_uescaped_LF_before_string.json │ ├── n_structure_unclosed_array.json │ ├── n_structure_unclosed_array_partial_null.json │ ├── n_structure_unclosed_array_unfinished_false.json │ ├── n_structure_unclosed_array_unfinished_true.json │ ├── n_structure_unclosed_object.json │ ├── n_structure_unicode-identifier.json │ ├── n_structure_whitespace_U+2060_word_joiner.json │ ├── n_structure_whitespace_formfeed.json │ ├── y_array_arraysWithSpaces.json │ ├── y_array_empty-string.json │ ├── y_array_empty.json │ ├── y_array_ending_with_newline.json │ ├── y_array_false.json │ ├── y_array_heterogeneous.json │ ├── y_array_null.json │ ├── y_array_with_1_and_newline.json │ ├── y_array_with_leading_space.json │ ├── y_array_with_several_null.json │ ├── y_array_with_trailing_space.json │ ├── y_number.json │ ├── y_number_0e+1.json │ ├── y_number_0e1.json │ ├── y_number_after_space.json │ ├── y_number_double_close_to_zero.json │ ├── y_number_int_with_exp.json │ ├── y_number_minus_zero.json │ ├── y_number_negative_int.json │ ├── y_number_negative_one.json │ ├── y_number_negative_zero.json │ ├── y_number_real_capital_e.json │ ├── y_number_real_capital_e_neg_exp.json │ ├── y_number_real_capital_e_pos_exp.json │ ├── y_number_real_exponent.json │ ├── y_number_real_fraction_exponent.json │ ├── y_number_real_neg_exp.json │ ├── y_number_real_pos_exponent.json │ ├── y_number_simple_int.json │ ├── y_number_simple_real.json │ ├── y_object.json │ ├── y_object_basic.json │ ├── y_object_duplicated_key.json │ ├── y_object_duplicated_key_and_value.json │ ├── y_object_empty.json │ ├── y_object_empty_key.json │ ├── y_object_escaped_null_in_key.json │ ├── y_object_extreme_numbers.json │ ├── y_object_long_strings.json │ ├── y_object_simple.json │ ├── y_object_string_unicode.json │ ├── y_object_with_newlines.json │ ├── y_string_1_2_3_bytes_UTF-8_sequences.json │ ├── y_string_accepted_surrogate_pair.json │ ├── y_string_accepted_surrogate_pairs.json │ ├── y_string_allowed_escapes.json │ ├── y_string_backslash_and_u_escaped_zero.json │ ├── y_string_backslash_doublequotes.json │ ├── y_string_comments.json │ ├── y_string_double_escape_a.json │ ├── y_string_double_escape_n.json │ ├── y_string_escaped_control_character.json │ ├── y_string_escaped_noncharacter.json │ ├── y_string_in_array.json │ ├── y_string_in_array_with_leading_space.json │ ├── y_string_last_surrogates_1_and_2.json │ ├── y_string_nbsp_uescaped.json │ ├── y_string_nonCharacterInUTF-8_U+10FFFF.json │ ├── y_string_nonCharacterInUTF-8_U+FFFF.json │ ├── y_string_null_escape.json │ ├── y_string_one-byte-utf-8.json │ ├── y_string_pi.json │ ├── y_string_reservedCharacterInUTF-8_U+1BFFF.json │ ├── y_string_simple_ascii.json │ ├── y_string_space.json │ ├── y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json │ ├── y_string_three-byte-utf-8.json │ ├── y_string_two-byte-utf-8.json │ ├── y_string_u+2028_line_sep.json │ ├── y_string_u+2029_par_sep.json │ ├── y_string_uEscape.json │ ├── y_string_uescaped_newline.json │ ├── y_string_unescaped_char_delete.json │ ├── y_string_unicode.json │ ├── y_string_unicodeEscapedBackslash.json │ ├── y_string_unicode_2.json │ ├── y_string_unicode_U+10FFFE_nonchar.json │ ├── y_string_unicode_U+1FFFE_nonchar.json │ ├── y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json │ ├── y_string_unicode_U+2064_invisible_plus.json │ ├── y_string_unicode_U+FDD0_nonchar.json │ ├── y_string_unicode_U+FFFE_nonchar.json │ ├── y_string_unicode_escaped_double_quote.json │ ├── y_string_utf8.json │ ├── y_string_with_del_character.json │ ├── y_structure_lonely_false.json │ ├── y_structure_lonely_int.json │ ├── y_structure_lonely_negative_real.json │ ├── y_structure_lonely_null.json │ ├── y_structure_lonely_string.json │ ├── y_structure_lonely_true.json │ ├── y_structure_string_empty.json │ ├── y_structure_trailing_newline.json │ ├── y_structure_true_in_array.json │ └── y_structure_whitespace_array.json ├── twitter.json ├── twitterescaped.json └── update-center.json ├── package.xml ├── php_simdjson.cpp ├── php_simdjson.h ├── phpbench.json.dist ├── scripts └── compare_decode_results.php ├── simdjson.stub.php ├── simdjson_arginfo.h ├── src ├── simdjson.cpp ├── simdjson.h ├── simdjson_bindings.cpp └── simdjson_bindings_defs.h └── tests ├── 32bit_support.phpt ├── 64bit_support.phpt ├── _files └── result.json ├── compat ├── 001.phpt ├── bug41067.phpt ├── bug41504.phpt ├── bug45791.phpt ├── bug47644.phpt ├── bug50224.phpt ├── bug62010.phpt ├── bug64874_part1.phpt ├── bug64874_part2.phpt ├── bug68546.phpt ├── bug68817.phpt ├── bug68938.phpt ├── bug69187.phpt ├── fail001.phpt ├── json_decode_basic.phpt ├── json_decode_invalid_utf8.phpt ├── pass001.1.phpt ├── pass001.1_64bit.phpt ├── pass001.phpt ├── pass002.phpt └── pass003.phpt ├── decode_args.phpt ├── decode_exception.phpt ├── decode_integer_overflow.phpt ├── decode_invalid_property.phpt ├── decode_max_depth.phpt ├── decode_max_depth_memory_reduction.phpt ├── decode_repeat.phpt ├── decode_result.phpt ├── decode_strict_types.phpt ├── decode_types.phpt ├── depth.phpt ├── dump.inc ├── is_valid.phpt ├── is_valid_args.phpt ├── is_valid_edge_cases.phpt ├── key_count.phpt ├── key_count_args.phpt ├── key_count_exception.phpt ├── key_count_large.phpt ├── key_exists.phpt ├── key_exists_args.phpt ├── key_value_args.phpt ├── key_value_deep_string.phpt ├── key_value_exception.phpt ├── key_value_int.phpt ├── key_value_result.phpt ├── key_value_slash.phpt └── uint64_overflow.phpt /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/benchmark/benchmark.php -------------------------------------------------------------------------------- /benchmark/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/benchmark/composer.json -------------------------------------------------------------------------------- /benchmark/phpbench/DecodeBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/benchmark/phpbench/DecodeBench.php -------------------------------------------------------------------------------- /benchmark/phpbench/KeyValueBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/benchmark/phpbench/KeyValueBench.php -------------------------------------------------------------------------------- /benchmark/phpbench/MultipleAccessBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/benchmark/phpbench/MultipleAccessBench.php -------------------------------------------------------------------------------- /benchmark/phpbench/SingleCharStringsBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/benchmark/phpbench/SingleCharStringsBench.php -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/config.w32 -------------------------------------------------------------------------------- /docker_php7.1-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/docker_php7.1-alpine -------------------------------------------------------------------------------- /docker_php7.2-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/docker_php7.2-alpine -------------------------------------------------------------------------------- /docker_php7.3-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/docker_php7.3-alpine -------------------------------------------------------------------------------- /docker_php7.4-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/docker_php7.4-alpine -------------------------------------------------------------------------------- /docker_php8.0-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/docker_php8.0-alpine -------------------------------------------------------------------------------- /docker_php8.1-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/docker_php8.1-alpine -------------------------------------------------------------------------------- /docker_php8.2-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/docker_php8.2-alpine -------------------------------------------------------------------------------- /jsonexamples/apache_builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/apache_builds.json -------------------------------------------------------------------------------- /jsonexamples/canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/canada.json -------------------------------------------------------------------------------- /jsonexamples/citm_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/citm_catalog.json -------------------------------------------------------------------------------- /jsonexamples/github_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/github_events.json -------------------------------------------------------------------------------- /jsonexamples/gsoc-2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/gsoc-2018.json -------------------------------------------------------------------------------- /jsonexamples/instruments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/instruments.json -------------------------------------------------------------------------------- /jsonexamples/marine_ik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/marine_ik.json -------------------------------------------------------------------------------- /jsonexamples/mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/mesh.json -------------------------------------------------------------------------------- /jsonexamples/mesh.pretty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/mesh.pretty.json -------------------------------------------------------------------------------- /jsonexamples/numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/numbers.json -------------------------------------------------------------------------------- /jsonexamples/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/random.json -------------------------------------------------------------------------------- /jsonexamples/small/adversarial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/adversarial.json -------------------------------------------------------------------------------- /jsonexamples/small/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/demo.json -------------------------------------------------------------------------------- /jsonexamples/small/flatadversarial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/flatadversarial.json -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/README.md -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/che-1.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/che-1.geo.json -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/che-2.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/che-2.geo.json -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/che-3.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/che-3.geo.json -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/google_maps_api_compact_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/google_maps_api_compact_response.json -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/google_maps_api_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/google_maps_api_response.json -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/twitter_api_compact_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/twitter_api_compact_response.json -------------------------------------------------------------------------------- /jsonexamples/small/jsoniter_scala/twitter_api_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/jsoniter_scala/twitter_api_response.json -------------------------------------------------------------------------------- /jsonexamples/small/repeat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/repeat.json -------------------------------------------------------------------------------- /jsonexamples/small/truenull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/truenull.json -------------------------------------------------------------------------------- /jsonexamples/small/twitter_timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/small/twitter_timeline.json -------------------------------------------------------------------------------- /jsonexamples/stringifiedphp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/stringifiedphp.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_double_huge_neg_exp.json: -------------------------------------------------------------------------------- 1 | [123.456e-789] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_huge_exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_number_huge_exp.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_neg_int_huge_exp.json: -------------------------------------------------------------------------------- 1 | [-1e+9999] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_pos_double_huge_exp.json: -------------------------------------------------------------------------------- 1 | [1.5e+9999] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_real_neg_overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_number_real_neg_overflow.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_real_pos_overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_number_real_pos_overflow.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_real_underflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_number_real_underflow.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_too_big_neg_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_number_too_big_neg_int.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_too_big_pos_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_number_too_big_pos_int.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_number_very_big_negative_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_number_very_big_negative_int.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_object_key_lone_2nd_surrogate.json: -------------------------------------------------------------------------------- 1 | {"\uDFAA":0} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_1st_surrogate_but_2nd_missing.json: -------------------------------------------------------------------------------- 1 | ["\uDADA"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_1st_valid_surrogate_2nd_invalid.json: -------------------------------------------------------------------------------- 1 | ["\uD888\u1234"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_UTF-16LE_with_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_UTF-16LE_with_BOM.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_UTF-8_invalid_sequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_UTF-8_invalid_sequence.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_UTF8_surrogate_U+D800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_UTF8_surrogate_U+D800.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_incomplete_surrogate_and_escape_valid.json: -------------------------------------------------------------------------------- 1 | ["\uD800\n"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_incomplete_surrogate_pair.json: -------------------------------------------------------------------------------- 1 | ["\uDd1ea"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_incomplete_surrogates_escape_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_incomplete_surrogates_escape_valid.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_invalid_lonely_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\ud800"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_invalid_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\ud800abc"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_invalid_utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_invalid_utf-8.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_inverted_surrogates_U+1D11E.json: -------------------------------------------------------------------------------- 1 | ["\uDd1e\uD834"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_iso_latin_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_iso_latin_1.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_lone_second_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\uDFAA"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_lone_utf8_continuation_byte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_lone_utf8_continuation_byte.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_not_in_unicode_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_not_in_unicode_range.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_overlong_sequence_2_bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_overlong_sequence_2_bytes.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_overlong_sequence_6_bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_overlong_sequence_6_bytes.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_overlong_sequence_6_bytes_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_overlong_sequence_6_bytes_null.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_truncated-utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_truncated-utf-8.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_utf16BE_no_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_utf16BE_no_BOM.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_string_utf16LE_no_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_string_utf16LE_no_BOM.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_structure_500_nested_arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/i_structure_500_nested_arrays.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/i_structure_UTF-8_BOM_empty_object.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_1_true_without_comma.json: -------------------------------------------------------------------------------- 1 | [1 true] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_a_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_array_a_invalid_utf8.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_colon_instead_of_comma.json: -------------------------------------------------------------------------------- 1 | ["": 1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_comma_after_close.json: -------------------------------------------------------------------------------- 1 | [""], -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_comma_and_number.json: -------------------------------------------------------------------------------- 1 | [,1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_double_comma.json: -------------------------------------------------------------------------------- 1 | [1,,2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_double_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["x",,] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_extra_close.json: -------------------------------------------------------------------------------- 1 | ["x"]] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["",] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_incomplete.json: -------------------------------------------------------------------------------- 1 | ["x" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_incomplete_invalid_value.json: -------------------------------------------------------------------------------- 1 | [x -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_inner_array_no_comma.json: -------------------------------------------------------------------------------- 1 | [3[4]] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_array_invalid_utf8.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_items_separated_by_semicolon.json: -------------------------------------------------------------------------------- 1 | [1:2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_just_comma.json: -------------------------------------------------------------------------------- 1 | [,] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_just_minus.json: -------------------------------------------------------------------------------- 1 | [-] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_missing_value.json: -------------------------------------------------------------------------------- 1 | [ , ""] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_newlines_unclosed.json: -------------------------------------------------------------------------------- 1 | ["a", 2 | 4 3 | ,1, -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_number_and_comma.json: -------------------------------------------------------------------------------- 1 | [1,] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_number_and_several_commas.json: -------------------------------------------------------------------------------- 1 | [1,,] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_spaces_vertical_tab_formfeed.json: -------------------------------------------------------------------------------- 1 | [" a"\f] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_star_inside.json: -------------------------------------------------------------------------------- 1 | [*] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_unclosed.json: -------------------------------------------------------------------------------- 1 | ["" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_unclosed_trailing_comma.json: -------------------------------------------------------------------------------- 1 | [1, -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_unclosed_with_new_lines.json: -------------------------------------------------------------------------------- 1 | [1, 2 | 1 3 | ,1 -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_array_unclosed_with_object_inside.json: -------------------------------------------------------------------------------- 1 | [{} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_incomplete_false.json: -------------------------------------------------------------------------------- 1 | [fals] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_incomplete_null.json: -------------------------------------------------------------------------------- 1 | [nul] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_incomplete_true.json: -------------------------------------------------------------------------------- 1 | [tru] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_multidigit_number_then_00.json: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_++.json: -------------------------------------------------------------------------------- 1 | [++1234] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_+1.json: -------------------------------------------------------------------------------- 1 | [+1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_+Inf.json: -------------------------------------------------------------------------------- 1 | [+Inf] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_-01.json: -------------------------------------------------------------------------------- 1 | [-01] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_-1.0..json: -------------------------------------------------------------------------------- 1 | [-1.0.] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_-2..json: -------------------------------------------------------------------------------- 1 | [-2.] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_-NaN.json: -------------------------------------------------------------------------------- 1 | [-NaN] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_.-1.json: -------------------------------------------------------------------------------- 1 | [.-1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_.2e-3.json: -------------------------------------------------------------------------------- 1 | [.2e-3] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0.1.2.json: -------------------------------------------------------------------------------- 1 | [0.1.2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0.3e+.json: -------------------------------------------------------------------------------- 1 | [0.3e+] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0.3e.json: -------------------------------------------------------------------------------- 1 | [0.3e] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0.e1.json: -------------------------------------------------------------------------------- 1 | [0.e1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0_capital_E+.json: -------------------------------------------------------------------------------- 1 | [0E+] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0_capital_E.json: -------------------------------------------------------------------------------- 1 | [0E] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0e+.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_0e.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_1.0e+.json: -------------------------------------------------------------------------------- 1 | [1.0e+] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_1.0e-.json: -------------------------------------------------------------------------------- 1 | [1.0e-] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_1.0e.json: -------------------------------------------------------------------------------- 1 | [1.0e] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_1_000.json: -------------------------------------------------------------------------------- 1 | [1 000.0] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_1eE2.json: -------------------------------------------------------------------------------- 1 | [1eE2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_2.e+3.json: -------------------------------------------------------------------------------- 1 | [2.e+3] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_2.e-3.json: -------------------------------------------------------------------------------- 1 | [2.e-3] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_2.e3.json: -------------------------------------------------------------------------------- 1 | [2.e3] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_9.e+.json: -------------------------------------------------------------------------------- 1 | [9.e+] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_Inf.json: -------------------------------------------------------------------------------- 1 | [Inf] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_NaN.json: -------------------------------------------------------------------------------- 1 | [NaN] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_U+FF11_fullwidth_digit_one.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_expression.json: -------------------------------------------------------------------------------- 1 | [1+2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_hex_1_digit.json: -------------------------------------------------------------------------------- 1 | [0x1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_hex_2_digits.json: -------------------------------------------------------------------------------- 1 | [0x42] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_infinity.json: -------------------------------------------------------------------------------- 1 | [Infinity] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_invalid+-.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_invalid-negative-real.json: -------------------------------------------------------------------------------- 1 | [-123.123foo] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_invalid-utf-8-in-bigger-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_number_invalid-utf-8-in-bigger-int.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_invalid-utf-8-in-exponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_number_invalid-utf-8-in-exponent.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_invalid-utf-8-in-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_number_invalid-utf-8-in-int.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_minus_infinity.json: -------------------------------------------------------------------------------- 1 | [-Infinity] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_minus_sign_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [-foo] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_minus_space_1.json: -------------------------------------------------------------------------------- 1 | [- 1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_neg_int_starting_with_zero.json: -------------------------------------------------------------------------------- 1 | [-012] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_neg_real_without_int_part.json: -------------------------------------------------------------------------------- 1 | [-.123] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_neg_with_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | [-1x] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_real_garbage_after_e.json: -------------------------------------------------------------------------------- 1 | [1ea] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_real_with_invalid_utf8_after_e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_number_real_with_invalid_utf8_after_e.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_real_without_fractional_part.json: -------------------------------------------------------------------------------- 1 | [1.] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_starting_with_dot.json: -------------------------------------------------------------------------------- 1 | [.123] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_with_alpha.json: -------------------------------------------------------------------------------- 1 | [1.2a-3] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_with_alpha_char.json: -------------------------------------------------------------------------------- 1 | [1.8011670033376514H-308] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_number_with_leading_zero.json: -------------------------------------------------------------------------------- 1 | [012] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_bad_value.json: -------------------------------------------------------------------------------- 1 | ["x", truth] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_bracket_key.json: -------------------------------------------------------------------------------- 1 | {[: "x"} 2 | -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_comma_instead_of_colon.json: -------------------------------------------------------------------------------- 1 | {"x", null} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_double_colon.json: -------------------------------------------------------------------------------- 1 | {"x"::"b"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_emoji.json: -------------------------------------------------------------------------------- 1 | {🇨🇭} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_key_with_single_quotes.json: -------------------------------------------------------------------------------- 1 | {key: 'value'} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_lone_continuation_byte_in_key_and_trailing_comma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_object_lone_continuation_byte_in_key_and_trailing_comma.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_missing_colon.json: -------------------------------------------------------------------------------- 1 | {"a" b} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_missing_key.json: -------------------------------------------------------------------------------- 1 | {:"b"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_missing_semicolon.json: -------------------------------------------------------------------------------- 1 | {"a" "b"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_missing_value.json: -------------------------------------------------------------------------------- 1 | {"a": -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_no-colon.json: -------------------------------------------------------------------------------- 1 | {"a" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_non_string_key.json: -------------------------------------------------------------------------------- 1 | {1:1} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_non_string_key_but_huge_number_instead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_object_non_string_key_but_huge_number_instead.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_repeated_null_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_object_repeated_null_null.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_several_trailing_commas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_object_several_trailing_commas.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_single_quote.json: -------------------------------------------------------------------------------- 1 | {'a':0} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_trailing_comma.json: -------------------------------------------------------------------------------- 1 | {"id":0,} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_trailing_comment.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**/ -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_trailing_comment_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**// -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_trailing_comment_slash_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}// -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_trailing_comment_slash_open_incomplete.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/ -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_two_commas_in_a_row.json: -------------------------------------------------------------------------------- 1 | {"a":"b",,"c":"d"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_unquoted_key.json: -------------------------------------------------------------------------------- 1 | {a: "b"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_unterminated-value.json: -------------------------------------------------------------------------------- 1 | {"a":"a -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_with_single_string.json: -------------------------------------------------------------------------------- 1 | { "foo" : "bar", "a" } -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}# -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_single_space.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_1_surrogate_then_escape.json: -------------------------------------------------------------------------------- 1 | ["\uD800\"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_1_surrogate_then_escape_u.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_1_surrogate_then_escape_u1.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_1_surrogate_then_escape_u1x.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1x"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_accentuated_char_no_quotes.json: -------------------------------------------------------------------------------- 1 | [é] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_backslash_00.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_escape_x.json: -------------------------------------------------------------------------------- 1 | ["\x00"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_escaped_backslash_bad.json: -------------------------------------------------------------------------------- 1 | ["\\\"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_escaped_ctrl_char_tab.json: -------------------------------------------------------------------------------- 1 | ["\ "] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_escaped_emoji.json: -------------------------------------------------------------------------------- 1 | ["\🌀"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_incomplete_escape.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_incomplete_escaped_character.json: -------------------------------------------------------------------------------- 1 | ["\u00A"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_incomplete_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_incomplete_surrogate_escape_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_string_incomplete_surrogate_escape_invalid.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_invalid-utf-8-in-escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_string_invalid-utf-8-in-escape.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_invalid_backslash_esc.json: -------------------------------------------------------------------------------- 1 | ["\a"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_invalid_unicode_escape.json: -------------------------------------------------------------------------------- 1 | ["\uqqqq"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_invalid_utf8_after_escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_string_invalid_utf8_after_escape.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_leading_uescaped_thinspace.json: -------------------------------------------------------------------------------- 1 | [\u0020"asd"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_no_quotes_with_bad_escape.json: -------------------------------------------------------------------------------- 1 | [\n] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_single_doublequote.json: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_single_quote.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_single_string_no_double_quotes.json: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_start_escape_unclosed.json: -------------------------------------------------------------------------------- 1 | ["\ -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_unescaped_crtl_char.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_unescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new 2 | line"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_unescaped_tab.json: -------------------------------------------------------------------------------- 1 | [" "] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_unicode_CapitalU.json: -------------------------------------------------------------------------------- 1 | "\UA66D" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_string_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | ""x -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_100000_opening_arrays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_structure_100000_opening_arrays.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_U+2060_word_joined.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_UTF8_BOM_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_angle_bracket_..json: -------------------------------------------------------------------------------- 1 | <.> -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_angle_bracket_null.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_array_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [1]x -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_array_with_extra_array_close.json: -------------------------------------------------------------------------------- 1 | [1]] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_array_with_unclosed_string.json: -------------------------------------------------------------------------------- 1 | ["asd] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_ascii-unicode-identifier.json: -------------------------------------------------------------------------------- 1 | aå -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_capitalized_True.json: -------------------------------------------------------------------------------- 1 | [True] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_close_unopened_array.json: -------------------------------------------------------------------------------- 1 | 1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_comma_instead_of_closing_brace.json: -------------------------------------------------------------------------------- 1 | {"x": true, -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_double_array.json: -------------------------------------------------------------------------------- 1 | [][] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_end_array.json: -------------------------------------------------------------------------------- 1 | ] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_incomplete_UTF8_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_structure_incomplete_UTF8_BOM.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_lone-invalid-utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_structure_lone-invalid-utf-8.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_lone-open-bracket.json: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_null-byte-outside-string.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_number_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | 2@ -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_object_followed_by_closing_object.json: -------------------------------------------------------------------------------- 1 | {}} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_object_unclosed_no_value.json: -------------------------------------------------------------------------------- 1 | {"": -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_object_with_comment.json: -------------------------------------------------------------------------------- 1 | {"a":/*comment*/"b"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a": true} "x" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_array_apostrophe.json: -------------------------------------------------------------------------------- 1 | [' -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_array_comma.json: -------------------------------------------------------------------------------- 1 | [, -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_array_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_structure_open_array_object.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_array_open_object.json: -------------------------------------------------------------------------------- 1 | [{ -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_array_open_string.json: -------------------------------------------------------------------------------- 1 | ["a -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_array_string.json: -------------------------------------------------------------------------------- 1 | ["a" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_object.json: -------------------------------------------------------------------------------- 1 | { -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_object_close_array.json: -------------------------------------------------------------------------------- 1 | {] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_object_comma.json: -------------------------------------------------------------------------------- 1 | {, -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_object_open_array.json: -------------------------------------------------------------------------------- 1 | {[ -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_object_open_string.json: -------------------------------------------------------------------------------- 1 | {"a -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_object_string_with_apostrophes.json: -------------------------------------------------------------------------------- 1 | {'a' -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_open_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_structure_open_open.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_single_eacute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_structure_single_eacute.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_single_star.json: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_trailing_#.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}#{} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_uescaped_LF_before_string.json: -------------------------------------------------------------------------------- 1 | [\u000A""] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_unclosed_array.json: -------------------------------------------------------------------------------- 1 | [1 -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_unclosed_array_partial_null.json: -------------------------------------------------------------------------------- 1 | [ false, nul -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_unclosed_array_unfinished_false.json: -------------------------------------------------------------------------------- 1 | [ true, fals -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_unclosed_array_unfinished_true.json: -------------------------------------------------------------------------------- 1 | [ false, tru -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_unclosed_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/n_structure_unclosed_object.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_unicode-identifier.json: -------------------------------------------------------------------------------- 1 | å -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_whitespace_U+2060_word_joiner.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/n_structure_whitespace_formfeed.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_arraysWithSpaces.json: -------------------------------------------------------------------------------- 1 | [[] ] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_empty-string.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_ending_with_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_false.json: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_heterogeneous.json: -------------------------------------------------------------------------------- 1 | [null, 1, "1", {}] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_null.json: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_with_1_and_newline.json: -------------------------------------------------------------------------------- 1 | [1 2 | ] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_with_several_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_array_with_several_null.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_array_with_trailing_space.json: -------------------------------------------------------------------------------- 1 | [2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number.json: -------------------------------------------------------------------------------- 1 | [123e65] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_0e+1.json: -------------------------------------------------------------------------------- 1 | [0e+1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_0e1.json: -------------------------------------------------------------------------------- 1 | [0e1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_after_space.json: -------------------------------------------------------------------------------- 1 | [ 4] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_double_close_to_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_number_double_close_to_zero.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_int_with_exp.json: -------------------------------------------------------------------------------- 1 | [20e1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_minus_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_negative_int.json: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_negative_one.json: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_negative_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_real_capital_e.json: -------------------------------------------------------------------------------- 1 | [1E22] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_real_capital_e_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1E-2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_real_capital_e_pos_exp.json: -------------------------------------------------------------------------------- 1 | [1E+2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_real_exponent.json: -------------------------------------------------------------------------------- 1 | [123e45] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_real_fraction_exponent.json: -------------------------------------------------------------------------------- 1 | [123.456e78] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_real_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1e-2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_real_pos_exponent.json: -------------------------------------------------------------------------------- 1 | [1e+2] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_simple_int.json: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_number_simple_real.json: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf", "dfg":"fgh"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_basic.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf"} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_duplicated_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_object_duplicated_key.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_duplicated_key_and_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_object_duplicated_key_and_value.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_empty_key.json: -------------------------------------------------------------------------------- 1 | {"":0} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_escaped_null_in_key.json: -------------------------------------------------------------------------------- 1 | {"foo\u0000bar": 42} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_extreme_numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_object_extreme_numbers.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_long_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_object_long_strings.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_simple.json: -------------------------------------------------------------------------------- 1 | {"a":[]} -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_string_unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_object_string_unicode.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_object_with_newlines.json: -------------------------------------------------------------------------------- 1 | { 2 | "a": "b" 3 | } -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_1_2_3_bytes_UTF-8_sequences.json: -------------------------------------------------------------------------------- 1 | ["\u0060\u012a\u12AB"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_accepted_surrogate_pair.json: -------------------------------------------------------------------------------- 1 | ["\uD801\udc37"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_accepted_surrogate_pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_string_accepted_surrogate_pairs.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_allowed_escapes.json: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_backslash_and_u_escaped_zero.json: -------------------------------------------------------------------------------- 1 | ["\\u0000"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_backslash_doublequotes.json: -------------------------------------------------------------------------------- 1 | ["\""] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_comments.json: -------------------------------------------------------------------------------- 1 | ["a/*b*/c/*d//e"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_double_escape_a.json: -------------------------------------------------------------------------------- 1 | ["\\a"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_double_escape_n.json: -------------------------------------------------------------------------------- 1 | ["\\n"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_escaped_control_character.json: -------------------------------------------------------------------------------- 1 | ["\u0012"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_escaped_noncharacter.json: -------------------------------------------------------------------------------- 1 | ["\uFFFF"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_in_array.json: -------------------------------------------------------------------------------- 1 | ["asd"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_in_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [ "asd"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_last_surrogates_1_and_2.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFF"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_nbsp_uescaped.json: -------------------------------------------------------------------------------- 1 | ["new\u00A0line"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_nonCharacterInUTF-8_U+10FFFF.json: -------------------------------------------------------------------------------- 1 | ["􏿿"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_nonCharacterInUTF-8_U+FFFF.json: -------------------------------------------------------------------------------- 1 | ["￿"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_null_escape.json: -------------------------------------------------------------------------------- 1 | ["\u0000"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_one-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u002c"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_pi.json: -------------------------------------------------------------------------------- 1 | ["π"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_reservedCharacterInUTF-8_U+1BFFF.json: -------------------------------------------------------------------------------- 1 | ["𛿿"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_simple_ascii.json: -------------------------------------------------------------------------------- 1 | ["asd "] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_space.json: -------------------------------------------------------------------------------- 1 | " " -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd1e"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_three-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0821"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_two-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0123"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_u+2028_line_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_u+2029_par_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_uEscape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/test_parsing/y_string_uEscape.json -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_uescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new\u000Aline"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unescaped_char_delete.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode.json: -------------------------------------------------------------------------------- 1 | ["\uA66D"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicodeEscapedBackslash.json: -------------------------------------------------------------------------------- 1 | ["\u005C"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_2.json: -------------------------------------------------------------------------------- 1 | ["⍂㈴⍂"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_U+10FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFE"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_U+1FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uD83F\uDFFE"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json: -------------------------------------------------------------------------------- 1 | ["\u200B"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_U+2064_invisible_plus.json: -------------------------------------------------------------------------------- 1 | ["\u2064"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_U+FDD0_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFDD0"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_U+FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFFFE"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_unicode_escaped_double_quote.json: -------------------------------------------------------------------------------- 1 | ["\u0022"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_utf8.json: -------------------------------------------------------------------------------- 1 | ["€𝄞"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_string_with_del_character.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_lonely_false.json: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_lonely_int.json: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_lonely_negative_real.json: -------------------------------------------------------------------------------- 1 | -0.1 -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_lonely_null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_lonely_string.json: -------------------------------------------------------------------------------- 1 | "asd" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_lonely_true.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_string_empty.json: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_trailing_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_true_in_array.json: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /jsonexamples/test_parsing/y_structure_whitespace_array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /jsonexamples/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/twitter.json -------------------------------------------------------------------------------- /jsonexamples/twitterescaped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/twitterescaped.json -------------------------------------------------------------------------------- /jsonexamples/update-center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/jsonexamples/update-center.json -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/package.xml -------------------------------------------------------------------------------- /php_simdjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/php_simdjson.cpp -------------------------------------------------------------------------------- /php_simdjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/php_simdjson.h -------------------------------------------------------------------------------- /phpbench.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/phpbench.json.dist -------------------------------------------------------------------------------- /scripts/compare_decode_results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/scripts/compare_decode_results.php -------------------------------------------------------------------------------- /simdjson.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/simdjson.stub.php -------------------------------------------------------------------------------- /simdjson_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/simdjson_arginfo.h -------------------------------------------------------------------------------- /src/simdjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/src/simdjson.cpp -------------------------------------------------------------------------------- /src/simdjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/src/simdjson.h -------------------------------------------------------------------------------- /src/simdjson_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/src/simdjson_bindings.cpp -------------------------------------------------------------------------------- /src/simdjson_bindings_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/src/simdjson_bindings_defs.h -------------------------------------------------------------------------------- /tests/32bit_support.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/32bit_support.phpt -------------------------------------------------------------------------------- /tests/64bit_support.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/64bit_support.phpt -------------------------------------------------------------------------------- /tests/_files/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/_files/result.json -------------------------------------------------------------------------------- /tests/compat/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/001.phpt -------------------------------------------------------------------------------- /tests/compat/bug41067.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug41067.phpt -------------------------------------------------------------------------------- /tests/compat/bug41504.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug41504.phpt -------------------------------------------------------------------------------- /tests/compat/bug45791.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug45791.phpt -------------------------------------------------------------------------------- /tests/compat/bug47644.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug47644.phpt -------------------------------------------------------------------------------- /tests/compat/bug50224.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug50224.phpt -------------------------------------------------------------------------------- /tests/compat/bug62010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug62010.phpt -------------------------------------------------------------------------------- /tests/compat/bug64874_part1.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug64874_part1.phpt -------------------------------------------------------------------------------- /tests/compat/bug64874_part2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug64874_part2.phpt -------------------------------------------------------------------------------- /tests/compat/bug68546.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug68546.phpt -------------------------------------------------------------------------------- /tests/compat/bug68817.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug68817.phpt -------------------------------------------------------------------------------- /tests/compat/bug68938.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug68938.phpt -------------------------------------------------------------------------------- /tests/compat/bug69187.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/bug69187.phpt -------------------------------------------------------------------------------- /tests/compat/fail001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/fail001.phpt -------------------------------------------------------------------------------- /tests/compat/json_decode_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/json_decode_basic.phpt -------------------------------------------------------------------------------- /tests/compat/json_decode_invalid_utf8.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/json_decode_invalid_utf8.phpt -------------------------------------------------------------------------------- /tests/compat/pass001.1.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/pass001.1.phpt -------------------------------------------------------------------------------- /tests/compat/pass001.1_64bit.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/pass001.1_64bit.phpt -------------------------------------------------------------------------------- /tests/compat/pass001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/pass001.phpt -------------------------------------------------------------------------------- /tests/compat/pass002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/pass002.phpt -------------------------------------------------------------------------------- /tests/compat/pass003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/compat/pass003.phpt -------------------------------------------------------------------------------- /tests/decode_args.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_args.phpt -------------------------------------------------------------------------------- /tests/decode_exception.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_exception.phpt -------------------------------------------------------------------------------- /tests/decode_integer_overflow.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_integer_overflow.phpt -------------------------------------------------------------------------------- /tests/decode_invalid_property.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_invalid_property.phpt -------------------------------------------------------------------------------- /tests/decode_max_depth.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_max_depth.phpt -------------------------------------------------------------------------------- /tests/decode_max_depth_memory_reduction.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_max_depth_memory_reduction.phpt -------------------------------------------------------------------------------- /tests/decode_repeat.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_repeat.phpt -------------------------------------------------------------------------------- /tests/decode_result.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_result.phpt -------------------------------------------------------------------------------- /tests/decode_strict_types.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_strict_types.phpt -------------------------------------------------------------------------------- /tests/decode_types.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/decode_types.phpt -------------------------------------------------------------------------------- /tests/depth.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/depth.phpt -------------------------------------------------------------------------------- /tests/dump.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/dump.inc -------------------------------------------------------------------------------- /tests/is_valid.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/is_valid.phpt -------------------------------------------------------------------------------- /tests/is_valid_args.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/is_valid_args.phpt -------------------------------------------------------------------------------- /tests/is_valid_edge_cases.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/is_valid_edge_cases.phpt -------------------------------------------------------------------------------- /tests/key_count.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_count.phpt -------------------------------------------------------------------------------- /tests/key_count_args.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_count_args.phpt -------------------------------------------------------------------------------- /tests/key_count_exception.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_count_exception.phpt -------------------------------------------------------------------------------- /tests/key_count_large.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_count_large.phpt -------------------------------------------------------------------------------- /tests/key_exists.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_exists.phpt -------------------------------------------------------------------------------- /tests/key_exists_args.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_exists_args.phpt -------------------------------------------------------------------------------- /tests/key_value_args.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_value_args.phpt -------------------------------------------------------------------------------- /tests/key_value_deep_string.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_value_deep_string.phpt -------------------------------------------------------------------------------- /tests/key_value_exception.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_value_exception.phpt -------------------------------------------------------------------------------- /tests/key_value_int.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_value_int.phpt -------------------------------------------------------------------------------- /tests/key_value_result.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_value_result.phpt -------------------------------------------------------------------------------- /tests/key_value_slash.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/key_value_slash.phpt -------------------------------------------------------------------------------- /tests/uint64_overflow.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyxman/simdjson_php/HEAD/tests/uint64_overflow.phpt --------------------------------------------------------------------------------