Skip to content

Commit 84f8496

Browse files
authored
Merge pull request #27 from laravel-shift/l11-compatibility
Laravel 11.x Compatibility
2 parents 39896a4 + b1a166b commit 84f8496

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ on:
99
jobs:
1010
tests:
1111
runs-on: ${{ matrix.os }}
12+
1213
strategy:
1314
fail-fast: false
1415
matrix:
15-
os: [ ubuntu-latest ]
16-
php: [ 8.1, 8.2 ]
17-
laravel: [ 9.*, 10.*]
18-
dependency-version: [ prefer-lowest, prefer-stable ]
16+
os: [ubuntu-latest]
17+
php: [8.1, 8.2]
18+
laravel: ['9.*', '10.*', '11.*']
19+
dependency-version: [prefer-lowest, prefer-stable]
20+
exclude:
21+
- laravel: 11.*
22+
php: 8.1
1923

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

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"php": ">=8.1",
1616
"aws/aws-sdk-php": "^3.69.11",
1717
"guzzlehttp/guzzle": "^6.2.1 || ^7.0",
18-
"illuminate/notifications": "^9.0|^10.0",
19-
"illuminate/support": "^9.0|^10.0"
18+
"illuminate/notifications": "^9.0|^10.0 || ^11.0",
19+
"illuminate/support": "^9.0|^10.0 || ^11.0"
2020
},
2121
"require-dev": {
2222
"mockery/mockery": "^1.5.1",
23-
"phpunit/phpunit": "^9.5.10"
23+
"phpunit/phpunit": "^9.5.10 || ^10.5"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)