Skip to content

Commit

Permalink
Merge pull request #45 from renoki-co/shift-build-2349
Browse files Browse the repository at this point in the history
Laravel 9.x
  • Loading branch information
rennokki authored Feb 9, 2022
2 parents 51e84e9 + a0530cb commit 7950190
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php:
- '7.3'
- '7.4'
- '8.0'
- '8.1'
laravel:
- 7.*
- 8.*
- 9.*
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
- laravel: '7.*'
testbench: '5.*'
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'

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

Expand Down
10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
}
],
"require": {
"illuminate/http": "^7.30|^8.23",
"illuminate/routing": "^7.30|^8.23",
"illuminate/support": "^7.30|^8.23",
"illuminate/http": "^8.83|^9.0.1",
"illuminate/routing": "^8.83|^9.0.1",
"illuminate/support": "^8.83|^9.0.1",
"aws/aws-php-sns-message-validator": "^1.6"
},
"autoload": {
Expand All @@ -42,7 +42,9 @@
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.24.0"
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.13"
},
"config": {
"sort-packages": true
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Controllers/SnsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function handle(Request $request)

if (isset($snsMessage['Type'])) {
if ($snsMessage['Type'] === 'SubscriptionConfirmation') {
file_get_contents($snsMessage['SubscribeURL']);
@file_get_contents($snsMessage['SubscribeURL']);

$class = $this->getSubscriptionConfirmationEventClass();

Expand Down

0 comments on commit 7950190

Please sign in to comment.