-
Notifications
You must be signed in to change notification settings - Fork 135
/
composer.json
71 lines (69 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
{
"name": "simplesamlphp/saml2",
"description": "SAML2 PHP library from SimpleSAMLphp",
"type": "simplesamlphp-xmlprovider",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Andreas Åkre Solberg",
"email": "[email protected]"
},
{
"name": "Jaime Pérez Crespo",
"email": "[email protected]"
},
{
"name": "Tim van Dijen",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-date": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-soap": "*",
"ext-zlib": "*",
"nyholm/psr7": "^1.8",
"psr/clock": "^1.0",
"psr/http-message": "^2.0",
"psr/log": "^2.0 || ^3.0",
"simplesamlphp/assert": "~1.6.0",
"simplesamlphp/xml-common": "~1.20.0",
"simplesamlphp/xml-security": "~1.10.0",
"simplesamlphp/xml-soap": "~1.5.5"
},
"require-dev": {
"ext-intl": "*",
"beste/clock": "^3.0",
"mockery/mockery": "^1.6",
"simplesamlphp/simplesamlphp-test-framework": "^1.7"
},
"autoload": {
"psr-4": {
"SimpleSAML\\SAML2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\SAML2\\": "tests/SAML2/",
"SimpleSAML\\TestUtils\\SAML2\\": "tests/TestUtils/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v6.0.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"simplesamlphp/composer-module-installer": false,
"phpstan/extension-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
}
}