nikolaposa/cascader

Utility for creating objects in PHP from constructor parameters definitions.

1.3.0 2020-12-12 21:20 UTC

This package is auto-updated.

Last update: 2024-04-13 04:21:01 UTC


README

Build Status Code Quality Code Coverage Latest Version PDS Skeleton

Cascader enables the creation of objects from array definitions that represent constructor parameters. Given the class name and creation options array, it will try to create a target object, also creating nested objects that may exist. Convenient as a factory for generic kind of objects.

Installation

The preferred method of installation is via Composer. Run the following command to install the latest version of a package and add it to your project's composer.json:

composer require nikolaposa/cascader

Usage

$cascader = new Cascader();

$object = $cascader->create(RootObject::class, [
    'name' => 'foo',
    'sub_object' => [
        'category' => 'bar',
        'count' => 10,
    ],
    'is_active' => true,
]);

See more examples.

Credits

License

Released under MIT License - see the License File for details.