| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "inhere/php-validate",
- "type": "library",
- "description": "generic data validate, filter library of the php",
- "keywords": [
- "php-library",
- "library",
- "validate",
- "form-validate",
- "validation"
- ],
- "homepage": "https://github.com/inhere/php-validate",
- "license": "MIT",
- "authors": [
- {
- "name": "inhere",
- "email": "in.798@qq.com",
- "homepage": "https://github.com/inhere"
- }
- ],
- "require": {
- "php": ">8.1.0",
- "toolkit/stdlib": "~2.0"
- },
- "require-dev": {},
- "autoload": {
- "psr-4": {
- "Inhere\\Validate\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Inhere\\ValidateTest\\": "test/"
- }
- },
- "scripts": {
- "check-cs": "./php-cs-fixer fix --dry-run --diff --diff-format=udiff",
- "cs-fix": "./php-cs-fixer fix",
- "test": "vendor/bin/phpunit"
- }
- }
|