alibori / laravel-jira-package
Package to interact with Jira within your Laravel' application
v1.0.0
2023-03-28 16:05 UTC
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.5
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^1.6
- nunomaduro/collision: ^6.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^7.22
- pestphp/pest: ^1.22
- pestphp/pest-plugin-laravel: ^1.4
README
This package is a wrapper for the Jira API. It allows you to interact with Jira within your Laravel application.
Requirements
You need to have a Jira account with a PAT (Personal Access Token) to use this package.
Installation
You can install the package via composer:
composer require alibori/laravel-jira-package --dev
You can publish the config file with:
php artisan vendor:publish --tag="jira-package-config"
Configuration
To make the package work, you need to add your Jira credentials to the config file. You can find the config file in config/jira.php
.
<?php 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), ];
Usage
php artisan jira:info
Changelog
Please see CHANGELOG for more information on what has changed recently.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.