File tree Expand file tree Collapse file tree 4 files changed +34
-27
lines changed
Expand file tree Collapse file tree 4 files changed +34
-27
lines changed Original file line number Diff line number Diff line change 1010 matrix :
1111 os : [ubuntu-latest]
1212 php : ['8.3', '8.2', '8.1']
13- laravel : [10.*]
13+ laravel : [11.*, 10.*]
1414 dependency-version : [prefer-lowest, prefer-stable]
15+ exclude :
16+ - laravel : 11.*
17+ php : 8.1
1518 include :
19+ - laravel : 11.*
20+ testbench : ^9.0
1621 - laravel : 10.*
1722 testbench : ^8.0
1823
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ composer.lock
33docs
44vendor
55coverage
6- .phpunit.result. cache
6+ .phpunit.cache
77.idea
88.php_cs.cache
99
Original file line number Diff line number Diff line change 2525 },
2626 "require-dev" : {
2727 "mockery/mockery" : " ^1.5" ,
28- "orchestra/testbench" : " ^8.0" ,
29- "phpunit/phpunit" : " ^9 .5"
28+ "orchestra/testbench" : " ^8.0|^9.0 " ,
29+ "phpunit/phpunit" : " ^10 .5"
3030 },
3131 "autoload" : {
3232 "psr-4" : {
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit
33 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3 /phpunit.xsd"
4+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5 /phpunit.xsd"
55 bootstrap =" vendor/autoload.php"
66 colors =" true"
7- verbose = " true "
7+ cacheDirectory = " .phpunit.cache "
88>
9- <coverage >
10- <include >
11- <directory suffix =" .php" >src/</directory >
12- </include >
13- <report >
14- <clover outputFile =" build/coverage.xml" />
15- </report >
16- </coverage >
17- <testsuites >
18- <testsuite name =" Feature" >
19- <directory >tests/Feature</directory >
20- </testsuite >
21- <testsuite name =" Unit" >
22- <directory >tests/Unit</directory >
23- </testsuite >
24- </testsuites >
25- <logging />
26- <php >
27- <server name =" APP_ENV" value =" testing" />
28- <server name =" APP_KEY" value =" AckfSECXIvnK5r28GVIWUAxmbBSjTsmF" />
29- </php >
9+ <coverage >
10+ <report >
11+ <clover outputFile =" build/coverage.xml" />
12+ </report >
13+ </coverage >
14+ <testsuites >
15+ <testsuite name =" Feature" >
16+ <directory >tests/Feature</directory >
17+ </testsuite >
18+ <testsuite name =" Unit" >
19+ <directory >tests/Unit</directory >
20+ </testsuite >
21+ </testsuites >
22+ <logging />
23+ <php >
24+ <server name =" APP_ENV" value =" testing" />
25+ <server name =" APP_KEY" value =" AckfSECXIvnK5r28GVIWUAxmbBSjTsmF" />
26+ </php >
27+ <source >
28+ <include >
29+ <directory suffix =" .php" >src/</directory >
30+ </include >
31+ </source >
3032</phpunit >
You can’t perform that action at this time.
0 commit comments