Skip to content

Commit

Permalink
Update 2020.03.26
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagosampaio committed Mar 26, 2021
1 parent bc5552d commit e289f4d
Show file tree
Hide file tree
Showing 4,610 changed files with 230,660 additions and 80,154 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Empty file modified bin/magento
100644 → 100755
Empty file.
5,367 changes: 3,551 additions & 1,816 deletions composer.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion var/vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

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

return ComposerAutoloaderInitd2991683e5b6d820b55402f85a0d6d8b::getLoader();
return ComposerAutoloaderInit7fbe933f4f9be0bee53968d9c0b7e46f::getLoader();
50 changes: 26 additions & 24 deletions var/vendor/bin/composer
Original file line number Diff line number Diff line change
Expand Up @@ -24,35 +24,37 @@ if (defined('HHVM_VERSION') && version_compare(HHVM_VERSION, '4.0', '>=')) {
}

if (function_exists('ini_set')) {
@ini_set('display_errors', 1);

$memoryInBytes = function ($value) {
$unit = strtolower(substr($value, -1, 1));
$value = (int) $value;
switch($unit) {
case 'g':
$value *= 1024;
// no break (cumulative multiplier)
case 'm':
$value *= 1024;
// no break (cumulative multiplier)
case 'k':
$value *= 1024;
}

return $value;
};
@ini_set('display_errors', '1');

$memoryLimit = trim(ini_get('memory_limit'));
// Increase memory_limit if it is lower than 1.5GB
if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1536) {
@ini_set('memory_limit', '1536M');
}
// Set user defined memory limit
if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) {
@ini_set('memory_limit', $memoryLimit);
} else {
$memoryInBytes = function ($value) {
$unit = strtolower(substr($value, -1, 1));
$value = (int) $value;
switch($unit) {
case 'g':
$value *= 1024;
// no break (cumulative multiplier)
case 'm':
$value *= 1024;
// no break (cumulative multiplier)
case 'k':
$value *= 1024;
}

return $value;
};

$memoryLimit = trim(ini_get('memory_limit'));
// Increase memory_limit if it is lower than 1.5GB
if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1536) {
@ini_set('memory_limit', '1536M');
}
unset($memoryInBytes);
}
unset($memoryInBytes, $memoryLimit);
unset($memoryLimit);
}

putenv('COMPOSER_BINARY='.realpath($_SERVER['argv'][0]));
Expand Down
6 changes: 3 additions & 3 deletions var/vendor/bin/jsonlint
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if (isset($_SERVER['argc']) && $_SERVER['argc'] > 1) {
$quiet = true;
} else {
if ($arg == '-h' || $arg == '--help') {
showUsage();
showUsage($_SERVER['argv'][0]);
} else {
$files[] = $arg;
}
Expand Down Expand Up @@ -106,9 +106,9 @@ function lintFile($file, $quiet = false)
}

// usage text function
function showUsage()
function showUsage($programPath)
{
echo 'Usage: jsonlint file [options]'.PHP_EOL;
echo 'Usage: '.$programPath.' file [options]'.PHP_EOL;
echo PHP_EOL;
echo 'Options:'.PHP_EOL;
echo ' -q, --quiet Cause jsonlint to be quiet when no errors are found'.PHP_EOL;
Expand Down
2 changes: 1 addition & 1 deletion var/vendor/composer/ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ClassLoader
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', $this->prefixesPsr0);
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}

return array();
Expand Down
1 change: 1 addition & 0 deletions var/vendor/composer/autoload_classmap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
$baseDir = dirname(dirname(dirname($vendorDir)));

return array(
'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
Expand Down
1 change: 1 addition & 0 deletions var/vendor/composer/autoload_files.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
'0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
'ad155f8f1cf0d418fe49e248db8c661b' => $vendorDir . '/react/promise/src/functions_include.php',
'43a898c2b52882ecca1f7b0558d3af2c' => $vendorDir . '/magento/composer-root-update-plugin/registration.php',
);
1 change: 1 addition & 0 deletions var/vendor/composer/autoload_psr4.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
'Seld\\PharUtils\\' => array($vendorDir . '/seld/phar-utils/src'),
'Seld\\JsonLint\\' => array($vendorDir . '/seld/jsonlint/src/Seld/JsonLint'),
'React\\Promise\\' => array($vendorDir . '/react/promise/src'),
'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
'Magento\\ComposerRootUpdatePlugin\\' => array($vendorDir . '/magento/composer-root-update-plugin'),
Expand Down
17 changes: 10 additions & 7 deletions var/vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// autoload_real.php @generated by Composer

class ComposerAutoloaderInitd2991683e5b6d820b55402f85a0d6d8b
class ComposerAutoloaderInit7fbe933f4f9be0bee53968d9c0b7e46f
{
private static $loader;

Expand All @@ -13,21 +13,24 @@ public static function loadClassLoader($class)
}
}

/**
* @return \Composer\Autoload\ClassLoader
*/
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}

spl_autoload_register(array('ComposerAutoloaderInitd2991683e5b6d820b55402f85a0d6d8b', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit7fbe933f4f9be0bee53968d9c0b7e46f', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInitd2991683e5b6d820b55402f85a0d6d8b', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit7fbe933f4f9be0bee53968d9c0b7e46f', 'loadClassLoader'));

$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';

call_user_func(\Composer\Autoload\ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit7fbe933f4f9be0bee53968d9c0b7e46f::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
Expand All @@ -48,19 +51,19 @@ public static function getLoader()
$loader->register(true);

if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b::$files;
$includeFiles = Composer\Autoload\ComposerStaticInit7fbe933f4f9be0bee53968d9c0b7e46f::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequired2991683e5b6d820b55402f85a0d6d8b($fileIdentifier, $file);
composerRequire7fbe933f4f9be0bee53968d9c0b7e46f($fileIdentifier, $file);
}

return $loader;
}
}

function composerRequired2991683e5b6d820b55402f85a0d6d8b($fileIdentifier, $file)
function composerRequire7fbe933f4f9be0bee53968d9c0b7e46f($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;
Expand Down
18 changes: 14 additions & 4 deletions var/vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Composer\Autoload;

class ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b
class ComposerStaticInit7fbe933f4f9be0bee53968d9c0b7e46f
{
public static $files = array (
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
Expand All @@ -14,6 +14,7 @@ class ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
'0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
'43a898c2b52882ecca1f7b0558d3af2c' => __DIR__ . '/..' . '/magento/composer-root-update-plugin/registration.php',
);

Expand All @@ -35,6 +36,10 @@ class ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b
'Seld\\PharUtils\\' => 15,
'Seld\\JsonLint\\' => 14,
),
'R' =>
array (
'React\\Promise\\' => 14,
),
'P' =>
array (
'Psr\\Log\\' => 8,
Expand Down Expand Up @@ -115,6 +120,10 @@ class ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b
array (
0 => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint',
),
'React\\Promise\\' =>
array (
0 => __DIR__ . '/..' . '/react/promise/src',
),
'Psr\\Log\\' =>
array (
0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
Expand Down Expand Up @@ -154,6 +163,7 @@ class ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b
);

public static $classMap = array (
'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',
Expand All @@ -164,9 +174,9 @@ class ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitd2991683e5b6d820b55402f85a0d6d8b::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit7fbe933f4f9be0bee53968d9c0b7e46f::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit7fbe933f4f9be0bee53968d9c0b7e46f::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit7fbe933f4f9be0bee53968d9c0b7e46f::$classMap;

}, null, ClassLoader::class);
}
Expand Down
12 changes: 6 additions & 6 deletions var/vendor/composer/ca-bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
"symfony/phpunit-bridge": "^4.2 || ^5",
"phpstan/phpstan": "^0.12.55",
"psr/log": "^1.0",
"symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
},
Expand All @@ -43,12 +44,11 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
"dev-main": "1.x-dev"
}
},
"config": {
"platform": {
"php": "5.3.9"
}
"scripts": {
"test": "SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 vendor/bin/simple-phpunit",
"phpstan": "vendor/bin/phpstan analyse"
}
}
5 changes: 5 additions & 0 deletions var/vendor/composer/ca-bundle/phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
parameters:
level: 8
paths:
- src
- tests
Loading

0 comments on commit e289f4d

Please sign in to comment.