-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (70 loc) · 2.32 KB
/
composer.json
File metadata and controls
71 lines (70 loc) · 2.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "simplesamlphp/simplesamlphp-module-adfs",
"description": "A module that implements the WS-federation IDP",
"type": "simplesamlphp-module",
"keywords": ["simplesamlphp", "adfs"],
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Tim van Dijen",
"email": "tvdijen@gmail.com"
}
],
"config": {
"preferred-install": {
"simplesamlphp/simplesamlphp": "source",
"*": "dist"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-module-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\adfs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Module\\adfs\\": "vendor/simplesamlphp/simplesamlphp/tests",
"SimpleSAML\\Test\\Utils\\": "vendor/simplesamlphp/simplesamlphp/tests/Utils"
}
},
"require": {
"php": "^8.3",
"ext-dom": "*",
"beste/clock": "^3.0",
"psr/clock": "^1.0",
"simplesamlphp/assert": "^2.0",
"simplesamlphp/saml11": "^2.3",
"simplesamlphp/saml2": "^6.1",
"simplesamlphp/simplesamlphp": "^2.5@dev",
"simplesamlphp/xml-common": "^2.7",
"simplesamlphp/xml-security": "^2.3",
"simplesamlphp/xml-soap": "^2.3",
"simplesamlphp/xml-wsdl": "^2.2",
"simplesamlphp/xml-wss-core": "^1.4",
"simplesamlphp/xml-ws-addressing": "^1.3",
"simplesamlphp/xml-ws-federation": "^1.2",
"simplesamlphp/xml-ws-policy": "^1.3",
"simplesamlphp/xml-ws-security-policy": "^1.2",
"simplesamlphp/xml-ws-trust": "^1.1",
"symfony/http-foundation": "^7.4"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "~1.11"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp-module-adfs/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp-module-adfs"
},
"extra": {
"branch-alias": {
"dev-master": "3.1.x-dev"
}
}
}