Looking to hire Laravel developers? Try LaraJobs

laravel-jira maintained by patriziotomato

Description
Easily access the Jira-API in your Laravel Application
Last update
2025/07/08 06:15 (dev-master)
License
Links
Downloads
5 026

Comments
comments powered by Disqus

laravel-jira

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