Skip to content

Commit 3820d5e

Browse files
committed
Add php 8.3 support
1 parent fb807dd commit 3820d5e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.1, 8.2]
16+
php: [8.1, 8.2, 8.3]
1717
laravel: [9.*, 10.*, 11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `laravel-notification-event-subscriber` will be documented in this file.
44

5+
## 1.3.0 - 2024-12-18
6+
- Added Laravel 11 and PHP 8.3 supports.
7+
58
## 1.2.0 - 2022-09-27
69
- Added `$notifiable` parameter of the `NotificationSent` and `NotificationSending` events to `onSent()` and `enSending()` methods.
710

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1 | ^8.2",
19+
"php": "^8.1 | ^8.2 | ^8.3",
2020
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0"
2121
},
2222
"require-dev": {

0 commit comments

Comments
 (0)