forked from liamdennehy/http-signatures-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.24 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
{
"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": ">=5.6",
"psr/http-message": "^1.0",
"phpseclib/phpseclib": "~3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"guzzlehttp/psr7": "^1.2",
"phpunit/phpunit": "~5.6",
"symfony/http-foundation": "~2.8|~3.0",
"symfony/psr-http-message-bridge": "^1.0.2",
"zendframework/zend-diactoros": "^1.1",
"nyholm/psr7": "^1.1",
"nyholm/psr7-server": "^0.3.0",
"kriswallsmith/buzz": "^1.0",
"zendframework/zend-httphandlerrunner": "^1.1"
}
}