hcelebi / jira-php-client
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
Requires
- guzzlehttp/guzzle: ~6.0
- monolog/monolog: ^1.24
- slim/slim: ^3.12
Requires (Dev)
- phpunit/phpunit: 7.5.*
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);