dbp / relay-esign-bundle
Installs: 14 850
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 4
Type:symfony-bundle
Requires
- php: >=8.1
- ext-json: *
- ext-soap: *
- api-platform/core: ^2.7.11 || ^3.2
- dbp/relay-core-bundle: ^0.1.148
- guzzlehttp/guzzle: ^7.5
- guzzlehttp/promises: ^2.0
- guzzlehttp/psr7: ^2.6
- league/uri: ^6.5 || ^7.0
- myclabs/php-enum: ^1.8.4
- psr/log: ^1.1.4 || ^2.0.0 || ^3.0.0
- symfony/config: ^5.4 || ^6.4
- symfony/console: ^5.4 || ^6.4
- symfony/dependency-injection: ^5.4 || ^6.4
- symfony/filesystem: ^5.4 || ^6.4
- symfony/framework-bundle: ^5.4 || ^6.4
- symfony/http-foundation: ^5.4 || ^6.4
- symfony/http-kernel: ^5.4 || ^6.4
- symfony/routing: ^5.4 || ^6.4
- symfony/security-core: ^5.4 || ^6.4
- symfony/stopwatch: ^5.4 || ^6.4
- symfony/uid: ^5.4 || ^6.4
- zbateson/mail-mime-parser: ^2.2 || ^3
Requires (Dev)
- ext-simplexml: *
- captainhook/captainhook: ^5.21
- friendsofphp/php-cs-fixer: ^3.50
- phpstan/phpstan: ^1.10.59
- phpstan/phpstan-phpunit: ^1.3.16
- phpunit/phpunit: ^10.1
- symfony/browser-kit: ^5.4 || ^6.4
- symfony/error-handler: ^5.4 || ^6.4
- symfony/http-client: ^5.4 || ^6.4
- symfony/monolog-bridge: ^5.4 || ^6.4
- symfony/monolog-bundle: ^3.10
- symfony/phpunit-bridge: ^7.0
- vimeo/psalm: ^5.22.2
Conflicts
- pimple/pimple: <3.1
- willdurand/negotiation: <3
README
GitHub | Packagist | Frontend Application | ESign Website
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 ofDbpRelayCoreBundle
:
... 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.