-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1013 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "kris-kuiper/validator",
"type": "library",
"description": "Modern PHP validator on steroids for validating forms and/or array's.",
"keywords": [
"modern",
"validate",
"validator",
"validation",
"php",
"form",
"array"
],
"license": "MIT",
"authors": [
{
"name": "Kris Kuiper",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.7",
"phpro/grumphp": "^1.12",
"slevomat/coding-standard": "^7.2",
"brianium/paratest": "^6.4",
"vimeo/psalm": "^4.27"
},
"autoload": {
"psr-4": {
"KrisKuiper\\Validator\\": "./src/",
"tests\\": "./tests/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}