forked from rchouinard/rych-otp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 821 Bytes
/
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
{
"name": "rych/otp",
"type": "library",
"description": "PHP implementation of the OATH one-time password standards",
"keywords": ["security", "otp", "hotp", "totp", "oath", "rfc4226", "rfc6238"],
"homepage": "https://github.com/rchouinard/rych-otp",
"license": "MIT",
"authors": [
{
"name": "Ryan Chouinard",
"email": "rchouinard@gmail.com",
"homepage": "http://ryanchouinard.com"
}
],
"require": {
"php": ">=5.3.4",
"ext-hash": "*",
"rych/random": "0.1.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"satooshi/php-coveralls": "dev-master",
"fabpot/php-cs-fixer": "0.4.*@dev"
},
"autoload": {
"psr-4": {
"Rych\\OTP\\": "src/"
}
}
}