xenolope / cartographer
A super-simple library to map JSON documents to objects, similar to Java's Jackson
Requires
- php: >=5.4
- minime/annotations: ~2.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2024-11-07 15:10:57 UTC
README
Cartographer is a super-simple library for deserializing JSON into POPOs, similar to FasterXML's jackson-databind
package for Java.
Installation
The library can be installed with Composer, by including the following in your composer.json
:
{ "require": { "xenolope/cartographer": "~0.5" } }
Usage
POPOs
Your POPOs must have a property and corresponding setter, with either the property having a @var ClassName
docblock, or the setter having a type hint.
Setters are called directly, and properties are never touched, even if they're declared public
(though this might be added in a later version).
Simple values are converted to the types given in their @var
docblocks (using settype()
), objects are created based on the class specified in the @var
docblocks, and arrays of objects are also created, and can be specified with the @var ClassName[]
notation.
class Contact { /** * @var string */ private $name; /** * @var Address */ private $address; /** * Note, this property doesn't have a @var docblock, but the corresponding setter * below *does* have a type hint */ private $secondaryAddress; /** * @var Note[] */ private $notes; /** * @param string $name */ public function setName($name) { $this->name = $name; } /** * @param Address $address */ public function setAddress($address) { $this->address = $address; } /** * @param Address $secondaryAddress */ public function setAddress(Address $secondaryAddress) { $this->secondaryAddress = $secondaryAddress; } /** * @param Note[] $notes */ public function setNotes($notes) { $this->notes = $notes; } }
Mapping
// Create a new instance of the Mapper $mapper = new \Xenolope\Cartographer\Mapper(); // Map a JSON string to a POPO // PHP 5.4 $object = $mapper->mapString( '{"name":"Liz Lemon","address":{"street":"168 Riverside Dr.","city":"New York"}}', 'Vendor\Package\Entity\Contact' ); // PHP >=5.5 $object = $mapper->mapString( '{"name":"Liz Lemon","address":{"street":"168 Riverside Dr.","city":"New York"}}', Contact::class ); // Map an already decoded (to array) JSON document to a POPO // This might happen automatically in your Request class, for example $jsonDocument = json_decode( '{"name":"Liz Lemon","address":{"street":"168 Riverside Dr.","city":"New York"}}', true ); // PHP 5.4 $object = $mapper->map($jsonDocument, 'Vendor\Package\Entity\Contact'); // PHP >= 5.5 $object = $mapper->map( '{"name":"Liz Lemon","address":{"street":"168 Riverside Dr.","city":"New York"}}', Contact::class );
Roadmap
- Add custom property mapping, for when JSON properties don't match with POPO properties
- Maybe add in support for serializing a POPO to JSON
Thanks
This library was inspired by:
fasterxml/jackson-databind
for Javanetresearch/jsonmapper
for PHP
License
Cartographer is released under the MIT License; please see LICENSE for more information.