https://github.com/setasign/setapdf-signer-addon-cosign
A signature module for the SetaPDF-Signer component by wrapping the CoSign Signature SOAP API for the CoSign Central solution from DocuSign.
https://github.com/setasign/setapdf-signer-addon-cosign
Last synced: 6 months ago
JSON representation
A signature module for the SetaPDF-Signer component by wrapping the CoSign Signature SOAP API for the CoSign Central solution from DocuSign.
- Host: GitHub
- URL: https://github.com/setasign/setapdf-signer-addon-cosign
- Owner: Setasign
- Created: 2015-05-19T15:23:32.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-16T14:38:06.000Z (almost 11 years ago)
- Last Synced: 2025-02-16T15:05:47.615Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 246 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CoSign signature module for the SetaPDF-Signer component
This package offers an individual module for the [SetaPDF-Signer Component](https://www.setasign.com/signer) that allows you to integrate the CoSign Central solution from [DocuSign](https://www.docusign.com) by using the [CoSign Signature SOAP API](http://developer.arx.com/quick-start/sapi-web-services/) for the signature process of PDF documents. A big advantage of this module is, that it only transfers the hash, that should be signed, to the CoSign Central solution and not the complete PDF document. The returned signature will be placed in the PDF document by the SetaPDF-Signer Component.
## Installation
Add following to your composer.json:
```json
{
"repositories": [
{
"type": "composer",
"url": "http://www.setasign.com/downloads/"
}
],
"require": {
"setasign/setapdf-signer-addon-cosign": "1.*"
}
}
```
By default this packages depends on a licensed version of the SetaPDF-Signer component. If you want to use it with an [evaluation version](https://www.setasign.com/products/setapdf-signer/evaluate/) please use following in your composer.json:
```json
{
"repositories": [
{
"type": "composer",
"url": "http://www.setasign.com/downloads/"
}
],
"require": {
"setasign/setapdf-signer-addon-cosign": "dev-evaluation"
}
}
```