Skip to content

Commit 95c13dd

Browse files
authored
Merge pull request #47 from renoki-co/shift-build-2349
Laravel 9.x
2 parents cf7e171 + b64410f commit 95c13dd

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@
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": {

tests/RatingTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)