File tree 3 files changed +17
-17
lines changed
3 files changed +17
-17
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 : [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 21
21
}
22
22
},
23
23
"require" : {
24
- "php" : " ^8.1 " ,
25
- "illuminate/support" : " ^9 .0|^10 .0" ,
26
- "archtechx/laravel-seo" : " ^0.6 " ,
27
- "ryangjchandler/orbit" : " * " ,
28
- "illuminate/routing" : " ^9 .0|^10 .0" ,
29
- "illuminate/database" : " ^9 .0|^10 .0"
24
+ "php" : " ^8.2 " ,
25
+ "illuminate/support" : " ^10 .0|^11 .0" ,
26
+ "archtechx/laravel-seo" : " ^0.10 " ,
27
+ "ryangjchandler/orbit" : " ^1.0 " ,
28
+ "illuminate/routing" : " ^10 .0|^11 .0" ,
29
+ "illuminate/database" : " ^10 .0|^11 .0"
30
30
},
31
31
"require-dev" : {
32
- "orchestra/testbench" : " ^7 .0|^8 .0" ,
33
- "pestphp/pest" : " ^1.2|^ 2.0" ,
34
- "pestphp/pest-plugin-laravel" : " ^1.0|^ 2.0"
32
+ "orchestra/testbench" : " ^8 .0|^9 .0" ,
33
+ "pestphp/pest" : " ^2.0" ,
34
+ "pestphp/pest-plugin-laravel" : " ^2.0"
35
35
},
36
36
"extra" : {
37
37
"laravel" : {
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" />
22
19
<env name =" MAIL_DRIVER" value =" array" />
23
20
<env name =" QUEUE_CONNECTION" value =" sync" />
24
21
<env name =" SESSION_DRIVER" value =" array" />
25
-
26
22
<env name =" DB_CONNECTION" value =" testbench" />
27
23
<env name =" DB_DATABASE" value =" main" />
28
24
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
29
25
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
30
-
31
26
<env name =" AWS_DEFAULT_REGION" value =" us-west-2" />
32
27
</php >
28
+ <source >
29
+ <include >
30
+ <directory suffix =" .php" >./src</directory >
31
+ </include >
32
+ </source >
33
33
</phpunit >
You can’t perform that action at this time.
0 commit comments