File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,7 @@ language: php
2
2
dist : trusty
3
3
4
4
php :
5
- - 5.6
6
5
- 7.0
7
- - hhvm
8
6
9
7
before_script :
10
8
- " composer self-update"
Original file line number Diff line number Diff line change 3
3
"description" : " Provides Brazilian Documents" ,
4
4
"type" : " library" ,
5
5
"require" : {
6
- "php" : " ^5.6 || ^ 7.0"
6
+ "php" : " ^7.0"
7
7
},
8
8
"require-dev" : {
9
- "phpunit/phpunit" : " ^5.5 " ,
9
+ "phpunit/phpunit" : " ^6.4 " ,
10
10
"codacy/coverage" : " ^1.0"
11
11
},
12
12
"license" : " MIT" ,
Original file line number Diff line number Diff line change 3
3
namespace Brazanation \Documents \Tests ;
4
4
5
5
use Brazanation \Documents \DigitCalculator ;
6
+ use PHPUnit \Framework \TestCase ;
6
7
7
- class DigitCalculatorTest extends \PHPUnit_Framework_TestCase
8
+ class DigitCalculatorTest extends TestCase
8
9
{
9
10
/**
10
11
* @param string $number
Original file line number Diff line number Diff line change 4
4
5
5
use Brazanation \Documents \AbstractDocument ;
6
6
use Brazanation \Documents \Exception \InvalidDocument ;
7
+ use PHPUnit \Framework \TestCase ;
7
8
8
- abstract class DocumentTestCase extends \PHPUnit_Framework_TestCase
9
+ abstract class DocumentTestCase extends TestCase
9
10
{
10
11
/**
11
12
* @param string $number
You can’t perform that action at this time.
0 commit comments