Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 637 Bytes

installation.md

File metadata and controls

45 lines (34 loc) · 637 Bytes

Bundle Installation

$ composer require gheb/docusign-bundle

register the bundle

Symfony 3.4

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new \DocusignBundle\DocusignBundle(),
        ];
    }
}

Symfony 4+

//config/bundles.php
return [
    DocusignBundle\DocusignBundle::class => ['all' => true],
]

Register the routes

# config/routes.yaml or config/routes/docusign.yaml
docusign:
    resource: .
    type: docusign

Next: Configure DocuSign

Go back