Skip to content

Commit 8a06ec3

Browse files
committed
Merge branch 'upgrade'
2 parents 20c3da4 + 140ce3c commit 8a06ec3

File tree

3 files changed

+12
-21
lines changed

3 files changed

+12
-21
lines changed

.github/workflows/tests.yml

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

2319
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2420

2521
steps:
2622
- name: Checkout code
27-
uses: actions/checkout@v1
23+
uses: actions/checkout@v2.4.0
2824

2925
- name: Cache dependencies
3026
uses: actions/cache@v1

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-webhooks` will be documented in this file
44

5+
## 2.0.0 2022-02-10
6+
- Support for Laravel 9
7+
58
## 1.2.0 2021-07-16
69
- Support for Guzzle 7.3
710

composer.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,14 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.4",
24-
"ext-json": "^7.4",
23+
"php": "^8.0|^8.1",
2524
"guzzlehttp/guzzle": "^7.3",
26-
"illuminate/contracts": "^7.15|^8.0",
27-
"illuminate/http": "^7.15|^8.0",
28-
"illuminate/notifications": "^7.15|^8.0",
29-
"illuminate/routing": "^7.15|^8.0",
30-
"illuminate/support": "^7.15|^8.0",
31-
"symfony/http-kernel": "^5.1"
25+
"laravel/framework": "^9.0"
3226
},
3327
"require-dev": {
34-
"friendsofphp/php-cs-fixer": "^2.16",
35-
"orchestra/testbench": "^5.0",
28+
"orchestra/testbench": "^7.0",
3629
"phpunit/phpunit": "^9.0",
37-
"psalm/plugin-laravel": "^1.2",
38-
"vimeo/psalm": "^3.11"
30+
"vimeo/psalm": "^4.20"
3931
},
4032
"autoload": {
4133
"psr-4": {

0 commit comments

Comments
 (0)