univerze/laravel-jira
Composer 安装命令:
composer require univerze/laravel-jira
包简介
Laravel5 service for Jira REST api to search and create issues
关键字:
README 文档
README
Deprecated
This repository is deprecated and will no longer be maintained, as the Laravel and Jira APIs may have changed significantly over the last 2 years of inactivity of this package. Please feel free to clone the repository and provide your own fork! All the best!
Laravel5 Jira service
Easy access Jira rest api in Laravel5.
Installation and Requirements
composer require univerze/laravel-jira
Afterwards, run composer update from your command line.
Then, update config/app.php by adding an entry for the service provider.
'providers' => [ // ... Univerze\Jira\JiraServiceProvider::class, ]; 'aliases' => [ // ... 'Jira' => Univerze\Jira\Facade\JiraFacade::class, ];
Finally, from the command line again, run php artisan vendor:publish to publish
the default configuration file to config/jira.php.
Searching issues
The search method will take the jql query string:
$response = Jira::search( 'project = YourProject AND labels = somelabel' );
You can build and test the jql beforehand if you go to your Jira site Issues > Search for Issues > Advanced Search.
Further information can be found on JIRA documentation - search issues
NOTE jql parameter is already included in the payload
Creating issues
$issue = Jira::create( array( 'project' => array( 'key' => 'YourProject' ), 'summary' => 'This is the summary', 'description' => 'Description here', 'issuetype' => array( 'name' => 'Bug' ) ) );
Further information can be found on JIRA documentation - create issue
NOTE fields parameter is already included in the payload
Editing issues
Jira::update( 'ISSUE-1234', array( 'description' => 'this is my new description' ) );
In this case the JIRA api will return "204 - No Content" instead of issue details.
Further information can be found on JIRA documentation - edit issue
NOTE fields parameter is already included in the payload
Released under the MIT License. See the LICENSE file for details.
univerze/laravel-jira 适用场景与选型建议
univerze/laravel-jira 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.05k 次下载、GitHub Stars 达 15, 最近一次更新时间为 2016 年 02 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「jira」 「atlassian」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 univerze/laravel-jira 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 univerze/laravel-jira 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 univerze/laravel-jira 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple PHP JIRA REST client
Jira REST API Client
An endpoint for your Laravel application to listen to Atlassian's Jira webhook events
JIRA REST API Client for PHP Users.
A simple way to implement Atlassian Crowd Authentication into your application.
Confluence API PHP Client
统计信息
- 总下载量: 8.05k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 16
- 点击次数: 34
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-02-26