File tree 4 files changed +16
-13
lines changed
4 files changed +16
-13
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- laravel : [8, 9, 10 ]
14
+ laravel : [10, 11 ]
15
15
16
16
steps :
17
17
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 1
1
.phpunit.result.cache
2
+ .phpunit.cache
2
3
package-lock.json
3
4
composer.lock
4
5
vendor /
Original file line number Diff line number Diff line change 23
23
}
24
24
},
25
25
"require" : {
26
- "php" : " ^8.0 " ,
27
- "illuminate/support" : " ^8.24|^9. 0|^10 .0" ,
28
- "illuminate/view" : " ^8.24|^9. 0|^10 .0"
26
+ "php" : " ^8.2 " ,
27
+ "illuminate/support" : " ^10. 0|^11 .0" ,
28
+ "illuminate/view" : " ^10. 0|^11 .0"
29
29
},
30
30
"require-dev" : {
31
- "orchestra/testbench" : " ^6.23|^7. 0|^8 .0" ,
32
- "nunomaduro/larastan" : " ^1.0|^ 2.4" ,
33
- "pestphp/pest" : " ^1.2|^ 2.0" ,
34
- "pestphp/pest-plugin-laravel" : " ^1.0|^ 2.0" ,
31
+ "orchestra/testbench" : " ^8. 0|^9 .0" ,
32
+ "nunomaduro/larastan" : " ^2.4" ,
33
+ "pestphp/pest" : " ^2.0" ,
34
+ "pestphp/pest-plugin-laravel" : " ^2.0" ,
35
35
"intervention/image" : " ^2.7"
36
36
},
37
37
"extra" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" backupStaticAttributes =" false" bootstrap =" vendor/autoload.php" colors =" true" convertErrorsToExceptions =" true" convertNoticesToExceptions =" true" convertWarningsToExceptions =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3
- <coverage processUncoveredFiles =" true" >
4
- <include >
5
- <directory suffix =" .php" >./src</directory >
6
- </include >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false" bootstrap =" vendor/autoload.php" colors =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <coverage >
7
4
<report >
8
5
<clover outputFile =" coverage/phpunit/clover.xml" />
9
6
<html outputDirectory =" coverage/phpunit/html" lowUpperBound =" 35" highLowerBound =" 70" />
28
25
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
29
26
<env name =" AWS_DEFAULT_REGION" value =" us-west-2" />
30
27
</php >
28
+ <source >
29
+ <include >
30
+ <directory suffix =" .php" >./src</directory >
31
+ </include >
32
+ </source >
31
33
</phpunit >
You can’t perform that action at this time.
0 commit comments