blob: 10433c0f3b9ffb9a2555c6cb4be36c1491c693a8 (
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": "phpunitgoodpractices/polyfill",
"type": "library",
"description": "Lacking future-compat polyfills for PHPUnit.",
"license": "MIT",
"authors": [
{
"name": "Dariusz RumiĆski",
"email": "dariusz.ruminski@gmail.com"
}
],
"require": {
"php": "^5.5 || ^7.0 || ^8.0",
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.0 || ^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"php-coveralls/php-coveralls": "^2.4"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"files": [ "src/aliases.php" ],
"psr-4": { "PHPUnitGoodPractices\\Polyfill\\": "src/" }
}
}
|