lcainswebdeveloper/redmine-client
Composer 安装命令:
composer require lcainswebdeveloper/redmine-client
包简介
Simple service for logging bugs in redmine
README 文档
README
Small service for logging errors to Redmine.
At the moment this is the only functionality but we can expand in due course or feel free to contribute.
Installation from Composer
- composer
composer require lcainswebdeveloper/redmine-client
Configuration
- All you will need to do is set a
REDMINE_BASE_URLfor your Redmine instance and yourREDMINE_API_KEYwhich you can create inside of your Redmine UI. I'd recommend you put this in an env file. Optionally you can also add aREDMINE_PROJECT_IDwhich can be used as a default if we don't provide aproject_idon any request
To update an issue
This service delegates straight to the Redmine API itself so arguments can be passed as expected for all calls. Please feel free to look at the tests for usage also.
Updating an issue (simple example):
use LCainsWebdeveloper\Redmine;
$client = new Redmine(REDMINE_BASE_URL, REDMINE_API_KEY);
$validIssue = $client->updateIssue([
'project_id' => 1, //required - must exist also - can default to your REDMINE_PROJECT_ID env var if given'
'tracker_id' => 1, //required - must exist also
'status_id' => 1, //required - must exist also
'priority_id' => 1, //required - must exist also
'subject' => 'My test issue', //required
'description' => 'Your description',
'assigned_to_id' => 1, //a user id that must exist
'estimated_hours' => 3,
]);
The response mirrors the response from the API itself
To create an issue
This service delegates straight to the Redmine API itself so arguments can be passed as expected for all calls. Please feel free to look at the tests for usage also.
Creating an issue (simple example):
use LCainsWebdeveloper\Redmine;
$client = new Redmine(REDMINE_BASE_URL, REDMINE_API_KEY);
$validIssue = $client->createIssue([
'project_id' => 1, //required - must exist also
'tracker_id' => 2,
'notes' => 'A note that can be added to your issue'
]);
The response mirrors the response from the API itself - blanket 200 responses if successful
All Redmine class methods have a link to the Redmine documentation in the method docs.
lcainswebdeveloper/redmine-client 适用场景与选型建议
lcainswebdeveloper/redmine-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.69k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 05 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 lcainswebdeveloper/redmine-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lcainswebdeveloper/redmine-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.69k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2019-05-07