Skip to content

Commit

Permalink
Merge pull request #11 from ankurk91/laravel-11
Browse files Browse the repository at this point in the history
feat: allow laravel 11
  • Loading branch information
dwightwatson authored Mar 7, 2024
2 parents 4ef346e + ba71717 commit e78649d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [9.*, 10.*]
php: [8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
- laravel: 10.*
- laravel: 11.*
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"illuminate/notifications": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/notifications": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"laravel/vonage-notification-channel": "^3.2"
},
"require-dev": {
Expand Down

0 comments on commit e78649d

Please sign in to comment.