dogger/dogger-sdk

There is no license information available for the latest version (dev-main) of this package.

dev-main 2024-05-28 15:28 UTC

This package is not auto-updated.

Last update: 2024-10-01 17:18:56 UTC


README

Logo

Dogger PHP SDK

Package to automatically monitor your app and send not handled errors to your dogger dashboard.

Features

  • Unhandled errors monitoring
  • Tasks performances

Installation

Package need to be installed via composer with this command:

composer require dogger/dogger-sdk

Usage/Examples

<?php

require_once 'vendor/autoload.php';

\Dogger\DoggerSdk\init([
    'key' => 'DOGGER-PROJECT-KEY',
    'env' => 'dev' // or: prod | dev | custom-env
]);