forked from silinternational/simplesamlphp-module-mfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 866 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
31
32
{
"name" : "magnobooter/simplesamlphp-module-mfa",
"description" : "A simpleSAMLphp module for prompting the user for MFA credentials (such as a TOTP code, etc.).",
"type" : "simplesamlphp-module",
"license" : "LGPL-2.1-or-later",
"authors" : [{
"name" : "Matt Henderson",
"email" : "[email protected]"
}
],
"require" : {
"php" : ">=7.0",
"ext-json" : "*",
"silinternational/php-env" : "^2.1",
"silinternational/psr3-adapters" : "dev-develop",
"simplesamlphp/simplesamlphp" : "*",
"silinternational/idp-id-broker-php-client" : "dev-develop",
"sinergi/browser-detector" : "^6.1"
},
"require-dev" : {
"behat/behat" : "^3.3",
"behat/mink" : "^1.7",
"behat/mink-goutte-driver" : "^1.2",
"phpunit/phpunit" : "^6.2"
},
"autoload" : {
"psr-4" : {
"Sil\\SspMfa\\" : "src/",
"Sil\\SspMfa\\Behat\\" : "features/"
}
}
}