Skip to content

Commit a5bbc1c

Browse files
authored
Merge pull request #5 from binary-cats/cyrillkalita-patch-1
Upgrade to php 8 support
2 parents c5da179 + 5d5c6f2 commit a5bbc1c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.2",
21+
"php": "^7.2||^8.0",
2222
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
2323
"spatie/laravel-webhook-client": "^2.0"
2424
},

Diff for: tests/TestCase.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ protected function getPackageProviders($app)
5656

5757
protected function disableExceptionHandling()
5858
{
59-
$this->app->instance(ExceptionHandler::class, new class extends Handler {
59+
$this->app->instance(ExceptionHandler::class, new class extends Handler
60+
{
6061
public function __construct()
6162
{
6263
}

0 commit comments

Comments
 (0)