We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e6cf8c6 + 2274c65 commit 449b1f6Copy full SHA for 449b1f6
composer.json
@@ -24,7 +24,7 @@
24
"psr-4": { "Clue\\React\\Stdio\\": "src/" }
25
},
26
"require-dev": {
27
- "phpunit/phpunit": "^5.0 || ^4.8",
+ "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35",
28
"clue/commander": "^1.2",
29
"clue/arguments": "^2.0"
30
}
tests/bootstrap.php
@@ -1,10 +1,12 @@
1
<?php
2
3
+use PHPUnit\Framework\TestCase as BaseTestCase;
4
+
5
require_once __DIR__ . '/../vendor/autoload.php';
6
7
error_reporting(-1);
8
-class TestCase extends PHPUnit_Framework_TestCase
9
+class TestCase extends BaseTestCase
10
{
11
protected function expectCallableOnce()
12
@@ -70,4 +72,3 @@ public function __invoke()
70
72
71
73
74
-
0 commit comments