euphio / eph-chartbeat
A Chartbeat module for Zend Framework 2
Installs: 36
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/euphio/eph-chartbeat
Requires
- php: >=5.3.3
- zendframework/zend-eventmanager: 2.*
- zendframework/zend-mvc: 2.*
This package is not auto-updated.
Last update: 2025-10-25 19:45:21 UTC
README
A Chartbeat module for Zend Framework 2
Introduction
This module will add Chartbeat tracking code to your ZF2 Application via the HeadScript and InlineScript View Helpers.
Installation
First, add the following line into your composer.json file:
"require": { "euphio/eph-chartbeat": ">=0.1" }
Then, enable the module by adding EphChartbeat in your application.config.php file.
<?php return array( 'modules' => array( 'EphChartbeat', 'Application', ), );
Configuration
The following settings represent the configuration variables found at: http://chartbeat.com/docs/configuration_variables/
<?php return array( 'chartbeat' => array( 'domain' => 'yourdomain.com', // Your Domain 'no_cookies' => false, // Disable Cookies? 'path' => '', // Path override 'uid' => '1234', // Your User id 'use_canonical' => false // Use canonical links? ), );