-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (36 loc) · 1.11 KB
/
composer.json
File metadata and controls
37 lines (36 loc) · 1.11 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
{
"name": "simplesamlphp/simplesamlphp-module-yubikey",
"description": "A SimpleSAMLphp module that adds support for YubiKey devices.",
"type": "simplesamlphp-module",
"license": "LGPL-2.1-or-later",
"keywords": [ "simplesamlphp", "yubikey", "otp" ],
"authors": [
{
"name": "Jaime Pérez Crespo",
"email": "jaime.perez@uninett.no"
}
],
"require": {
"php": "^8.3",
"enygma/yubikey": "^3.9",
"symfony/http-foundation": "~7.4"
},
"require-dev": {
"simplesamlphp/simplesamlphp": "~2.5@RC",
"simplesamlphp/simplesamlphp-test-framework": "^1.11"
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\yubikey\\": "src/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}