Skip to content

Commit

Permalink
Merge pull request #27 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
dwightwatson authored Mar 12, 2024
2 parents 39896a4 + b1a166b commit 84f8496
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ on:
jobs:
tests:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ 8.1, 8.2 ]
laravel: [ 9.*, 10.*]
dependency-version: [ prefer-lowest, prefer-stable ]
os: [ubuntu-latest]
php: [8.1, 8.2]
laravel: ['9.*', '10.*', '11.*']
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"php": ">=8.1",
"aws/aws-sdk-php": "^3.69.11",
"guzzlehttp/guzzle": "^6.2.1 || ^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"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.5.10"
"phpunit/phpunit": "^9.5.10 || ^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 84f8496

Please sign in to comment.