-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
72 lines (72 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "xtreamwayz/html-form-validator",
"type": "library",
"description": "A library validating and filtering submitted data by reusing html form attributes",
"license": "MIT",
"authors": [
{
"name": "Geert Eltink",
"homepage": "https://github.com/geerteltink"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-libxml": "*",
"laminas/laminas-filter": "^2.13",
"laminas/laminas-i18n": "^2.13",
"laminas/laminas-inputfilter": "^2.13",
"laminas/laminas-servicemanager": "^3.10",
"laminas/laminas-stdlib": "^3.6",
"laminas/laminas-uri": "^2.9",
"laminas/laminas-validator": "^2.15",
"psr/container": "^1.0 || ^2.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"laminas/laminas-servicemanager": "To support third-party validators and filters"
},
"config": {
"sort-packages": true
},
"extra": {
"laminas": {
"config-provider": "Xtreamwayz\\HTMLFormValidator\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Xtreamwayz\\HTMLFormValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XtreamwayzTest\\HTMLFormValidator\\": "test/"
}
},
"scripts": {
"analyse": "phpstan analyse --level=0 src test",
"analyse-strict": "phpstan analyse -l 7 src",
"check": [
"@cs-check",
"@test",
"@analyse"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"support": {
"issues": "https://github.com/xtreamwayz/html-form-validator/issues",
"forum": "https://github.com/xtreamwayz/community/discussions",
"source": "https://github.com/xtreamwayz/html-form-validator",
"docs": "https://xtreamwayz.github.io/html-form-validator/"
}
}