Skip to content

Commit ff529c4

Browse files
committed
License added to composer.json, fixes in README.md
1 parent a911a8c commit ff529c4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PHP JSON Pointer is licensed under MIT license.
99
#Documentation
1010
To get ready to access data with JSON Pointer links you need just 3 simple steps:
1111

12-
1. Create an object of `\ESurov\JSONPointer\Pointer` class by calling it's static `factory()` method.
12+
1. Create an object of `\Remorhaz\JSONPointer\Pointer` class by calling it's static `factory()` method.
1313
2. Link data to the pointer object by calling it's `setData()` method.
1414
3. Set up JSON Pointer link text by calling it's `setText()` method.
1515

@@ -19,7 +19,7 @@ After doing so, you can call `test()`, `read()` and `write()` methods to access
1919
```php
2020
<?php
2121

22-
use \ESurov\JSONPointer\Pointer;
22+
use \Remorhaz\JSONPointer\Pointer;
2323

2424
// Setting up data.
2525
$data = (object) [

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "remorhaz/php-json-pointer",
33
"description": "JSON Pointer (RFC-6901) PHP implementation",
4+
"keywords": ["json", "json pointer", "RFC6901"],
5+
"homepage": "https://github.com/remorhaz/php-json-pointer",
6+
"license": "MIT",
47
"authors": [
58
{
69
"name": "Edward Surov",

0 commit comments

Comments
 (0)