PHPackages                             zeggriim/yousign-webhook-bundle - 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. zeggriim/yousign-webhook-bundle

ActiveLibrary[API Development](/categories/api)

zeggriim/yousign-webhook-bundle
===============================

A Symfony bridge for handling Yousign webhooks via RemoteEvent.

v0.1.2(1y ago)31.2kMITPHPPHP &gt;=8.2CI failing

Since Jul 12Pushed 3mo agoCompare

[ Source](https://github.com/zeggriim2/yousign-webhook)[ Packagist](https://packagist.org/packages/zeggriim/yousign-webhook-bundle)[ RSS](/packages/zeggriim-yousign-webhook-bundle/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (8)Versions (8)Used By (0)

YousignWebhookBundle
====================

[](#yousignwebhookbundle)

Un bridge Symfony permettant de recevoir les événements Webhook de Yousign via le composant [`RemoteEvent`](https://symfony.com/doc/current/components/remote_event.html).

📦 Installation
--------------

[](#-installation)

Ajoutez ce bundle à votre projet Symfony via Composer :

```
composer require zeggriim/yousign-webhook-bundle
```

⚙️ Activer le bundle
--------------------

[](#️-activer-le-bundle)

Symfony Flex activera automatiquement le bundle si vous l’avez installé comme un package distant. Sinon, ajoutez-le manuellement dans config/bundles.php :

```
return [
    Zeggriim\YousignWebhookBundle\YousignWebhookBundle::class => ['all' => true],
];
```

🔀 Configuration des routes
--------------------------

[](#-configuration-des-routes)

Ajouter la cléf secret fourni par Yousign dans l'admin :

```
# config/packages/yousign_webhook.yaml
yousign_webhook:
    secret: "%env(SECRET_YOUSIGN)%"
```

Importez les routes exposées par le bundle dans votre fichier config/routes/yousign\_webhook.yaml :

```
# config/yousign_webhook.yaml
yousign_webhook:
    resource: '@YousignWebhookBundle/Resources/config/routes.yaml'
```

Cela exposera un endpoint (par défaut) POST accessible sur :

```
/webhook/yousign
```

Vous pouvez surcharger ce chemin en définissant un paramètre :

```
# config/packages/yousign_webhook.yaml
parameters:
    yousign.webhook.endpoint: /votre/endpoint/personnalisé
```

Exemple cas d'utilisation
-------------------------

[](#exemple-cas-dutilisation)

Une fois terminé, ajoutez un consumer avec le RemoteEvent en utilisant le name 'yousign'. Cela te permettra de réagir avec le webhook entrants.

```
use Symfony\Component\RemoteEvent\Attribute\AsRemoteEventConsumer;
use Symfony\Component\RemoteEvent\Consumer\ConsumerInterface;
use Symfony\Component\RemoteEvent\RemoteEvent;

#[AsRemoteEventConsumer('yousign')]
final class YousignWebhookConsumer implements ConsumerInterface
{
    public function consume(RemoteEvent $event): void
    {
        // Implement your own logic here
    }
}
```

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance65

Regular maintenance activity

Popularity21

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity44

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.

###  Release Activity

Cadence

Every ~1 days

Total

6

Last Release

388d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/35917930?v=4)[Zeggriim](/maintainers/Zeggriim)[@zeggriim](https://github.com/zeggriim)

---

Top Contributors

[![zeggriim2](https://avatars.githubusercontent.com/u/51760726?v=4)](https://github.com/zeggriim2 "zeggriim2 (16 commits)")

---

Tags

symfonybundlewebhookyousignremote-event

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/zeggriim-yousign-webhook-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/zeggriim-yousign-webhook-bundle/health.svg)](https://phpackages.com/packages/zeggriim-yousign-webhook-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.3M416](/packages/easycorp-easyadmin-bundle)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k6.0M769](/packages/sylius-sylius)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M229](/packages/sulu-sulu)[api-platform/core

Build a fully-featured hypermedia or GraphQL API in minutes!

2.6k52.2M369](/packages/api-platform-core)[shopware/storefront

Storefront for Shopware

674.7M281](/packages/shopware-storefront)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.8M662](/packages/shopware-core)

PHPackages © 2026

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