-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (46 loc) · 1.42 KB
/
composer.json
File metadata and controls
47 lines (46 loc) · 1.42 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
{
"name": "simplesamlphp/simplesamlphp-module-aggregator2",
"description": "A SAML 2.0 metadata aggregator for SimpleSAMLphp.",
"type": "simplesamlphp-module",
"keywords": [ "saml2", "metadata" ],
"homepage": "http://simplesamlphp.org",
"license": "LGPL-2.1",
"authors": [
{
"name": "Olav Morken",
"email": "olav.morken@uninett.no"
},
{
"name": "Jaime Pérez",
"email": "jaime.perez@uninett.no"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\aggregator2\\": "src/"
}
},
"require": {
"php": "^8.3",
"ext-dom": "*",
"robrichards/xmlseclibs": "^3.1",
"simplesamlphp/assert": "^2.0",
"simplesamlphp/saml2": "^6.1",
"simplesamlphp/simplesamlphp": "^2.5@dev",
"simplesamlphp/xml-common": "^2.7",
"simplesamlphp/xml-security": "^2.3",
"symfony/http-foundation": "^7.4"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "~1.11"
},
"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
}
}
}