123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "pragmarx/google2fa",
- "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
- "keywords": ["authentication", "two factor authentication", "google2fa", "laravel"],
- "license": "BSD-3-Clause",
- "authors": [
- {
- "name": "Antonio Carlos Ribeiro",
- "email": "acr@antoniocarlosribeiro.com",
- "role": "Creator & Designer"
- }
- ],
- "require": {
- "php": ">=5.4",
- "christian-riesen/base32": "~1.3",
- "paragonie/random_compat": "~1.4|~2.0",
- "symfony/polyfill-php56": "~1.2"
- },
- "require-dev": {
- "phpspec/phpspec": "~2.1"
- },
- "autoload": {
- "psr-4": {
- "PragmaRX\\Google2FA\\": "src/"
- }
- },
- "extra": {
- "component": "package",
- "frameworks": ["Laravel"],
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "suggest": {
- "bacon/bacon-qr-code": "Required to generate inline QR Codes."
- },
- "minimum-stability": "dev"
- }
|