romanzipp/dto
Composer 安装命令:
composer require romanzipp/dto
包简介
A strongly typed Data Transfer Object without magic for PHP 7.4+
README 文档
README
A strongly typed Data Transfer Object without magic for PHP 8.0+ . Features support for PHP 8 union types and attributes.
Contents
Installation
composer require romanzipp/dto
Usage
use romanzipp\DTO\AbstractData; use romanzipp\DTO\Attributes\Required; class DummyData extends AbstractData { #[Required] public string $name; public ?string $nickname; public string|int $height; public DateTime $birthday; public bool $subscribeNewsletter = false; } $data = new DummyData([ 'name' => 'Roman', 'height' => 180, ]);
Require properties
When declaring required properties, the DTO will validate all parameters against the declared properties. Take a look at the validation table for more details.
use romanzipp\DTO\AbstractData; use romanzipp\DTO\Attributes\Required; class DummyData extends AbstractData { #[Required] public string $name; } $data = new DummyData([]);
romanzipp\DTO\Exceptions\InvalidDataException: The required property `name` is missing
Array methods
Simple array representation
To get an array representation of the DTO, simply call the toArray instance method.
When transferring the DTO properties to an array format, the package will respect and call any toArray methods of nested DTO instances or otherwise fall back to any declared jsonSerialize method when implementing the JsonSerializable interface.
use romanzipp\DTO\AbstractData; class DummyData extends AbstractData { public string $firstName; public DummyData $childData; /** @var self[] */ public array $children = []; } $data = new DummyData([ 'firstName' => 'Roman', 'childData' => new DummyData([ 'firstName' => 'Tim', ]), 'children' => [ new DummyData([ 'firstName' => 'Tom' ]), ], ]); $data->toArray(); // [ // 'firstName' => 'Roman', // 'childData' => ['firstName' => 'Tim'] // 'children' => [ // ['firstName' => 'Tom'] // ] // ];
Convert keys
The toArrayConverted method allows the simple conversion of property keys to a given case.
use romanzipp\DTO\AbstractData; use romanzipp\DTO\Cases; class DummyData extends AbstractData { public string $firstName; } $data = new DummyData([ 'firstName' => 'Roman', ]); $data->toArrayConverted(Cases\CamelCase::class); // ['firstName' => 'Roman']; $data->toArrayConverted(Cases\KebabCase::class); // ['first-name' => 'Roman']; $data->toArrayConverted(Cases\PascalCase::class); // ['FirstName' => 'Roman']; $data->toArrayConverted(Cases\SnakeCase::class); // ['first_name' => 'Roman'];
Flexible DTOs
When attaching the Flexible attribute you can provide more parameters than declared in the DTO instance.
All properties will also be included in the toArray methods. This would otherwise throw an InvalidDataException.
use romanzipp\DTO\AbstractData; use romanzipp\DTO\Attributes\Flexible; #[Flexible] class DummyData extends AbstractData { public string $name; } $data = new DummyData([ 'name' => 'Roman', 'website' => 'ich.wtf', ]); $data->toArray(); // ['name' => 'Roman', 'website' => 'ich.wtf];
Validation
| Definition | Required | Value | Valid | isset() |
|---|---|---|---|---|
public $foo |
no | '' |
✅ | ✅ |
public $foo |
no | NULL |
✅ | ✅ |
public $foo |
no | none | ✅ | ✅ |
public $foo |
yes | '' |
✅ | ✅ |
public $foo |
yes | NULL |
✅ | ✅ |
public $foo |
yes | none | 🚫 | - |
public string $foo |
no | '' |
✅ | ✅ |
public string $foo |
no | NULL |
🚫 | - |
public string $foo |
no | none | ✅ | 🚫 |
public string $foo |
yes | '' |
✅ | ✅ |
public string $foo |
yes | NULL |
🚫 | - |
public string $foo |
yes | none | 🚫 | - |
public ?string $foo |
no | '' |
✅ | ✅ |
public ?string $foo |
no | NULL |
✅ | ✅ |
public ?string $foo |
no | none | ✅ | 🚫 |
public ?string $foo |
yes | '' |
✅ | ✅ |
public ?string $foo |
yes | NULL |
✅ | ✅ |
public ?string $foo |
yes | none | 🚫 | - |
public ?string $foo = null |
no | '' |
✅ | ✅ |
public ?string $foo = null |
no | NULL |
✅ | ✅ |
public ?string $foo = null |
no | none | ✅ | ✅ |
public ?string $foo = null |
yes | '' |
⚠️* | - |
public ?string $foo = null |
yes | NULL |
⚠️* | - |
public ?string $foo = null |
yes | none | ⚠️* | - |
* Attributes with default values cannot be required.
Testing
./vendor/bin/phpunit
Credits
This package has been inspired by Spaties Data-Transfer-Object released under the MIT License.
romanzipp/dto 适用场景与选型建议
romanzipp/dto 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16.48k 次下载、GitHub Stars 达 12, 最近一次更新时间为 2020 年 10 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 romanzipp/dto 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 romanzipp/dto 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 16.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-14