Skip to content

Commit

Permalink
laravel 12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
arukompas committed Feb 19, 2025
1 parent 876166d commit 1a94608
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,19 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1, 8.0]
laravel: [9.*, 10.*, 11.*]
laravel: [9.*, 10.*, 11.*, 12.*]
stability: [prefer-lowest, prefer-stable]
exclude:
- php: 8.0
laravel: 10.*
- php: 8.0
laravel: 11.*
- php: 8.0
laravel: 12.*
- php: 8.1
laravel: 11.*
- php: 8.1
laravel: 12.*
- php: 8.2
laravel: 9.*
include:
Expand All @@ -38,6 +42,10 @@ jobs:
testbench: 9.*
pest: 2.*
collision: 8.*
- laravel: 12.*
testbench: 10.*
pest: 3.*
collision: 8.*

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
],
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"opcodesio/mail-parser": "^0.1.6"
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
"opcodesio/mail-parser": "^0.1.6|^0.2"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"itsgoingd/clockwork": "^5.1",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^7.6|^8.0|^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"orchestra/testbench": "^7.6|^8.0|^9.0|^10.0",
"pestphp/pest": "^2.0|^3.7",
"pestphp/pest-plugin-laravel": "^2.0|^3.1",
"spatie/test-time": "^1.3"
},
"suggest": {
Expand Down

0 comments on commit 1a94608

Please sign in to comment.