-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.61 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.61 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
62
63
{
"name": "stboris/schematron-diff",
"description": "Prove that hand-written PHP rules still agree with the Schematron they were transcribed from.",
"keywords": [
"schematron",
"svrl",
"en16931",
"e-invoicing",
"validation",
"testing",
"xslt"
],
"license": "MIT",
"homepage": "https://github.com/stboris/schematron-diff",
"support": {
"issues": "https://github.com/stboris/schematron-diff/issues",
"source": "https://github.com/stboris/schematron-diff",
"docs": "https://dev.to/boris-stiner/you-retyped-the-schematron-into-php-how-do-you-know-you-got-it-right-me3"
},
"authors": [
{
"name": "Boris Stiner",
"email": "boris.stiner@gmail.com"
}
],
"require": {
"php": "^8.3",
"ext-dom": "*",
"ext-libxml": "*",
"ext-json": "*"
},
"require-dev": {
"pestphp/pest": "^3.0",
"josemmo/einvoicing": "^0.3"
},
"suggest": {
"josemmo/einvoicing": "Needed only to run the bundled EN 16931 example ruleset."
},
"bin": [
"bin/schematron-diff"
],
"autoload": {
"psr-4": {
"Stboris\\SchematronDiff\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stboris\\SchematronDiff\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}