forked from simplesamlphp/saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (63 loc) · 1.64 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
{
"name": "simplesamlphp/saml2-legacy",
"description": "SAML2 PHP library from SimpleSAMLphp",
"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.0",
"ext-date": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-soap": "*",
"ext-zlib": "*",
"nyholm/psr7": "^1.5.1",
"psr/clock": "^1.0",
"psr/http-message": "^2.0",
"psr/log": "^2.0 || ^3.0",
"simplesamlphp/assert": "^1.0.4",
"simplesamlphp/xml-common": "^1.12.0",
"simplesamlphp/xml-security": "^1.6.8",
"simplesamlphp/xml-soap": "^1.3.0"
},
"require-dev": {
"beste/clock": "^3.0",
"mockery/mockery": "^1.5.1",
"simplesamlphp/simplesamlphp-test-framework": "^1.5.5"
},
"autoload": {
"psr-4": {
"SimpleSAML\\SAML2\\": "src/SAML2"
}
},
"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
}
}
}