for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\HttpLogger;
use Illuminate\Support\ServiceProvider;
class HttpLoggerServiceProvider extends ServiceProvider
{
public function boot()
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../config/http-logger.php' => config_path('http-logger.php'),
], 'config');
}
$this->app->singleton(LogProfile::class, config('http-logger.log_profile'));
$this->app->singleton(LogWriter::class, config('http-logger.log_writer'));
public function register()
$this->mergeConfigFrom(__DIR__.'/../config/http-logger.php', 'http-logger');