summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: febdd2387072e5880f932fae39aceece500c0009 (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
{
    "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"
    },
    "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 it so make sure you have it some way."
    }
}