All Projects β†’ RobBrazier β†’ Laravel_piwik

RobBrazier / Laravel_piwik

Licence: mit
An Interface to Piwik's Analytics API for Laravel (Composer Package).

Projects that are alternatives of or similar to Laravel piwik

Footprints
🐾 A simple registration attribution tracking solution for Laravel (UTM Parameters and Referrers)
Stars: ✭ 127 (+33.68%)
Mutual labels:  analytics, laravel
Polr
🚑 A modern, powerful, and robust URL shortener
Stars: ✭ 4,147 (+4265.26%)
Mutual labels:  analytics, laravel
Laravel Analytics
A Laravel package to retrieve pageviews and other data from Google Analytics
Stars: ✭ 2,613 (+2650.53%)
Mutual labels:  analytics, laravel
Laravel Mixpanel
Intuitive drop-in analytics.
Stars: ✭ 80 (-15.79%)
Mutual labels:  analytics, laravel
Laravel Gamp
πŸ“Š Laravel Google Analytics Measurement Protocol Package
Stars: ✭ 271 (+185.26%)
Mutual labels:  analytics, laravel
Laravel Analytics
Analytics for the Laravel framework.
Stars: ✭ 91 (-4.21%)
Mutual labels:  analytics, laravel
Ds With Pysimplegui
Data science and Machine Learning GUI programs/ desktop apps with PySimpleGUI package
Stars: ✭ 93 (-2.11%)
Mutual labels:  analytics
Admin One Laravel Dashboard
Admin One β€” Free Laravel Dashboard (Bulma Buefy Vue.js SPA)
Stars: ✭ 94 (-1.05%)
Mutual labels:  laravel
Laravel Localize Middleware
Configurable localization middleware for your Laravel >=5.1 application
Stars: ✭ 92 (-3.16%)
Mutual labels:  laravel
Flysystem Upyun
Laravel εˆζ‹δΊ‘ζ–‡δ»Άε­˜ε‚¨οΌŒδΈŠδΌ οΌŒεˆ ι™€γ€‚
Stars: ✭ 92 (-3.16%)
Mutual labels:  laravel
Laravel Likeable
Rate Eloquent models with Likes and Dislikes in Laravel. Development moved to Laravel Love package!
Stars: ✭ 95 (+0%)
Mutual labels:  laravel
Laravel Single Session
This package prevents a User from being logged in more than once. It destroys the previous session when a User logs in and thereby allowing only one session per user.
Stars: ✭ 95 (+0%)
Mutual labels:  laravel
Laravel Newsletter
Manage newsletters in Laravel
Stars: ✭ 1,318 (+1287.37%)
Mutual labels:  laravel
Laravel Bandwagon
Social proof package for Laravel
Stars: ✭ 93 (-2.11%)
Mutual labels:  laravel
Laravel Email Confirmation
Add email confimation to Laravel project
Stars: ✭ 94 (-1.05%)
Mutual labels:  laravel
Dropzone Laravel Image Upload
Laravel 5.2 and Dropzone.js auto image uploads with removal links
Stars: ✭ 92 (-3.16%)
Mutual labels:  laravel
Laravel Create
Create Laravel projects really fast
Stars: ✭ 1,331 (+1301.05%)
Mutual labels:  laravel
Img
πŸ–ΌImage hosting powered by laravel
Stars: ✭ 92 (-3.16%)
Mutual labels:  laravel
Laravel Backup
A easy-to-use backup manager for Laravel
Stars: ✭ 93 (-2.11%)
Mutual labels:  laravel
Graf
A simple git log analyzer gem
Stars: ✭ 94 (-1.05%)
Mutual labels:  analytics

Laravel-Piwik v4.0.0

Semaphore CI Code Climate Code Climate Minimum PHP Version Packagist Version Packagist Total Downloads

An Interface to Piwik's Analytics API for Laravel (Composer Package)

This is the Laravel 5+ version of the Laravel-Piwik Bundle.

Version 4.0.0 and onwards have dropped support for PHP 5.6, 7.0 and 7.1

Installation

Add RobBrazier/Piwik to composer.json:

{
    "require": {
        "robbrazier/piwik": "~4.0"
    }
}

For Laravel 5.4 and below:

Add 'RobBrazier\Piwik\PiwikServiceProvider' and 'Piwik' => 'RobBrazier\Piwik\Facades\Piwik' to app/config/app.php

'providers' = array(
    ...
    RobBrazier\Piwik\PiwikServiceProvider::class,
    ...
);

[...]

'aliases' = array(
    ...
    'Piwik' => RobBrazier\Piwik\Facades\Piwik::class,
    ...
);

For Laravel 5.5 and above, no app.php changes are required as the autoloader will pick up the required configuration

Then move the config file out of the package, so that it doesn't get replaced when you update, by running:

php artisan vendor:publish --provider="RobBrazier\Piwik\PiwikServiceProvider" --tag="config"

Update your packages with composer update or install with composer install.

Then go to config/piwik.php and add your config settings such as server, apikey, siteid etc.

Documentation

Usage Documentation is located at https://robbrazier.github.io/Laravel_Piwik/Usage.html API Documentation is located at https://robbrazier.github.io/Laravel_Piwik/API_Docs.html

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].