respect-validation/composer.json

41 lines
1.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
}
],
"repositories": [{
"type": "composer",
"url": "https://packages.zendframework.com/"
}],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
2014-04-21 20:57:25 +02:00
"zendframework/zend-validator": "~2.0",
"symfony/validator": "~2.1",
"phpunit/phpunit": "~4.0"
},
"suggest": {
2014-04-21 20:57:25 +02:00
"ext-bcmath": "Arbitrary Precision Mathematics",
"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.7-dev"
}
2012-04-10 06:16:24 +02:00
}
}