binarcode / laravel-segment
A Laravel wrapper for the Segment API and events tracking.
Fund package maintenance!
binarcode
Installs: 173 541
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 5
Forks: 3
Open Issues: 2
Requires
- php: ^8.0|^8.1
- segmentio/analytics-php: ^2.0
- spatie/data-transfer-object: ^3.7
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- nunomaduro/collision: ^5.3|^6.1|^7.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^6.15|^7.0|^8.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2024-10-23 05:50:49 UTC
README
Segment simplifies the process of collecting data and connecting new tools, allowing you to spend more time using your data, and less time trying to collect it. You can use Segment to track events that happen when a user interacts with the interfaces. “Interfaces” is Segment’s generic word for any digital properties you own: your website, mobile apps, and processes that run on a server or OTT device.
Official documentation
Installation
You can install the package via composer:
composer require binarcode/laravel-segment
You can publish and run the migrations with:
php artisan vendor:publish --tag="segment-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="segment-config"
This is the contents of the published config file:
return [ /** * The queue name where the segment events will be dispatched. */ 'queue' => env('SEGMENT_QUEUE', env('QUEUE_CONNECTION', 'sync')), /** * Segment API key [see: https://segment.com/docs/connections/sources/catalog/libraries/server/php/#identify]. */ 'key' => env('SEGMENT_KEY', ''), ];
Usage
Track event
BinarCode\LaravelSegment\Facades\LaravelSegment::track('click')->properties([...])
Alias anonymous id to a real user id
BinarCode\LaravelSegment\Facades\LaravelSegment::alias($previous, $userId);
The Segment Identify
BinarCode\LaravelSegment\Facades\LaravelSegment::identify($userId, $data);
The Segment Identify call lets you tie a user to their actions and record traits about them. It includes a unique User ID and any optional traits you know about the user, like their email, name, and more.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.