thtmorais/yii2-validators
最新稳定版本:0.0.1
Composer 安装命令:
composer require thtmorais/yii2-validators
包简介
Validation suite for Yii PHP Framework 2
README 文档
README
Installation
The preferred way to install this extension is through composer.
Either run
composer require thtmorais/yii2-validators "*"
or add
"thtmorais/yii2-validators": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by:
XandValidator
<?php namespace app\models; use thtmorais\validators\XandValidator; /** * Class Model */ class Model extends \yii\base\Model { /** * @var string */ public $google_client_id; /** * @var string */ public $google_client_secret; /** * @var string */ public $gitlab_client_id; /** * @var string */ public $gitlab_client_secret; /** * @var string */ public $gitlab_domain;; /** * {@inheritDoc} */ public function rules() { return [ [['google_client_id', 'google_client_secret'], XandValidator::class, 'fields' => ['google_client_id', 'google_client_secret']], [['gitlab_client_id', 'gitlab_client_secret', 'gitlab_domain'], XandValidator::class, 'fields' => ['gitlab_client_id', 'gitlab_client_secret', 'gitlab_domain']], ]; } }
统计信息
- 总下载量: 2.96k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-04-13