| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "spomky-labs/otphp",
- "type": "library",
- "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",
- "license": "MIT",
- "keywords": ["otp", "hotp", "totp", "RFC 4226", "RFC 6238", "Google Authenticator", "FreeOTP"],
- "homepage": "https://github.com/Spomky-Labs/otphp",
- "authors": [
- {
- "name": "Florent Morselli",
- "homepage": "https://github.com/Spomky"
- },
- {
- "name": "All contributors",
- "homepage": "https://github.com/Spomky-Labs/otphp/contributors"
- }
- ],
- "require": {
- "php": "^5.5|^7.0",
- "paragonie/constant_time_encoding": "^1.0|^2.0",
- "beberlei/assert": "^2.4",
- "symfony/polyfill-mbstring": "^1.1",
- "symfony/polyfill-php56": "^1.1",
- "paragonie/random_compat": ">=2"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0|^5.0",
- "satooshi/php-coveralls": "^1.0"
- },
- "suggest": {
- },
- "autoload": {
- "psr-4": { "OTPHP\\": "src/" }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "8.2.x-dev"
- }
- }
- }
|