123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "pixelfed/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.6",
- "paragonie/random_compat": "^1.0|^2.0",
- "psr/http-message": "^1.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^2",
- "guzzlehttp/psr7": "^1.2",
- "phpunit/phpunit": "~4.8",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/psr-http-message-bridge": "^1.0.2",
- "zendframework/zend-diactoros": "^1.1"
- }
- }
|