PHP code example of alibori / laravel-jira-package

1. Go to this page and download the library: Download alibori/laravel-jira-package 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/ */

    

alibori / laravel-jira-package example snippets




declare(strict_types=1);

// config for Alibori/LaravelJiraPackage
return [
    /**
     * This is the configuration file for the Laravel Jira Package
     */
    'jira_url' => env('JIRA_URL', 'https://jira.example.com'),
    'jira_username' => env('JIRA_USERNAME', 'jira_username'),
    'jira_token' => env('JIRA_TOKEN', 'jira_token'),

    'jira_board_id' => env('JIRA_BOARD_ID', 1),
];

php artisan jira:info