lcp/docusign-bundle

此包已废弃,不再维护。未建议替代包。

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

此组件包是针对 larrykluger/docusign-lib 的一个非常简单的包装器(目前处于开发中)

##安装

只需运行

composer require lcp/docusign-bundle

并在您的应用/AppKernel.php 中注册此包

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

        // ...
    }
}