devmoath/jira-laravel
最新稳定版本:v0.3.2
Composer 安装命令:
composer require devmoath/jira-laravel
包简介
Jira PHP for Laravel is a supercharged PHP API client that allows you to interact with the Jira API and the Service Desk API
README 文档
README
Jira PHP for Laravel is a supercharged PHP API client that allows you to interact with the Jira API and the Service Desk API.
Note
This repository contains the integration code of the Jira PHP for Laravel. If you want to use the Jira PHP client in a framework-agnostic way, take a look at the devmoath/jira-php repository.
Get Started
Requires PHP 8.1+
First, install devmoath/jira-laravel via the Composer package manager:
composer require devmoath/jira-laravel
Next, publish the configuration file:
php artisan vendor:publish --provider="Jira\Laravel\ServiceProvider"
This will create a config/jira.php configuration file in your project, which you can modify to your needs
using environment variables:
JIRA_USERNAME=USERNAME JIRA_PASSWORD=PASSWORD JIRA_HOST=jira.domain.com
Finally, you may use the Jira facade to access the available functions:
use Jira\Laravel\Facades\Jira; $result = Jira::issues()->search(); echo $result['issues'][0]['key']; // KEY-1000
Usage
For usage examples, take a look at the devmoath/jira-php repository.
Contributing
Thank you for considering contributing to the Jira PHP for Laravel! The contribution guide can be found in the CONTRIBUTING.
Security Vulnerabilities
If you discover any security-related issues, please email hey@moath.dev instead of using the issue tracker.
License
Jira PHP for Laravel is an open-sourced software licensed under the MIT license.
统计信息
- 总下载量: 13.68k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 28
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-01-05
