mirror of
https://github.com/vlucas/valitron.git
synced 2025-12-30 23:01:52 +00:00
38 lines
952 B
JSON
38 lines
952 B
JSON
{
|
|
"name": "vlucas/valitron",
|
|
"type": "library",
|
|
"description": "Simple, elegant, stand-alone validation library with NO dependencies",
|
|
"keywords": ["validation", "validator", "valid"],
|
|
"homepage": "http://github.com/vlucas/valitron",
|
|
"license" : "BSD-3-Clause",
|
|
"authors" : [
|
|
{
|
|
"name": "Vance Lucas",
|
|
"email": "vance@vancelucas.com",
|
|
"homepage": "http://www.vancelucas.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^4.8.35 || ^5.5 || ^6.5"
|
|
},
|
|
"suggest": {
|
|
"ext-mbstring": "It can support the multiple bytes string length."
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Valitron\\": "src/Valitron"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Valitron\\": "tests/Valitron"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "./vendor/bin/phpunit"
|
|
}
|
|
}
|