Skip to content

Commit

Permalink
Merge pull request #131 from ankurk91/laravel-10
Browse files Browse the repository at this point in the history
add support for laravel 10
  • Loading branch information
freekmurze authored Jan 17, 2023
2 parents dc6a013 + 053084c commit 119e847
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: run-tests

on: [push]
on: [push, pull_request]

jobs:
test:
Expand All @@ -10,13 +10,19 @@ jobs:
fail-fast: true
matrix:
php: [8.2, 8.1, 8.0]
laravel: [9.*, 8.*]
laravel: [10.*, 9.*, 8.*]
dependency-version: [prefer-lowest, 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 }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": "^8.0",
"openspout/openspout": "^4.8",
"illuminate/support": "^8.71|^9.0"
"illuminate/support": "^8.71|^9.0|^10.0"
},
"require-dev": {
"pestphp/pest-plugin-laravel": "^1.3",
Expand Down

0 comments on commit 119e847

Please sign in to comment.