setono/google-analytics-events

A library that eases the generation of Google Analytics events

v1.0.0-rc 2023-09-12 09:23 UTC

This package is auto-updated.

Last update: 2024-04-12 10:36:40 UTC


README

Latest Version Software License Build Status Code Coverage Mutation testing

Easily build Google Analytics 4 Events.

Installation

composer require setono/google-analytics-events

Usage

use Setono\GoogleAnalyticsEvents\Event\PurchaseEvent;
use Setono\GoogleAnalyticsEvents\Writer\GtagWriter;

$event = PurchaseEvent::create('TRANS_1234')
    ->setCurrency('USD')
    ->setValue(123.45)
    ->setTax(10.45)
    ->setShipping(3.32)
    ->addItem(Item::create()->setId('SKU1234')->setName('Blue t-shirt'))
;

$writer = new GtagWriter();
echo $writer->write($event); // output: gtag("event", "purchase", {"currency":"USD","transaction_id":"TRANS_1234","value":123.45,"shipping":3.32,"tax":10.45,"items":[{"item_id":"SKU1234","item_name":"Blue t-shirt","quantity":1}]});

References