composer.json 936 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "pixelfed/http-signatures",
  3. "description": "Sign and verify HTTP messages",
  4. "keywords": ["http", "https", "signing", "signed", "signature", "hmac"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Paul Annesley",
  9. "email": "paul@99designs.com"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "HttpSignatures\\": "src/"
  15. }
  16. },
  17. "autoload-dev": {
  18. "psr-4": {
  19. "HttpSignatures\\Tests\\": "tests/"
  20. }
  21. },
  22. "require": {
  23. "php": ">=5.6",
  24. "paragonie/random_compat": "^1.0|^2.0",
  25. "psr/http-message": "^1.0"
  26. },
  27. "require-dev": {
  28. "friendsofphp/php-cs-fixer": "^2",
  29. "guzzlehttp/psr7": "^1.2",
  30. "phpunit/phpunit": "~4.8",
  31. "symfony/http-foundation": "~2.8|~3.0",
  32. "symfony/psr-http-message-bridge": "^1.0.2",
  33. "zendframework/zend-diactoros": "^1.1"
  34. }
  35. }