knplabs/knp-piwik-client
This package is abandoned and no longer maintained.
No replacement package was suggested.
Simple client for Piwik (web analytics) API.
Maintainers
v1.0
2013-11-12 12:03 UTC
Requires
- php: >=5.3.0
- kriswallsmith/buzz: 0.10.*
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT a05c74c5ac6879f9dac64224b1b16d28ddf07ac7
This package is auto-updated.
Last update: 2022-09-23 13:39:58 UTC
README
This project is not actively maintained by KnpLabs. Please contact us if you would like to take over.
PiwikClient
PHP 5.3 client for Piwik web analytics.
To see all available methods & their parameters, visit Piwik API Reference.
Usage
Through HTTP connection
use Knp\PiwikClient\Connection\HttpConnection; use Knp\PiwikClient\Client; // Instantiate piwik client $connection = new HttpConnection('http://demo.piwik.org'); $client = new Client($connection, 'YOUR_API_TOKEN'); // Call piwik API $array = $client->call('PLUGIN.METHOD', $parameters);
Through local (PHP) connection
use Knp\PiwikClient\Connection\PiwikConnection; use Knp\PiwikClient\Client; // Instantiate piwik require_once PIWIK_INCLUDE_PATH . "/index.php"; require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php"; Piwik_FrontController::getInstance()->init(); // Instantiate piwik client $connection = new PiwikConnection(); $client = new Client($connection, 'YOUR_API_TOKEN'); // Call piwik API $array = $client->call('PLUGIN.METHOD', $parameters);
Installation
This library can be installed using composer by adding the following in the require section of your composer.json file:
"require": { ... "knplabs/knp-piwik-client": "1.*" },
Copyright
PiwikClient is released under the MIT License. See the bundled LICENSE file for details.
