https://github.com/ethercreative/telemetry
A helper for anonymous tracking of Craft CMS plugin usage
https://github.com/ethercreative/telemetry
Last synced: about 1 year ago
JSON representation
A helper for anonymous tracking of Craft CMS plugin usage
- Host: GitHub
- URL: https://github.com/ethercreative/telemetry
- Owner: ethercreative
- License: gpl-3.0
- Created: 2019-10-25T13:47:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-19T15:45:19.000Z (over 6 years ago)
- Last Synced: 2025-02-22T12:34:09.316Z (about 1 year ago)
- Language: PHP
- Size: 19.5 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 {
# ...
}
```