File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
matrix :
13
13
os :
14
- - ubuntu-20 .04
15
- - windows-2019
14
+ - ubuntu-22 .04
15
+ - windows-2022
16
16
php :
17
+ - 8.2
17
18
- 8.1
18
19
- 8.0
19
20
- 7.4
Original file line number Diff line number Diff line change 5
5
xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
6
6
bootstrap =" vendor/autoload.php"
7
7
colors =" true"
8
- cacheResult =" false" >
8
+ cacheResult =" false"
9
+ convertDeprecationsToExceptions =" true" >
9
10
<testsuites >
10
11
<testsuite name =" SQLite React Test Suite" >
11
12
<directory >./tests/</directory >
17
18
<directory >./src/</directory >
18
19
</include >
19
20
</coverage >
21
+ <php >
22
+ <ini name =" error_reporting" value =" -1" />
23
+ </php >
20
24
</phpunit >
Original file line number Diff line number Diff line change @@ -433,7 +433,7 @@ private function php()
433
433
434
434
// if `php` is a symlink to the php binary, use the shorter `php` name
435
435
// this is purely cosmetic feature for the process list
436
- if ($ binary !== 'php ' && \realpath ($ this ->which ('php ' )) === $ binary ) {
436
+ if ($ binary !== 'php ' && \realpath (( string ) $ this ->which ('php ' )) === $ binary ) {
437
437
$ binary = 'php ' ;
438
438
}
439
439
You can’t perform that action at this time.
0 commit comments