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

ActiveLibrary[API Development](/categories/api)

rjvandoesburg/laravel-jira-webhook
==================================

An endpoint for your Laravel application to listen to Atlassian's Jira webhook events

1.1.0(6y ago)46.2k1[3 PRs](https://github.com/rjvandoesburg/laravel-jira-webhook/pulls)MITPHPPHP &gt;=5.6.0

Since Mar 19Pushed 4y ago1 watchersCompare

[ Source](https://github.com/rjvandoesburg/laravel-jira-webhook)[ Packagist](https://packagist.org/packages/rjvandoesburg/laravel-jira-webhook)[ RSS](/packages/rjvandoesburg-laravel-jira-webhook/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependencies (9)Versions (11)Used By (0)

Add a Jira webhook endpoint to your Laravel 5 application
=========================================================

[](#add-a-jira-webhook-endpoint-to-your-laravel-5-application)

[![Build Status](https://camo.githubusercontent.com/8434846df7a0bc2e1ea9cc111c629b0d8d55b08ae66899965c922accfba51901/68747470733a2f2f6170692e7472617669732d63692e6f72672f726a76616e646f6573627572672f6c61726176656c2d6a6972612d776562686f6f6b2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/rjvandoesburg/laravel-jira-webhook)

This package adds a route to your laravel application to handle the webhook events sent by Jira

Install
-------

[](#install)

You can install the package via composer:

```
composer require rjvandoesburg/laravel-jira-webhook
```

You must install this service provider:

```
// config/app.php

'providers' => [
    ...
    Atlassian\JiraWebhook\JiraWebhookServiceProvider::class,
    ...
];
```

If you're planning on linking your own events you must publish the config file with this command:

```
php artisan vendor:publish --provider="Atlassian\JiraWebhook\JiraWebhookServiceProvider"
```

A file named `jira-webhook.php` will be created in the config directory under the folder `atlassian`. The options you can set are as followed `key` is the dispatched event by Jira and the `value` is the event class to fire. By default all events have a `data` property that holds the data sent by Jira.

```
return [

    'events' => [
        'jira:issue_created' => \Atlassian\JiraWebhook\Events\Issue\Created::class,
        'jira:issue_updated' => \Atlassian\JiraWebhook\Events\Issue\Updated::class,
        'jira:issue_deleted' => \Atlassian\JiraWebhook\Events\Issue\Deleted::class,

        /**
         * Will be deprecated in the future and be replaced by worklog_updated
         * Still catching the events because it is still being sent out
         *
         * @see https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-worklog-data-in-issue-related-events-for-webhooks/
         */
        'jira:worklog_updated' => \Atlassian\JiraWebhook\Events\Issue\WorklogUpdated::class,

        'worklog_created' => \Atlassian\JiraWebhook\Events\Worklog\Created::class,
        'worklog_updated' => \Atlassian\JiraWebhook\Events\Worklog\Updated::class,
        'worklog_deleted' => \Atlassian\JiraWebhook\Events\Worklog\Deleted::class
    ]
];
```

Usage
-----

[](#usage)

To handle the events you need to either register listeners to you EventServiceProvider or listen to the events manually. Please see  for more information.

Credits
-------

[](#credits)

- [Robert-John van Doesburg](https://github.com/rjvandoesburg)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

To do
-----

[](#to-do)

- Make url configurable
- Catch All events [Available events](https://developer.atlassian.com/jiradev/jira-apis/webhooks#Webhooks-configureConfiguringawebhook)
- Implement broadcasting events

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~152 days

Recently: every ~184 days

Total

7

Last Release

2479d ago

Major Versions

0.0.2 → 1.0.02017-09-13

### Community

Maintainers

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

---

Top Contributors

[![rjvandoesburg](https://avatars.githubusercontent.com/u/1488300?v=4)](https://github.com/rjvandoesburg "rjvandoesburg (13 commits)")

---

Tags

atlassianatlassian-jirajiralaravellaravel-5-packagelaraveljiraatlassianlaravel-5-packageatlassian-jira

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M345](/packages/psalm-plugin-laravel)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M131](/packages/roots-acorn)[api-platform/laravel

API Platform support for Laravel

58171.5k14](/packages/api-platform-laravel)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k15.1M131](/packages/laravel-pulse)[mike-bronner/laravel-model-caching

Automatic caching for Eloquent models.

2.4k91.0k1](/packages/mike-bronner-laravel-model-caching)[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.5M85](/packages/unisharp-laravel-filemanager)

PHPackages © 2026

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