-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 898 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 898 Bytes
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
{
"name": "signnow/api-php-sdk",
"license": "MIT",
"description": "Library to communicate with SignNow API",
"type": "library",
"keywords": [
"php sdk",
"api",
"signnow"
],
"autoload": {
"psr-4": {
"SignNow\\": "src/SignNow"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8.0",
"symfony/dependency-injection": "^7.0",
"symfony/property-access": "^7.0",
"symfony/serializer": "^7.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"mcustiel/phiremock-server": "^1.2",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload-dev": {
"psr-4": {
"SignNow\\Sdk\\Tests\\": "tests/api/",
"SignNow\\Sdk\\Tests\\Core\\": "tests/core/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true
}