-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 2.23 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 2.23 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
{
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"opis/json-schema": "2.5.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"scripts": {
"test": [
"@test:json-schema-lint",
"@test:json-schema-functional",
"@test:xml-schema-functional"
],
"test:json-schema-lint": "@php -f json-schema-lint-tests.php --",
"test:json-schema-functional": [
"@test:json-schema-functional:1.6",
"@test:json-schema-functional:1.5",
"@test:json-schema-functional:1.4",
"@test:json-schema-functional:1.3",
"@test:json-schema-functional:1.2"
],
"test:json-schema-functional:1.6": "@php -f json-schema-functional-tests.php -- -v 1.6 --",
"test:json-schema-functional:1.5": "@php -f json-schema-functional-tests.php -- -v 1.5 --",
"test:json-schema-functional:1.4": "@php -f json-schema-functional-tests.php -- -v 1.4 --",
"test:json-schema-functional:1.3": "@php -f json-schema-functional-tests.php -- -v 1.3 --",
"test:json-schema-functional:1.2": "@php -f json-schema-functional-tests.php -- -v 1.2 --",
"test:xml-schema-functional": [
"@test:xml-schema-functional:1.6",
"@test:xml-schema-functional:1.5",
"@test:xml-schema-functional:1.4",
"@test:xml-schema-functional:1.3",
"@test:xml-schema-functional:1.2",
"@test:xml-schema-functional:1.1",
"@test:xml-schema-functional:1.0"
],
"test:xml-schema-functional:1.6": "@php -f xml-schema-functional-tests.php -- -v 1.6 --",
"test:xml-schema-functional:1.5": "@php -f xml-schema-functional-tests.php -- -v 1.5 --",
"test:xml-schema-functional:1.4": "@php -f xml-schema-functional-tests.php -- -v 1.4 --",
"test:xml-schema-functional:1.3": "@php -f xml-schema-functional-tests.php -- -v 1.3 --",
"test:xml-schema-functional:1.2": "@php -f xml-schema-functional-tests.php -- -v 1.2 --",
"test:xml-schema-functional:1.1": "@php -f xml-schema-functional-tests.php -- -v 1.1 --",
"test:xml-schema-functional:1.0": "@php -f xml-schema-functional-tests.php -- -v 1.0 --"
},
"scripts-descriptions": {
"test": "run all tests",
"test:json-schema-lint": "lint JSON schema."
}
}