Skip to content

Commit

Permalink
Merge pull request #55 from laravel-shift/l12-compatibility
Browse files Browse the repository at this point in the history
Laravel 12.x Compatibility
  • Loading branch information
freekmurze authored Feb 21, 2025
2 parents 35b0dfd + 2d93f1e commit 75ec09a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1]
laravel: ['10.*', '11.*']
laravel: ['10.*', '11.*', '12.*']
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*
exclude:
- laravel: 11.*
php: 8.1
- laravel: 12.*
php: 8.1

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0",
"illuminate/console": "^10.10.0|^11.0",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/console": "^10.10.0|^11.0|^12.0",
"spatie/laravel-package-tools": "^1.13.6",
"spatie/url-signer": "^2.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^1.22.2|^1.22|^2.34"
"orchestra/testbench": "^8.0|^9.0|^10.0",
"pestphp/pest": "^1.22.2|^1.22|^2.34|^3.7"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 75ec09a

Please sign in to comment.