chili-labs/json-pointer

This package is abandoned and no longer maintained. No replacement package was suggested.

Simple library for accessing PHP data structures with JSON Pointers (RFC 6901)

v1.0.0 2015-03-17 22:29 UTC

This package is not auto-updated.

Last update: 2019-08-20 21:52:04 UTC


README

Simple library for accessing PHP data structures with JSON Pointers (RFC 6901)

Latest Stable Version Total Downloads License Build Status Coverage Status SensioLabsInsight

Description

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.

Installation

To install this library, run the command below and you will get the latest version:

composer require chili-labs/json-pointer

Usage

The documentation is work in progress.

Tests

To run the test suite, you need composer.

composer install
phpunit

License

JSONPointer is licensed under the MIT license.