respect-validation/composer.json

50 lines
1.5 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",
"homepage": "http://respect.li",
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": {
2015-10-17 17:46:54 +02:00
"php": ">=5.4"
},
"require-dev": {
"egulias/email-validator": "~1.2",
"malkusch/bav": "~1.0",
2015-06-16 04:55:09 +02:00
"mikey179/vfsStream": "^1.5",
"phpunit/phpunit": "~4.0",
"symfony/validator": "~2.6.9",
"zendframework/zend-validator": "~2.3"
},
"suggest": {
2014-04-21 20:57:25 +02:00
"ext-bcmath": "Arbitrary Precision Mathematics",
"ext-mbstring": "Multibyte String Functions",
"egulias/email-validator": "Strict (RFC compliant) email validation",
"malkusch/bav": "German bank account 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": "1.0-dev"
2014-07-12 21:19:17 +02:00
}
2012-04-10 06:16:24 +02:00
}
}