forked from simplesamlphp/simplesamlphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
119 lines (119 loc) · 4.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "simplesamlphp/simplesamlphp",
"description": "A PHP implementation of a SAML 2.0 service provider and identity provider.",
"type": "project",
"keywords": [ "saml2", "shibboleth","oauth","ws-federation","sp","idp" ],
"homepage": "https://simplesamlphp.org",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Andreas Åkre Solberg",
"email": "[email protected]"
},
{
"name": "Olav Morken",
"email": "[email protected]"
},
{
"name": "Jaime Perez",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\": "src/SimpleSAML",
"SimpleSAML\\Module\\admin\\": "modules/admin/src",
"SimpleSAML\\Module\\core\\": "modules/core/src",
"SimpleSAML\\Module\\cron\\": "modules/cron/src",
"SimpleSAML\\Module\\exampleauth\\": "modules/exampleauth/src",
"SimpleSAML\\Module\\multiauth\\": "modules/multiauth/src",
"SimpleSAML\\Module\\saml\\": "modules/saml/src"
},
"files": ["src/_autoload_modules.php"]
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\": ["tests", "tests/src/SimpleSAML"],
"SimpleSAML\\Test\\Module\\admin\\": ["tests//modules/admin/src"],
"SimpleSAML\\Test\\Module\\core\\": ["tests/modules/core/src"],
"SimpleSAML\\Test\\Module\\cron\\": ["tests/modules/cron/src"],
"SimpleSAML\\Test\\Module\\exampleauth\\": ["tests/modules/exampleauth/src"],
"SimpleSAML\\Test\\Module\\multiauth\\": ["tests/modules/multiauth/src"],
"SimpleSAML\\Test\\Module\\saml\\": ["tests/modules/saml/src"]
},
"files": ["tests/_autoload_modules.php"]
},
"require": {
"php": "^8.0",
"ext-date": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-session": "*",
"ext-simplexml": "*",
"ext-spl": "*",
"ext-xml": "*",
"gettext/gettext": "^5.6.1",
"gettext/translator": "^1.0.1",
"phpmailer/phpmailer": "^6.5",
"psr/log": "^2.0 || ^3.0",
"robrichards/xmlseclibs": "^3.1.1",
"simplesamlphp/assert": "^1.0.0",
"simplesamlphp/saml2": "^5.0.0-alpha.6",
"simplesamlphp/simplesamlphp-assets-base": "^2.0.0",
"simplesamlphp/simplesamlphp-module-adfs": "^3.0.0-rc1",
"symfony/cache": "v6.3.1",
"symfony/config": "^5.4||^6",
"symfony/console": "^6.2",
"symfony/dependency-injection": "^5.4||^6",
"symfony/filesystem": "^5.4||^6",
"symfony/finder": "^5.4||^6",
"symfony/framework-bundle": "^5.4||^6",
"symfony/http-foundation": "^5.4||^6",
"symfony/http-kernel": "^5.4||^6",
"symfony/intl": "^5.4||^6",
"symfony/psr-http-message-bridge": "^2.1",
"symfony/routing": "^5.4||^6",
"symfony/translation-contracts": "^2.5||^3",
"symfony/twig-bridge": "^5.4||^6",
"symfony/var-exporter": "^6.2.10",
"symfony/yaml": "^5.4||^6",
"twig/intl-extra": "^3.3",
"twig/twig": "^3.3.8"
},
"require-dev": {
"mikey179/vfsstream": "~1.6",
"simplesamlphp/simplesamlphp-test-framework": "^1.5.1",
"simplesamlphp/xml-security": "^1.6.0"
},
"suggest": {
"predis/predis": "Needed if a Redis server is used to store session information",
"ext-curl": "Needed in order to check for updates automatically",
"ext-memcached": "Needed if a Memcached server is used to store session information",
"ext-pdo": "Needed if a database backend is used, either for authentication or to store session information",
"ext-mysql": "Needed if a MySQL backend is used, either for authentication or to store session information",
"ext-pgsql": "Needed if a PostgreSQL backend is used, either for authentication or to store session information"
},
"support": {
"issues": "https://github.com/simplesamlphp/simplesamlphp/issues",
"source": "https://github.com/simplesamlphp/simplesamlphp"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"simplesamlphp/composer-module-installer": true,
"muglug/package-versions-56": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}