respect-validation/composer.json

39 lines
1 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": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"symfony/validator": "~2.6",
"malkusch/bav": "~1.0",
"zendframework/zend-validator": "~2.3"
},
"suggest": {
2014-04-21 20:57:25 +02:00
"ext-bcmath": "Arbitrary Precision Mathematics",
"malkusch/bav": "German bank account validation",
2014-04-21 20:57:25 +02:00
"ext-mbstring": "Multibyte String Functions"
},
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
},
"extra": {
"branch-alias": {
"dev-master": "0.8-dev"
2014-07-12 21:19:17 +02:00
}
2012-04-10 06:16:24 +02:00
}
}