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 88 strategy :
99 fail-fast : false
1010 matrix :
11- php : [8.0 , 8.1 ]
11+ php : [8.1 , 8.2 ]
1212 stability : [prefer-lowest, prefer-stable]
1313
1414 name : PHP ${{ matrix.php }} / ${{ matrix.stability }}
Original file line number Diff line number Diff line change 11/.idea
2+ /.phpunit.cache
23/.vscode
34/vendor
45.DS_Store
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ Laravel-specific Testing Helpers and Assertions.
1717
1818| Laravel | Testing Tools |
1919| ---------| --------------------------------------------------------------------------|
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 ) |
2022| 9.x | [ 9.x] ( https://github.com/dmitry-ivanov/laravel-testing-tools/tree/9.x ) |
2123| 8.x | [ 8.x] ( https://github.com/dmitry-ivanov/laravel-testing-tools/tree/8.x ) |
2224| 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 12121313 }],
1414 "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 "
1919 },
2020 "require-dev" : {
21- "phpunit/phpunit" : " ^9.5.10 " ,
22- "orchestra/testbench" : " ^7 .0"
21+ "phpunit/phpunit" : " ^10.0.7 " ,
22+ "orchestra/testbench" : " ^8 .0"
2323 },
2424 "autoload" : {
2525 "psr-4" : {
Original file line number Diff line number Diff line change 11<?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"
33 backupGlobals =" false"
4- backupStaticAttributes =" false"
4+ backupStaticProperties =" false"
55 beStrictAboutTestsThatDoNotTestAnything =" false"
66 beStrictAboutOutputDuringTests =" true"
77 bootstrap =" vendor/autoload.php"
8+ cacheDirectory =" .phpunit.cache"
89 colors =" true"
9- convertErrorsToExceptions =" true"
10- convertNoticesToExceptions =" true"
11- convertWarningsToExceptions =" true"
1210 processIsolation =" false"
1311 stopOnError =" false"
1412 stopOnFailure =" false"
15- verbose =" true"
1613>
1714 <testsuites >
1815 <testsuite name =" Laravel Testing Tools Test Suite" >
1916 <directory suffix =" Test.php" >./tests</directory >
2017 </testsuite >
2118 </testsuites >
2219
23- <coverage processUncoveredFiles = " true " >
20+ <source >
2421 <include >
2522 <directory suffix =" .php" >./src</directory >
2623 </include >
27- </coverage >
24+ </source >
2825</phpunit >
You can’t perform that action at this time.
0 commit comments