Skip to content

Commit

Permalink
Merge pull request #142 from hihuangwei/patch-1
Browse files Browse the repository at this point in the history
support Laravel 10.0
  • Loading branch information
freekmurze authored Jan 25, 2023
2 parents 4a43d91 + cba4826 commit 1f9e2b4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,25 @@ jobs:
fail-fast: true
matrix:
php: [8.2, 8.1, 8.0]
laravel: [9.*, 8.*]
laravel: [10.*, 9.*, 8.*]
os: [ubuntu-latest]
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: ^6.23
exclude:
- laravel: 10.*
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.3",
"illuminate/bus": "^8.50|^9.0",
"illuminate/queue": "^8.50|^9.0",
"illuminate/support": "^8.50|^9.0",
"illuminate/bus": "^8.50|^9.0|^10.0",
"illuminate/queue": "^8.50|^9.0|^10.0",
"illuminate/support": "^8.50|^9.0|^10.0",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
Expand Down Expand Up @@ -62,4 +62,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 1f9e2b4

Please sign in to comment.