testmonitor/devops-client
Composer 安装命令:
composer require testmonitor/devops-client
包简介
The TestMonitor Azure DevOps Client.
关键字:
README 文档
README
This package provides a very basic, convenient, and unified wrapper for Microsoft Azure DevOps.
Table of Contents
Installation
To install the client you need to require the package using composer:
$ composer require testmonitor/devops-client
Use composer's autoload:
require __DIR__.'/../vendor/autoload.php';
You're all set up now!
Usage
This client only supports oAuth authentication. You'll need an Microsoft Entra ID OAuth app to proceed. If you haven't done so, please read up with the Azure DevOps authentication docs on how to create an application and set the correct permissions.
When your OAuth app is up and running, start with the oAuth authorization:
$oauth = [ 'clientId' => '12345', 'clientSecret' => 'abcdef', 'appId' => '12345', 'redirectUrl' => 'https://redirect.myapp.com/', ]; $devops = new \TestMonitor\DevOps\Client($oauth); header('Location: ' . $devops->authorizationUrl()); exit();
This will redirect the user to a page asking confirmation for your app getting access to Azure DevOps. Make sure your redirectUrl points back to your app. This URL should point to the following code:
$oauth = [ 'clientId' => '12345', 'clientSecret' => 'abcdef', 'appId' => '12345', 'redirectUrl' => 'https://redirect.myapp.com/', ]; $devops = new \TestMonitor\DevOps\Client($oauth); $token = $devops->fetchToken($_REQUEST['code']);
When everything went ok, you should have an access token (available through Token object). It will be valid for one hour. After that, you'll have to refresh the token to regain access:
$oauth = ['clientId' => '12345', 'clientSecret' => 'abcdef', 'appId' => '12345', 'redirectUrl' => 'https://redirect.myapp.com/']; $token = new \TestMonitor\DevOps\AccessToken('eyJ0...', '0/34ccc...', 1574601877); // the token you got last time $organization = 'MyOrg'; $devops = new \TestMonitor\DevOps\Client($oauth, $organization, $token); if ($token->expired()) { $newToken = $devops->refreshToken(); }
The new token will be valid again for the next hour.
Examples
Retrieve a list of Azure DevOps accounts:
$accounts = $devops->accounts();
Retrieve a paginated list of work items for a project:
$workItems = $devops->workitems('12345'); foreach ($workItems->items() as $workItem) { echo $workItem->title; } echo $workItems->total() . ' work items found';
Note:
total()is capped by$wiqlLimit(default: 1000). Raise it if you expect more results.
Use a WIQL query to filter results, and control pagination and the number of results fetched:
$query = (new \TestMonitor\DevOps\Builders\WIQL\WIQL) ->where(\TestMonitor\DevOps\Builders\WIQL\Field::STATE, \TestMonitor\DevOps\Builders\WIQL\Operator::EQUALS, 'New'); $workItems = $devops->workitems( projectId: '12345', query: $query, limit: 25, offset: 50, wiqlLimit: 5000 );
Create a work item using a work item type 'Bug' and example project with id 12345:
$workItem = $devops->createWorkItem(new \TestMonitor\DevOps\Resources\WorkItem([ 'title' => 'Summary of the item', 'description' => 'Some description', 'workItemType' => 'Bug', 'stepsToReproduce' => 'Repro steps', ]), '12345');
Tests
The package contains integration tests. You can run them using PHPUnit.
$ vendor/bin/phpunit
Changelog
Refer to CHANGELOG for more information.
Contributing
Refer to CONTRIBUTING for contributing details.
Credits
- Thijs Kok - Lead developer - ThijsKok
- Stephan Grootveld - Developer - Stefanius
- Frank Keulen - Developer - FrankIsGek
- Muriel Nooder - Developer - ThaNoodle
License
The MIT License (MIT). Refer to the License for more information.
testmonitor/devops-client 适用场景与选型建议
testmonitor/devops-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9.76k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2019 年 11 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「client」 「azure」 「devops」 「testmonitor」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 testmonitor/devops-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 testmonitor/devops-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 testmonitor/devops-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Small library to access Microsoft Windows Azure Blob Storage with a Service or a StreamWrapper.
The Laragoon utility package
Adds Silverstripe Flysystem support for using the Azure Blob adapter
Mock PSR-18 HTTP client
Production-ready Laravel Prometheus metrics package with built-in collectors for HTTP, database, cache, queue, events, errors, filesystem, and mail monitoring
Laravel 5 Queue Driver for Microsoft Azure Storage Queue
统计信息
- 总下载量: 9.76k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-11-30