1. Go to this page and download the library: Download statikbe/craft-sentry library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use statikbe\sentry\Sentry;
use yii\base\InvalidConfigException; // Don't copy this line, it's just here to make the example theoractically correct ;)
try {
throw new InvalidConfigException("Something went wrong here...");
} catch (Exception $e) {
Sentry::handleException($e);
}