Laravel Integration for Jira PHP
Jira PHP for Laravel is a supercharged PHP API client that allows you to interact with the Jira API and the Service Desk API.

Getting started with the package is easy, and you can see the guide here.
First, install the package:
composer require devmoath/jira-laravel
Next, publish the configuration file:
php artisan vendor:publish --provider="Jira\Laravel\ServiceProvider"
This will create a config/jira.php
configuration file in your project, which you can modify to your needs using environment variables:
JIRA_USERNAME=USERNAME
JIRA_PASSWORD=PASSWORD
JIRA_HOST=jira.domain.com
Finally, you may use the Jira facade to access the available functions:
use Jira\Laravel\Facades\Jira;
$result = Jira::issues()->search();
echo $result['issues'][0]['key']; // KEY-1000
For usage details, check out the package on GitHub at devmoath/jira-php.