Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ethercreative/telemetry

A helper for anonymous tracking of Craft CMS plugin usage
https://github.com/ethercreative/telemetry

Last synced: about 2 months ago
JSON representation

A helper for anonymous tracking of Craft CMS plugin usage

Awesome Lists containing this project

README

        

# Telemetry
A helper for anonymous tracking of Craft CMS plugin usage

## Usage

Add `ether/telemetry` to your composer.json.

```shell script
composer require ether/telemetry
```

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

```php
use ether\telemetry\TelemetryPlugin;

class MyPlugin extends TelemetryPlugin {
# ...
}
```