JSONPath icon indicating copy to clipboard operation
JSONPath copied to clipboard

JSONPath implementation for PHP.

Results 40 JSONPath issues
Sort by recently updated
recently updated
newest added

Test Data: ```json { "another":"entry" } ``` Selector: ``` $['*'] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'[]' +'["entry"]' ``` https://cburgmer.github.io/json-path-comparison/results/bracket_notation_with_quoted_wildcard_literal_on_object_without_key.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json { ":@.\"$,*'\\":42 } ``` Selector: ``` $[':@."$,*\'\\'] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'[42]' +'[]' ``` https://cburgmer.github.io/json-path-comparison/results/bracket_notation_with_quoted_special_characters_combined.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json { "'":"value" } ``` Selector: ``` $['\''] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'["value"]' +'[]' ``` https://cburgmer.github.io/json-path-comparison/results/bracket_notation_with_quoted_escaped_single_quote.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json { "\\":"value" } ``` Selector: ``` $['\\'] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'["value"]' +'[]' ``` https://cburgmer.github.io/json-path-comparison/results/bracket_notation_with_quoted_escaped_backslash.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json { "]":42 } ``` Selector: ``` $[']'] ``` Result: ``` Unable to parse token ' in expression: [']'] ``` Expected result: ```json [ 42 ] ``` https://cburgmer.github.io/json-path-comparison/results/bracket_notation_with_quoted_closing_bracket_literal.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json { "0":"value" } ``` Selector: ``` $[0] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'[]' +'["value"]' ``` https://cburgmer.github.io/json-path-comparison/results/bracket_notation_with_number_on_object.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json [ "first", "second", "third", "forth", "fifth" ] ``` Selector: ``` $[7:3:-1] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'["fifth"]' +'[]' ``` https://cburgmer.github.io/json-path-comparison/results/array_slice_with_negative_step_on_partially_overlapping_array.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json [ "first", "second", "third", "forth", "fifth" ] ``` Selector: ``` $[3:0:-2] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'["forth","second"]' +'[]' ``` https://cburgmer.github.io/json-path-comparison/results/array_slice_with_negative_step.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json [ "first", "second", "third", "forth", "fifth" ] ``` Selector: ``` $[113667776004:2:-1] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'["fifth","forth"]' +'[]' ``` https://cburgmer.github.io/json-path-comparison/results/array_slice_with_large_number_for_start_end_negative_step.html

enhancement
help wanted
good first issue
hacktoberfest

Test Data: ```json [ "first", "second", "third", "forth", "fifth" ] ``` Selector: ``` $[2:-113667776004:-1] ``` Result (Proposal A): ```diff --- Expected +++ Actual @@ @@ -'["third","second","first"]' +'[]' ``` https://cburgmer.github.io/json-path-comparison/results/array_slice_with_large_number_for_end_and_negative_step.html

enhancement
help wanted
good first issue
hacktoberfest