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');