composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "spomky-labs/otphp",
  3. "type": "library",
  4. "description": "A PHP library for generating one time passwords according to RFC 4226 (HOTP Algorithm) and the RFC 6238 (TOTP Algorithm) and compatible with Google Authenticator",
  5. "license": "MIT",
  6. "keywords": ["otp", "hotp", "totp", "RFC 4226", "RFC 6238", "Google Authenticator", "FreeOTP"],
  7. "homepage": "https://github.com/Spomky-Labs/otphp",
  8. "authors": [
  9. {
  10. "name": "Florent Morselli",
  11. "homepage": "https://github.com/Spomky"
  12. },
  13. {
  14. "name": "All contributors",
  15. "homepage": "https://github.com/Spomky-Labs/otphp/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": "^5.5|^7.0",
  20. "paragonie/constant_time_encoding": "^1.0|^2.0",
  21. "beberlei/assert": "^2.4",
  22. "symfony/polyfill-mbstring": "^1.1",
  23. "symfony/polyfill-php56": "^1.1",
  24. "paragonie/random_compat": ">=2"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "~4.0|^5.0",
  28. "satooshi/php-coveralls": "^1.0"
  29. },
  30. "suggest": {
  31. },
  32. "autoload": {
  33. "psr-4": { "OTPHP\\": "src/" }
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "8.2.x-dev"
  38. }
  39. }
  40. }