Download the PHP package viezel/laravel-amplitude without Composer
On this page you can find all versions of the php package viezel/laravel-amplitude. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download viezel/laravel-amplitude
More information about viezel/laravel-amplitude
Files in viezel/laravel-amplitude
Package laravel-amplitude
Short Description A Laravel package to work with Amplitude.
License MIT
Homepage https://github.com/viezel/laravel-amplitude
Informations about the package laravel-amplitude
Laravel package for Amplitude API.
Installation
The AMPLITUDE_API_URL
is either US or EU based. Please pay attention.
Usage
Laravel Amplitude uses a simple syntax to track your product events easily.
Setting the User Id
First of all, before sending anything, you will need to set the User ID.
Note: setting the user id is MANDATORY. Otherwise, you will get an error when trying to send data to Amplitude.
Sending Events
Once the user id is set, you are ready to send events to your Amplitude project.
Also, you can change the user properties with the dedicated method setUserProperties
:
IMPORTANT: the properties will be sent to Amplitude at the next sendEvent
call. Without any other call to sendEvent
, the new user properties are not going to be saved.
Queueing Events
If send a lot of events and you want to keep your performances good, you may choose events queueing instead of the simple sending you just saw.
With events queueing, you will send all your events once the request is over, instead of making different API calls during the request lifecycle.
To use it, just switch your sendEvent
calls to queueEvent
method.
Nothing more to do! When the request will be finished, Laravel Amplitude will automatically trigger the send operation of your data.
However, if you want more control and you want to send your queued events in your code, you can do it manually with a call to the sendQueuedEvents
method.
Credits
- Francesco Malatesta
- All Contributors
All versions of laravel-amplitude with dependencies
illuminate/support Version ^9.0|^10.0|^11.0
viezel/amplitude-php-sdk Version ^1.0