forked from Respect/Validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Respect/Validation",
"description": "The most awesome validation engine ever created for PHP",
"keywords": ["respect", "validation", "validator"],
"type": "library",
"homepage": "http://respect.li",
"license": "BSD Style",
"authors": [
{
"name": "Respect/Validation Contributors",
"homepage": "https://github.com/Respect/Validation/graphs/contributors"
}
],
"repositories": [{
"type": "composer",
"url": "https://packages.zendframework.com/"
}],
"require-dev": {
"zendframework/zend-validator": "~2.0",
"symfony/validator": "~2.1",
"phpunit/phpunit": "~4.0"
},
"suggest": {
"ext-bcmath": "Arbitrary Precision Mathematics",
"ext-mbstring": "Multibyte String Functions"
},
"autoload": {
"psr-4": {
"Respect\\Validation\\": "library/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
}
}
}