-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.36 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
{
"name": "simon-ugorji/octavalidate-php",
"description": "This is a feature-rich form validation Library that helps to validate your forms server-side using sophisticated regular expressions, PHP's inbuilt validation, and validation rules.",
"type": "library",
"keywords": [
"forms",
"form-validator",
"html",
"regexp",
"validation-library",
"file-validator",
"length-validator",
"php-form-validation"
],
"homepage": "https://octagon-simon.github.io/octavalidate/php/index.html",
"license": "MIT",
"authors": [
{
"name": "Simon Ugorji",
"email": "ugorji757@gmail.com"
}
],
"require": {
"php": ">=5.6.40"
},
"support": {
"email": "ugorji757@gmail.com",
"issues": "https://github.com/Octagon-simon/octaValidate-PHP/issues"
},
"funding": [
{
"type": "other",
"url": "https://www.paypal.com/donate/?hosted_button_id=ZYK9PQ8UFRTA4"
}
],
"autoload": {
"psr-4": {
"Validate\\": "src/"
},
"files": [
"src/Validate.php"
]
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Validate\\octaValidateServiceProvider"
]
}
}
}