dbp/relay-esign-bundle

Installs: 10 625

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 4

Type:symfony-bundle

v0.3.13 2024-04-15 11:59 UTC

README

GitHub | Packagist | Frontend Application | ESign Website

Test

The electronic signature bundle provides an API for interacting with multiple pdf-as and moa-ssp servers and allows signing and signature verification of PDF files using PAdES.

For more details see the docs or the ESign Website.

There is a corresponding frontend application that uses this API at ESign Frontend Application.

Bundle installation

You can install the bundle directly from packagist.org.

composer require dbp/relay-esign-bundle

Integration into the Relay API Server

  • Add the bundle to your config/bundles.php in front of DbpRelayCoreBundle:
...
Dbp\Relay\EsignBundle\DbpRelayEsignBundle::class => ['all' => true],
Dbp\Relay\CoreBundle\DbpRelayCoreBundle::class => ['all' => true],
];
  • Run composer install to clear caches

Configuration

For more details see the Configuration Documentation.

If you were using the DBP API Server Template as template for your Symfony application, then an example configuration file should have already been generated for you.

To handle locking you need to configure locking in the core bundle.

You also need to configure the Symfony Messenger in the core bundle to check out guests after a certain amount of time.

For more info on bundle configuration see https://symfony.com/doc/current/bundles/configuration.html.