-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
39 lines (39 loc) · 932 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"autoload": {
"psr-4": {
"DocuSign\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DocuSign\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests"
},
"config": {
"process-timeout": 0
},
"description": "DocuSign PHP launcher",
"require": {
"docusign/admin-client": "^2.0.0",
"docusign/click-client": "^1.4.1",
"docusign/esign-client": "^8.0.0",
"docusign/rooms-client": "^2.1.1",
"docusign/monitor-client": "^1.2.1",
"docusign/webforms-client": "^1.0.1-rc1",
"docusign/maestro-client": "v2.0.0-rc1",
"twig/twig": "^3.14.0",
"league/oauth2-client": "^2.7.0",
"ext-json": "*",
"guzzlehttp/guzzle": "7.9.2",
"firebase/php-jwt": "6.10.1",
"mashape/unirest-php": "3.0.4",
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "^11.4.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "*"
}
}