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
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-01-24 16:08:12 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);