bcscoder / ganalytic
该软件包最新版本(0.0.1)没有可用的许可证信息。
0.0.1
2017-02-02 08:54 UTC
Requires
- php: >=5.4
- asgardcms/core-module: ~1.0
- composer/installers: ~1.0
- spatie/laravel-analytics: ~2
Requires (Dev)
- orchestra/testbench: ~3.1
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-09-28 20:43:53 UTC
README
# Google Analytic 模块
## 安装 composer require bcscoder/ganalytic
在配置文件夹中创建文件 laravel-analytics.php
<?php
return [
/*
* The view id of which you want to display data.
*/
'view_id' => env('ANALYTICS_VIEW_ID'),
/*
* Path to the client secret json file. Take a look at the README of this package
* to learn how to get this file.
*/
'service_account_credentials_json' => env('ANALYTICS_JSON_FILE'),
//'service_account_credentials_json' => storage_path('app/laravel-google-analytics/Juanda Garden-1b2cc7efe5ec.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,
/*
* The directory where the underlying Google_Client will store it's cache files.
*/
'cache_location' => storage_path('app/laravel-google-analytics/google-cache/'),
];
`
更新视图 ID 并上传 Google 凭据 JSON 文件。