forked from liamdennehy/http-signatures-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 KB
/
composer.json
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
{
"name": "sagacorp/http-signatures-php",
"description": "Sign and verify PSR-7 HTTP messages with HMAC and RSA keys",
"keywords": ["http", "https", "signing", "signed", "signature", "hmac", "rsa", "digital signature", "electronic signature"],
"license": "MIT",
"authors": [
{
"name": "Liam Dennehy",
"email": "[email protected]"
},
{
"name": "Paul Annesley",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"HttpSignatures\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HttpSignatures\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"psr/http-message": "^1.0 || ^2.0",
"phpseclib/phpseclib": "~3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"guzzlehttp/psr7": "^2.7",
"phpunit/phpunit": "^11.5",
"symfony/http-foundation": "^7.2.2",
"symfony/psr-http-message-bridge": "^7.2.0",
"php-http/discovery": "^1.20"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}