36 lines
938 B
JSON
36 lines
938 B
JSON
{
|
|
"name": "99designs/http-signatures",
|
|
"description": "Sign and verify HTTP messages",
|
|
"keywords": ["http", "https", "signing", "signed", "signature", "hmac"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Paul Annesley",
|
|
"email": "paul@99designs.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"HttpSignatures\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"HttpSignatures\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=5.5",
|
|
"paragonie/random_compat": "^1.0|^2.0",
|
|
"psr/http-message": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^1.11",
|
|
"guzzlehttp/psr7": "^1.2",
|
|
"phpunit/phpunit": "~4.8",
|
|
"symfony/http-foundation": "~2.8|~3.0",
|
|
"symfony/psr-http-message-bridge": "^1.0",
|
|
"zendframework/zend-diactoros": "^1.1"
|
|
}
|
|
}
|