ether/telemetry

A helper for anonymous tracking of Craft CMS plugin usage

dev-master 2019-10-28 11:08 UTC

This package is auto-updated.

Last update: 2024-04-20 01:37:05 UTC


README

A helper for anonymous tracking of Craft CMS plugin usage

Usage

Add ether/telemetry to your composer.json.

composer require ether/telemetry

Replace the extends Plugin in your primary plugin file with extends TelemetryPlugin.

use ether\telemetry\TelemetryPlugin;

class MyPlugin extends TelemetryPlugin {
    # ...
}