承接 lcainswebdeveloper/redmine-client 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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 your REDMINE_API_KEY which you can create inside of your Redmine UI. I'd recommend you put this in an env file. Optionally you can also add a REDMINE_PROJECT_ID which can be used as a default if we don't provide a project_id on 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.

统计信息

  • 总下载量: 1.69k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2019-05-07

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固