Skip to content

Commit 0792593

Browse files
committed
support for Laravel 11
1 parent 8243699 commit 0792593

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.github/workflows/tests.yml

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

1616
include:
17-
- laravel: 9.*
18-
testbench: 7.*
19-
- laravel: 10.*
20-
testbench: 9.*
17+
- laravel: 11.*
18+
testbench: 10.*
2119

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

CHANGELOG.md

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

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

5+
## 3.0 - 2024-10-05
6+
- Support for Laravel 11
7+
-
58
## 2.1.0 - 2023-03-04
69
- Support for Laravel 10
710

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.0|^8.1",
24-
"digikraaft/laravel-paystack-webhooks": "^2.1",
23+
"php": "^8.2",
24+
"digikraaft/laravel-paystack-webhooks": "^3.0",
2525
"digikraaft/paystack-php": "^2.2",
26-
"laravel/framework": "^9.0|^10.0"
26+
"laravel/framework": "^11.0"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^9.5",
30-
"vimeo/psalm": "^4.24",
31-
"orchestra/testbench": "^7.6"
29+
"phpunit/phpunit": "^11.0",
30+
"vimeo/psalm": "^6.0@dev",
31+
"orchestra/testbench": "^9.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)