Skip to content

Commit 6c817a2

Browse files
authored
Merge pull request #11 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents f9a936f + 0bedee8 commit 6c817a2

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: tests
22

3-
on: [push, pull_request]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68
tests:
@@ -10,10 +12,12 @@ jobs:
1012
fail-fast: true
1113
matrix:
1214
php: [8.1, 8.2, 8.3]
13-
laravel: [10.*, 11.*]
15+
laravel: ['10.*', '11.*', '12.*']
1416
exclude:
1517
- laravel: 11.*
1618
php: 8.1
19+
- laravel: 12.*
20+
php: 8.1
1721

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"require": {
1717
"php": "^7.1.3|^8.0",
1818
"guzzlehttp/guzzle": "^6.0|^7.0",
19-
"illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
19+
"illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
2020
"laravel/slack-notification-channel": "^2.0|^3.2"
2121
},
2222
"require-dev": {

0 commit comments

Comments
 (0)