-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (54 loc) · 1.55 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
{
"name": "simplesamlphp/xml-common",
"description": "A library with classes and utilities for handling XML structures.",
"type": "simplesamlphp-xmlprovider",
"keywords": ["saml", "xml"],
"homepage": "http://simplesamlphp.org",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Jaime Perez",
"email": "[email protected]"
},
{
"name": "Tim van Dijen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\XML\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\XML\\": ["tests/XML", "tests/Utils"]
}
},
"require": {
"php": "^8.1",
"ext-date": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-pcre": "*",
"ext-spl": "*",
"simplesamlphp/assert": "^1.2",
"simplesamlphp/composer-xmlprovider-installer": "~1.0.0",
"symfony/finder": "^6.4"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.7"
},
"support": {
"issues": "https://github.com/simplesamlphp/xml-common/issues",
"source": "https://github.com/simplesamlphp/xml-common"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}