Skip to content

Commit 02c7ae6

Browse files
committed
support for Laravel 11
1 parent d268f2b commit 02c7ae6

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [8.0,8.1,8.2]
14-
laravel: [9.*, 10.*]
13+
php: [8.1,8.2]
14+
laravel: [11.*]
1515
include:
16-
- laravel: 9.*
17-
testbench: 7.*
18-
- laravel: 10.*
19-
testbench: 9.*
16+
- laravel: 11.*
17+
testbench: 10.*
2018

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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to `laravel-paystack-webhooks` will be documented in this file
44

5+
## 3.0 2024-10-25
6+
- Support for Laravel 11
7+
8+
## 2.1.1 2024-04-27
9+
- Updated Paystack webhook header signature
10+
-
511
## 2.1.0 2023-03-04
612
- Support for Laravel 10
713

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.0|^8.1|^8.2",
23+
"php": "^8.1",
2424
"guzzlehttp/guzzle": "^7.3",
25-
"laravel/framework": "^9.0|^10.0"
25+
"laravel/framework": "^11.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^7.0",
29-
"phpunit/phpunit": "^9.0",
30-
"vimeo/psalm": "^4.20"
28+
"orchestra/testbench": "^9.0",
29+
"phpunit/phpunit": "^11.0",
30+
"vimeo/psalm": "^6.0@dev"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)