File tree Expand file tree Collapse file tree 4 files changed +30
-45
lines changed Expand file tree Collapse file tree 4 files changed +30
-45
lines changed Original file line number Diff line number Diff line change 14
14
matrix :
15
15
os : [ubuntu-latest, windows-latest]
16
16
php : [8.3, 8.2, 8.1, 8.0]
17
- laravel : [10.*, 9.*]
17
+ laravel : [11.*, 10.*, 9.*]
18
18
stability : [prefer-lowest, prefer-stable]
19
19
include :
20
+ - laravel : 11.*
21
+ testbench : 9.*
22
+ carbon : ^3.0
20
23
- laravel : 10.*
21
24
testbench : 8.*
22
25
carbon : ^2.63
26
29
exclude :
27
30
- laravel : 10.*
28
31
php : 8.0
32
+ - laravel : 11.*
33
+ php : 8.1
34
+ - laravel : 11.*
35
+ php : 8.0
29
36
30
37
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
31
38
Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ testbench.yaml
12
12
vendor
13
13
node_modules
14
14
.php-cs-fixer.cache
15
+ .phpunit.cache /test-results
Original file line number Diff line number Diff line change 25
25
"require" : {
26
26
"php" : " ^8.0" ,
27
27
"ext-openssl" : " *" ,
28
- "illuminate/contracts" : " ^9.0|^10.0" ,
29
- "illuminate/database" : " ^9.0|^10.0" ,
30
- "illuminate/support" : " ^9.0|^10.0" ,
31
- "illuminate/validation" : " ^9.0|^10.0" ,
28
+ "illuminate/contracts" : " ^9.0|^10.0|^11.0 " ,
29
+ "illuminate/database" : " ^9.0|^10.0|^11.0 " ,
30
+ "illuminate/support" : " ^9.0|^10.0|^11.0 " ,
31
+ "illuminate/validation" : " ^9.0|^10.0|^11.0 " ,
32
32
"spatie/laravel-package-tools" : " ^1.14.1"
33
33
},
34
34
"require-dev" : {
35
35
"friendsofphp/php-cs-fixer" : " ^3.4" ,
36
- "orchestra/testbench" : " ^7.0|^8.0" ,
37
- "phpunit/phpunit" : " ^9.5" ,
38
- "vimeo/psalm" : " ^4.20"
36
+ "orchestra/testbench" : " ^7.0|^8.0|^9.0 " ,
37
+ "phpunit/phpunit" : " ^9.5|^10.5 " ,
38
+ "vimeo/psalm" : " ^4.20|^5.22 "
39
39
},
40
40
"autoload" : {
41
41
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit
3
- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
5
- backupGlobals =" false"
6
- backupStaticAttributes =" false"
7
- bootstrap =" vendor/autoload.php"
8
- colors =" true"
9
- convertErrorsToExceptions =" true"
10
- convertNoticesToExceptions =" true"
11
- convertWarningsToExceptions =" true"
12
- processIsolation =" false"
13
- stopOnFailure =" false"
14
- executionOrder =" random"
15
- failOnWarning =" true"
16
- failOnRisky =" true"
17
- failOnEmptyTestSuite =" true"
18
- beStrictAboutOutputDuringTests =" true"
19
- verbose =" true"
20
- >
21
- <testsuites >
22
- <testsuite name =" Maize Test Suite" >
23
- <directory >tests</directory >
24
- </testsuite >
25
- </testsuites >
26
- <coverage >
27
- <include >
28
- <directory suffix =" .php" >./src</directory >
29
- </include >
30
- <report >
31
- <html outputDirectory =" build/coverage" />
32
- <text outputFile =" build/coverage.txt" />
33
- <clover outputFile =" build/logs/clover.xml" />
34
- </report >
35
- </coverage >
36
- <logging >
37
- <junit outputFile =" build/report.junit.xml" />
38
- </logging >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals =" false" bootstrap =" vendor/autoload.php" colors =" true" processIsolation =" false" stopOnFailure =" false" executionOrder =" random" failOnWarning =" true" failOnRisky =" true" failOnEmptyTestSuite =" true" beStrictAboutOutputDuringTests =" true" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <testsuites >
4
+ <testsuite name =" Maize Test Suite" >
5
+ <directory >tests</directory >
6
+ </testsuite >
7
+ </testsuites >
8
+ <logging >
9
+ <junit outputFile =" build/report.junit.xml" />
10
+ </logging >
11
+ <source >
12
+ <include >
13
+ <directory suffix =" .php" >./src</directory >
14
+ </include >
15
+ </source >
39
16
</phpunit >
You can’t perform that action at this time.
0 commit comments