-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.03 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "mastersteelblade/google-authenticator",
"type": "library",
"description": "Library to integrate Google Authenticator into a PHP 8.0+ project",
"keywords": [
"google authenticator"
],
"homepage": "https://github.com/MasterSteelblade/GoogleAuthenticator",
"license": "MIT",
"authors": [
{
"name": "Benjamin Clarke",
"email": "mastersteelblade@protonmail.com"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.2"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "dev"
}
},
"autoload": {
"psr-4": {
"Google\\Authenticator\\": "src/",
"Steelblade\\GoogleAuthenticator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Authenticator\\Tests\\": "tests/",
"Steelblade\\GoogleAuthenticator\\Tests\\": "tests/"
}
}
}