blob: ae7a5c54c9c9bbfcf4f475de4f97642622c236bc (
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
|
{
"name": "sanmai/phpunit-legacy-adapter",
"type": "library",
"description": "PHPUnit Legacy Versions Adapter",
"license": "Apache-2.0",
"authors": [
{
"name": "Alexey Kopytko",
"email": "alexey@kopytko.com"
}
],
"require": {
"phpunit/phpunit": "^7 || ^8 || ^9 || ^10"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 || ^8.5.29 || ^9.5.24 || ^10.1.2",
"friendsofphp/php-cs-fixer": "^2.16"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "8.x-dev",
"dev-legacy": "6.x-dev"
}
},
"autoload": {
"psr-4": {
"LegacyPHPUnit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\LegacyPHPUnit\\": "tests/"
}
}
}
|