Skip to content

Commit f5a33af

Browse files
authored
Merge pull request #936 from catalyst/934-bump-simplesaml-5.0
[#934] Bump simplesaml to 2.3.10
2 parents f7f503b + a3f862e commit f5a33af

1,798 files changed

Lines changed: 98013 additions & 29694 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

composer.lock

Lines changed: 386 additions & 279 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

thirdpartylibs.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<library>
2525
<location>vendor/simplesamlphp/simplesamlphp</location>
2626
<name>SimpleSamlPHP</name>
27-
<version>2.4.7</version>
27+
<version>2.3.10</version>
2828
<license>LGPL</license>
2929
<licenseversion>2.1</licenseversion>
3030
</library>

vendor/autoload.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@
1414
echo $err;
1515
}
1616
}
17-
trigger_error(
18-
$err,
19-
E_USER_ERROR
20-
);
17+
throw new RuntimeException($err);
2118
}
2219

2320
require_once __DIR__ . '/composer/autoload_real.php';

vendor/composer/InstalledVersions.php

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@
2626
*/
2727
class InstalledVersions
2828
{
29+
/**
30+
* @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
31+
* @internal
32+
*/
33+
private static $selfDir = null;
34+
2935
/**
3036
* @var mixed[]|null
3137
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
@@ -322,6 +328,18 @@ public static function reload($data)
322328
self::$installedIsLocalDir = false;
323329
}
324330

331+
/**
332+
* @return string
333+
*/
334+
private static function getSelfDir()
335+
{
336+
if (self::$selfDir === null) {
337+
self::$selfDir = strtr(__DIR__, '\\', '/');
338+
}
339+
340+
return self::$selfDir;
341+
}
342+
325343
/**
326344
* @return array[]
327345
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
@@ -336,7 +354,7 @@ private static function getInstalled()
336354
$copiedLocalDir = false;
337355

338356
if (self::$canGetVendors) {
339-
$selfDir = strtr(__DIR__, '\\', '/');
357+
$selfDir = self::getSelfDir();
340358
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
341359
$vendorDir = strtr($vendorDir, '\\', '/');
342360
if (isset(self::$installedByVendor[$vendorDir])) {

vendor/composer/autoload_static.php

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ class ComposerStaticInitadb4a871be02446eefeecc569fa94b8d
2525
);
2626

2727
public static $prefixLengthsPsr4 = array (
28-
'c' =>
28+
'c' =>
2929
array (
3030
'cweagans\\Composer\\' => 18,
3131
),
32-
'W' =>
32+
'W' =>
3333
array (
3434
'Webmozart\\Assert\\' => 17,
3535
),
36-
'T' =>
36+
'T' =>
3737
array (
3838
'Twig\\Extra\\Intl\\' => 16,
3939
'Twig\\' => 5,
4040
),
41-
'S' =>
41+
'S' =>
4242
array (
4343
'Symfony\\Polyfill\\Php83\\' => 23,
4444
'Symfony\\Polyfill\\Mbstring\\' => 26,
@@ -83,11 +83,11 @@ class ComposerStaticInitadb4a871be02446eefeecc569fa94b8d
8383
'SimpleSAML\\' => 11,
8484
'SAML2\\' => 6,
8585
),
86-
'R' =>
86+
'R' =>
8787
array (
8888
'RobRichards\\XMLSecLibs\\' => 23,
8989
),
90-
'P' =>
90+
'P' =>
9191
array (
9292
'Psr\\Log\\' => 8,
9393
'Psr\\Http\\Message\\' => 17,
@@ -96,7 +96,7 @@ class ComposerStaticInitadb4a871be02446eefeecc569fa94b8d
9696
'Psr\\Cache\\' => 10,
9797
'PHPMailer\\PHPMailer\\' => 20,
9898
),
99-
'G' =>
99+
'G' =>
100100
array (
101101
'GuzzleHttp\\Psr7\\' => 16,
102102
'Gettext\\Languages\\' => 18,
@@ -105,228 +105,228 @@ class ComposerStaticInitadb4a871be02446eefeecc569fa94b8d
105105
);
106106

107107
public static $prefixDirsPsr4 = array (
108-
'cweagans\\Composer\\' =>
108+
'cweagans\\Composer\\' =>
109109
array (
110110
0 => __DIR__ . '/..' . '/cweagans/composer-patches/src',
111111
),
112-
'Webmozart\\Assert\\' =>
112+
'Webmozart\\Assert\\' =>
113113
array (
114114
0 => __DIR__ . '/..' . '/webmozart/assert/src',
115115
),
116-
'Twig\\Extra\\Intl\\' =>
116+
'Twig\\Extra\\Intl\\' =>
117117
array (
118118
0 => __DIR__ . '/..' . '/twig/intl-extra',
119119
),
120-
'Twig\\' =>
120+
'Twig\\' =>
121121
array (
122122
0 => __DIR__ . '/..' . '/twig/twig/src',
123123
),
124-
'Symfony\\Polyfill\\Php83\\' =>
124+
'Symfony\\Polyfill\\Php83\\' =>
125125
array (
126126
0 => __DIR__ . '/..' . '/symfony/polyfill-php83',
127127
),
128-
'Symfony\\Polyfill\\Mbstring\\' =>
128+
'Symfony\\Polyfill\\Mbstring\\' =>
129129
array (
130130
0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
131131
),
132-
'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
132+
'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
133133
array (
134134
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
135135
),
136-
'Symfony\\Polyfill\\Intl\\Icu\\' =>
136+
'Symfony\\Polyfill\\Intl\\Icu\\' =>
137137
array (
138138
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-icu',
139139
),
140-
'Symfony\\Polyfill\\Intl\\Grapheme\\' =>
140+
'Symfony\\Polyfill\\Intl\\Grapheme\\' =>
141141
array (
142142
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme',
143143
),
144-
'Symfony\\Polyfill\\Ctype\\' =>
144+
'Symfony\\Polyfill\\Ctype\\' =>
145145
array (
146146
0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
147147
),
148-
'Symfony\\Contracts\\Translation\\' =>
148+
'Symfony\\Contracts\\Translation\\' =>
149149
array (
150150
0 => __DIR__ . '/..' . '/symfony/translation-contracts',
151151
),
152-
'Symfony\\Contracts\\Service\\' =>
152+
'Symfony\\Contracts\\Service\\' =>
153153
array (
154154
0 => __DIR__ . '/..' . '/symfony/service-contracts',
155155
),
156-
'Symfony\\Contracts\\EventDispatcher\\' =>
156+
'Symfony\\Contracts\\EventDispatcher\\' =>
157157
array (
158158
0 => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts',
159159
),
160-
'Symfony\\Contracts\\Cache\\' =>
160+
'Symfony\\Contracts\\Cache\\' =>
161161
array (
162162
0 => __DIR__ . '/..' . '/symfony/cache-contracts',
163163
),
164-
'Symfony\\Component\\Yaml\\' =>
164+
'Symfony\\Component\\Yaml\\' =>
165165
array (
166166
0 => __DIR__ . '/..' . '/symfony/yaml',
167167
),
168-
'Symfony\\Component\\VarExporter\\' =>
168+
'Symfony\\Component\\VarExporter\\' =>
169169
array (
170170
0 => __DIR__ . '/..' . '/symfony/var-exporter',
171171
),
172-
'Symfony\\Component\\VarDumper\\' =>
172+
'Symfony\\Component\\VarDumper\\' =>
173173
array (
174174
0 => __DIR__ . '/..' . '/symfony/var-dumper',
175175
),
176-
'Symfony\\Component\\String\\' =>
176+
'Symfony\\Component\\String\\' =>
177177
array (
178178
0 => __DIR__ . '/..' . '/symfony/string',
179179
),
180-
'Symfony\\Component\\Routing\\' =>
180+
'Symfony\\Component\\Routing\\' =>
181181
array (
182182
0 => __DIR__ . '/..' . '/symfony/routing',
183183
),
184-
'Symfony\\Component\\PasswordHasher\\' =>
184+
'Symfony\\Component\\PasswordHasher\\' =>
185185
array (
186186
0 => __DIR__ . '/..' . '/symfony/password-hasher',
187187
),
188-
'Symfony\\Component\\Intl\\' =>
188+
'Symfony\\Component\\Intl\\' =>
189189
array (
190190
0 => __DIR__ . '/..' . '/symfony/intl',
191191
),
192-
'Symfony\\Component\\HttpKernel\\' =>
192+
'Symfony\\Component\\HttpKernel\\' =>
193193
array (
194194
0 => __DIR__ . '/..' . '/symfony/http-kernel',
195195
),
196-
'Symfony\\Component\\HttpFoundation\\' =>
196+
'Symfony\\Component\\HttpFoundation\\' =>
197197
array (
198198
0 => __DIR__ . '/..' . '/symfony/http-foundation',
199199
),
200-
'Symfony\\Component\\Finder\\' =>
200+
'Symfony\\Component\\Finder\\' =>
201201
array (
202202
0 => __DIR__ . '/..' . '/symfony/finder',
203203
),
204-
'Symfony\\Component\\Filesystem\\' =>
204+
'Symfony\\Component\\Filesystem\\' =>
205205
array (
206206
0 => __DIR__ . '/..' . '/symfony/filesystem',
207207
),
208-
'Symfony\\Component\\EventDispatcher\\' =>
208+
'Symfony\\Component\\EventDispatcher\\' =>
209209
array (
210210
0 => __DIR__ . '/..' . '/symfony/event-dispatcher',
211211
),
212-
'Symfony\\Component\\ErrorHandler\\' =>
212+
'Symfony\\Component\\ErrorHandler\\' =>
213213
array (
214214
0 => __DIR__ . '/..' . '/symfony/error-handler',
215215
),
216-
'Symfony\\Component\\DependencyInjection\\' =>
216+
'Symfony\\Component\\DependencyInjection\\' =>
217217
array (
218218
0 => __DIR__ . '/..' . '/symfony/dependency-injection',
219219
),
220-
'Symfony\\Component\\Console\\' =>
220+
'Symfony\\Component\\Console\\' =>
221221
array (
222222
0 => __DIR__ . '/..' . '/symfony/console',
223223
),
224-
'Symfony\\Component\\Config\\' =>
224+
'Symfony\\Component\\Config\\' =>
225225
array (
226226
0 => __DIR__ . '/..' . '/symfony/config',
227227
),
228-
'Symfony\\Component\\Cache\\' =>
228+
'Symfony\\Component\\Cache\\' =>
229229
array (
230230
0 => __DIR__ . '/..' . '/symfony/cache',
231231
),
232-
'Symfony\\Bundle\\FrameworkBundle\\' =>
232+
'Symfony\\Bundle\\FrameworkBundle\\' =>
233233
array (
234234
0 => __DIR__ . '/..' . '/symfony/framework-bundle',
235235
),
236-
'Symfony\\Bridge\\Twig\\' =>
236+
'Symfony\\Bridge\\Twig\\' =>
237237
array (
238238
0 => __DIR__ . '/..' . '/symfony/twig-bridge',
239239
),
240-
'SimpleSAML\\XML\\' =>
240+
'SimpleSAML\\XML\\' =>
241241
array (
242242
0 => __DIR__ . '/..' . '/simplesamlphp/xml-common/src',
243243
),
244-
'SimpleSAML\\XMLSecurity\\' =>
244+
'SimpleSAML\\XMLSecurity\\' =>
245245
array (
246246
0 => __DIR__ . '/..' . '/simplesamlphp/xml-security/src',
247247
),
248-
'SimpleSAML\\Module\\saml\\' =>
248+
'SimpleSAML\\Module\\saml\\' =>
249249
array (
250250
0 => __DIR__ . '/..' . '/simplesamlphp/simplesamlphp/modules/saml/src',
251251
),
252-
'SimpleSAML\\Module\\multiauth\\' =>
252+
'SimpleSAML\\Module\\multiauth\\' =>
253253
array (
254254
0 => __DIR__ . '/..' . '/simplesamlphp/simplesamlphp/modules/multiauth/src',
255255
),
256-
'SimpleSAML\\Module\\exampleauth\\' =>
256+
'SimpleSAML\\Module\\exampleauth\\' =>
257257
array (
258258
0 => __DIR__ . '/..' . '/simplesamlphp/simplesamlphp/modules/exampleauth/src',
259259
),
260-
'SimpleSAML\\Module\\cron\\' =>
260+
'SimpleSAML\\Module\\cron\\' =>
261261
array (
262262
0 => __DIR__ . '/..' . '/simplesamlphp/simplesamlphp/modules/cron/src',
263263
),
264-
'SimpleSAML\\Module\\core\\' =>
264+
'SimpleSAML\\Module\\core\\' =>
265265
array (
266266
0 => __DIR__ . '/..' . '/simplesamlphp/simplesamlphp/modules/core/src',
267267
),
268-
'SimpleSAML\\Module\\admin\\' =>
268+
'SimpleSAML\\Module\\admin\\' =>
269269
array (
270270
0 => __DIR__ . '/..' . '/simplesamlphp/simplesamlphp/modules/admin/src',
271271
),
272-
'SimpleSAML\\Composer\\XMLProvider\\' =>
272+
'SimpleSAML\\Composer\\XMLProvider\\' =>
273273
array (
274274
0 => __DIR__ . '/..' . '/simplesamlphp/composer-xmlprovider-installer/src',
275275
),
276-
'SimpleSAML\\Composer\\' =>
276+
'SimpleSAML\\Composer\\' =>
277277
array (
278278
0 => __DIR__ . '/..' . '/simplesamlphp/composer-module-installer/src',
279279
),
280-
'SimpleSAML\\Assert\\' =>
280+
'SimpleSAML\\Assert\\' =>
281281
array (
282282
0 => __DIR__ . '/..' . '/simplesamlphp/assert/src',
283283
),
284-
'SimpleSAML\\' =>
284+
'SimpleSAML\\' =>
285285
array (
286286
0 => __DIR__ . '/..' . '/simplesamlphp/simplesamlphp/src/SimpleSAML',
287287
),
288-
'SAML2\\' =>
288+
'SAML2\\' =>
289289
array (
290290
0 => __DIR__ . '/..' . '/simplesamlphp/saml2/src/SAML2',
291291
),
292-
'RobRichards\\XMLSecLibs\\' =>
292+
'RobRichards\\XMLSecLibs\\' =>
293293
array (
294294
0 => __DIR__ . '/..' . '/robrichards/xmlseclibs/src',
295295
),
296-
'Psr\\Log\\' =>
296+
'Psr\\Log\\' =>
297297
array (
298298
0 => __DIR__ . '/..' . '/psr/log/src',
299299
),
300-
'Psr\\Http\\Message\\' =>
300+
'Psr\\Http\\Message\\' =>
301301
array (
302302
0 => __DIR__ . '/..' . '/psr/http-factory/src',
303303
1 => __DIR__ . '/..' . '/psr/http-message/src',
304304
),
305-
'Psr\\EventDispatcher\\' =>
305+
'Psr\\EventDispatcher\\' =>
306306
array (
307307
0 => __DIR__ . '/..' . '/psr/event-dispatcher/src',
308308
),
309-
'Psr\\Container\\' =>
309+
'Psr\\Container\\' =>
310310
array (
311311
0 => __DIR__ . '/..' . '/psr/container/src',
312312
),
313-
'Psr\\Cache\\' =>
313+
'Psr\\Cache\\' =>
314314
array (
315315
0 => __DIR__ . '/..' . '/psr/cache/src',
316316
),
317-
'PHPMailer\\PHPMailer\\' =>
317+
'PHPMailer\\PHPMailer\\' =>
318318
array (
319319
0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src',
320320
),
321-
'GuzzleHttp\\Psr7\\' =>
321+
'GuzzleHttp\\Psr7\\' =>
322322
array (
323323
0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
324324
),
325-
'Gettext\\Languages\\' =>
325+
'Gettext\\Languages\\' =>
326326
array (
327327
0 => __DIR__ . '/..' . '/gettext/languages/src',
328328
),
329-
'Gettext\\' =>
329+
'Gettext\\' =>
330330
array (
331331
0 => __DIR__ . '/..' . '/gettext/translator/src',
332332
1 => __DIR__ . '/..' . '/gettext/gettext/src',

0 commit comments

Comments
 (0)