composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "pragmarx/google2fa",
  3. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  4. "keywords": ["authentication", "two factor authentication", "google2fa", "laravel"],
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Antonio Carlos Ribeiro",
  9. "email": "acr@antoniocarlosribeiro.com",
  10. "role": "Creator & Designer"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.4",
  15. "christian-riesen/base32": "~1.3",
  16. "paragonie/random_compat": "~1.4|~2.0",
  17. "symfony/polyfill-php56": "~1.2"
  18. },
  19. "require-dev": {
  20. "phpspec/phpspec": "~2.1"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "PragmaRX\\Google2FA\\": "src/"
  25. }
  26. },
  27. "extra": {
  28. "component": "package",
  29. "frameworks": ["Laravel"],
  30. "branch-alias": {
  31. "dev-master": "1.0-dev"
  32. }
  33. },
  34. "suggest": {
  35. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  36. },
  37. "minimum-stability": "dev"
  38. }