Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/RobBrazier/Laravel-Piwik
- Owner: RobBrazier
- Archived: true
- Created: 2013-01-16T21:06:34.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-08T15:23:47.000Z (over 10 years ago)
- Last Synced: 2024-08-02T08:08:26.352Z (6 months ago)
- Topics: deprecated
- Language: PHP
- Homepage: http://robbrazier.com/projects/laravel-piwik
- Size: 133 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();