charlesportwoodii / yii2-analytics.js
Segment's Analytics.js library integration for Yii2
Installs: 736
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/analytics: >=2.11.0
- fxp/composer-asset-plugin: ~1.0
- yiisoft/yii2: >=2.0.6
Requires (Dev)
- phpunit/phpunit: ^5.0
This package is auto-updated.
Last update: 2020-01-24 03:40:24 UTC
README
This package is unmaintained, and is archived for historical purposes.
This extension provides Analytics.js integration for Yii Framework 2, and is the natural extension of EAnalytics which performs the same task for Yii1. This extension enables you to control and manage your analytics providers from within your Yii2 configuration, or in more complex examples, from a dynamic configuration.
For licensing information see LICENSE.md.
Installation
The preferred way to install this extension is through composer.
composer require --prefer-dist "charlesportwoodii/yii2-analytics.js"
or add the following to your composer.json
's require-dev
section.
"charlesportwoodii/yii2-analytics.js": "~1.0.0"
Configuration
To use this configuration, add the following to your config/web.php
configuration file:
return [
// [...],
'components' => [
'analyticsjs' => [
'class' => 'charlesportwoodii\analytics\AnalyticsJs',
'providers' => [
]
]
]
];
A full list of providers and their arguments can be found on the Analytics.js integrations page. This extension directly passes the provider list and arguments to analytics.js.
Examples
Google Analytics
return [
// [...],
'components' => [
// [...],
'analyticsjs' => [
'class' => 'charlesportwoodii\analytics\AnalyticsJs',
'providers' => [
// Google Analytics Provider
'Google Analytics' => [
'domain' => 'https://www.example.com',
'doubleClick' => false,
'enhancedLinkAttribution' => false,
'trackingId' => 'UA-XXXXXXXX',
'universalClient' => 1
],
// Piwik provider
'Piwik' => [
'siteId' => 5,
'url' => 'https://piwik.example.com'
]
]
]
]
];