8000 Forward compatiblity with PHPUnit 6 by clue · Pull Request #30 · reactphp/promise-timer · GitHub
[go: up one dir, main page]

Skip to content

Forward compatiblity with PHPUnit 6 #30

8000 New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Forward compatiblity with PHPUnit 6
  • Loading branch information
clue committed Dec 22, 2017
commit 7306dc72fcefabd79714ffbc7d1b6fce2180929e
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"react/promise": "~2.1|~1.2"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^4.8"
"phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
}
}
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace React\Tests\Promise\Timer;

use PHPUnit\Framework\TestCase as BaseTestCase;
use React\EventLoop\Factory;
use PHPUnit_Framework_TestCase;

class TestCase extends PHPUnit_Framework_TestCase
class TestCase extends BaseTestCase
{
protected $loop;

Expand Down
0