-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 898 Bytes
/
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
{
"name": "yosmanyga/validation",
"description": "Provides tools to validate variables",
"type": "library",
"keywords": ["validate", "validator", "rule", "error", "constraint"],
"license": "MIT",
"authors": [
{
"name": "Yosmany Garcia",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/expression-language": "2.4.*@dev",
"symfony/property-access": "~2.3",
"yosmanyga/resource": "dev-master",
"symfony/yaml": "~2.3",
"symfony/finder": "~2.3"
},
"suggest": {
"symfony/expression-language": "For expression validators",
"yosmanyga/resource": "For loading validators from resource"
},
"autoload": {
"psr-0": { "Yosmanyga\\Validation": "src/" }
}
}