tucker-eric/laravel-docusign 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tucker-eric/laravel-docusign

最新稳定版本:6.4.0

Composer 安装命令:

composer require tucker-eric/laravel-docusign

包简介

Laravel 6 Wrapper for Official DocuSign Rest API

README 文档

README

A Laravel wrapper for the Docusign Rest Client

Install Through Composer

composer require tucker-eric/laravel-docusign

If you are using Laravel 6 or a newer version the package will automatically register its service provider. You only need to generate the config file.

After updating composer, add the service provider to the providers array in config/app.php

LaravelDocusign\DocusignServiceProvider::class

Add the facade to the aliases array in config/app.php

'DocuSign'  => LaravelDocusign\Facades\DocuSign::class,

Generate the config file:

php artisan vendor:publish --provider="LaravelDocusign\DocusignServiceProvider"

Add the following to your .env file (matching the config):

DOCUSIGN_USERNAME=[YOUR_DOCUSIGN_USERNAME]
DOCUSIGN_PASSWORD=[YOUR_DOCUSIGN_PASSWORD]
DOCUSIGN_INTEGRATOR_KEY=[YOUR_DOCUSIGN_INTEGRATOR_KEY]

Usage

For usage see the Docusign Rest Client

Using the Facade

You can create a new instance of the DocuSign Client with:

$client = DocuSign::create();

Access DocuSign Models:

$signer = DocuSign::signer([
    'name'  => 'John Doe',
    'email' => 'Jdoe123@example.com'
]);

Access DocuSign Api endpoints using get();

DocuSign::get('folders')->callList();

OR

Using the LaravelDocusign\Client class

You can create a new instance of the DocuSign Client with:

$client = new LaravelDocusign\Client;

统计信息

  • 总下载量: 462.34k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 40
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 40
  • Watchers: 3
  • Forks: 19
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-05-26