lcp / docusign-bundle
Bundle for DocuSign
Installs: 172
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 8
Forks: 0
Open Issues: 0
pkg:composer/lcp/docusign-bundle
Requires
- larrykluger/docusign-lib: ^2.0
This package is not auto-updated.
Last update: 2018-07-21 14:57:45 UTC
README
#DocuSignBundle
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(), ); // ... } }