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

ActiveLibrary

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

A Symfony bridge for handling Yousign webhooks via RemoteEvent.

v0.1.2(9mo ago)31.2k↓100%MITPHPPHP &gt;=8.2CI passing

Since Jul 12Pushed 9mo 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 1mo ago

READMEChangelog (1)Dependencies (8)Versions (7)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

35

—

LowBetter than 79% of packages

Maintenance60

Regular maintenance activity

Popularity23

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity42

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

296d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6280a6440037d23ea8ff12dc4ae0799f17ba005a880fed8f91647e4ac7035888?d=identicon)[Zeggriim](/maintainers/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

[sylius/sylius

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

8.4k5.6M647](/packages/sylius-sylius)[sulu/sulu

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

1.3k1.3M152](/packages/sulu-sulu)[pentatrion/vite-bundle

Vite integration for your Symfony app

2725.3M13](/packages/pentatrion-vite-bundle)[scheb/2fa

Two-factor authentication for Symfony applications (please use scheb/2fa-bundle to install)

578630.7k1](/packages/scheb-2fa)[scheb/2fa-bundle

A generic interface to implement two-factor authentication in Symfony applications

6914.0M61](/packages/scheb-2fa-bundle)[sensiolabs/gotenberg-bundle

A Symfony bundle that provides seamless integration with Gotenberg for generating PDFs and screenshots from various sources (HTML, Markdown, Office documents, URLs) with a clean, builder-based API.

210210.4k2](/packages/sensiolabs-gotenberg-bundle)

PHPackages © 2026

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