summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: e4b235f61bf078a49499553cbbd9d80892eb260a (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
{
    "name": "gecko-packages/gecko-php-unit",
    "type": "library",
    "homepage": "https://github.com/GeckoPackages",
    "description": "Additional PHPUnit asserts and constraints.",
    "license": "MIT",
    "keywords": ["PHPUnit", "Extension", "FileSystem"],
    "require": {
        "php": "^5.3.6 || ^7.0"
    },
    "conflict": {
        "phpunit/phpunit": ">=6.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^4.8.35 || ^5.4.3"
    },
    "autoload": {
        "psr-4": {
            "GeckoPackages\\PHPUnit\\": "src/PHPUnit"
        }
    },
    "config": {
        "optimize-autoloader": true,
        "sort-packages": true
    },
    "suggest": {
        "ext-dom": "When testing with xml.",
        "ext-libxml": "When testing with xml.",
        "phpunit/phpunit" : "This is an extension for PHPUnit so make sure you have that in some way."
    }
}