Skip to content

Commit

Permalink
Merge pull request #11 from Ben-Ro/master
Browse files Browse the repository at this point in the history
Add Laravel 12 support
  • Loading branch information
mxschll authored Feb 27, 2025
2 parents f154d48 + 35afbdb commit 7dca7cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [ 8.3, 8.2 ]
laravel: [ '10.*', '11.*' ]
php: [ 8.4, 8.3, 8.2 ]
laravel: [ '10.*', '11.*', '12.*' ]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 12.*
testbench: 10.*
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.1",
"illuminate/notifications": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0"
"illuminate/notifications": "^10.0 || ^11.0 || ^12.0",
"illuminate/support": "^10.0 || ^11.0 || ^12.0"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^10.5|^11.0"
"phpunit/phpunit": "^10.5|^11.0|^12.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 7dca7cc

Please sign in to comment.