PHP code example of devmoath / jira-laravel
1. Go to this page and download the library: Download devmoath/jira-laravel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
devmoath / jira-laravel example snippets
use Jira\Laravel\Facades\Jira;
$result = Jira::issues()->search();
echo $result['issues'][0]['key']; // KEY-1000
bash
php artisan vendor:publish --provider="Jira\Laravel\ServiceProvider"