File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
This library implements [ RFC6902] ( https://tools.ietf.org/html/rfc6902 ) -compliant JSON patch tool.
10
10
11
- ##Requirements
11
+ ## Requirements
12
12
* PHP 7.0+
13
13
14
- ##Features
14
+ ## Features
15
15
* Supports PHP 7.0
16
16
* No PHP extensions required
17
17
* Throws SPL exceptions
18
18
19
- #License
19
+ # License
20
20
PHP JSON Patch is licensed under MIT license.
21
21
22
- #Installation
22
+ # Installation
23
23
You will need [ composer] ( https://getcomposer.org ) to perform install.
24
24
```
25
25
composer require remorhaz/php-json-patch
26
26
```
27
27
28
- #Documentation
28
+ # Documentation
29
29
## Data accessors
30
30
Patch tool utilizes JSON data accessor interfaces defined in package
31
31
** [ remorhaz/php-json-data] ( https://github.com/remorhaz/php-json-data ) ** . Read more about them in package documentation.
@@ -42,7 +42,7 @@ To apply JSON Patch to the JSON document you need just 4 simple steps:
42
42
3 . Create an object of ` \Remorhaz\JSON\Patch\Patch ` by calling it's constructor with a document accessor as an argument.
43
43
4 . Call its ` apply() ` method with patch accessor as an argument.
44
44
45
- ##Example of usage
45
+ ## Example of usage
46
46
``` php
47
47
<?php
48
48
You can’t perform that action at this time.
0 commit comments