Skip to content

Commit

Permalink
Major bump for laravel support. (#28)
Browse files Browse the repository at this point in the history
* Add support for Laravel 11, drop support for 8+9

* Major bump: Support laravel by extending illuminate handler

* Major bump: Support laravel by extending illuminate handler
  • Loading branch information
LauJosefsen authored Mar 15, 2024
1 parent 6c67de1 commit 2caa89c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
16 changes: 3 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,13 @@
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Nikolaj Boel Jensen",
"email": "[email protected]"
},
{
"name": "Ole Kallehave",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"cego/filebeat-logger": "^2.0.6",
"illuminate/support": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/support": "^11.0",
"illuminate/contracts": "^11.0",
"ext-json": "*",
"illuminate/http": "^10.0|^11.0",
"illuminate/http": "^11.0",
"matomo/device-detector": "^6.2"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/FilebeatLogging/LoggerExceptionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Cego\FilebeatLogging;

use Throwable;
use App\Exceptions\Handler;
use Illuminate\Foundation\Exceptions\Handler;

class LoggerExceptionHandler extends Handler
{
Expand Down

0 comments on commit 2caa89c

Please sign in to comment.