Skip to content

Commit

Permalink
Fix for serializable config (#24)
Browse files Browse the repository at this point in the history
* Fix for serializable config

* Fix for serializable config
  • Loading branch information
LauJosefsen authored Feb 19, 2024
1 parent 2a571aa commit 273a8bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
"require": {
"php": "^8.2",
"cego/filebeat-logger": "^2.0.5",
"cego/filebeat-logger": "^2.0.6",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0",
"ext-json": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/FilebeatLogging/FilebeatLoggingServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function register(): void
'extras' => json_decode(env('FILEBEAT_LOGGER_EXTRAS', '{}'), associative: true, flags: JSON_THROW_ON_ERROR),
'stream' => env('FILEBEAT_LOGGER_STREAM', 'php://stdout'),
'rotating' => env('FILEBEAT_LOGGER_ROTATING', false),
'httpContextProcessor' => new RequestProcessor(),
'httpContextProcessor' => RequestProcessor::class,
'via' => FilebeatLoggerFactory::class,
];

Expand Down

0 comments on commit 273a8bd

Please sign in to comment.