PHP code example of zeggriim / yousign-webhook-bundle
1. Go to this page and download the library: Download zeggriim/yousign-webhook-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
zeggriim / yousign-webhook-bundle example snippets
return [
Zeggriim\YousignWebhookBundle\YousignWebhookBundle::class => ['all' => true],
];
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
}
}