Skip to content

Commit

Permalink
Bump supported versions (will require major version)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonysm committed Mar 11, 2024
1 parent d8a9db9 commit a00ef1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,21 @@ on: [push, pull_request]

jobs:
test:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
dependency-version: [prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- php: 8.0
laravel: 10.*
- php: 8.0
laravel: 11.*
- php: 8.1
laravel: 11.*
- php: 8.3
laravel: 9.*

name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
}
],
"require": {
"php": "^8.0",
"illuminate/database": "^9.0||^10.0||^11.0",
"illuminate/events": "^9.0||^10.0||^11.0"
"php": "^8.1",
"illuminate/database": "^10.0||^11.0",
"illuminate/events": "^10.0||^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0||^8.0||^9.0",
"orchestra/testbench": "^8.0||^9.0",
"phpunit/phpunit": "^10.5",
"tightenco/duster": "^2.7"
},
Expand Down

0 comments on commit a00ef1f

Please sign in to comment.