File tree 4 files changed +11
-8
lines changed
4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ sudo: false
3
3
language : php
4
4
5
5
php :
6
- - 5.6
7
- - 7.0
6
+ - 7.1
7
+ - 7.2
8
+ - 7.3
8
9
9
10
install :
10
11
- composer install --prefer-dist
Original file line number Diff line number Diff line change 3
3
"description" : " Generate code coverage reports on a live server" ,
4
4
"license" : " MIT" ,
5
5
"require" : {
6
- "php" : " ^5.6 || ^7.0 " ,
6
+ "php" : " ^7.1 " ,
7
7
"webmozart/assert" : " ^1.2" ,
8
- "phpunit/php-code-coverage" : " ^4.0 || ^5.2 || ^6.0" ,
9
- "phpunit/phpunit" : " ^5.7 || ^6.0 || ^7.0"
8
+ "phpunit/php-code-coverage" : " ^4.0 || ^5.2 || ^6.0 || ^7.0 " ,
9
+ "phpunit/phpunit" : " ^5.7 || ^6.0 || ^7.0 || ^8.0 "
10
10
},
11
11
"autoload" : {
12
12
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<phpunit
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/8.0/phpunit.xsd"
3
5
bootstrap =" vendor/autoload.php"
4
6
colors =" true"
5
7
>
6
8
<testsuites >
7
- <testsuite >
9
+ <testsuite name = " default " >
8
10
<directory >test</directory >
9
11
</testsuite >
10
12
</testsuites >
13
15
<directory suffix =" .php" >src</directory >
14
16
</whitelist >
15
17
</filter >
16
- </phpunit >
18
+ </phpunit >
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ final class LiveCodeCoverageTest extends TestCase
10
10
{
11
11
private $ coverageDirectory ;
12
12
13
- protected function setUp ()
13
+ protected function setUp (): void
14
14
{
15
15
$ this ->coverageDirectory = __DIR__ . '/coverage ' ;
16
16
You can’t perform that action at this time.
0 commit comments