Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qdequippe-tech/yousign-php-api
PHP Yousign Client
https://github.com/qdequippe-tech/yousign-php-api
client electronic-signature php sdk yousign
Last synced: 1 day ago
JSON representation
PHP Yousign Client
- Host: GitHub
- URL: https://github.com/qdequippe-tech/yousign-php-api
- Owner: qdequippe-tech
- License: mit
- Created: 2021-05-17T07:21:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-11T09:55:13.000Z (6 days ago)
- Last Synced: 2024-11-11T10:39:05.248Z (6 days ago)
- Topics: client, electronic-signature, php, sdk, yousign
- Language: PHP
- Homepage:
- Size: 696 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PHP client for Yousign API
This SDK is generated automatically with [JanePHP](https://github.com/janephp/janephp)
from the [Yousign API](https://developers.yousign.com/).It also provides a **full object-oriented interface** for all the endpoints,
requests and responses of the Yousign API.## Installation
This library is built atop of [PSR-7](https://www.php-fig.org/psr/psr-7/) and
[PSR-18](https://www.php-fig.org/psr/psr-18/). So you will need to install some
implementations for those standard interfaces.If no PSR-18 client or PSR-7 message factory is available yet in your project
or you don't know or don't care which one to use, just install some default:```bash
composer require symfony/http-client nyholm/psr7
```You can now install the Yousign client:
```bash
composer require qdequippe/yousign-php-api
```## Quick start
To create a client:
```php
$client = \Qdequippe\Yousign\Api\Client::create();
$client->getSignatureRequests();
```