-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
40 lines (40 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "christian-riesen/otp",
"type": "library",
"description": "One Time Passwords, hotp and totp according to RFC4226 and RFC6238",
"keywords": ["otp","hotp","totp","googleauthenticator","rfc4226","rfc6238"],
"homepage": "https://github.com/ChristianRiesen/otp",
"license": "MIT",
"authors": [
{
"name": "Christian Riesen",
"email": "chris.riesen@gmail.com",
"homepage": "http://christianriesen.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.0",
"paragonie/constant_time_encoding": "^1|^2",
"paragonie/random_compat": ">=1",
"symfony/polyfill-php56": "^1"
},
"require-dev": {
"phpunit/phpunit": "^5.7.11 || ^6.0.5"
},
"autoload": {
"psr-4": {
"Otp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Otp\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}