52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "respect/validation",
|
|
"description": "The most awesome validation engine ever created for PHP",
|
|
"keywords": ["respect", "validation", "validator"],
|
|
"type": "library",
|
|
"homepage": "http://respect.github.io/Validation/",
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Respect/Validation Contributors",
|
|
"homepage": "https://github.com/Respect/Validation/graphs/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.4",
|
|
"symfony/polyfill-mbstring": "^1.2"
|
|
},
|
|
"require-dev": {
|
|
"egulias/email-validator": "~1.2 || ~2.1",
|
|
"mikey179/vfsStream": "^1.5",
|
|
"phpunit/phpunit": "~4.0 || ~5.0",
|
|
"symfony/validator": "~2.6.9",
|
|
"zendframework/zend-validator": "~2.3"
|
|
},
|
|
"suggest": {
|
|
"ext-bcmath": "Arbitrary Precision Mathematics",
|
|
"ext-mbstring": "Multibyte String Functions",
|
|
"egulias/email-validator": "Strict (RFC compliant) email validation",
|
|
"symfony/validator": "Use Symfony validator through Respect\\Validation",
|
|
"zendframework/zend-validator": "Use Zend Framework validator through Respect\\Validation",
|
|
"friendsofphp/php-cs-fixer": "Fix PSR2 and other coding style issues"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Respect\\Validation\\": "library/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Respect\\Validation\\": "tests/library/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.1-dev"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "./vendor/bin/phpunit"
|
|
}
|
|
}
|