hpkns/objkit
最新稳定版本:v1.0.1
Composer 安装命令:
composer require hpkns/objkit
包简介
Create data objects from unstructured data
README 文档
README
Create data objects from unstructured data
Installation
Simply get it from composer:
composer require hpkns/gadget
Usage
use Hpkns\Objkit\Attributes\ArrayOf; use Hpkns\Objkit\Buildable; use Hpkns\Objkit\ObjectBuilder; class Person { use Buildable; public function __construct( readonly string $name, readonly int $age, #[ArrayOf(Person)] readonly array $parents = [], ) { // } } $jedi = Person::build([ 'name' => 'Luke', 'age' => '19', 'parents' => [ [ 'name' => 'Anakin', 'age' => 41, ] ] ]);
统计信息
- 总下载量: 586
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-09-09