ft/attributes
最新稳定版本:2.2.2
Composer 安装命令:
composer require ft/attributes
包简介
Catalog of PHP attributes like json, logging and property validation
关键字:
README 文档
README
A catalog of php attributes for flexible and maintainable modeling.
Attributes for logging, json, property validation and more.
Quick example of property validation:
final class MyClass { use PropertyValidator; #[Email] private string $email; #[Min(value: 12)] private int $age; #[Size(min: 1, max: 3)] private array $phone_numbers; }
Quick example of json:
class MyClass { private int $id = 1; #[JsonIgnore] private string $ssn = "xxx-xx-xxxx"; } Json::encode(new MyClass); // { "id" : 1 }
For complete documentation and attribute usages see the documentation wiki
统计信息
- 总下载量: 33
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-12-09