-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.27 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "assinafy/php-sdk",
"description": "Modern PHP SDK for Assinafy digital signature API - PSR compliant and framework agnostic",
"type": "library",
"license": "MIT",
"keywords": ["assinafy", "digital-signature", "e-signature", "sdk", "api-client"],
"authors": [
{
"name": "Assinafy SDK Contributors"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1|^2.0",
"psr/log": "^1.1|^2.0|^3.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.0|^10.0",
"squizlabs/php_codesniffer": "^3.7"
},
"suggest": {
"guzzlehttp/guzzle": "For using the default HTTP client implementation",
"monolog/monolog": "For advanced logging capabilities"
},
"autoload": {
"psr-4": {
"Assinafy\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Assinafy\\SDK\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}