Skip to content

Commit 5ea47e2

Browse files
Fix composer class which breaks behat
1 parent b228444 commit 5ea47e2

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"description": "SAML done 100% in Moodle, fast, simple, secure",
44
"type": "library",
55
"config": {
6+
"prepend-autoloader": false,
67
"allow-plugins": {
78
"simplesamlphp/composer-xmlprovider-installer": true,
89
"simplesamlphp/composer-module-installer": true,

vendor/composer/autoload_real.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static function getLoader()
3131
require __DIR__ . '/autoload_static.php';
3232
call_user_func(\Composer\Autoload\ComposerStaticInitadb4a871be02446eefeecc569fa94b8d::getInitializer($loader));
3333

34-
$loader->register(true);
34+
$loader->register(false);
3535

3636
$filesToLoad = \Composer\Autoload\ComposerStaticInitadb4a871be02446eefeecc569fa94b8d::$files;
3737
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
defined('MOODLE_INTERNAL') || die();
2626

27-
$plugin->version = 2026040201; // The current plugin version (Date: YYYYMMDDXX).
28-
$plugin->release = 2026040201; // Match release exactly to version.
27+
$plugin->version = 2026040202; // The current plugin version (Date: YYYYMMDDXX).
28+
$plugin->release = 2026040202; // Match release exactly to version.
2929
$plugin->requires = 2025040400; // Requires Moodle 5.0
3030
$plugin->component = 'auth_saml2'; // Full name of the plugin (used for diagnostics).
3131
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)