This library implements the RFC 6901 for PHP. It is possible to
parse a path (e.g./some/path
) or create the JsonPointer
object from array (e.g. ['some','path']
).
There are several other good libraries (
1,
2,
3
) for parsing json-pointers, but none of
them was able to access other php structures besides default arrays. With different accessors, which are part of this
library, you can apply json-pointers to either arrays or also plain objects. Custom accessors can simply be created
on your own.
To install this library, run the command below and you will get the latest version:
composer require chili-labs/json-pointer
The documentation is work in progress.
To run the test suite, you need composer.
composer install
phpunit
JSONPointer is licensed under the MIT license.