-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
66 lines (65 loc) · 2.05 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "simplesamlphp/simplesamlphp-module-authx509",
"description": "A module that is able to authenticate users based on X509 client certificates",
"type": "simplesamlphp-module",
"keywords": ["simplesamlphp", "X509"],
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Joost van Dijk",
"email": "Joost.vanDijk@surf.nl"
},
{
"name": "Thijs Kinkhorst",
"email": "thijs.kinkhorst@surf.nl"
},
{
"name": "Tim van Dijen",
"email": "tvdijen@gmail.com"
}
],
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\authX509\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
}
},
"require": {
"php": "^8.1",
"ext-openssl" : "*",
"simplesamlphp/assert": "^1.0",
"simplesamlphp/composer-module-installer": "^1.3.2",
"simplesamlphp/simplesamlphp": "^2.2",
"simplesamlphp/simplesamlphp-module-ldap": "^2.2",
"symfony/http-foundation": "^6.4",
"symfony/ldap": "^6.4",
"symfony/security-core": "^6.4"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.6.0"
},
"extra": {
"ssp-mixedcase-module-name": "authX509"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-authx509/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp-module-authx509"
}
}