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
41
42
43
44
45
46
47
48
49
50
|
{
"name": "sonata-project/google-authenticator",
"type": "library",
"description": "Library to integrate Google Authenticator into a PHP project",
"keywords": [
"google authenticator"
],
"homepage": "https://github.com/sonata-project/GoogleAuthenticator",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "thomas.rabaix@gmail.com"
},
{
"name": "Christian Stocker",
"email": "me@chregu.tv"
},
{
"name": "Andre DeMarre",
"homepage": "http://www.devnetwork.net/viewtopic.php?f=50&t=94989"
}
],
"require": {
"php": "^7.3 || ^8.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.1.8"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"Google\\Authenticator\\": "src/",
"Sonata\\GoogleAuthenticator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Authenticator\\Tests\\": "tests/",
"Sonata\\GoogleAuthenticator\\Tests\\": "tests/"
}
}
}
|