ajgl/validator-es
Composer 安装命令:
composer require ajgl/validator-es
包简介
Validation library for some Spanish codes.
README 文档
README
This library provides some validators for common Spanish codes.
Current supported codes to validate are:
Installation
composer require ajgl/validator-es
Usage
All validators implements a common interface with only one method:
<?php namespace Ajgl\ValidatorEs; interface ValidatorInterface { public function isValid(mixed $value): bool; }
To use any validator, you must instantiate it, and call the isValid method:
<?php require 'vendor/autoload.php'; $value = 'Y0000000Z'; $validator = new \Ajgl\ValidatorEs\IdCardValidator(); assert($validator->isValid($value));
License
This library is released under an open source license. See the complete license in the LICENSE file.
Reporting an issue or a feature request
Read the CONTRIBUTING.md file.
Author Information
Developed with ♥ by Antonio J. García Lagar.
If you find this library useful, please add a ★ in the GitHub repository page.
统计信息
- 总下载量: 3.7k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-11-13