qodenl/laravel-posthog
Composer 安装命令:
composer require qodenl/laravel-posthog
包简介
Laravel implementation for Posthog
README 文档
README
This package provides a simple integration of Posthog in Laravel applications.
The package covers both Identify as Capture (events) requests which can be triggered manual or automatically using an Event Listener.
You can also easily integrate Feature Flags within your application.
This package uses the PostHog / posthog-php package. For more information about Posthog, check their documentation.
Installation
You can install the package via composer:
composer require qodenl/laravel-posthog
You can publish the config file with:
php artisan vendor:publish --provider="QodeNL\LaravelPosthog\PosthogServiceProvider"
After publishing the content, set your API key and Host in your .env file:
POSTHOG_KEY= POSTHOG_HOST=https://posthog.com POSTHOG_ENABLED=true
Make sure you copy the correct host from Posthog.
Posthog is enabled by default, but you can disable it with the POSTHOG_ENABLED env variable.
Make sure to disable Posthog for local/testing environments.
Usage
Manual events
use QodeNL\LaravelPosthog\Facades\Posthog; Posthog::capture('event name', ['property' => 'value']);
Automatic events
You can add the PosthogListener::class listener to your EventServiceProvider. The package will create an capture automatically when the event happens.
By default, all fillable attributes from a model (available in the event) will be sent to Posthog as properties.
You can specify which attributes you want to send to Posthog by adding a PosthogAttributes property to your Model.
public $posthogAttributes = [ 'first_name', 'last_name', ];
Attributes in the hidden property will always be ignored.
Identify
Events will be sent to Posthog with a unique ID for anonymous users. When the user is recognized (usually on log in),
you should trigger the identify method to link the unique ID to the user.
You can pass additional information about the user to be stored in his profile.
use QodeNL\LaravelPosthog\Facades\Posthog; Posthog::identify('email@user.com', ['first_name' => 'John', 'last_name' => 'Doe']);
Alias
If you want to assign a session ID to a user (for example a front-end session ID) you can use the alias method.
The Session ID argument will be assigned to the auto-generated ID of the user.
Posthog::alias('Session ID here');
Group analytics
You can associate events with a group (e.g. a company, team or project) by setting the group type and key. Once set, all subsequent capture calls will include the group automatically.
use QodeNL\LaravelPosthog\Facades\Posthog; Posthog::setGroup('company', 'company_id_5'); Posthog::capture('page_view', ['url' => '/dashboard']); // includes the group
You can set multiple groups at once by chaining the method:
Posthog::setGroup('company', 'company_id_5')->setGroup('project', 'project_id_8');
Group identify
To create a new group, or update properties on a group, by using the updateOrCreateGroup method:
Posthog::updateOrCreateGroup('company', 'company_id_5', ['name' => 'Acme Inc', 'plan' => 'enterprise']);
You can also pass group properties as a third argument to setGroup. This will automatically call updateOrCreateGroup to sync the group properties with PostHog:
Posthog::setGroup('company', 'company_id_5', ['name' => 'Acme Inc', 'plan' => 'enterprise']);
For more information about group analytics, check the Posthog PHP documentation.
Feature flags
Laravel Pennant
This package also includes a custom driver for the Laravel Pennant package. With this custom driver, you can use Laravel Pennant and listen to the feature flags set in Posthog.
To use this driver, simply add the following to your .env file. You don't need to create the database migration.
PENNANT_STORE=posthog
Also, add the store to the stores array in config/pennant.php:
'stores' => [ 'posthog' => [ 'driver' => 'posthog', ], ],
You can use the Laravel Pennant package as you would normally do. However, some features, like enabling a feature for a user, are not supported by the Posthog driver. A PosthogFeatureException will be thrown when you try to use these features.
Example: Check if feature is enabled
Laravel\Pennant\Feature::active('myFeatureFlagKey'); // true
Check feature flags
If you don't want to use Laravel Pennant, you can also implement the feature flags using our Facade:
Get all feature flags
use QodeNL\LaravelPosthog\Facades\Posthog; Posthog::getAllFlags();
Get all feature flags with boolean if enabled for user or not.
Check if feature is enabled
use QodeNL\LaravelPosthog\Facades\Posthog; Posthog::isFeatureEnabled('myFeatureFlagKey');
Check if feature is enabled for user. Returns boolean.
Get feature flag
use QodeNL\LaravelPosthog\Facades\Posthog; Posthog::getFeatureFlag('myFeatureFlagKey');
Get feature flag. Returns false if feature is disabled. Returns true (or payload if set).
Optional attributes
You can pass groups, personProperties and groupProperties to the isFeatureEnabled and getFeatureFlag functions.
Please check the Posthog PHP documentation for more information.
In the Posthog config you can configure if events should be sent to Posthog and if you want to evaluate events locally.
Custom Distinct ID
By default, the package generates a distinct ID based on the authenticated user ID (with an optional prefix) or a hashed session ID for anonymous users.
If you want full control over the distinct ID, you can register a custom resolver. For example, in your AppServiceProvider:
use QodeNL\LaravelPosthog\Facades\Posthog; public function boot(): void { Posthog::resolveDistinctIdUsing(function () { return auth()->id() ?? session()->getId(); }); }
Queue / jobs
The capture, identify and alias actions are executed by jobs. Be sure you've enabled and configured queues for your applications.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
- Christian Schoenmakers (Qode BV - Netherlands) (https://github.com/christianschoenmakers)
License
The MIT License (MIT). Please see License File for more information.
qodenl/laravel-posthog 适用场景与选型建议
qodenl/laravel-posthog 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 96.21k 次下载、GitHub Stars 达 35, 最近一次更新时间为 2023 年 03 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「analytics」 「events」 「laravel」 「feature flags」 「A-B testing」 「product analytics」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 qodenl/laravel-posthog 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 qodenl/laravel-posthog 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 qodenl/laravel-posthog 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Библиотека для реализаций паттерна Pub/Sub
Wireless Cross-Component Communication
A powerful event calendar Tool for Laravel's Nova 5.
Analytics chooser extensions for site settings.
Command bus implementation: Commands and domain events
A Laravel Nova Card to show Fathom Analytics stats.
统计信息
- 总下载量: 96.21k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 35
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-24