Download the PHP package levelweb/laravel-google-analytics-4-measurement-protocol without Composer
On this page you can find all versions of the php package levelweb/laravel-google-analytics-4-measurement-protocol. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download levelweb/laravel-google-analytics-4-measurement-protocol
More information about levelweb/laravel-google-analytics-4-measurement-protocol
Files in levelweb/laravel-google-analytics-4-measurement-protocol
Package laravel-google-analytics-4-measurement-protocol
Short Description A Laravel package to use Measurement Protocol for Google Analytics 4
License MIT
Homepage https://github.com/levelweb/laravel-google-analytics-4-measurement-protocol
Informations about the package laravel-google-analytics-4-measurement-protocol
Laravel Google Analytics 4 Measurement Protocol
A Laravel package to use Measurement Protocol for Google Analytics 4.
Introduction
This package allows you to post events to Google Analytics 4 from your Laravel backend.
Installation
1) Install the package by running this command in your terminal/cmd:
2) Set MEASUREMENT_ID
and MEASUREMENT_PROTOCOL_API_SECRET
in your .env file.
You can get them from: Google Analytics > Admin > Data Streams > [Select Site] > Measurement Protocol API secrets
3) Optional: You can publish the config file by running this command in your terminal/cmd:
4) client_id
is required to post an event to Google Analytics. This package provides a Blade component which you can put in your layout file after the Google Analytics Code tracking code. It makes a POST request to the backend to store the client id in the session which is later used to post events to Google Analytics 4.
The other option is to call the setClientId($clientId)
method on the GA4
facade everytime before calling the postEvent()
method.
5) You can set user_id
by call setUserId($userId)
method on the GA4
facade everytime before calling the postEvent()
method.
Usage
You can simple call GA4::postEvent($eventData)
from anywhere in your backend to post event to Google Analytics 4. $eventData
contains the name and params of the event as per this reference page. For example:
postEvent()
method will return an array with the status of the request.
Debugging Mode
You can also enable debugging mode by calling enableDebugging()
method before calling the postEvent()
method. Like so - GA4::enableDebugging()->postEvent($eventData)
. The postEvent()
method will return the response (array) from Google Analytics request in that case.
Authors
- Gaurav Makhecha - Initial work
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE file for details
Treeware
You're free to use this package, but if it makes it to your production environment I would highly appreciate you buying the world a tree.
It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you contribute to our forest you’ll be creating employment for local families and restoring wildlife habitats.
You can buy trees at for our forest here offset.earth/treeware
Read more about Treeware at treeware.earth
Special Thanks to
- Laravel Community
All versions of laravel-google-analytics-4-measurement-protocol with dependencies
guzzlehttp/guzzle Version ^6.0|^7.0
illuminate/http Version ^7.0|^8.0
illuminate/view Version ^7.0|^8.0
spatie/laravel-package-tools Version ^1.5