Easily access the Jira-API in your Laravel Application
patriziotomato/laravel-jira is a Laravel package for easily access the jira-api in your laravel application.
It currently has 0 GitHub stars and 4.854 downloads on Packagist (latest version v3.0).
Install it with composer require patriziotomato/laravel-jira.
Discover more Laravel packages by patriziotomato
or browse all Laravel packages to compare alternatives.
Last updated
Easily access the Jira-API in your Laravel Application
JIRAAPI_V3_HOST="https://xxxxxxx.atlassian.net"
JIRAAPI_V3_USER="[email protected]"
JIRAAPI_V3_PERSONAL_ACCESS_TOKEN='Generated in your Jiras personal settings'
$jira = app(Jira::class);
$jira->users()->get();
$jira->projectVersions('PROJECT_KEY');