tomkyle/matomo-api-client
Composer 安装命令:
composer require tomkyle/matomo-api-client
包简介
Client library for interacting with the Matomo API. Supports retry logic and PSR-6 caches.
README 文档
README
A PHP client library for interacting with the Matomo API, providing robust and extensible functionality for managing and querying Matomo analytics data.
Features
- Supports retry logic with
RetryingMatomoApiClientfor handling transient failures. - Caching with
Psr6CacheMatomoApiClientto minimize API calls and improve performance. - Fully PSR-compliant with PSR-6 (Caching), PSR-3 (Logging), PSR-17 (HTTP Factories), and PSR-18 (HTTP Client).
- Extensible via the
MatomoApiClientInterfacefor standardized requests to the Matomo API.
Installation
Install via Composer:
composer require tomkyle/matomo-api-client
Usage
Basic API Client
Class MatomoApiClient is the primary client for sending requests to the Matomo API. The API response is returned as an associative array:
use tomkyle\MatomoApiClient\MatomoApiClient; use GuzzleHttp\Psr7\Uri; // Initialize the client $uri = new Uri('https://your-matomo-domain.com'); $defaults = ['token_auth' => 'your-api-token']; $client = new MatomoApiClient($uri, $defaults); // Send a request $params = ['idSite' => '1', 'period' => 'day', 'date' => 'today']; $response = $client->request($params, 'VisitsSummary.get'); print_r($response);
The Interface
All classes in this package implement the MatomoApiClientInterface interface with a request method which returns the API response as an associative array. The method accepts the Matomo API parameters as well as an optional API method—See Matomo docs for more information:
/** * @param array<string,string> $params API params * @return array<string|int,mixed> API result */ public function request(array $params, string $method = null): array;
Retrying Client
The RetryingMatomoApiClient wraps the above MatomoApiClient instance. When a request fails due to server load, it will retry the request up to a specified number of attempts.
use tomkyle\MatomoApiClient\RetryingMatomoApiClient; // Maximum 3 attempts, 5 seconds wait $retryingClient = new RetryingMatomoApiClient($client, 3, 5); // Send a request $params = ['idSite' => '1', 'period' => 'day', 'date' => 'today']; $response = $retryingClient->request($params, 'VisitsSummary.get');
Caching Client
The Psr6CacheMatomoApiClient wraps any MatomoApiClientInterface instance and integrates with any PSR-6 compliant cache pool.
use tomkyle\MatomoApiClient\Psr6CacheMatomoApiClient; use Symfony\Component\Cache\Adapter\FilesystemAdapter; $cachePool = new FilesystemAdapter(); $cachingClient = new Psr6CacheMatomoApiClient($cachePool, $client); $response = $cachingClient->request($params, 'VisitsSummary.get');
Exceptions
- MatomoApiClientException: Thrown for errors during API requests or response handling.
License
This library is licensed under the MIT License. See the LICENSE file for details.
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
Links
Development
Run npm update to install development helpers. Watch the file system for PHP code changes using npm run watch and see what phpstan, phpcs, Rector, and PhpUnit say. See package.json for a list of all watch and test tasks.
$ npm run watch
tomkyle/matomo-api-client 适用场景与选型建议
tomkyle/matomo-api-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 50 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 11 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「client」 「matomo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tomkyle/matomo-api-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tomkyle/matomo-api-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tomkyle/matomo-api-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Matomo (former piwik) analytics
A PSR-7 compatible library for making CRUD API endpoints
Mock PSR-18 HTTP client
Asynchronous MQTT client built on React
A combination of clientside and serverside analytics for PHP-based websites.
A Laravel facade/wrapper for the matomo/matomo-php-tracker for server-side Matomo tracking.
统计信息
- 总下载量: 50
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-11-24