respect-validation/composer.json

55 lines
1.7 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/",
2012-04-08 04:05:22 +02:00
"license": "BSD Style",
"authors": [
{
"name": "Respect/Validation Contributors",
"homepage": "https://github.com/Respect/Validation/graphs/contributors"
2012-01-16 19:07:55 +01:00
}
],
"require": {
2017-11-19 18:07:22 +01:00
"php": ">=7.1",
"symfony/polyfill-mbstring": "^1.2"
},
"require-dev": {
"egulias/email-validator": "^2.0",
"friendsofphp/php-cs-fixer": "^2.8",
"malukenho/docheader": "^0.1.4",
"mikey179/vfsStream": "^1.6",
2017-11-04 11:21:40 +01:00
"phpunit/phpunit": "^6.4",
2016-11-05 13:32:16 +01:00
"symfony/validator": "^3.0",
"zendframework/zend-validator": "^2.0"
},
"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",
"fabpot/php-cs-fixer": "Fix PSR2 and other coding style issues"
},
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": {
2015-10-18 18:50:59 +02:00
"Respect\\Validation\\": "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": {
"test": "./vendor/bin/phpunit"
2012-04-10 06:16:24 +02:00
}
}