├── .gitignore ├── .php_cs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json └── src └── widgets ├── GATracking.php └── views └── tracking.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/.php_cs -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/composer.json -------------------------------------------------------------------------------- /src/widgets/GATracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/src/widgets/GATracking.php -------------------------------------------------------------------------------- /src/widgets/views/tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybercog/yii2-google-analytics/HEAD/src/widgets/views/tracking.php --------------------------------------------------------------------------------