PHPackages                             cpliakas/jira - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. cpliakas/jira

AbandonedArchivedLibrary[API Development](/categories/api)

cpliakas/jira
=============

A PHP client for integrating with the JIRA issue &amp; bug tracker software.

1.1.1(10y ago)7274.0k17[9 issues](https://github.com/cpliakas/jira-client/issues)LGPL-3.0PHPPHP &gt;=5.3.0

Since Dec 29Pushed 10y ago8 watchersCompare

[ Source](https://github.com/cpliakas/jira-client)[ Packagist](https://packagist.org/packages/cpliakas/jira)[ Docs](https://github.com/cpliakas/jira-client)[ RSS](/packages/cpliakas-jira/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (8)Used By (0)

Installation
------------

[](#installation)

1. Download the [`composer.phar`](https://getcomposer.org/composer.phar) executable or use the installer.

    ```
    $ curl -sS https://getcomposer.org/installer | php
    ```
2. Create a composer.json defining your dependencies. Note that this example is a short version for applications that are not meant to be published as packages themselves. To create libraries/packages please read the [guidelines](https://packagist.org/about).

    ```
    {
        "require": {
            "cpliakas/jira": "~1.0"
        }
    }
    ```
3. Run Composer: `php composer.phar install`

Authenticating against JIRA
---------------------------

[](#authenticating-against-jira)

```
use Jira\JiraClient;

require_once 'vendor/autoload.php';

// Modify accordingly, note that in some installations the JIRA instance is
// in the document root and not in the "jira" subdirectory.
$host = 'http://localhost:8090/jira';
$username = 'my.username';
$password = 'my.password';

$jira = new JiraClient($host);
$jira->login($username, $password);
```

Fetching an issue
-----------------

[](#fetching-an-issue)

```
$issue = $jira->issue('AB-123')->get();
```

Creating an issue
-----------------

[](#creating-an-issue)

```
use Jira\Remote\RemoteIssue;

$issue = new RemoteIssue();
$issue
    ->setProject('AB')
    ->setType(1) // ID can be found via $jira->issueTypes()->get().
    ->setSummary('Issue created via the API')
    ->setDescription('This is a test issue created throug the API');

$jira->create($issue);
```

Updating an issue
-----------------

[](#updating-an-issue)

```
use Jira\Remote\RemoteFieldValue;

$updates = [];

$value = new RemoteFieldValue();
$updates[] = $value->setId('assignee')->setValues(['jon.doe']);

$value = new RemoteFieldValue();
$updates[] = $value->setId('due-date')->setValues(['2015-12-31']);

$jira->issue('AB-1')->update($updates);
```

Add user to group
-----------------

[](#add-user-to-group)

```
use Jira\Remote\RemoteUser;
use Jira\Remote\RemoteGroup;

$user = $jira->user("id")->get();
$group = $jira->group("id")->get();

$jira->call("addUserToGroup", $group, $user);
```

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity44

Moderate usage in the ecosystem

Community19

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 56.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~158 days

Recently: every ~61 days

Total

7

Last Release

3939d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/037ad5b988519fe019d4d20758d45d70ba67d7b3aa7badca6a0f4bfedb882754?d=identicon)[cpliakas](/maintainers/cpliakas)

---

Top Contributors

[![cpliakas](https://avatars.githubusercontent.com/u/482722?v=4)](https://github.com/cpliakas "cpliakas (9 commits)")[![markcameron](https://avatars.githubusercontent.com/u/1106894?v=4)](https://github.com/markcameron "markcameron (4 commits)")[![mattweg-zz](https://avatars.githubusercontent.com/u/167712?v=4)](https://github.com/mattweg-zz "mattweg-zz (2 commits)")[![boedah](https://avatars.githubusercontent.com/u/1183125?v=4)](https://github.com/boedah "boedah (1 commits)")

---

Tags

jira

### Embed Badge

![Health badge](/badges/cpliakas-jira/health.svg)

```
[![Health](https://phpackages.com/badges/cpliakas-jira/health.svg)](https://phpackages.com/packages/cpliakas-jira)
```

###  Alternatives

[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[facebook/php-business-sdk

PHP SDK for Facebook Business

90821.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

74513.7M114](/packages/meilisearch-meilisearch-php)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)[hubspot/api-client

Hubspot API client

23914.2M16](/packages/hubspot-api-client)[botman/driver-telegram

Telegram driver for BotMan

92437.3k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
