-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.16 KB
/
Copy pathcomposer.json
File metadata and controls
94 lines (94 loc) · 2.16 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "turbodocx/sdk",
"version": "0.8.0",
"description": "Official PHP SDK for TurboDocx - E-signature API, document generation, PDF signing, and workflow automation",
"type": "library",
"license": "MIT",
"keywords": [
"turbodocx",
"esignature",
"esignature-api",
"e-signature",
"digital-signature",
"electronic-signature",
"pdf-signing",
"document-generation",
"document-automation",
"docusign-alternative",
"pandadoc-alternative",
"signnow-alternative",
"hellosign-alternative",
"dropbox-sign-alternative",
"adobe-sign-alternative",
"signrequest-alternative",
"signeasy-alternative",
"signature-api",
"contract-signing",
"contract-management",
"document-workflow",
"pdf-api",
"pdf",
"docx",
"pptx",
"powerpoint",
"powerpoint-template",
"powerpoint-generation",
"html-to-docx",
"html-to-word",
"word-template",
"template-engine",
"sdk",
"api"
],
"authors": [
{
"name": "TurboDocx",
"homepage": "https://www.turbodocx.com"
}
],
"homepage": "https://www.turbodocx.com",
"support": {
"issues": "https://github.com/TurboDocx/SDK/issues",
"source": "https://github.com/TurboDocx/SDK"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-fileinfo": "*",
"guzzlehttp/guzzle": "^7.15.2",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"friendsofphp/php-cs-fixer": "^3.48"
},
"autoload": {
"psr-4": {
"TurboDocx\\": "src/"
},
"files": [
"src/Utils/verifyWebhookSignature.php"
]
},
"autoload-dev": {
"psr-4": {
"TurboDocx\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src tests --level=8",
"cs-fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "stable",
"prefer-stable": true
}