PHPackages                             rockkeeper/laravel-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. rockkeeper/laravel-jira

ActiveLibrary

rockkeeper/laravel-jira
=======================

Laravel5 service for Jira REST api to search and create issues

v0.4.1(9y ago)076↓100%MITPHP

Since Feb 26Pushed 9y ago1 watchersCompare

[ Source](https://github.com/RockKeeper/laravel-jira)[ Packagist](https://packagist.org/packages/rockkeeper/laravel-jira)[ RSS](/packages/rockkeeper-laravel-jira/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)DependenciesVersions (8)Used By (0)

Laravel5 Jira service
=====================

[](#laravel5-jira-service)

Easy access Jira rest api in Laravel5.

- [Installation and Requirements](#installation)
- [Searching issues](#searching)
- [Creating issues](#creating)
- [Editing issues](#editing)

Installation and Requirements
-----------------------------

[](#installation-and-requirements)

```
composer require rockkeeper/laravel-jira
```

Afterwards, run `composer update` from your command line.

Then, update `config/app.php` by adding an entry for the service provider.

```
'providers' => [
    // ...
    Univerze\Jira\JiraServiceProvider::class,
];

'aliases' => [
  	// ...
  	'Jira' => Univerze\Jira\Facade\JiraFacade::class,
];
```

Finally, from the command line again, run `php artisan vendor:publish` to publish the default configuration file to config/jira.php.

Searching issues
----------------

[](#searching-issues)

The search method will take the jql query string:

```
$response = Jira::search( 'project = YourProject AND labels = somelabel' );
```

You can build and test the jql beforehand if you go to your Jira site Issues &gt; Search for Issues &gt; Advanced Search.

Further information can be found on [JIRA documentation - search issues](https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-example-query-issues)

> **NOTE** jql parameter is already included in the payload

Creating issues
---------------

[](#creating-issues)

```
$issue = Jira::create( array(
    'project'     => array(
        'key' => 'YourProject'
    ),
    'summary'     => 'This is the summary',
    'description' => 'Description here',
    'issuetype'   => array(
        'name' => 'Bug'
    )
) );
```

Further information can be found on [JIRA documentation - create issue](https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-example-create-issue)

> **NOTE** fields parameter is already included in the payload

Editing issues
--------------

[](#editing-issues)

```
Jira::update( 'ISSUE-1234', array(
    'description' => 'this is my new description'
) );
```

In this case the JIRA api will return "204 - No Content" instead of issue details.

Further information can be found on [JIRA documentation - edit issue](https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-example-edit-issues)

> **NOTE** fields parameter is already included in the payload

---

Released under the MIT License. See the LICENSE file for details.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 55.6% 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 ~56 days

Total

5

Last Release

3504d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e0feedeac67870ceb5857f948075e6b650472d18b5917e27832590b5e9f769f2?d=identicon)[RockKeeper](/maintainers/RockKeeper)

---

Top Contributors

[![rwollenburg](https://avatars.githubusercontent.com/u/25509805?v=4)](https://github.com/rwollenburg "rwollenburg (5 commits)")[![univerze](https://avatars.githubusercontent.com/u/17457154?v=4)](https://github.com/univerze "univerze (3 commits)")[![Frankwin](https://avatars.githubusercontent.com/u/1010895?v=4)](https://github.com/Frankwin "Frankwin (1 commits)")

---

Tags

laraveljiraatlassian

### Embed Badge

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

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

###  Alternatives

[univerze/laravel-jira

Laravel5 service for Jira REST api to search and create issues

158.0k](/packages/univerze-laravel-jira)[thecatontheflat/atlassian-connect-bundle

Atlassian Connect Symfony Bundle

357.6k](/packages/thecatontheflat-atlassian-connect-bundle)

PHPackages © 2026

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