-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 962 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
{
"name": "figtree-php/validation",
"description": "FigTree Validation",
"keywords": [
"figtree",
"figtree-php",
"validation"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alan Ondra",
"email": "r.alan.ondra@gmail.com",
"role": "Creator"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/alanondra"
}
],
"readme": "readme.md",
"support": {
"email": "figtree.php@gmail.com",
"source": "https://github.com/figtree-php/validation",
"issues": "https://github.com/figtree-php/validation/issues",
"wiki": "https://github.com/figtree-php/validation/wiki"
},
"autoload": {
"psr-4": {
"FigTree\\Validation\\": "src/",
"FigTree\\Validation\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"figtree-php/exceptions": "^0 || ^1.0",
"symfony/polyfill-php81": "^1.22"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.5"
}
}