This repository was archived by the owner on Jan 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (51 loc) · 1.42 KB
/
composer.json
File metadata and controls
52 lines (51 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
48
49
50
51
52
{
"name": "simplesamlphp/ws-security",
"description": "WS-Security PHP library",
"license": "LGPL-2.1-or-later",
"type": "simplesamlphp-xmlprovider",
"authors": [
{
"name": "Tim van Dijen",
"email": "tvdijen@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-spl": "*",
"simplesamlphp/assert": "~1.9",
"simplesamlphp/saml2": "~6.0",
"simplesamlphp/xml-common": "~2.4",
"simplesamlphp/xml-security": "~2.0",
"simplesamlphp/xml-soap": "~2.0",
"simplesamlphp/xml-ws-addressing": "~1.0",
"simplesamlphp/xml-ws-policy": "~1.0",
"simplesamlphp/xml-wss-core": "~1.0"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "~1.10"
},
"autoload": {
"psr-4": {
"SimpleSAML\\WSSecurity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\WSSecurity\\": "tests/WSSecurity/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v1.1.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}