Skip to content

Commit bc80a83

Browse files
authoredFeb 9, 2022
Merge pull request #32 from renoki-co/shift-build-2349
Laravel 9.x
2 parents dd28b85 + 222d866 commit bc80a83

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed
 

‎.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
php:
22-
- '7.3'
23-
- '7.4'
2423
- '8.0'
24+
- '8.1'
2525
laravel:
26-
- 7.*
2726
- 8.*
27+
- 9.*
2828
prefer:
2929
- 'prefer-lowest'
3030
- 'prefer-stable'
3131
include:
32-
- laravel: '7.*'
33-
testbench: '5.*'
3432
- laravel: '8.*'
3533
testbench: '6.*'
34+
- laravel: '9.*'
35+
testbench: '7.*'
3636

3737
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
3838

‎composer.json

+16-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"name": "renoki-co/laravel-aws-webhooks",
33
"description": "Easy webhook handler for Laravel to catch AWS SNS notifications for various services.",
4-
"keywords": ["laravel", "php", "sns", "aws", "webhooks", "ses", "webhook"],
4+
"keywords": [
5+
"laravel",
6+
"php",
7+
"sns",
8+
"aws",
9+
"webhooks",
10+
"ses",
11+
"webhook"
12+
],
513
"license": "Apache-2.0",
614
"homepage": "https://github.com/renoki-co/laravel-aws-webhooks",
715
"authors": [
@@ -12,9 +20,9 @@
1220
}
1321
],
1422
"require": {
15-
"illuminate/http": "^7.30|^8.23",
16-
"illuminate/support": "^7.30|^8.23",
17-
"rennokki/laravel-sns-events": "^7.0"
23+
"illuminate/http": "^8.83|^9.0.1",
24+
"illuminate/support": "^8.83|^9.0.1",
25+
"rennokki/laravel-sns-events": "^7.1"
1826
},
1927
"autoload": {
2028
"psr-4": {
@@ -31,7 +39,10 @@
3139
},
3240
"require-dev": {
3341
"mockery/mockery": "^1.5",
34-
"orchestra/testbench": "^6.24.0"
42+
"orchestra/testbench": "^6.28|^7.0",
43+
"orchestra/testbench": "^6.28|^7.0",
44+
"orchestra/testbench-core": "^6.28|^7.0",
45+
"phpunit/phpunit": "^9.5.13"
3546
},
3647
"config": {
3748
"sort-packages": true

0 commit comments

Comments
 (0)
Please sign in to comment.