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
|
{
"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": "^7.0"
},
"conflict": {
"phpunit/phpunit": "<6.0 || >6.5"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"GeckoPackages\\PHPUnit\\": "src/PHPUnit"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"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."
}
}
|