-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.28 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "hyperized/xml-validator",
"description": "A simple PHP XML validator",
"license": "MIT",
"type": "library",
"keywords": [
"xml",
"validator"
],
"authors": [
{
"name": "Gerben Geijteman",
"email": "gerben@hyperized.net"
}
],
"require": {
"php": "^8.3",
"ext-dom": "*",
"ext-libxml": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.52",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^12.5",
"squizlabs/php_codesniffer": "^4.0.2"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Hyperized\\Xml\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hyperized\\Xml\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"audit-lock": "composer audit --locked",
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpmd": "vendor/bin/phpmd --strict src text cyclomatic.xml",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration phpunit.xml.dist",
"test": [
"@phpcs",
"@phpmd",
"@phpstan",
"@phpunit"
],
"test-github": [
"@test"
]
}
}