forked from arduent/HTTP-Message-Signer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 708 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 708 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
{
"name": "macgirvin/http-message-signer",
"description": "RFC 9421 HTTP Message Signer and Verifier for PSR-7 requests",
"type": "library",
"require": {
"php": "^8.1",
"psr/http-message": "^2.0",
"bakame/http-structured-fields": "^2.0",
"ext-openssl": "*",
"phpseclib/phpseclib": "~3.0",
"phpseclib/phpseclib2_compat": "^1.0",
"paragonie/easy-ecc": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"guzzlehttp/psr7": "^2.8"
},
"autoload": {
"psr-4": {
"HttpSignature\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HttpSignature\\Tests\\": "tests/"
}
},
"license": "BSD-3-Clause",
"minimum-stability": "stable"
}