File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed
Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -14,22 +14,22 @@ jobs:
1414 build :
1515 runs-on : ubuntu-latest
1616 strategy :
17+ fail-fast : false
1718 matrix :
1819 php :
19- - ' 7.3'
20- - ' 7.4'
2120 - ' 8.0'
21+ - ' 8.1'
2222 laravel :
23- - 7.*
24- - 8.*
23+ - ' 8.* '
24+ - ' 9.* '
2525 prefer :
2626 - ' prefer-lowest'
2727 - ' prefer-stable'
2828 include :
29- - laravel : ' 7.*'
30- testbench : ' 5.*'
3129 - laravel : ' 8.*'
3230 testbench : ' 6.*'
31+ - laravel : ' 9.*'
32+ testbench : ' 7.*'
3333
3434 name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
3535
Original file line number Diff line number Diff line change 2222 }
2323 ],
2424 "require" : {
25- "illuminate/database" : " ^7.30|^8.23 " ,
26- "illuminate/support" : " ^7.30|^8.23 "
25+ "illuminate/database" : " ^8.83|^9.0.1 " ,
26+ "illuminate/support" : " ^8.83|^9.0.1 "
2727 },
2828 "require-dev" : {
2929 "laravel/legacy-factories" : " ^1.3" ,
3030 "mockery/mockery" : " ^1.5" ,
31- "orchestra/testbench" : " ^6.24.0" ,
32- "orchestra/database" : " ^5.0|^6.0"
31+ "orchestra/testbench" : " ^6.28|^7.0" ,
32+ "orchestra/testbench-core" : " ^6.28|^7.0" ,
33+ "phpunit/phpunit" : " ^9.5.13"
3334 },
3435 "autoload" : {
3536 "psr-4" : {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class RatingTest extends TestCase
1313 protected $ page ;
1414 protected $ simplePage ;
1515
16- public function setUp (): void
16+ protected function setUp (): void
1717 {
1818 parent ::setUp ();
1919
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ abstract class TestCase extends Orchestra
1313 *
1414 * @return void
1515 */
16- public function setUp (): void
16+ protected function setUp (): void
1717 {
1818 parent ::setUp ();
1919
You can’t perform that action at this time.
0 commit comments