composer.json 819 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "pixelfed/http-signatures-guzzlehttp",
  3. "description": "Sign and verify HTTP messages with Guzzle 6",
  4. "homepage": "https://github.com/99designs/http-signatures-guzzlehttp",
  5. "keywords": ["http", "https", "signing", "signed", "signature", "hmac", "guzzle 6"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Adrian Palmer",
  10. "email": "adrian.palmer@99designs.com"
  11. },
  12. {
  13. "name": "Ruben de Vries",
  14. "email": "ruben@rubensayshi.com"
  15. }
  16. ],
  17. "autoload": {
  18. "psr-4": {
  19. "": "src/"
  20. }
  21. },
  22. "require": {
  23. "php": ">=5.5.0",
  24. "pixelfed/http-signatures": "^5.0",
  25. "guzzlehttp/guzzle": ">=6.0 <7.0.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "~4.1"
  29. }
  30. }