-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
126 lines (126 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "hyperized/xml-validator",
"type": "library",
"description": "A simple PHP XML validator",
"keywords": [
"xml",
"validator"
],
"license": "MIT",
"authors": [
{
"name": "Gerben Geijteman",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-dom": "20031129",
"ext-libxml": "^7.2 || ^8.0"
},
"require-dev": {
"ext-mbstring": "^7.2",
"bmitch/churn-php": "^1.0.3",
"ergebnis/composer-normalize": "^2.3",
"infection/infection": "^0.15.0",
"phan/phan": "^2.4",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^0.12.0",
"phpunit/phpunit": "^7 || ^8 || ^9",
"povils/phpmnd": "^2.0",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.8"
},
"autoload": {
"psr-4": {
"Hyperized\\Xml\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hyperized\\Xml\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"churn": "vendor/bin/churn run src",
"churn.bat": "vendor\\bin\\churn.bat run src",
"infection": "vendor/bin/infection",
"infection.bat": "vendor\\bin\\infection.bat",
"phan": "vendor/bin/phan --allow-polyfill-parser",
"phan.bat": "vendor\\bin\\phan.bat --allow-polyfill-parser",
"phpcbf": "vendor/bin/phpcbf src",
"phpcbf.bat": "vendor\\bin\\phpcbf.bat src",
"phpcs": "vendor/bin/phpcs src --standard=PSR2",
"phpcs.bat": "vendor\\bin\\phpcs.bat src --standard=PSR2",
"phpmd": "vendor/bin/phpmd --strict src text cyclomatic.xml",
"phpmd.bat": "vendor\\bin\\phpmd.bat --strict src text cyclomatic.xml",
"phpmnd": "vendor/bin/phpmnd src",
"phpmnd.bat": "vendor\\bin\\phpmnd.bat src",
"phpstan": "vendor/bin/phpstan --level=max analyse src tests",
"phpstan.bat": "vendor\\bin\\phpstan.bat --level=max analyse src tests",
"phpunit": "vendor/phpunit/phpunit/phpunit --configuration phpunit.xml.dist",
"psalm": "vendor/bin/psalm",
"psalm.bat": "vendor\\bin\\psalm.bat",
"test-churn-macos-latest": [
"@churn"
],
"test-churn-ubuntu-latest": [
"@churn"
],
"test-infection-macos-latest": [
"@infection"
],
"test-infection-ubuntu-latest": [
"@infection"
],
"test-phan-macos-latest": [
"@phan"
],
"test-phan-ubuntu-latest": [
"@phan"
],
"test-phpcbf-macos-latest": [
"@phpcbf"
],
"test-phpcbf-ubuntu-latest": [
"@phpcbf"
],
"test-phpcs-macos-latest": [
"@phpcs"
],
"test-phpcs-ubuntu-latest": [
"@phpcs"
],
"test-phpmd-macos-latest": [
"@phpmd"
],
"test-phpmd-ubuntu-latest": [
"@phpmd"
],
"test-phpmnd-macos-latest": [
"@phpmnd"
],
"test-phpmnd-ubuntu-latest": [
"@phpmnd"
],
"test-phpstan-macos-latest": [
"@phpstan"
],
"test-phpstan-ubuntu-latest": [
"@phpstan"
],
"test-phpunit-macos-latest": [
"@phpunit"
],
"test-phpunit-ubuntu-latest": [
"@phpunit"
],
"test-psalm-macos-latest": [
"@psalm"
],
"test-psalm-ubuntu-latest": [
"@psalm"
]
}
}