utopia-php / analytics
一个简单的库,用于跟踪事件和用户。
0.13.0
2024-09-05 16:19 UTC
Requires
- php: >=8.0
- utopia-php/cli: 0.19.*
- utopia-php/system: 0.8.*
Requires (Dev)
- laravel/pint: dev-main
- phpunit/phpunit: ^9.3
- dev-main
- 0.13.0
- 0.13.0-RC2
- 0.13.0-RC1
- 0.12.1
- 0.12.0
- 0.11.0
- 0.10.2
- 0.10.1
- 0.10.0
- 0.9.1
- 0.9.0
- 0.8.0
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.2
- 0.6.1
- 0.6.0
- 0.5.0
- 0.4.0
- 0.3.0
- 0.2.0
- 0.1.0
- dev-feat-framework-v2
- dev-feat-update-composer
- dev-revert-52-feat-orbit-hotfix
- dev-feat-remove-error-handling
- dev-feat-fix-silent-fails
- dev-feat-improve-hubspot
- dev-fix-typehints
- dev-feat-hubspot-adapter
- dev-update-mixpanel-adapter
- dev-add-mixpanel-adapter
- dev-fix-content-type
- dev-code-cleanup
- dev-fix-orbit-tags
- dev-add-account-to-props
- dev-temp-console
- dev-dev
- dev-feat-implement-orbit
- dev-dev2
- dev-refactor-plausible-adapter
- dev-fix-google-events
- dev-feat-improve-activecampaign
- dev-analytics-refactor
- dev-orbit-adapter
- dev-dev1
- dev-activecampaign-adapter
- dev-remove-exceptions
This package is auto-updated.
Last update: 2024-09-05 16:19:51 UTC
README
Utopia Analytics 是一个简单且轻量级的库,用于将关于事件或页面浏览量的信息发送到 Google Analytics。该库旨在尽可能简单且易于学习和使用。此库由 Appwrite 团队 维护。
尽管此库是 Utopia Framework 项目的一部分,但它无依赖关系,可以与其他任何 PHP 项目或框架独立使用。
入门指南
使用 composer 安装
composer require utopia-php/analytics
在您的应用程序中初始化
<?php require_once __DIR__ . '/../../vendor/autoload.php'; use Utopia\Analytics\GoogleAnalytics; $ga = new GoogleAnalytics("UA-XXXXXXXXX-X", "CLIENT-ID"); // Sends a pageview for `appwrite.io/docs/installation`. $ga->createPageView("appwrite.io", "/docs/installation"); // Sends an event indicating an installation. $ga->createEvent("Installation", "setup.cli"); // Sends an event indicating that the fall campaign promotional video was played. $ga->createEvent("Videos", "play", "Fall Campaign");
系统要求
Utopia Framework 需要 PHP 7.4 或更高版本。我们建议尽可能使用最新的 PHP 版本。
版权和许可
MIT 许可证 (MIT) http://www.opensource.org/licenses/mit-license.php