ayeo / pinkman
Simple serialization/deserialization util
Installs: 1 131
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: >=8.0
Requires (Dev)
- phpunit/phpunit: 9.3.0
This package is auto-updated.
Last update: 2024-10-19 19:01:00 UTC
README
Notice: Pinkman is still not at stable stage yet. Use carefully.
Pinkman is super happy to convert any object to an array for you. It also here to reconsistute the object from pure array data. At my company we happily use Pinkman to help us store our aggregates into the database. In case you struggle with CQRS approachat your side you may find him usefull as well. Think of Pinkman as of your personal laboratory assistant. He can't wait to help you rule the world tonignt.
Motivation
Build-in php serialize/unserialize functions works fine until you are not about to change your objects. Then it becomes impossibne to unserialize prevoisly serialized object. I have found few similar tools on github but wasn't happy with any mainly because of heavy config.
Install
composer require ayeo/pinkman:0.1.0
Core features
- working with privete/proteced properties
- handling nested objects
- handling recurrent nesting
- handling nested arrays/collectoins
The simplest possible scenario example
Serialization
Consider the simple flat object to get the point:
class Address { private $street; private $buildingNumber; private $apartamentNumber; private $postalCode; private $town; public function __construct( string $street, string $buildingNumber, string $apartamentNumver, string $postalCode, string $town, string $countryCode ) { //... } }
Converting to an array is straitforward
use Ayeo/Pinkman/Pinkaman; $address = new Address('Thomas Edisson Av', '34a', '11', 'NG10-32Q', 'Nottingham', 'UK'); $pinkman = new Pinkman() $pureData = $pinkman->distill($address);
Data array looks like this:
$pureData = [ 'street' => 'Thomas Edisson Av', 'buildingNumber' => '34a', 'apartamentNumber' => '11', 'postalCode' => 'NG10-34Q', 'town' => 'Nottingham', 'countryCode' => 'UK' ];
It is nothing more than mapping object structure to an array. But is start shinning with more complex structures.
Deserialization
As you have probably noticed the output data is an array consisting of raw data. To reconstitute living object you need to provide adequate config. In our simple scenario looks like this:
$config = [ 'class' => Address::class ]; $object = $pinkman->hydrate($pureData, $config);
More elaborate and complex examples are comming your way