codemonster-ru/validation
最新稳定版本:v1.0.0
Composer 安装命令:
composer require codemonster-ru/validation
包简介
Small validation primitives for Annabel applications.
README 文档
README
Small validation primitives for Annabel applications.
Usage
use Codemonster\Validation\Validator; $validator = new Validator(); $result = $validator->validate([ 'email' => 'hello@example.com', ], [ 'email' => 'required|email', ]); if ($result->fails()) { $errors = $result->errors(); }
The validator supports scalar rules, nested fields through dot notation,
validated data, validateOrFail(), and custom rules through extend().
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-06-10