{"id":16226544,"url":"https://github.com/robbrazier/laravel_piwik","last_synced_at":"2025-04-05T01:09:20.929Z","repository":{"id":6415674,"uuid":"7654044","full_name":"RobBrazier/Laravel_Piwik","owner":"RobBrazier","description":"An Interface to Piwik's Analytics API for Laravel (Composer Package).","archived":false,"fork":false,"pushed_at":"2024-09-02T21:50:03.000Z","size":5124,"stargazers_count":109,"open_issues_count":5,"forks_count":20,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-29T00:11:36.562Z","etag":null,"topics":["analytics","laravel","matomo","php","piwik","piwik-analytics-api"],"latest_commit_sha":null,"homepage":"https://docs.robbrazier.com/Laravel_Piwik/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RobBrazier.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/supported-modules/APIModule.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-01-16T21:13:26.000Z","updated_at":"2024-11-01T11:20:33.000Z","dependencies_parsed_at":"2024-12-01T23:18:06.957Z","dependency_job_id":null,"html_url":"https://github.com/RobBrazier/Laravel_Piwik","commit_stats":{"total_commits":341,"total_committers":14,"mean_commits":"24.357142857142858","dds":"0.16129032258064513","last_synced_commit":"f06d6b828aa20b04a71b424a297c03ebabceff71"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2FLaravel_Piwik","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2FLaravel_Piwik/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2FLaravel_Piwik/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobBrazier%2FLaravel_Piwik/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobBrazier","download_url":"https://codeload.github.com/RobBrazier/Laravel_Piwik/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247271532,"owners_count":20911587,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analytics","laravel","matomo","php","piwik","piwik-analytics-api"],"created_at":"2024-10-10T12:49:38.091Z","updated_at":"2025-04-05T01:09:20.895Z","avatar_url":"https://github.com/RobBrazier.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel-Piwik v4.2.0\n\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/RobBrazier/Laravel_Piwik/build.yaml?style=flat-square\u0026branch=master)](https://github.com/RobBrazier/Laravel_Piwik/actions)\n[![Codacy grade](https://img.shields.io/codacy/grade/6e05c91a199a4ffbb2723cec35e57019?style=flat-square)](https://app.codacy.com/gh/RobBrazier/Laravel_Piwik)\n[![Codacy coverage](https://img.shields.io/codacy/coverage/6e05c91a199a4ffbb2723cec35e57019?style=flat-square)](hhttps://app.codacy.com/gh/RobBrazier/Laravel_Piwik)\n[![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/robbrazier/piwik?color=8892BF\u0026style=flat-square)](https://php.net/)\n[![Packagist Version](https://img.shields.io/packagist/v/robbrazier/piwik?style=flat-square)](https://packagist.org/packages/robbrazier/piwik)\n[![Packagist Downloads](https://img.shields.io/packagist/dt/robbrazier/piwik?style=flat-square)](https://packagist.org/packages/robbrazier/piwik)\n\nAn Interface to Piwik's Analytics API for Laravel (Composer Package)\n\nThis is the Laravel 5+ version of the Laravel-Piwik Bundle.\n\n\u003e Version 4.0.0 and onwards have dropped support for PHP 5.6, 7.0 and 7.1\n\n## Installation\n\nAdd `RobBrazier/Piwik` to `composer.json`:\n\n```json\n{\n  \"require\": {\n    \"robbrazier/piwik\": \"~4.2\"\n  }\n}\n```\n\n### For Laravel 5.4 and below\n\nAdd `'RobBrazier\\Piwik\\PiwikServiceProvider'` and `'Piwik' =\u003e 'RobBrazier\\Piwik\\Facades\\Piwik'`\nto `app/config/app.php`\n\n```php\n'providers' = [\n    ...\n    RobBrazier\\Piwik\\PiwikServiceProvider::class,\n    ...\n],\n\n[...]\n\n'aliases' = [\n    ...\n    'Piwik' =\u003e RobBrazier\\Piwik\\Facades\\Piwik::class,\n    ...\n],\n```\n\n### For Laravel 5.5 and above, no app.php changes are required as the autoloader will pick up the required configuration\n\nThen move the config file out of the package, so that it doesn't get replaced\nwhen you update, by running:\n\n```bash\nphp artisan vendor:publish --provider=\"RobBrazier\\Piwik\\PiwikServiceProvider\" --tag=\"config\"\n```\n\nUpdate your packages with `composer update` or install with `composer install`.\n\nThen go to `config/piwik.php` and add your config settings such as server,\napikey, siteid etc.\n\n## Documentation\n\nUsage Documentation is located at \u003chttps://docs.robbrazier.com/Laravel_Piwik/Usage.html\u003e\nAPI Documentation is located at \u003chttps://docs.robbrazier.com/Laravel_Piwik/API_Docs.html\u003e\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first\nto discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n[![Contributors](https://contrib.rocks/image?repo=robbrazier/Laravel_Piwik)](https://github.com/RobBrazier/Laravel_Piwik/graphs/contributors)\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbrazier%2Flaravel_piwik","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobbrazier%2Flaravel_piwik","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbrazier%2Flaravel_piwik/lists"}