File tree Expand file tree Collapse file tree 5 files changed +15
-15
lines changed Expand file tree Collapse file tree 5 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- php : [8.0 , 8.1 ]
11
+ php : [8.1 , 8.2 ]
12
12
stability : [prefer-lowest, prefer-stable]
13
13
14
14
name : PHP ${{ matrix.php }} / ${{ matrix.stability }}
Original file line number Diff line number Diff line change 1
1
/.idea
2
+ /.phpunit.cache
2
3
/.vscode
3
4
/vendor
4
5
.DS_Store
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ Laravel-specific Testing Helpers and Assertions.
17
17
18
18
| Laravel | Testing Tools |
19
19
| ---------| --------------------------------------------------------------------------|
20
+ | 11.x | [ Support ☕] ( https://buymeacoffee.com/dmitry.ivanov ) |
21
+ | 10.x | [ 10.x] ( https://github.com/dmitry-ivanov/laravel-testing-tools/tree/10.x ) |
20
22
| 9.x | [ 9.x] ( https://github.com/dmitry-ivanov/laravel-testing-tools/tree/9.x ) |
21
23
| 8.x | [ 8.x] ( https://github.com/dmitry-ivanov/laravel-testing-tools/tree/8.x ) |
22
24
| 7.x | [ 7.x] ( https://github.com/dmitry-ivanov/laravel-testing-tools/tree/7.x ) |
Original file line number Diff line number Diff line change 12
12
"email" : " dmitry.g.ivanov@gmail.com"
13
13
}],
14
14
"require" : {
15
- "php" : " ^8.0.2 " ,
16
- "illuminate/database" : " ^9 .0" ,
17
- "illuminate/support" : " ^9 .0" ,
18
- "mockery/mockery" : " ^1.4.4 "
15
+ "php" : " ^8.1 " ,
16
+ "illuminate/database" : " ^10 .0" ,
17
+ "illuminate/support" : " ^10 .0" ,
18
+ "mockery/mockery" : " ^1.5.1 "
19
19
},
20
20
"require-dev" : {
21
- "phpunit/phpunit" : " ^9.5.10 " ,
22
- "orchestra/testbench" : " ^7 .0"
21
+ "phpunit/phpunit" : " ^10.0.7 " ,
22
+ "orchestra/testbench" : " ^8 .0"
23
23
},
24
24
"autoload" : {
25
25
"psr-4" : {
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" xsi : noNamespaceSchemaLocation =" ./vendor/ phpunit/phpunit /phpunit.xsd"
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema. phpunit.de/10.5 /phpunit.xsd"
3
3
backupGlobals =" false"
4
- backupStaticAttributes =" false"
4
+ backupStaticProperties =" false"
5
5
beStrictAboutTestsThatDoNotTestAnything =" false"
6
6
beStrictAboutOutputDuringTests =" true"
7
7
bootstrap =" vendor/autoload.php"
8
+ cacheDirectory =" .phpunit.cache"
8
9
colors =" true"
9
- convertErrorsToExceptions =" true"
10
- convertNoticesToExceptions =" true"
11
- convertWarningsToExceptions =" true"
12
10
processIsolation =" false"
13
11
stopOnError =" false"
14
12
stopOnFailure =" false"
15
- verbose =" true"
16
13
>
17
14
<testsuites >
18
15
<testsuite name =" Laravel Testing Tools Test Suite" >
19
16
<directory suffix =" Test.php" >./tests</directory >
20
17
</testsuite >
21
18
</testsuites >
22
19
23
- <coverage processUncoveredFiles = " true " >
20
+ <source >
24
21
<include >
25
22
<directory suffix =" .php" >./src</directory >
26
23
</include >
27
- </coverage >
24
+ </source >
28
25
</phpunit >
You can’t perform that action at this time.
0 commit comments