$ composer require gheb/docusign-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],
]
# config/routes.yaml or config/routes/docusign.yaml
docusign:
resource: .
type: docusign
Next: Configure DocuSign