alibori/laravel-jira-package 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

alibori/laravel-jira-package

最新稳定版本:v1.0.0

Composer 安装命令:

composer require alibori/laravel-jira-package

包简介

Package to interact with Jira within your Laravel' application

README 文档

README

Latest Version on Packagist PHPStan Total Downloads

This package is a wrapper for the Jira API. It allows you to interact with Jira within your Laravel application.

Requirements

You need to have a Jira account with a PAT (Personal Access Token) to use this package.

Installation

You can install the package via composer:

composer require alibori/laravel-jira-package --dev

You can publish the config file with:

php artisan vendor:publish --tag="jira-package-config"

Configuration

To make the package work, you need to add your Jira credentials to the config file. You can find the config file in config/jira.php.

<?php

declare(strict_types=1);

// config for Alibori/LaravelJiraPackage
return [
    /**
     * This is the configuration file for the Laravel Jira Package
     */
    'jira_url' => env('JIRA_URL', 'https://jira.example.com'),
    'jira_username' => env('JIRA_USERNAME', 'jira_username'),
    'jira_token' => env('JIRA_TOKEN', 'jira_token'),

    'jira_board_id' => env('JIRA_BOARD_ID', 1),
];

Usage

php artisan jira:info

jira-1

jira-2

jira-3

jira-4

Changelog

Please see CHANGELOG for more information on what has changed recently.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-03-28