This package is a wrapper for the Jira API. It allows you to interact with Jira within your Laravel application.
You need to have a Jira account with a PAT (Personal Access Token) to use this package.
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"
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),
];
php artisan jira:info
Please see CHANGELOG for more information on what has changed recently.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.