lcp/docusign-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Bundle for DocuSign

0.1.0 2016-04-19 15:24 UTC

This package is not auto-updated.

Last update: 2018-07-21 14:57:45 UTC


README

#DocuSignBundle

Latest Stable Version Total Downloads Latest Unstable Version License

This Bundle is a very simple wrapper (currently in development) for larrykluger/docusign-lib

##Installation

just run :

composer require lcp/docusign-bundle

and register the bundle in your app/AppKernel.php :

// app/AppKernel.php
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new LCP\DocuSignBundle\LCPDocuSignBundle(),
        );

        // ...
    }
}