Skip to content

Commit

Permalink
Commit new autoload files
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed May 11, 2021
1 parent 4cf78cd commit 166dbc9
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 16 deletions.
26 changes: 17 additions & 9 deletions third_party/composer/InstalledVersions.php
Expand Up @@ -20,31 +20,29 @@





class InstalledVersions
{
private static $installed = array (
'root' =>
array (
'pretty_version' => '1.0.0+no-version-set',
'version' => '1.0.0.0',
'pretty_version' => 'dev-3.x-LTS',
'version' => 'dev-3.x-LTS',
'aliases' =>
array (
),
'reference' => NULL,
'reference' => '50613da33b7a3d2f1a12c74bb7a275fbd50ecc05',
'name' => 'limesurvey/limesurvey',
),
'versions' =>
array (
'limesurvey/limesurvey' =>
array (
'pretty_version' => '1.0.0+no-version-set',
'version' => '1.0.0.0',
'pretty_version' => 'dev-3.x-LTS',
'version' => 'dev-3.x-LTS',
'aliases' =>
array (
),
'reference' => NULL,
'reference' => '50613da33b7a3d2f1a12c74bb7a275fbd50ecc05',
),
'symfony/polyfill-ctype' =>
array (
Expand All @@ -64,6 +62,16 @@ class InstalledVersions
),
'reference' => '87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e',
),
'yiiext/twig-renderer' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'aliases' =>
array (
0 => '9999999-dev',
),
'reference' => '3cb9b60a0d579855c17d7830d5015b74705c9fdd',
),
),
);
private static $canGetVendors;
Expand All @@ -82,6 +90,7 @@ public static function getInstalledPackages()
$packages[] = array_keys($installed['versions']);
}


if (1 === \count($packages)) {
return $packages[0];
}
Expand Down Expand Up @@ -277,7 +286,6 @@ public static function reload($data)




private static function getInstalled()
{
if (null === self::$canGetVendors) {
Expand Down
2 changes: 1 addition & 1 deletion third_party/composer/autoload_psr4.php
Expand Up @@ -6,7 +6,7 @@
$baseDir = dirname($vendorDir);

return array(
'Twig\\' => array($vendorDir . '/twig/twig/src'),
'Twig\\' => array($vendorDir . '/twig/twig/src', $vendorDir . '/twig/twig/src'),
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
'LimeSurvey\\PluginManager\\' => array($baseDir . '/application/libraries/PluginManager', $baseDir . '/application/libraries/PluginManager/Storage'),
'LimeSurvey\\Menu\\' => array($baseDir . '/application/libraries/MenuObjects'),
Expand Down
2 changes: 2 additions & 0 deletions third_party/composer/autoload_real.php
Expand Up @@ -22,6 +22,8 @@ public static function getLoader()
return self::$loader;
}

require __DIR__ . '/platform_check.php';

spl_autoload_register(array('ComposerAutoloaderInitddb1a145e450f862353420acc5153e40', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
spl_autoload_unregister(array('ComposerAutoloaderInitddb1a145e450f862353420acc5153e40', 'loadClassLoader'));
Expand Down
1 change: 1 addition & 0 deletions third_party/composer/autoload_static.php
Expand Up @@ -31,6 +31,7 @@ class ComposerStaticInitddb1a145e450f862353420acc5153e40
'Twig\\' =>
array (
0 => __DIR__ . '/..' . '/twig/twig/src',
1 => __DIR__ . '/..' . '/twig/twig/src',
),
'Symfony\\Polyfill\\Ctype\\' =>
array (
Expand Down
22 changes: 16 additions & 6 deletions third_party/composer/installed.php
@@ -1,24 +1,24 @@
<?php return array (
'root' =>
array (
'pretty_version' => '1.0.0+no-version-set',
'version' => '1.0.0.0',
'pretty_version' => 'dev-3.x-LTS',
'version' => 'dev-3.x-LTS',
'aliases' =>
array (
),
'reference' => NULL,
'reference' => '50613da33b7a3d2f1a12c74bb7a275fbd50ecc05',
'name' => 'limesurvey/limesurvey',
),
'versions' =>
array (
'limesurvey/limesurvey' =>
array (
'pretty_version' => '1.0.0+no-version-set',
'version' => '1.0.0.0',
'pretty_version' => 'dev-3.x-LTS',
'version' => 'dev-3.x-LTS',
'aliases' =>
array (
),
'reference' => NULL,
'reference' => '50613da33b7a3d2f1a12c74bb7a275fbd50ecc05',
),
'symfony/polyfill-ctype' =>
array (
Expand All @@ -38,5 +38,15 @@
),
'reference' => '87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e',
),
'yiiext/twig-renderer' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'aliases' =>
array (
0 => '9999999-dev',
),
'reference' => '3cb9b60a0d579855c17d7830d5015b74705c9fdd',
),
),
);

0 comments on commit 166dbc9

Please sign in to comment.