composer.json 759 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "phpgangsta/googleauthenticator",
  3. "description": "Google Authenticator 2-factor authentication",
  4. "version": "1.0.0",
  5. "type": "library",
  6. "keywords": ["GoogleAuthenticator", "TOTP", "rfc6238"],
  7. "license": "BSD-4-Clause",
  8. "authors": [
  9. {
  10. "name": "Michael Kliewe",
  11. "email": "info@phpgangsta.de",
  12. "homepage": "http://www.phpgangsta.de/",
  13. "role": "Developer"
  14. }
  15. ],
  16. "support": {
  17. "source": "https://github.com/PHPGangsta/GoogleAuthenticator",
  18. "issues": "https://github.com/PHPGangsta/GoogleAuthenticator/issues"
  19. },
  20. "require": {
  21. "php": ">=5.3"
  22. },
  23. "autoload": {
  24. "classmap": ["PHPGangsta/GoogleAuthenticator.php"]
  25. }
  26. }