composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "paragonie/constant_time_encoding",
  3. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4. "keywords": [
  5. "base64", "encoding", "rfc4648", "base32", "base16", "hex", "bin2hex", "hex2bin", "base64_encode", "base64_decode", "base32_encode", "base32_decode"
  6. ],
  7. "license": "MIT",
  8. "type": "library",
  9. "authors": [
  10. {
  11. "name": "Paragon Initiative Enterprises",
  12. "email": "security@paragonie.com",
  13. "homepage": "https://paragonie.com",
  14. "role": "Maintainer"
  15. },
  16. {
  17. "name": "Steve 'Sc00bz' Thomas",
  18. "email": "steve@tobtu.com",
  19. "homepage": "https://www.tobtu.com",
  20. "role": "Original Developer"
  21. }
  22. ],
  23. "support": {
  24. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  25. "email": "info@paragonie.com",
  26. "source": "https://github.com/paragonie/constant_time_encoding"
  27. },
  28. "require": {
  29. "php": "^5.3|^7"
  30. },
  31. "require-dev": {
  32. "phpunit/phpunit": "4.*|5.*",
  33. "paragonie/random_compat": "^1.4|^2",
  34. "vimeo/psalm": "^0.3|^1"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "ParagonIE\\ConstantTime\\": "src/"
  39. }
  40. }
  41. }