Skip to content

Commit c5da179

Browse files
authored
Merge pull request #3 from binary-cats/v1.2
Add Support for Laravel 8
2 parents 807cb4d + 0200f50 commit c5da179

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
],
2020
"require": {
2121
"php": "^7.2",
22-
"illuminate/support": "~5.8.0|^6.0|^7.0",
22+
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
2323
"spatie/laravel-webhook-client": "^2.0"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "~3.8.0|^4.0|^5.0",
26+
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.0",
2727
"phpunit/phpunit": "^8.2|^9.0"
2828
},
2929
"autoload": {

src/BigBlueButtonSignatureValidator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function isValid(Request $request, WebhookConfig $config): bool
3939
try {
4040
Webhook::constructEvent($request->all(), $signature, $secret);
4141
} catch (Exception $exception) {
42-
report ($exception);
42+
report($exception);
4343

4444
return false;
4545
}

0 commit comments

Comments
 (0)