-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "vection-framework/validator",
"description": "The Vection Validator provides validation of data and schemas. A number of different validators are already included and can be applied in a chained manner.",
"type": "library",
"keywords": [
"assert",
"assertion",
"component",
"framework",
"library",
"php",
"schema",
"scheme",
"test",
"testing",
"validator",
"validation",
"vection"
],
"homepage": "https://vection.appsdock.org",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "David M. Lung",
"email": "david.lung@appsdock.de"
},
{
"name": "David Brucksch",
"email": "david.brucksch@appsdock.de"
}
],
"support": {
"chat": "https://discord.gg/ZhPaXkccpg",
"docs": "/~https://github.com/Vection-Framework/Validator/blob/master/README.md",
"email": "vection@appsdock.de",
"issues": "/~https://github.com/Vection-Framework/Validator/issues",
"source": "/~https://github.com/Vection-Framework/Validator/"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/vection"
}
],
"require": {
"ext-ctype": "*",
"php": "^8.1",
"vection-framework/contracts": "v0.*"
},
"autoload": {
"psr-4": {
"Vection\\Component\\Validator\\": "./"
}
},
"minimum-stability": "stable"
}