-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (32 loc) · 802 Bytes
/
composer.json
File metadata and controls
33 lines (32 loc) · 802 Bytes
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
{
"name":"enygma/gauth",
"type":"library",
"description":"PHP library to generate codes compatible with the Google Authenticator clients",
"keywords":["google", "twofactor", "authenticator", "codes"],
"homepage":"https://github.com/enygma/gauth.git",
"license":"MIT",
"authors":[
{
"name":"Chris Cornutt",
"email":"ccornutt@phpdeveloper.org",
"homepage":"http://www.phpdeveloper.org/"
}
],
"require":{
"php":">=5.3.1",
"paragonie/random_compat":"2.*",
"bacon/bacon-qr-code":"1.0.0"
},
"autoload":{
"psr-0":{
"GAuth":"src/"
}
},
"extra": {
"clean": [
"tests/",
"README.md",
"LICENSE"
]
}
}