File tree Expand file tree Collapse file tree 5 files changed +22
-20
lines changed Expand file tree Collapse file tree 5 files changed +22
-20
lines changed Original file line number Diff line number Diff line change 1
1
name : phpstan
2
2
3
- on : [ push, pull_request ]
3
+ on : [push, pull_request]
4
4
5
5
jobs :
6
6
analyze :
15
15
- name : 🏗 Setup PHP
16
16
uses : shivammathur/setup-php@v2
17
17
with :
18
- php-version : ' 8.3 '
18
+ php-version : " 8.4 "
19
19
coverage : none
20
20
tools : phpstan
21
21
Original file line number Diff line number Diff line change 1
1
name : pint
2
2
3
- on : [ push, pull_request ]
3
+ on : [push, pull_request]
4
4
5
5
jobs :
6
6
analyze :
15
15
- name : 🏗 Setup PHP
16
16
uses : shivammathur/setup-php@v2
17
17
with :
18
- php-version : ' 8.3 '
18
+ php-version : " 8.4 "
19
19
coverage : none
20
20
tools : laravel/pint
21
21
Original file line number Diff line number Diff line change @@ -10,18 +10,15 @@ jobs:
10
10
fail-fast : true
11
11
matrix :
12
12
os : [ubuntu-latest]
13
- php : [8.1 , 8.2 , 8.3 ]
13
+ php : [8.2 , 8.3 , 8.4 ]
14
14
stability : [prefer-stable]
15
- laravel : [10 .*, 11 .*]
15
+ laravel : [11 .*, 12 .*]
16
16
include :
17
- - laravel : 10.*
18
- testbench : 8.*
19
-
20
17
- laravel : 11.*
21
18
testbench : 9.*
22
- exclude :
23
- - php : 8.1
24
- laravel : 11 .*
19
+
20
+ - laravel : 12.*
21
+ testbench : 10 .*
25
22
26
23
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
27
24
Original file line number Diff line number Diff line change 19
19
}
20
20
],
21
21
"require" : {
22
- "php" : " ^8.1 "
22
+ "php" : " ^8.2 "
23
23
},
24
24
"require-dev" : {
25
- "larastan/larastan" : " ^2 .0" ,
26
- "orchestra/testbench" : " ^8 .0 || ^9 .0" ,
27
- "phpstan/phpstan" : " ^1 .0" ,
28
- "phpunit/phpunit" : " ^10 .0"
25
+ "larastan/larastan" : " ^3 .0" ,
26
+ "orchestra/testbench" : " ^9 .0 || ^10 .0" ,
27
+ "phpstan/phpstan" : " ^2 .0" ,
28
+ "phpunit/phpunit" : " ^11 .0"
29
29
},
30
30
"minimum-stability" : " stable" ,
31
31
"prefer-stable" : true ,
49
49
]
50
50
}
51
51
}
52
- }
52
+ }
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10 .0/phpunit.xsd"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/11 .0/phpunit.xsd"
4
4
bootstrap =" vendor/autoload.php"
5
5
backupGlobals =" false"
6
6
colors =" true"
7
7
stopOnFailure =" false"
8
8
cacheDirectory =" .phpunit.cache"
9
9
backupStaticProperties =" false"
10
10
>
11
- <coverage >
11
+ <source >
12
12
<include >
13
13
<directory suffix =" .php" >src</directory >
14
14
</include >
15
+ </source >
16
+ <coverage includeUncoveredFiles =" true"
17
+ pathCoverage =" false"
18
+ ignoreDeprecatedCodeUnits =" true"
19
+ disableCodeCoverageIgnore =" true" >
15
20
<report >
16
21
<clover outputFile =" clover.xml" />
17
22
</report >
You can’t perform that action at this time.
0 commit comments