fuc/vendor/vectorface/googleauthenticator/composer.json
2025-02-23 13:30:57 +08:00

52 lines
1.1 KiB
JSON
Executable File

{
"name": "vectorface/googleauthenticator",
"description": "Google Authenticator 2-factor authentication",
"type": "library",
"keywords": ["GoogleAuthenticator", "TOTP", "rfc6238"],
"license": ["BSD-2-Clause"],
"authors": [
{
"name": "Michael Kliewe",
"email": "info@phpgangsta.de",
"homepage": "http://www.phpgangsta.de/",
"role": "Developer"
},
{
"name": "Francis Lavoie",
"email": "francis@vectorface.com",
"homepage": "http://vectorface.com/",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/Vectorface/GoogleAuthenticator",
"issues": "https://github.com/Vectorface/GoogleAuthenticator/issues"
},
"require": {
"php": ">=8.1",
"endroid/qr-code": "^5.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Vectorface\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Vectorface\\": "tests/"
}
},
"scripts": {
"test": [
"@test-unit"
],
"test-unit": "phpunit --color=always"
}
}