wiebekn/dawilog-php

client for dawilog

Maintainers

Package info

github.com/kloostermanw/dawilog-php

pkg:composer/wiebekn/dawilog-php

Transparency log

Statistics

Installs: 2 803

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.1 2026-07-11 21:11 UTC

README

install

composer require wiebekn/dawilog-php

add to .env

DAWILOG_DSN=

config/app.php

Dawilog\Laravel\ServiceProvider::class,

app/Exceptions/Handler.php (Laravel 8)

    public function register()
    {
        $this->reportable(function (Throwable $e) {
            if (app()->bound('dawilog') && $this->shouldReport($e)) {
                app('dawilog')->sendException($e);
            }
        });
    }

app/Exceptions/Handler.php (Laravel 7)

    public function report(Throwable $exception)
    {
        if (app()->bound('dawilog') && $this->shouldReport($exception)) {
            app('dawilog')->sendException($exception);
        }

        parent::report($exception);
    }

app/Exceptions/Handler.php (Laravel 5 & 6)

    public function report(Exception $exception)
    {
        if ($this->shouldReport($exception) && app()->bound('dawilog')) {
            app('dawilog')->sendException($exception);
        }
    
        parent::report($exception);
    }

config/dawilog.php

php artisan vendor:publish --provider="Dawilog\Laravel\ServiceProvider" --tag="config"