/laravel-jira-package

Laravel package to manage your Jira without leaving Laravel.

Primary LanguagePHPMIT LicenseMIT

Laravel Jira Package

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.