hcelebi/jira-php-client

There is no license information available for the latest version (1.0.0) of this package.

PHP Client For Jira API

1.0.0 2022-06-28 13:38 UTC

This package is not auto-updated.

Last update: 2024-05-31 13:07:30 UTC


README

Installation

The prefered way to install this client

php composer.phar require hcelebi/jira-php-client

or

composer require hcelebi/jira-php-client

Configuration

Dependency injection is exist in project, add these factories to configuration.

JiraClientFactory.php
VersionServiceFactory.php

Dependency injection doesn't exist in project, add this code block to application entry point

$container = new Container();
JiraClientFactory::createService($container);
VersionServiceFactory::createService($container);