Skip to content

Commit

Permalink
Merge pull request #47 from renoki-co/shift-build-2349
Browse files Browse the repository at this point in the history
Laravel 9.x
  • Loading branch information
rennokki authored Feb 9, 2022
2 parents cf7e171 + b64410f commit 95c13dd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- '7.3'
- '7.4'
- '8.0'
- '8.1'
laravel:
- 7.*
- 8.*
- '8.*'
- '9.*'
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
- laravel: '7.*'
testbench: '5.*'
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}

Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@
}
],
"require": {
"illuminate/database": "^7.30|^8.23",
"illuminate/support": "^7.30|^8.23"
"illuminate/database": "^8.83|^9.0.1",
"illuminate/support": "^8.83|^9.0.1"
},
"require-dev": {
"laravel/legacy-factories": "^1.3",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.24.0",
"orchestra/database": "^5.0|^6.0"
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.13"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/RatingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class RatingTest extends TestCase
protected $page;
protected $simplePage;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract class TestCase extends Orchestra
*
* @return void
*/
public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit 95c13dd

Please sign in to comment.