forked from simplesamlphp/simplesamlphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
146 lines (144 loc) · 5.63 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"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": "andreas.solberg@uninett.no"
},
{
"name": "Olav Morken",
"email": "olav.morken@uninett.no"
},
{
"name": "Jaime Perez",
"email": "jaime.perez@uninett.no"
}
],
"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.1",
"ext-date": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-posix": "*",
"ext-pcre": "*",
"ext-session": "*",
"ext-simplexml": "*",
"ext-SPL": "*",
"ext-xml": "*",
"ext-zlib": "*",
"beste/clock": "^3.0",
"gettext/gettext": "^5.7",
"gettext/translator": "^1.1",
"phpmailer/phpmailer": "^6.8",
"psr/log": "^3.0",
"robrichards/xmlseclibs": "^3.1.1",
"simplesamlphp/assert": "^1.0.0",
"simplesamlphp/composer-module-installer": "^1.3",
"simplesamlphp/saml2": "^5.0.0-alpha.14",
"simplesamlphp/saml2-legacy": "^4.6",
"simplesamlphp/simplesamlphp-assets-base": "^2.1.5",
"simplesamlphp/simplesamlphp-module-adfs": "^2.1",
"simplesamlphp/xml-common": "^1.13",
"symfony/cache": "^6.4",
"symfony/config": "^6.4",
"symfony/console": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/filesystem": "^6.4",
"symfony/finder": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/intl": "^6.4",
"symfony/polyfill-intl-icu": "^1.28",
"symfony/psr-http-message-bridge": "^2.3",
"symfony/routing": "^6.4",
"symfony/translation-contracts": "^3.0",
"symfony/twig-bridge": "^6.4",
"symfony/var-exporter": "^6.4",
"twig/intl-extra": "^3.7",
"twig/twig": "^3.5",
"symfony/yaml": "^6.4"
},
"require-dev": {
"ext-curl": "*",
"ext-pdo_sqlite": "*",
"gettext/php-scanner": "1.3.1",
"mikey179/vfsstream": "~1.6",
"predis/predis": "^2.2",
"simplesamlphp/simplesamlphp-test-framework": "^1.5",
"simplesamlphp/xml-security": "^1.6.12",
"symfony/translation": "^6.4"
},
"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-intl": "Needed if translations for non-English languages are required.",
"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,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"scripts": {
"translations:unused": "php bin/translations translations:unused",
"translations:update:binary": "php bin/translations translations:update:binary",
"translations:update:translatable": "php bin/translations translations:update:translatable",
"post-install-cmd": [
"php bin/translations translations:update:binary"
],
"post-update-cmd": [
"php bin/translations translations:update:binary"
]
}
}