2017 © Pedro PelĂĄez
 

library universign-bundle

Bundle for mapping HTTP API universign

image

consoneo/universign-bundle

Bundle for mapping HTTP API universign

  • Tuesday, April 18, 2017
  • by GPDev
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

ConsoneoUniversignBundle

SensioLabsInsight, (*1)

Installation

To install ConsoneoUniversignBundle with Composer just add the following to your 'composer.json' file:, (*2)

{
    require: {
        "consoneo/universign-bundle": "*",
        ...
    }
}

The next thing you should do is install the bundle by executing the following command:, (*3)

php composer.phar update consoneo/universign-bundle

Finally, add the bundle to the registerBundles function of the AppKernel class in the 'app/AppKernel.php' file:, (*4)

public function registerBundles()
{
    $bundles = array(
        ...
        new Consoneo\Bundle\UniversignBundle\ConsoneoUniversignBundle(),
        ...
    );

Configuration

Configure the bundle by adding the following to app/config/config.yml' with your own configuration:, (*5)

consoneo_universign:
    horodatage:
        login:              xxx
        password:             xxx

Horodatage

For access to universign horodatage service :, (*6)

$this->container->get('universign.horodatage');

Universign Horodatage support following methods :, (*7)

  • postPdf (AccĂšs suivant le procotole XML-RPC) Horodater un fichier PDF diffĂšre de l’horodatage de fichiers courants car le sceau d’horodatage est embarquĂ© dans le fichier PDF. Lors de l’opĂ©ration d’horodatage, le document PDF source doit ĂȘtre transmis intĂ©gralement afin d’y apposer le jeton d’horodatage.

The Versions