-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
32 lines (32 loc) · 866 Bytes
/
composer.json
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
{
"name": "dms/phpunit-arraysubset-asserts",
"description": "This package provides ArraySubset and related asserts once deprecated in PHPUnit 8",
"type": "library",
"require": {
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"php": "^5.4 || ^7.0 || ^8.0"
},
"license": "MIT",
"authors": [
{
"name": "Rafael Dohms",
"email": "[email protected]"
}
],
"require-dev": {
"dms/coding-standard": "^9"
},
"autoload": {
"files": ["assertarraysubset-autoload.php"]
},
"autoload-dev": {
"psr-4": {
"DMS\\PHPUnitExtensions\\ArraySubset\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}