-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.19 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "benycode/dss",
"description": "DSS API client for PHP",
"keywords": ["dss", "digital signature", "signature verify"],
"license": "MIT",
"authors": [
{
"name": "Benycode"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"php-http/cache-plugin": "^1.7.1",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.12",
"php-http/httplug": "^2.2",
"php-http/multipart-stream-builder": "^1.1.2",
"psr/cache": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"symfony/polyfill-php80": "^1.17",
"nesbot/carbon": "^2.55"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"guzzlehttp/guzzle": "^7.2",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/mock-client": "^1.4.1"
},
"autoload": {
"psr-4": {
"DSS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DSS\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
}
}