Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/RobBrazier/Laravel-Piwik

[DEPRECATED] A Laravel Bundle to use the Piwik Analytics API easily with your Project
https://github.com/RobBrazier/Laravel-Piwik

deprecated

Last synced: 3 months ago
JSON representation

[DEPRECATED] A Laravel Bundle to use the Piwik Analytics API easily with your Project

Awesome Lists containing this project

README

        

# Laravel-Piwik Bundle Version 1.0.3, by Rob Brazier

Laravel-Piwik is an easy way to interface with the Piwik Analytics API

Install using Artisan CLI:

php artisan bundle:install piwik

Add the following line to application/bundles.php

return array(
'piwik' => array('auto' => true, 'handles'=>'piwik_install'),
);

More detailed installation process [here](http://robbrazier.com/portfolio/laravel-piwik/installation)

Usage
-----
There are two ways to use this class: you can call it statically or non-statically.

Static:

Piwik::actions();

Non-static:

$piwik = new Piwik();
$piwik->actions();