-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.1 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
{
"name": "clagiordano/weblibs-validator",
"description": "Library for generic data validation service with configurable rules and messages",
"type": "library",
"homepage": "https://github.com/clagiordano/weblibs-validator.git",
"license": "LGPL-3.0",
"keywords": ["clagiordano", "weblibs", "data", "validator", "form", "validation", "library", "rules", "messages", "fields", "required", "lenght", "patterns"],
"authors": [
{
"name": "Claudio Giordano",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"clagiordano\\weblibs\\validator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"clagiordano\\weblibs\\validator\\tests\\": "tests/"
}
},
"require": {
"php": ">=5.4",
"clagiordano/weblibs-dbabstraction": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"zf2timo/phpunit-pretty-result-printer": "1.0.0"
}
}