Skip to content

Commit

Permalink
Support for Laravel 12 (#4269)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored Feb 18, 2025
1 parent c7b9e2e commit 4d301e0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@ jobs:
strategy:
matrix:
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
laravel: [11, 10, 9, 8, 7, 6, 5.8]
laravel: [12, 11, 10, 9, 8, 7, 6, 5.8]
dependency-version: [prefer-stable]
os: [ubuntu-latest]
include:
- laravel: 12
scout: 10.*
testbench: 10.*
- laravel: 11
scout: 10.*
testbench: 9.*
Expand All @@ -50,6 +53,12 @@ jobs:
scout: 7.1.*
testbench: 3.8.*
exclude:
- laravel: 12
php: 8.1
- laravel: 12
php: 8.0
- laravel: 12
php: 7.4
- laravel: 11
php: 8.1
- laravel: 11
Expand Down Expand Up @@ -97,7 +106,7 @@ jobs:
- laravel: 5.8
php: 8.3
- laravel: 5.8
php: 8.4
php: 8.4

name: PHP${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"ext-json": "*",
"php": "^7.0||^8.0",
"phpoffice/phpspreadsheet": "^1.29.9",
"illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
"illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0",
"psr/simple-cache": "^1.0||^2.0||^3.0",
"composer/semver": "^3.3"
},
"require-dev": {
"orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
"orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0",
"predis/predis": "^1.1",
"laravel/scout": "^7.0||^8.0||^9.0||^10.0"
},
Expand All @@ -54,4 +54,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 4d301e0

Please sign in to comment.