respect-validation/composer.json

33 lines
884 B
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-dev": {
"zendframework/zend-validator": "2.*",
"symfony/validator": ">=2.1.0",
"phpunit/phpunit": "3.7.*"
},
"suggest": {
"ext-bcmath": "*",
"ext-mbstring": "*"
},
2012-01-16 19:07:55 +01:00
"autoload": {
"psr-0": {
2012-04-10 06:16:24 +02:00
"Respect\\Validation": "library\/"
2012-01-16 19:07:55 +01:00
}
2012-04-10 06:16:24 +02:00
}
}