File tree 4 files changed +15
-35
lines changed
4 files changed +15
-35
lines changed Original file line number Diff line number Diff line change 16
16
- name : Setup PHP
17
17
uses : shivammathur/setup-php@v2
18
18
with :
19
- php-version : ' 8.0 '
19
+ php-version : ' 8.1 '
20
20
coverage : none
21
21
22
22
- name : Install composer dependencies
Original file line number Diff line number Diff line change 9
9
fail-fast : true
10
10
matrix :
11
11
os : [ubuntu-latest]
12
- php : [8.0 ]
13
- laravel : [9.* ]
12
+ php : [8.1 ]
13
+ laravel : [^10.0 ]
14
14
stability : [prefer-stable]
15
15
include :
16
- - laravel : 9.*
17
- testbench : 7.*
16
+ - laravel : ^10.0
17
+ testbench : ^8.0
18
18
19
19
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
20
20
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^8.0" ,
20
- "illuminate/support" : " ^9.0" ,
19
+ "php" : " ^8.0|^8.1 " ,
20
+ "illuminate/support" : " ^9.0|^10.0 " ,
21
21
"laravel/slack-notification-channel" : " ^2.4" ,
22
22
"ext-json" : " *"
23
23
},
24
24
"require-dev" : {
25
25
"friendsofphp/php-cs-fixer" : " ^3.2" ,
26
- "laravel/sanctum" : " ^2.8 " ,
27
- "orchestra/testbench" : " ^7 .0" ,
28
- "phpunit/phpunit" : " ^9.3 " ,
26
+ "laravel/sanctum" : " ^3.2 " ,
27
+ "orchestra/testbench" : " ^8 .0" ,
28
+ "phpunit/phpunit" : " ^10.0 " ,
29
29
"symfony/stopwatch" : " ^4.4|^5.0" ,
30
- "nunomaduro/larastan" : " ^2.0 " ,
30
+ "nunomaduro/larastan" : " ^2.4 " ,
31
31
"phpstan/extension-installer" : " ^1.1"
32
32
},
33
33
"autoload" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- bootstrap =" vendor/autoload.php"
2
+ <phpunit bootstrap =" vendor/autoload.php"
3
+ backupGlobals =" false"
5
4
colors =" true"
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation =" false"
10
- stopOnFailure =" false"
11
- verbose =" true"
12
- >
5
+ stopOnFailure =" false" >
13
6
<testsuites >
14
- <testsuite name =" Binarcode Test Suite" >
7
+ <testsuite name =" BinarCode Test Suite" >
15
8
<directory >tests</directory >
16
9
</testsuite >
17
10
</testsuites >
18
- <coverage >
19
- <include >
20
- <directory suffix =" .php" >./src</directory >
21
- </include >
22
- <report >
23
- <html outputDirectory =" build/coverage" />
24
- <text outputFile =" build/coverage.txt" />
25
- <clover outputFile =" build/logs/clover.xml" />
26
- </report >
27
- </coverage >
28
- <logging >
29
- <junit outputFile =" build/report.junit.xml" />
30
- </logging >
31
11
</phpunit >
You can’t perform that action at this time.
0 commit comments