Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Latest commit

 

History

History
15 lines (11 loc) · 313 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 313 Bytes

Analytics

This is a small class to post Analytics events from PHP. This is useful for logging and event tracking.

<?php

use Deimos\Analytics\Analytics;

(new Analytics('UAxxxxxxx', 'project.deimos'))
    ->setResource('image.png')
    ->setAction('download')
    ->setLabel('nginx')
    ->track();