-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.17 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "gravity/dataverify",
"description": "A lightweight PHP validation library with fluent interface for validating data structures, supporting batch/fail-fast modes and custom strategies",
"type": "library",
"license": "MIT",
"keywords": ["validation", "validator", "data-validation", "form-validation", "input-validation", "php"],
"homepage": "https://github.com/gravity-zero/dataverify",
"authors": [
{
"name": "Romain Feregotto",
"email": "romain.feregotto@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1"
},
"suggest": {
"symfony/yaml": "^7.0 - Required for YAML translation files"
},
"require-dev": {
"phpunit/phpunit": "^11.4",
"phpstan/phpstan": "^2.1",
"infection/infection": "^0.31",
"phpbench/phpbench": "^1.4",
"symfony/yaml": "^8.0"
},
"autoload": {
"psr-4": {
"Gravity\\": "src/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}