Skip to content

Commit

Permalink
Add back support for Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
harrygulliford committed Oct 16, 2024
1 parent 1a06604 commit 722c1f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.3, 8.2]
laravel: [11.*]
laravel: [11.*, 10.*]
stability: [prefer-lowest, prefer-stable]
firebird: [v5.0, v4.0, v3.0, v2.5.9-sc]
include:
- laravel: 11.*
testbench: ^9.0
- laravel: 10.*
testbench: ^8.0
fail-fast: false

name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, Firebird ${{ matrix.firebird }}, ${{ matrix.stability }}
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/container": "^11.0",
"illuminate/database": "^11.0",
"illuminate/events": "^11.0"
"illuminate/support": "^10.34|^11.0",
"illuminate/container": "^10.34|^11.0",
"illuminate/database": "^10.34|^11.0",
"illuminate/events": "^10.34|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^11.1",
"orchestra/testbench": "^9.0",
"orchestra/testbench": "^8.0|^9.0",
"fakerphp/faker": "^1.23"
},
"archive": {
Expand Down

0 comments on commit 722c1f1

Please sign in to comment.