Skip to content

Commit 7950190

Browse files
authored
Merge pull request #45 from renoki-co/shift-build-2349
Laravel 9.x
2 parents 51e84e9 + a0530cb commit 7950190

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
php:
20-
- '7.3'
21-
- '7.4'
2221
- '8.0'
22+
- '8.1'
2323
laravel:
24-
- 7.*
2524
- 8.*
25+
- 9.*
2626
prefer:
2727
- 'prefer-lowest'
2828
- 'prefer-stable'
2929
include:
30-
- laravel: '7.*'
31-
testbench: '5.*'
3230
- laravel: '8.*'
3331
testbench: '6.*'
32+
- laravel: '9.*'
33+
testbench: '7.*'
3434

3535
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
3636

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
}
1616
],
1717
"require": {
18-
"illuminate/http": "^7.30|^8.23",
19-
"illuminate/routing": "^7.30|^8.23",
20-
"illuminate/support": "^7.30|^8.23",
18+
"illuminate/http": "^8.83|^9.0.1",
19+
"illuminate/routing": "^8.83|^9.0.1",
20+
"illuminate/support": "^8.83|^9.0.1",
2121
"aws/aws-php-sns-message-validator": "^1.6"
2222
},
2323
"autoload": {
@@ -42,7 +42,9 @@
4242
},
4343
"require-dev": {
4444
"mockery/mockery": "^1.5",
45-
"orchestra/testbench": "^6.24.0"
45+
"orchestra/testbench": "^6.28|^7.0",
46+
"orchestra/testbench-core": "^6.28|^7.0",
47+
"phpunit/phpunit": "^9.5.13"
4648
},
4749
"config": {
4850
"sort-packages": true

src/Http/Controllers/SnsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function handle(Request $request)
2828

2929
if (isset($snsMessage['Type'])) {
3030
if ($snsMessage['Type'] === 'SubscriptionConfirmation') {
31-
file_get_contents($snsMessage['SubscribeURL']);
31+
@file_get_contents($snsMessage['SubscribeURL']);
3232

3333
$class = $this->getSubscriptionConfirmationEventClass();
3434

0 commit comments

Comments
 (0)