Skip to content

Commit ab03f4d

Browse files
authored
Merge pull request #10 from clue-labs/cleanup
2 parents a112d86 + 1de6a43 commit ab03f4d

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- 7.3
1818
- 7.2
1919
- 7.1
20+
- 7.0
2021
- 5.6
2122
- 5.5
2223
- 5.4

composer.json

-8
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,12 @@
3333
"require-dev": {
3434
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
3535
},
36-
"suggest": {
37-
"react/event-loop": "You need an event loop for this to make sense."
38-
},
3936
"autoload": {
4037
"files": [
4138
"src/functions_include.php"
4239
]
4340
},
4441
"autoload-dev": {
4542
"psr-4": { "React\\Tests\\Async\\": "tests/" }
46-
},
47-
"extra": {
48-
"branch-alias": {
49-
"dev-master": "1.0-dev"
50-
}
5143
}
5244
}

tests/SeriesTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ public function testSeriesWithTasks()
2222
$tasks = array(
2323
function () {
2424
return new Promise(function ($resolve) {
25-
Loop::addTimer(0.05, function () use ($resolve) {
25+
Loop::addTimer(0.051, function () use ($resolve) {
2626
$resolve('foo');
2727
});
2828
});
2929
},
3030
function () {
3131
return new Promise(function ($resolve) {
32-
Loop::addTimer(0.05, function () use ($resolve) {
32+
Loop::addTimer(0.051, function () use ($resolve) {
3333
$resolve('bar');
3434
});
3535
});

0 commit comments

Comments
 (0)