Skip to content

Commit

Permalink
Use namespaced TestCase (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioBlazek authored and kylekatarnls committed Feb 26, 2018
1 parent 10c98d1 commit ba61af0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2",
"phpunit/phpunit": "~4.0 || ~5.0"
"phpunit/phpunit": "^4.8.35 || ^5.7"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions tests/AbstractTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
use Carbon\Carbon;
use Carbon\CarbonInterval;
use Closure;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

abstract class AbstractTestCase extends PHPUnit_Framework_TestCase
abstract class AbstractTestCase extends TestCase
{
/**
* @var \Carbon\Carbon
Expand Down

0 comments on commit ba61af0

Please sign in to comment.