summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: b0b86d437998e05c2a1457d84a751cdb300ec46b (plain)
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
{
    "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.23 || ^6.4.3 || ^7.0 || ^8.0 || ^9.0"
    },
    "conflict": {
        "hhvm": "*"
    },
    "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/"
        }
    }
}