forked from 99designs/http-signatures-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 945 Bytes
/
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
{
"name": "99designs/http-signatures",
"description": "Sign and verify HTTP messages",
"keywords": ["http", "https", "signing", "signed", "signature", "hmac"],
"license": "MIT",
"authors": [
{
"name": "Paul Annesley",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"HttpSignatures\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HttpSignatures\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"paragonie/random_compat": "^1.0|^2.0|9.99.99",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"guzzlehttp/psr7": "^1.2",
"phpunit/phpunit": "~7.0",
"symfony/http-foundation": "~2.8|~3.0",
"symfony/psr-http-message-bridge": "^1.0.2",
"zendframework/zend-diactoros": "^1.1"
}
}