File tree 3 files changed +9
-24
lines changed
3 files changed +9
-24
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
include :
12
+ - php : 8.3
13
+ laravel : ^11.0
14
+ - php : 8.2
15
+ laravel : ^11.0
12
16
- php : 8.2
13
17
laravel : ^10.0
14
18
- php : 8.1
15
19
laravel : ^10.0
16
20
- php : 8.1
17
21
laravel : ^9.0
18
- - php : 8.1
19
- laravel : ^8.0
20
- - php : 8.0
21
- laravel : ^8.0
22
22
23
23
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
24
24
Original file line number Diff line number Diff line change 10
10
"license" : " MIT" ,
11
11
"minimum-stability" : " stable" ,
12
12
"require" : {
13
- "laravel/framework" : " ^8|^ 9|^10" ,
13
+ "laravel/framework" : " ^9|^10|^11 " ,
14
14
"spatie/sheets" : " ^1.10"
15
15
},
16
16
"require-dev" : {
17
- "brianium/paratest" : " ^6.2" ,
18
- "nunomaduro/collision" : " ^5|^6" ,
19
17
"orchestra/testbench" : " >=6.15" ,
20
- "squizlabs/php_codesniffer" : " ^3.5"
18
+ "squizlabs/php_codesniffer" : " ^3.5" ,
19
+ "phpunit/phpunit" : " <11"
21
20
},
22
21
"autoload" : {
23
22
"psr-4" : {
Original file line number Diff line number Diff line change 3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
4
xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
5
5
backupGlobals =" false"
6
- backupStaticAttributes =" false"
7
6
bootstrap =" vendor/autoload.php"
8
7
colors =" true"
9
- convertErrorsToExceptions =" true"
10
- convertNoticesToExceptions =" true"
11
- convertWarningsToExceptions =" true"
12
8
processIsolation =" false"
13
9
stopOnFailure =" false"
14
10
executionOrder =" random"
15
11
failOnWarning =" true"
16
12
failOnRisky =" true"
17
13
failOnEmptyTestSuite =" true"
18
14
beStrictAboutOutputDuringTests =" true"
19
- verbose =" true"
20
- printerClass =" NunoMaduro\Collision\Adapters\Phpunit\Printer" >
21
15
>
22
16
<testsuites >
23
17
<testsuite name =" Ampersand Test Suite" >
24
18
<directory >tests</directory >
25
19
</testsuite >
26
20
</testsuites >
27
- <coverage >
28
- <include >
29
- <directory suffix =" .php" >./src</directory >
30
- </include >
31
- <report >
32
- <html outputDirectory =" build/coverage" />
33
- <text outputFile =" build/coverage.txt" />
34
- <clover outputFile =" build/logs/clover.xml" />
35
- </report >
36
- </coverage >
21
+ <coverage />
37
22
<logging >
38
23
<junit outputFile =" build/report.junit.xml" />
39
24
</logging >
40
25
<php >
26
+ <server name =" XDEBUG_MODE" value =" coverage" />
41
27
<env name =" APP_KEY" value =" AckfSECXIvnK5r28GVIWUAxmbBSjTsmF" />
42
28
</php >
43
29
</phpunit >
You can’t perform that action at this time.
0 commit comments