-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (60 loc) · 1.69 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
{
"name": "simplesamlphp/xml-security",
"description": "SimpleSAMLphp library for XML Security",
"type": "simplesamlphp-xmlprovider",
"license": "LGPL-2.1-or-later",
"keywords": [
"xml",
"xmldsig",
"signature",
"security"
],
"homepage": "https://github.com/simplesamlphp/xml-security",
"authors": [
{
"name": "Jaime Perez Crespo",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Tim van Dijen",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\XMLSecurity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\XMLSecurity\\Test\\": "tests",
"SimpleSAML\\XMLSecurity\\Test\\Utils\\": "tests/Utils",
"SimpleSAML\\XMLSecurity\\Test\\XML\\": "tests/XML"
}
},
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-hash": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-spl": "*",
"simplesamlphp/assert": "^1.3",
"simplesamlphp/xml-common": "^1.18.5"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.7"
},
"config": {
"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
}
}
}