PHPackages                             edgarnadal/inbounder - 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. edgarnadal/inbounder

ActiveLibrary[API Development](/categories/api)

edgarnadal/inbounder
====================

Handle inbound webhooks in organized way

08PHP

Since Jun 1Pushed 9y ago1 watchersCompare

[ Source](https://github.com/edgarnadal/inbounder)[ Packagist](https://packagist.org/packages/edgarnadal/inbounder)[ RSS](/packages/edgarnadal-inbounder/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (2)Used By (0)

Inbounder
=========

[](#inbounder)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/676634dc67b23c911fabf420334e59d0ecd1482933d222bcfd6c39ba492bea99/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f65646761726e6164616c2f696e626f756e6465722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/edgarnadal/inbounder/?branch=master)

This is a laravel package for incoming webhook handling.

Version
-------

[](#version)

v0.1.0

Documentation
-------------

[](#documentation)

Pending for documentation.

### Installation

[](#installation)

### Requirements

[](#requirements)

- Laravel 5.1+

### Installing with Composer

[](#installing-with-composer)

1. In your **composer.json**, add the dependency: `"edgarnadal/inbounder": "dev-master"`
2. Add the Inbounder service provider in your config/app.php:

```
        Inbounder\InbounderServiceProvider::class,
```

3. Add the following alias:

```
        'Inbounder'    => Inbounder\Facades\Inbounder::class,
```

4. Create gateways:

```
php artisan vendor:publish --provider="Inbounder\InbounderServiceProvider"
```

Add your gateways like this on **config/inbounder.php**:

```
    'gateways' => [
        'example-gateway' => 'App\\Example\InbounderHandler'
    ]
```

Coming soon more on creating handlers.

```
post('/inbounder/{gateway}', function (\Request $request, $gateway) {

    $gateway = \Inbounder::gateway($gateway, $request);
    $parsed = $gateway->parse();

    dd($parsed);

    $handlerResponse = $parsed->handler()->run();

    // Do something with your handler response, in this case
    // I'll return it to the requester
    return response()->json($handlerResponse);

    // Or you could just return 200
    return response()->make();

});
```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/98c9727660bb47f792821768e09e09f7d8ab860a92cf371c47d49243dcddf094?d=identicon)[edgarnadal](/maintainers/edgarnadal)

---

Top Contributors

[![edgarnadal](https://avatars.githubusercontent.com/u/1534538?v=4)](https://github.com/edgarnadal "edgarnadal (14 commits)")

### Embed Badge

![Health badge](/badges/edgarnadal-inbounder/health.svg)

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

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

PHPackages © 2026

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