phonghaw2/laravel-google-analytics
Composer 安装命令:
composer require phonghaw2/laravel-google-analytics
包简介
A Laravel package to retrieve Google Analytics data.
README 文档
README
Installation
For Laravel ^6.0|^7.0|^8.0
This package can be installed through Composer.
composer require phonghaw2/laravel-google-analytics
Optionally, you can publish the config file of this package with this command:
php artisan vendor:publish --provider="Phonghaw2\Analytics\AnalyticsServiceProvider"
The following config file will be published in config/analytics.php
return [ /* * The property id of which you want to display data. */ 'property_id' => env('ANALYTICS_PROPERTY_ID'), /* * Path to the client secret json file. Take a look at the README of this package * to learn how to get this file. You can also pass the credentials as an array * instead of a file path. */ 'service_account_credentials_json' => storage_path('app/analytics/service-account-credentials.json'), /* * The amount of minutes the Google API responses will be cached. * If you set this to zero, the responses won't be cached at all. */ 'cache_lifetime_in_minutes' => 60 * 24, /* * Here you may configure the "store" that the underlying Google_Client will * use to store it's data. You may also add extra parameters that will * be passed on setCacheConfig (see docs for google-api-php-client). * * Optional parameters: "lifetime", "prefix" */ 'cache' => [ 'store' => 'file', ], ];
Getting credentials
Save the json inside your Laravel project at the location specified in the service_account_credentials_json key of the config file of this package.
Because the json file contains potentially sensitive information I don't recommend committing it to your git repository.
Granting permissions to your Analytics property
I'm assuming that you've already created a Analytics account on the Analytics site and are using the new GA4 properties.
First you will need to know your property ID. In Analytics, go to Settings > Property Settings.
Here you will be able to copy your property ID. Use this value for the ANALYTICS_PROPERTY_ID key in your .env file.
Usage
Using this package you can easily retrieve data from Google Analytics.
Here are a few examples of the provided methods:
use Phonghaw2\Analytics\AnalyticsFacade; use Phonghaw2\Analytics\Period; // You can set data with Period::set($startDate, $endDate); // https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/DateRange // startDate, $endDate : The format NdaysAgo, yesterday, or today is also accepted // Fetch the pages view for today and the 20 days ago AnalyticsFacade::fetchPageViews(Period::set('20daysAgo', 'today')); // Retrieve pageview data for the current day and the last seven days $analyticsData = Analytics::fetchPageViews(Period::days(7)); // Retrieve pageviews since the 6 months ago $analyticsData = Analytics::fetchPageViews(Period::months(6)); // fetch data use \Google\Service\AnalyticsData\Dimension; use \Google\Service\AnalyticsData\Metric; $dimensions = new Dimension(array('name' => 'pageTitle')); $metrics = new Metric(array('name' => 'screenPageViews')); Analytics::fetch(Period::days(7), $dimensions, $metrics);
Provided methods
Or The total amount of time (in seconds) your website or app was in the foreground of users' devices.
public function fetchUserEngagementReport(Period $period): Collection
All methods will return an \Illuminate\Support\Collection object containing the results.
All other Google Analytics queries
To perform all other queries on the Google Analytics resource use performQuery. Google's Core Reporting API provides more information on which metrics and dimensions might be used.
public function performQuery(Period $period, string $metrics, array $others = [])
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.
phonghaw2/laravel-google-analytics 适用场景与选型建议
phonghaw2/laravel-google-analytics 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16 次下载、GitHub Stars 达 1, 最近一次更新时间为 2023 年 11 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「analytics」 「google」 「laravel」 「reports」 「retrieve」 「phonghaw2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 phonghaw2/laravel-google-analytics 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 phonghaw2/laravel-google-analytics 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 phonghaw2/laravel-google-analytics 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Analytics chooser extensions for site settings.
A Laravel Nova Card to show Fathom Analytics stats.
Magento 2 Social Login extension is designed for quick login to your Magento 2 store without procesing complex register steps
Client for Google Directions API to add interpolated points to a route consisting of given coordinates.
Alfabank REST API integration
Google Recaptcha Package For PHP front and backend.
统计信息
- 总下载量: 16
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-11-11