File tree 3 files changed +2
-11
lines changed
3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codedungeon/phpunit-result-printer" ,
3
- "version" : " 0.15.5 " ,
3
+ "version" : " 0.16.0 " ,
4
4
"description" : " PHPUnit Pretty Result Printer" ,
5
5
"keywords" : [
6
6
" phpunit" ,
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGLobals =" false"
3
- beStrictAboutOutputDuringTests =" false"
2
+ <phpunit beStrictAboutOutputDuringTests =" false"
4
3
bootstrap =" vendor/autoload.php"
5
4
colors =" true"
6
5
convertErrorsToExceptions =" true"
Original file line number Diff line number Diff line change 6
6
use PHPUnit_TextUI_ResultPrinter ;
7
7
8
8
if (class_exists (PHPUnit_TextUI_ResultPrinter::class)) {
9
- require __DIR__ . '/ResultPrinter5.php ' ;
10
-
11
9
class Printer extends ResultPrinter5
12
10
{
13
11
use PrinterTrait;
14
12
}
15
13
}
16
14
17
15
if (version_compare (Version::series (), '6.99.99 ' , '<= ' )) {
18
- require __DIR__ . '/ResultPrinter6.php ' ;
19
-
20
16
class Printer extends ResultPrinter6
21
17
{
22
18
use PrinterTrait;
@@ -27,8 +23,6 @@ class Printer extends ResultPrinter6
27
23
$ high = version_compare (Version::series (), '7.0.99 ' , '<= ' );
28
24
29
25
if ($ low && $ high ) {
30
- require __DIR__ . '/ResultPrinter70.php ' ;
31
-
32
26
class Printer extends ResultPrinter70
33
27
{
34
28
use PrinterTrait;
@@ -39,8 +33,6 @@ class Printer extends ResultPrinter70
39
33
$ high = true ; // version_compare(Version::series(),'7.1.99','<=');
40
34
41
35
if ($ low && $ high ) {
42
- require __DIR__ . '/ResultPrinter71.php ' ;
43
-
44
36
class Printer extends ResultPrinter71
45
37
{
46
38
use PrinterTrait;
You can’t perform that action at this time.
0 commit comments