-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.29 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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
{
"name": "hypervel/validation",
"type": "library",
"description": "The validation package for Hypervel.",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"validation",
"swoole",
"hypervel"
],
"authors": [
{
"name": "Albert Chen",
"email": "albert@hypervel.org"
}
],
"support": {
"issues": "https://github.com/hypervel/components/issues",
"source": "https://github.com/hypervel/components"
},
"autoload": {
"psr-4": {
"Hypervel\\Validation\\": "src/"
}
},
"require": {
"php": "^8.2",
"ext-filter": "*",
"ext-mbstring": "*",
"brick/math": "^0.11|^0.12",
"egulias/email-validator": "^3.2.5|^4.0",
"hypervel/support": "^0.3",
"hypervel/translation": "^0.3"
},
"config": {
"sort-packages": true
},
"extra": {
"hyperf": {
"config": "Hypervel\\Validation\\ConfigProvider"
},
"branch-alias": {
"dev-main": "0.3-dev"
}
},
"suggest": {
"hyperf/database": "Required to use the database presence verifier (^3.1.0).",
"ramsey/uuid": "Required to use Validator::validateUuid() (^4.7)."
}
}