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 d8749c8 + 6bd98ba commit f578e2fCopy full SHA for f578e2f
composer.json
@@ -15,9 +15,10 @@
15
},
16
"require": {
17
"php": ">=5.3",
18
- "react/stream": "^0.6 || ^0.5 || ^0.4 || ^0.3"
+ "react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4 || ^0.3"
19
20
"require-dev": {
21
- "phpunit/phpunit": "^5.0 || ^4.8"
+ "phpunit/phpunit": "^5.0 || ^4.8",
22
+ "react/stream": "^1.0 || ^0.7"
23
}
24
tests/SequencerTest.php
@@ -1,7 +1,7 @@
1
<?php
2
3
-use React\Stream\ReadableStream;
4
use Clue\React\Utf8\Sequencer;
+use React\Stream\ThroughStream;
5
6
class SequencerTest extends TestCase
7
{
@@ -10,7 +10,7 @@ class SequencerTest extends TestCase
10
11
public function setUp()
12
13
- $this->input = new ReadableStream();
+ $this->input = new ThroughStream();
14
$this->sequencer = new Sequencer($this->input);
0 commit comments