patriziotomato / laravel-jira
Easily access the Jira-API in your Laravel Application
Package info
github.com/patriziotomato/laravel-jira
Type:project
pkg:composer/patriziotomato/laravel-jira
v3.0
2025-07-08 04:15 UTC
Requires
- php: ^8.2
- khill/php-duration: ^1.1
- laravel/framework: ^9.0|^10.0|^11.0|^12.0
- lesstif/jira-cloud-restapi: ^1.4
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');