This repository was archived by the owner on Oct 31, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ language: php
2
2
3
3
php :
4
4
- 7.1
5
+ - 7.2
5
6
6
7
before_script :
7
8
- composer update --prefer-source --ignore-platform-reqs
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " ~7.0 "
13
+ "php" : " ~7.1 "
14
14
},
15
15
"require-dev" : {
16
- "phpunit/phpunit" : " ^5.7 "
16
+ "phpunit/phpunit" : " ^6.5 "
17
17
},
18
18
"autoload" : {
19
19
"psr-4" : {
Original file line number Diff line number Diff line change 4
4
5
5
namespace PSR7SessionEncodeDecodeTest ;
6
6
7
- use PHPUnit_Framework_TestCase ;
7
+ use PHPUnit \ Framework \ TestCase ;
8
8
use PSR7SessionEncodeDecode \Decoder ;
9
9
10
10
/**
11
11
* @covers \PSR7SessionEncodeDecode\Decoder
12
12
*/
13
- class DecodeTest extends PHPUnit_Framework_TestCase
13
+ class DecodeTest extends TestCase
14
14
{
15
15
/**
16
16
* @var Decoder
Original file line number Diff line number Diff line change 4
4
5
5
namespace PSR7SessionEncodeDecodeTest ;
6
6
7
- use PHPUnit_Framework_TestCase ;
7
+ use PHPUnit \ Framework \ TestCase ;
8
8
use PSR7SessionEncodeDecode \Encoder ;
9
9
10
10
/**
11
11
* @covers \PSR7SessionEncodeDecode\Encoder
12
12
*/
13
- class EncoderTest extends PHPUnit_Framework_TestCase
13
+ class EncoderTest extends TestCase
14
14
{
15
15
/**
16
16
* @var Encoder
You can’t perform that action at this time.
0 commit comments