https://github.com/docusign/docusign-esign-php-laravel
https://github.com/docusign/docusign-esign-php-laravel
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/docusign/docusign-esign-php-laravel
- Owner: docusign
- License: mit
- Created: 2021-05-12T17:44:31.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-04-18T16:52:22.000Z (almost 3 years ago)
- Last Synced: 2025-03-25T18:45:18.633Z (about 1 year ago)
- Language: PHP
- Size: 3.91 KB
- Stars: 9
- Watchers: 9
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Docusign eSign PHP Laravel
A Laravel wrapper for the [DocuSign eSign PHP Client](https://github.com/docusign/docusign-esign-php-client)
### Install Through Composer
```
composer require docusign/esign-laravel
```
Add the service provider to the `providers` array in `config/app.php`
```php
DocuSign\eSign\ESignServiceProvider::class
```
## Usage
For usage see the [DocuSign eSign PHP Client](https://github.com/docusign/docusign-esign-php-client)
### Using the `DocuSign\eSign\Client\ApiClient` class
You can create a new instance of the DocuSign Client with:
```php
$client = new DocuSign\eSign\Client\ApiClient;
```