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

Installs: 515

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/hcelebi/jira-php-client

1.0.0 2022-06-28 13:38 UTC

This package is not auto-updated.

Last update: 2025-11-28 20:11:50 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);