robbrazier/piwik
最新稳定版本:4.2.0
Composer 安装命令:
composer require robbrazier/piwik
包简介
Piwik Package for Laravel
README 文档
README
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.2"
}
}
For Laravel 5.4 and below
Add 'RobBrazier\Piwik\PiwikServiceProvider' and 'Piwik' => 'RobBrazier\Piwik\Facades\Piwik'
to app/config/app.php
'providers' = [ ... RobBrazier\Piwik\PiwikServiceProvider::class, ... ], [...] 'aliases' = [ ... '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://docs.robbrazier.com/Laravel_Piwik/Usage.html API Documentation is located at https://docs.robbrazier.com/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
统计信息
- 总下载量: 161.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 112
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-01-16