laravel-jira-package maintained by alibori
Description
Package to interact with Jira within your Laravel' application
Author
Last update
2023/03/28 19:49
(dev-main)
License
Downloads
11
Tags
Laravel Jira Package
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




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.