2024-01-29 424次浏览

First stable release of yiisoft/hydrator was tagged.

The package provides a way to create and hydrate objects from a set of raw data. Features are:

  • supports properties of any visibility;
  • uses constructor arguments to create objects;
  • resolves dependencies when creating objects using PSR-11 compatible DI container provided;
  • supports nested objects;
  • supports mapping;
  • allows fine-tuning hydration via PHP attributes.

To hydrate existing object:

use Yiisoft\Hydrator\Hydrator;

$hydrator = new Hydrator();
$hydrator->hydrate($object, $data);

To create a new object and fill it with the data:

use Yiisoft\Hydrator\Hydrator;

$hydrator = new Hydrator();
$object = $hydrator->create(MyClass::class, $data);

As usual, the package has 100% test coverage and 100% mutation score.