respect-validation/composer.json

75 lines
2.4 KiB
JSON
Raw Normal View History

2012-01-16 19:07:55 +01:00
{
"name": "respect/validation",
2012-04-08 04:05:22 +02:00
"description": "The most awesome validation engine ever created for PHP",
"keywords": ["respect", "validation", "validator"],
2012-01-16 19:07:55 +01:00
"type": "library",
2016-01-13 22:43:06 +01:00
"homepage": "http://respect.github.io/Validation/",
2018-03-03 19:06:38 +01:00
"license": "MIT",
2012-04-08 04:05:22 +02:00
"authors": [
{
"name": "Respect/Validation Contributors",
"homepage": "https://github.com/Respect/Validation/graphs/contributors"
2012-01-16 19:07:55 +01:00
}
],
"config": {
"sort-packages": true
},
"require": {
2017-11-19 18:07:22 +01:00
"php": ">=7.1",
"respect/stringifier": "^0.2.0",
"symfony/polyfill-mbstring": "^1.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"egulias/email-validator": "^2.0",
"malukenho/docheader": "^0.1.4",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-deprecation-rules": "^0.11.0",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpunit/phpunit": "^7.3",
"respect/coding-standard": "^1.0",
"squizlabs/php_codesniffer": "^3.4",
"symfony/validator": "^3.0||^4.0",
"zendframework/zend-validator": "^2.1"
},
"suggest": {
2014-04-21 20:57:25 +02:00
"ext-bcmath": "Arbitrary Precision Mathematics",
2017-04-11 11:27:21 +02:00
"ext-fileinfo": "File Information",
"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"
},
2012-01-16 19:07:55 +01:00
"autoload": {
2014-07-12 21:20:43 +02:00
"psr-4": {
"Respect\\Validation\\": "library/"
2012-01-16 19:07:55 +01:00
}
2014-07-12 21:19:17 +02:00
},
2015-02-03 16:49:28 +01:00
"autoload-dev": {
"psr-4": {
"Respect\\Validation\\": "tests/unit/",
"Respect\\Validation\\Test\\": "tests/library/"
2015-02-03 16:49:28 +01:00
}
},
2014-07-12 21:19:17 +02:00
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
2014-07-12 21:19:17 +02:00
}
},
"scripts": {
"docheader": "vendor/bin/docheader check library/ tests/",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyze",
"phpunit": "vendor/bin/phpunit",
"phpunit-integration": "vendor/bin/phpunit --testsuite=integration",
"phpunit-unit": "vendor/bin/phpunit --testsuite=unit",
"qa": [
"@docheader",
"@phpcs",
"@phpstan",
"@phpunit"
]
2012-04-10 06:16:24 +02:00
}
}