You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ A PHP implementation for finding unordered diff between two `JSON` documents.
14
14
* To simplify changes review between two `JSON` files you can use a standard `diff` tool on rearranged pretty-printed `JSON`.
15
15
* To detect breaking changes by analyzing removals and changes from original `JSON`.
16
16
* To keep original order of object sets (for example `swagger.json`[parameters](https://swagger.io/docs/specification/describing-parameters/) list).
17
-
* To [make](#getpatch) and [apply](#jsonpatch) JSON Patches, specified in [RFC 6902](http://tools.ietf.org/html/rfc6902) from the IETF.
18
-
* To [make](#getmergepatch) and [apply](#jsonmergepatch) JSON Merge Patches, specified in [RFC 7386](https://tools.ietf.org/html/rfc7386) from the IETF.
19
-
* To retrieve and modify data by [JSON Pointer](http://tools.ietf.org/html/rfc6901).
17
+
* To [make](#getpatch) and [apply](#jsonpatch) JSON Patches, specified in [RFC 6902](https://datatracker.ietf.org/doc/html/rfc6902) from the IETF.
18
+
* To [make](#getmergepatch) and [apply](#jsonmergepatch) JSON Merge Patches, specified in [RFC 7386](https://datatracker.ietf.org/doc/html/rfc7386) from the IETF.
19
+
* To retrieve and modify data by [JSON Pointer](https://datatracker.ietf.org/doc/html/rfc6901).
20
20
* To recursively replace by JSON value.
21
21
22
22
## Installation
@@ -76,7 +76,7 @@ Returns total number of differences
76
76
Returns [`JsonPatch`](#jsonpatch) of difference
77
77
78
78
#### `getMergePatch`
79
-
Returns [JSON Merge Patch](https://tools.ietf.org/html/rfc7386) value of difference
79
+
Returns [JSON Merge Patch](https://datatracker.ietf.org/doc/html/rfc7386) value of difference
80
80
81
81
#### `getRearranged`
82
82
Returns new value, rearranged with original order.
0 commit comments