Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ethercreative/telemetry
- Owner: ethercreative
- License: gpl-3.0
- Created: 2019-10-25T13:47:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-19T15:45:19.000Z (about 5 years ago)
- Last Synced: 2024-04-29T17:06:54.833Z (8 months 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 {
# ...
}
```