patriziotomato/laravel-jira

Easily access the Jira-API in your Laravel Application

v2.1 2023-02-22 04:28 UTC

This package is auto-updated.

Last update: 2024-04-22 06:58:12 UTC


README

Easily access the Jira-API in your Laravel Application

Configuration via .env

JIRAAPI_V3_HOST="https://xxxxxxx.atlassian.net"
JIRAAPI_V3_USER="firstname.lastname@company.com"
JIRAAPI_V3_PERSONAL_ACCESS_TOKEN='Generated in your Jiras personal settings'

Usage

$jira = app(Jira::class);

$jira->users()->get();
$jira->projectVersions('PROJECT_KEY');