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
|
{
"name": "php-cs-fixer/phpunit-constraint-xmlmatchesxsd",
"type": "library",
"description": "Constraint for testing XML against XSD.",
"license": "MIT",
"authors": [
{
"name": "SpacePossum"
},
{
"name": "Dariusz RumiĆski",
"email": "dariusz.ruminski@gmail.com"
}
],
"require": {
"php": "^5.5 || ^7.0 || ^8.0",
"ext-dom": "*",
"ext-libxml": "*",
"phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.0 || ^9.0",
"phpunitgoodpractices/polyfill": "^1.4"
},
"require-dev": {
"johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
"symfony/phpunit-bridge": "^3.2.2 || ^4.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\": "src/"
},
"files": [
"src/Constraint/XmlMatchesXsd.php"
]
},
"autoload-dev": {
"psr-4": {
"PhpCsFixer\\PhpunitConstraintXmlMatchesXsd\\Tests\\": "tests/"
}
}
}
|