File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed
Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : {
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments