thienhungho / yii2-google-analytics
Yii2 Google Analytics
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- thienhungho/yii2-app-core: *
- yiisoft/yii2: ~2.0.9
This package is auto-updated.
Last update: 2025-03-01 00:14:44 UTC
README
Yii2 Google Analytics for Yii2
Installation
This is just an example, memorible moment. The source code may not work for known reasons. This source code include against loss license feature.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist thienhungho/yii2-google-analytics "*"
or add
"thienhungho/yii2-google-analytics": "*"
to the require section of your composer.json
file.
Config
Add module Configuration to your AppConfig
file.
... 'modules' => [ ... /** * Google Analytics Configuration */ 'google-analytics-configuration' => [ 'class' => 'thienhungho\GoogleAnalytics\modules\Configuration\ConfigurationModules', ], ... ], ...