Jelajahi Sumber

测试环境把composer 对php版本限制要求去除

Gogs 11 bulan lalu
induk
melakukan
c2b54957e9

+ 0 - 18
vendor/autoload.php

@@ -2,24 +2,6 @@
 
 // autoload.php @generated by Composer
 
-if (PHP_VERSION_ID < 50600) {
-    if (!headers_sent()) {
-        header('HTTP/1.1 500 Internal Server Error');
-    }
-    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
-    if (!ini_get('display_errors')) {
-        if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
-            fwrite(STDERR, $err);
-        } elseif (!headers_sent()) {
-            echo $err;
-        }
-    }
-    trigger_error(
-        $err,
-        E_USER_ERROR
-    );
-}
-
 require_once __DIR__ . '/composer/autoload_real.php';
 
 return ComposerAutoloaderInit1bf592390398b3f4608da27e3f630485::getLoader();

+ 65 - 72
vendor/composer/ClassLoader.php

@@ -42,37 +42,35 @@ namespace Composer\Autoload;
  */
 class ClassLoader
 {
-    /** @var \Closure(string):void */
-    private static $includeFile;
-
-    /** @var string|null */
+    /** @var ?string */
     private $vendorDir;
 
     // PSR-4
     /**
-     * @var array<string, array<string, int>>
+     * @var array[]
+     * @psalm-var array<string, array<string, int>>
      */
     private $prefixLengthsPsr4 = array();
     /**
-     * @var array<string, list<string>>
+     * @var array[]
+     * @psalm-var array<string, array<int, string>>
      */
     private $prefixDirsPsr4 = array();
     /**
-     * @var list<string>
+     * @var array[]
+     * @psalm-var array<string, string>
      */
     private $fallbackDirsPsr4 = array();
 
     // PSR-0
     /**
-     * List of PSR-0 prefixes
-     *
-     * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
-     *
-     * @var array<string, array<string, list<string>>>
+     * @var array[]
+     * @psalm-var array<string, array<string, string[]>>
      */
     private $prefixesPsr0 = array();
     /**
-     * @var list<string>
+     * @var array[]
+     * @psalm-var array<string, string>
      */
     private $fallbackDirsPsr0 = array();
 
@@ -80,7 +78,8 @@ class ClassLoader
     private $useIncludePath = false;
 
     /**
-     * @var array<string, string>
+     * @var string[]
+     * @psalm-var array<string, string>
      */
     private $classMap = array();
 
@@ -88,29 +87,29 @@ class ClassLoader
     private $classMapAuthoritative = false;
 
     /**
-     * @var array<string, bool>
+     * @var bool[]
+     * @psalm-var array<string, bool>
      */
     private $missingClasses = array();
 
-    /** @var string|null */
+    /** @var ?string */
     private $apcuPrefix;
 
     /**
-     * @var array<string, self>
+     * @var self[]
      */
     private static $registeredLoaders = array();
 
     /**
-     * @param string|null $vendorDir
+     * @param ?string $vendorDir
      */
     public function __construct($vendorDir = null)
     {
         $this->vendorDir = $vendorDir;
-        self::initializeIncludeClosure();
     }
 
     /**
-     * @return array<string, list<string>>
+     * @return string[]
      */
     public function getPrefixes()
     {
@@ -122,7 +121,8 @@ class ClassLoader
     }
 
     /**
-     * @return array<string, list<string>>
+     * @return array[]
+     * @psalm-return array<string, array<int, string>>
      */
     public function getPrefixesPsr4()
     {
@@ -130,7 +130,8 @@ class ClassLoader
     }
 
     /**
-     * @return list<string>
+     * @return array[]
+     * @psalm-return array<string, string>
      */
     public function getFallbackDirs()
     {
@@ -138,7 +139,8 @@ class ClassLoader
     }
 
     /**
-     * @return list<string>
+     * @return array[]
+     * @psalm-return array<string, string>
      */
     public function getFallbackDirsPsr4()
     {
@@ -146,7 +148,8 @@ class ClassLoader
     }
 
     /**
-     * @return array<string, string> Array of classname => path
+     * @return string[] Array of classname => path
+     * @psalm-return array<string, string>
      */
     public function getClassMap()
     {
@@ -154,7 +157,8 @@ class ClassLoader
     }
 
     /**
-     * @param array<string, string> $classMap Class to filename map
+     * @param string[] $classMap Class to filename map
+     * @psalm-param array<string, string> $classMap
      *
      * @return void
      */
@@ -171,25 +175,24 @@ class ClassLoader
      * Registers a set of PSR-0 directories for a given prefix, either
      * appending or prepending to the ones previously set for this prefix.
      *
-     * @param string              $prefix  The prefix
-     * @param list<string>|string $paths   The PSR-0 root directories
-     * @param bool                $prepend Whether to prepend the directories
+     * @param string          $prefix  The prefix
+     * @param string[]|string $paths   The PSR-0 root directories
+     * @param bool            $prepend Whether to prepend the directories
      *
      * @return void
      */
     public function add($prefix, $paths, $prepend = false)
     {
-        $paths = (array) $paths;
         if (!$prefix) {
             if ($prepend) {
                 $this->fallbackDirsPsr0 = array_merge(
-                    $paths,
+                    (array) $paths,
                     $this->fallbackDirsPsr0
                 );
             } else {
                 $this->fallbackDirsPsr0 = array_merge(
                     $this->fallbackDirsPsr0,
-                    $paths
+                    (array) $paths
                 );
             }
 
@@ -198,19 +201,19 @@ class ClassLoader
 
         $first = $prefix[0];
         if (!isset($this->prefixesPsr0[$first][$prefix])) {
-            $this->prefixesPsr0[$first][$prefix] = $paths;
+            $this->prefixesPsr0[$first][$prefix] = (array) $paths;
 
             return;
         }
         if ($prepend) {
             $this->prefixesPsr0[$first][$prefix] = array_merge(
-                $paths,
+                (array) $paths,
                 $this->prefixesPsr0[$first][$prefix]
             );
         } else {
             $this->prefixesPsr0[$first][$prefix] = array_merge(
                 $this->prefixesPsr0[$first][$prefix],
-                $paths
+                (array) $paths
             );
         }
     }
@@ -219,9 +222,9 @@ class ClassLoader
      * Registers a set of PSR-4 directories for a given namespace, either
      * appending or prepending to the ones previously set for this namespace.
      *
-     * @param string              $prefix  The prefix/namespace, with trailing '\\'
-     * @param list<string>|string $paths   The PSR-4 base directories
-     * @param bool                $prepend Whether to prepend the directories
+     * @param string          $prefix  The prefix/namespace, with trailing '\\'
+     * @param string[]|string $paths   The PSR-4 base directories
+     * @param bool            $prepend Whether to prepend the directories
      *
      * @throws \InvalidArgumentException
      *
@@ -229,18 +232,17 @@ class ClassLoader
      */
     public function addPsr4($prefix, $paths, $prepend = false)
     {
-        $paths = (array) $paths;
         if (!$prefix) {
             // Register directories for the root namespace.
             if ($prepend) {
                 $this->fallbackDirsPsr4 = array_merge(
-                    $paths,
+                    (array) $paths,
                     $this->fallbackDirsPsr4
                 );
             } else {
                 $this->fallbackDirsPsr4 = array_merge(
                     $this->fallbackDirsPsr4,
-                    $paths
+                    (array) $paths
                 );
             }
         } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
@@ -250,18 +252,18 @@ class ClassLoader
                 throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
             }
             $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
-            $this->prefixDirsPsr4[$prefix] = $paths;
+            $this->prefixDirsPsr4[$prefix] = (array) $paths;
         } elseif ($prepend) {
             // Prepend directories for an already registered namespace.
             $this->prefixDirsPsr4[$prefix] = array_merge(
-                $paths,
+                (array) $paths,
                 $this->prefixDirsPsr4[$prefix]
             );
         } else {
             // Append directories for an already registered namespace.
             $this->prefixDirsPsr4[$prefix] = array_merge(
                 $this->prefixDirsPsr4[$prefix],
-                $paths
+                (array) $paths
             );
         }
     }
@@ -270,8 +272,8 @@ class ClassLoader
      * Registers a set of PSR-0 directories for a given prefix,
      * replacing any others previously set for this prefix.
      *
-     * @param string              $prefix The prefix
-     * @param list<string>|string $paths  The PSR-0 base directories
+     * @param string          $prefix The prefix
+     * @param string[]|string $paths  The PSR-0 base directories
      *
      * @return void
      */
@@ -288,8 +290,8 @@ class ClassLoader
      * Registers a set of PSR-4 directories for a given namespace,
      * replacing any others previously set for this namespace.
      *
-     * @param string              $prefix The prefix/namespace, with trailing '\\'
-     * @param list<string>|string $paths  The PSR-4 base directories
+     * @param string          $prefix The prefix/namespace, with trailing '\\'
+     * @param string[]|string $paths  The PSR-4 base directories
      *
      * @throws \InvalidArgumentException
      *
@@ -423,8 +425,7 @@ class ClassLoader
     public function loadClass($class)
     {
         if ($file = $this->findFile($class)) {
-            $includeFile = self::$includeFile;
-            $includeFile($file);
+            includeFile($file);
 
             return true;
         }
@@ -475,9 +476,9 @@ class ClassLoader
     }
 
     /**
-     * Returns the currently registered loaders keyed by their corresponding vendor directories.
+     * Returns the currently registered loaders indexed by their corresponding vendor directories.
      *
-     * @return array<string, self>
+     * @return self[]
      */
     public static function getRegisteredLoaders()
     {
@@ -554,26 +555,18 @@ class ClassLoader
 
         return false;
     }
+}
 
-    /**
-     * @return void
-     */
-    private static function initializeIncludeClosure()
-    {
-        if (self::$includeFile !== null) {
-            return;
-        }
-
-        /**
-         * Scope isolated include.
-         *
-         * Prevents access to $this/self from included files.
-         *
-         * @param  string $file
-         * @return void
-         */
-        self::$includeFile = \Closure::bind(static function($file) {
-            include $file;
-        }, null, null);
-    }
+/**
+ * Scope isolated include.
+ *
+ * Prevents access to $this/self from included files.
+ *
+ * @param  string $file
+ * @return void
+ * @private
+ */
+function includeFile($file)
+{
+    include $file;
 }

+ 9 - 11
vendor/composer/InstalledVersions.php

@@ -21,14 +21,12 @@ use Composer\Semver\VersionParser;
  * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
  *
  * To require its presence, you can require `composer-runtime-api ^2.0`
- *
- * @final
  */
 class InstalledVersions
 {
     /**
      * @var mixed[]|null
-     * @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
+     * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
      */
     private static $installed;
 
@@ -39,7 +37,7 @@ class InstalledVersions
 
     /**
      * @var array[]
-     * @psalm-var array<string, 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[]}>}>
+     * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
      */
     private static $installedByVendor = array();
 
@@ -98,7 +96,7 @@ class InstalledVersions
     {
         foreach (self::getInstalled() as $installed) {
             if (isset($installed['versions'][$packageName])) {
-                return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
+                return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
             }
         }
 
@@ -119,7 +117,7 @@ class InstalledVersions
      */
     public static function satisfies(VersionParser $parser, $packageName, $constraint)
     {
-        $constraint = $parser->parseConstraints((string) $constraint);
+        $constraint = $parser->parseConstraints($constraint);
         $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
 
         return $provided->matches($constraint);
@@ -243,7 +241,7 @@ class InstalledVersions
 
     /**
      * @return array
-     * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
+     * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
      */
     public static function getRootPackage()
     {
@@ -257,7 +255,7 @@ class InstalledVersions
      *
      * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
      * @return array[]
-     * @psalm-return 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[]}>}
+     * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
      */
     public static function getRawData()
     {
@@ -280,7 +278,7 @@ class InstalledVersions
      * Returns the raw data of all installed.php which are currently loaded for custom implementations
      *
      * @return array[]
-     * @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[]}>}>
+     * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
      */
     public static function getAllRawData()
     {
@@ -303,7 +301,7 @@ class InstalledVersions
      * @param  array[] $data A vendor/composer/installed.php data set
      * @return void
      *
-     * @psalm-param 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[]}>} $data
+     * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
      */
     public static function reload($data)
     {
@@ -313,7 +311,7 @@ class InstalledVersions
 
     /**
      * @return array[]
-     * @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[]}>}>
+     * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
      */
     private static function getInstalled()
     {

+ 1 - 1
vendor/composer/autoload_classmap.php

@@ -2,7 +2,7 @@
 
 // autoload_classmap.php @generated by Composer
 
-$vendorDir = dirname(__DIR__);
+$vendorDir = dirname(dirname(__FILE__));
 $baseDir = dirname($vendorDir);
 
 return array(

+ 1 - 1
vendor/composer/autoload_files.php

@@ -2,7 +2,7 @@
 
 // autoload_files.php @generated by Composer
 
-$vendorDir = dirname(__DIR__);
+$vendorDir = dirname(dirname(__FILE__));
 $baseDir = dirname($vendorDir);
 
 return array(

+ 1 - 1
vendor/composer/autoload_namespaces.php

@@ -2,7 +2,7 @@
 
 // autoload_namespaces.php @generated by Composer
 
-$vendorDir = dirname(__DIR__);
+$vendorDir = dirname(dirname(__FILE__));
 $baseDir = dirname($vendorDir);
 
 return array(

+ 1 - 1
vendor/composer/autoload_psr4.php

@@ -2,7 +2,7 @@
 
 // autoload_psr4.php @generated by Composer
 
-$vendorDir = dirname(__DIR__);
+$vendorDir = dirname(dirname(__FILE__));
 $baseDir = dirname($vendorDir);
 
 return array(

+ 42 - 14
vendor/composer/autoload_real.php

@@ -22,29 +22,57 @@ class ComposerAutoloaderInit1bf592390398b3f4608da27e3f630485
             return self::$loader;
         }
 
-        require __DIR__ . '/platform_check.php';
-
         spl_autoload_register(array('ComposerAutoloaderInit1bf592390398b3f4608da27e3f630485', 'loadClassLoader'), true, true);
-        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
+        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
         spl_autoload_unregister(array('ComposerAutoloaderInit1bf592390398b3f4608da27e3f630485', 'loadClassLoader'));
 
-        require __DIR__ . '/autoload_static.php';
-        call_user_func(\Composer\Autoload\ComposerStaticInit1bf592390398b3f4608da27e3f630485::getInitializer($loader));
+        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
+        if ($useStaticLoader) {
+            require __DIR__ . '/autoload_static.php';
 
-        $loader->register(true);
+            call_user_func(\Composer\Autoload\ComposerStaticInit1bf592390398b3f4608da27e3f630485::getInitializer($loader));
+        } else {
+            $map = require __DIR__ . '/autoload_namespaces.php';
+            foreach ($map as $namespace => $path) {
+                $loader->set($namespace, $path);
+            }
 
-        $filesToLoad = \Composer\Autoload\ComposerStaticInit1bf592390398b3f4608da27e3f630485::$files;
-        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
-            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
-                $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
+            $map = require __DIR__ . '/autoload_psr4.php';
+            foreach ($map as $namespace => $path) {
+                $loader->setPsr4($namespace, $path);
+            }
 
-                require $file;
+            $classMap = require __DIR__ . '/autoload_classmap.php';
+            if ($classMap) {
+                $loader->addClassMap($classMap);
             }
-        }, null, null);
-        foreach ($filesToLoad as $fileIdentifier => $file) {
-            $requireFile($fileIdentifier, $file);
+        }
+
+        $loader->register(true);
+
+        if ($useStaticLoader) {
+            $includeFiles = Composer\Autoload\ComposerStaticInit1bf592390398b3f4608da27e3f630485::$files;
+        } else {
+            $includeFiles = require __DIR__ . '/autoload_files.php';
+        }
+        foreach ($includeFiles as $fileIdentifier => $file) {
+            composerRequire1bf592390398b3f4608da27e3f630485($fileIdentifier, $file);
         }
 
         return $loader;
     }
 }
+
+/**
+ * @param string $fileIdentifier
+ * @param string $file
+ * @return void
+ */
+function composerRequire1bf592390398b3f4608da27e3f630485($fileIdentifier, $file)
+{
+    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
+        $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
+
+        require $file;
+    }
+}

+ 58 - 58
vendor/composer/installed.php

@@ -1,312 +1,312 @@
 <?php return array(
     'root' => array(
-        'name' => 'yiisoft/yii2-app-advanced',
         'pretty_version' => 'dev-master',
         'version' => 'dev-master',
-        'reference' => 'efa7cc0790e46038bf278a5b4087312ff5daa841',
         'type' => 'project',
         'install_path' => __DIR__ . '/../../',
         'aliases' => array(),
+        'reference' => '2984de052ba1d2ffbcfb3c27eff91dceeaa63271',
+        'name' => 'yiisoft/yii2-app-advanced',
         'dev' => true,
     ),
     'versions' => array(
         'adbario/php-dot-notation' => array(
             'pretty_version' => '2.x-dev',
             'version' => '2.9999999.9999999.9999999-dev',
-            'reference' => '081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae',
             'type' => 'library',
             'install_path' => __DIR__ . '/../adbario/php-dot-notation',
             'aliases' => array(),
+            'reference' => '081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae',
             'dev_requirement' => false,
         ),
         'alibabacloud/client' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '11db11afd6a05cef9bd49a63a3fea379d075412a',
             'type' => 'library',
             'install_path' => __DIR__ . '/../alibabacloud/client',
             'aliases' => array(
                 0 => '9999999-dev',
             ),
+            'reference' => '11db11afd6a05cef9bd49a63a3fea379d075412a',
             'dev_requirement' => false,
         ),
         'aliyuncs/oss-sdk-php' => array(
             'pretty_version' => 'v2.7.2',
             'version' => '2.7.2.0',
-            'reference' => '483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5',
             'type' => 'library',
             'install_path' => __DIR__ . '/../aliyuncs/oss-sdk-php',
             'aliases' => array(),
+            'reference' => '483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5',
             'dev_requirement' => false,
         ),
         'baidu/aip-sdk' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '84e5936eb6426b4cc9d9a96848568b9dd527b4a0',
             'type' => 'library',
             'install_path' => __DIR__ . '/../baidu/aip-sdk',
             'aliases' => array(
                 0 => '9999999-dev',
             ),
+            'reference' => '84e5936eb6426b4cc9d9a96848568b9dd527b4a0',
             'dev_requirement' => false,
         ),
         'bower-asset/bootstrap' => array(
             'pretty_version' => 'v3.4.1',
             'version' => '3.4.1.0',
-            'reference' => '68b0d231a13201eb14acd3dc84e51543d16e5f7e',
             'type' => 'bower-asset-library',
             'install_path' => __DIR__ . '/../bower-asset/bootstrap',
             'aliases' => array(),
+            'reference' => '68b0d231a13201eb14acd3dc84e51543d16e5f7e',
             'dev_requirement' => false,
         ),
         'bower-asset/inputmask' => array(
             'pretty_version' => '3.3.11',
             'version' => '3.3.11.0',
-            'reference' => '5e670ad62f50c738388d4dcec78d2888505ad77b',
             'type' => 'bower-asset-library',
             'install_path' => __DIR__ . '/../bower-asset/inputmask',
             'aliases' => array(),
+            'reference' => '5e670ad62f50c738388d4dcec78d2888505ad77b',
             'dev_requirement' => false,
         ),
         'bower-asset/jquery' => array(
             'pretty_version' => '3.4.1',
             'version' => '3.4.1.0',
-            'reference' => '15bc73803f76bc53b654b9fdbbbc096f56d7c03d',
             'type' => 'bower-asset',
             'install_path' => __DIR__ . '/../bower-asset/jquery',
             'aliases' => array(),
+            'reference' => '15bc73803f76bc53b654b9fdbbbc096f56d7c03d',
             'dev_requirement' => false,
         ),
         'bower-asset/punycode' => array(
             'pretty_version' => 'v1.3.2',
             'version' => '1.3.2.0',
-            'reference' => '38c8d3131a82567bfef18da09f7f4db68c84f8a3',
             'type' => 'bower-asset-library',
             'install_path' => __DIR__ . '/../bower-asset/punycode',
             'aliases' => array(),
+            'reference' => '38c8d3131a82567bfef18da09f7f4db68c84f8a3',
             'dev_requirement' => false,
         ),
         'bower-asset/typeahead.js' => array(
             'pretty_version' => 'v0.11.1',
             'version' => '0.11.1.0',
-            'reference' => '588440f66559714280628a4f9799f0c4eb880a4a',
             'type' => 'bower-asset-library',
             'install_path' => __DIR__ . '/../bower-asset/typeahead.js',
             'aliases' => array(),
+            'reference' => '588440f66559714280628a4f9799f0c4eb880a4a',
             'dev_requirement' => true,
         ),
         'bower-asset/yii2-pjax' => array(
             'pretty_version' => '2.0.8',
             'version' => '2.0.8.0',
-            'reference' => 'a9298d57da63d14a950f1b94366a864bc62264fb',
             'type' => 'bower-asset',
             'install_path' => __DIR__ . '/../bower-asset/yii2-pjax',
             'aliases' => array(),
+            'reference' => 'a9298d57da63d14a950f1b94366a864bc62264fb',
             'dev_requirement' => false,
         ),
         'cebe/markdown' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '2b2461bed9e15305486319ee552bafca75d1cdaa',
             'type' => 'library',
             'install_path' => __DIR__ . '/../cebe/markdown',
             'aliases' => array(
                 0 => '1.2.x-dev',
             ),
+            'reference' => '2b2461bed9e15305486319ee552bafca75d1cdaa',
             'dev_requirement' => false,
         ),
         'clagiordano/weblibs-configmanager' => array(
             'pretty_version' => 'v1.5.0',
             'version' => '1.5.0.0',
-            'reference' => '8802c7396d61a923c9a73e37ead062b24bb1b273',
             'type' => 'library',
             'install_path' => __DIR__ . '/../clagiordano/weblibs-configmanager',
             'aliases' => array(),
+            'reference' => '8802c7396d61a923c9a73e37ead062b24bb1b273',
             'dev_requirement' => false,
         ),
         'ezyang/htmlpurifier' => array(
             'pretty_version' => 'v4.18.0',
             'version' => '4.18.0.0',
-            'reference' => 'cb56001e54359df7ae76dc522d08845dc741621b',
             'type' => 'library',
             'install_path' => __DIR__ . '/../ezyang/htmlpurifier',
             'aliases' => array(),
+            'reference' => 'cb56001e54359df7ae76dc522d08845dc741621b',
             'dev_requirement' => false,
         ),
         'fakerphp/faker' => array(
             'pretty_version' => '1.24.x-dev',
             'version' => '1.24.9999999.9999999-dev',
-            'reference' => 'f7ac50712e417f008402c8fc889c964e75eecfe9',
             'type' => 'library',
             'install_path' => __DIR__ . '/../fakerphp/faker',
             'aliases' => array(),
+            'reference' => 'f7ac50712e417f008402c8fc889c964e75eecfe9',
             'dev_requirement' => true,
         ),
         'getuilaboratory/getui-pushapi-php-client-v2' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '255cc076624d049c0481d7172cd3c519ae7b07f6',
             'type' => 'library',
             'install_path' => __DIR__ . '/../getuilaboratory/getui-pushapi-php-client-v2',
             'aliases' => array(
                 0 => '9999999-dev',
             ),
+            'reference' => '255cc076624d049c0481d7172cd3c519ae7b07f6',
             'dev_requirement' => false,
         ),
         'guzzlehttp/guzzle' => array(
             'pretty_version' => '6.5.x-dev',
             'version' => '6.5.9999999.9999999-dev',
-            'reference' => 'a52f0440530b54fa079ce76e8c5d196a42cad981',
             'type' => 'library',
             'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
             'aliases' => array(),
+            'reference' => 'a52f0440530b54fa079ce76e8c5d196a42cad981',
             'dev_requirement' => false,
         ),
         'guzzlehttp/promises' => array(
             'pretty_version' => '1.5.x-dev',
             'version' => '1.5.9999999.9999999-dev',
-            'reference' => '67ab6e18aaa14d753cc148911d273f6e6cb6721e',
             'type' => 'library',
             'install_path' => __DIR__ . '/../guzzlehttp/promises',
             'aliases' => array(),
+            'reference' => '67ab6e18aaa14d753cc148911d273f6e6cb6721e',
             'dev_requirement' => false,
         ),
         'guzzlehttp/psr7' => array(
             'pretty_version' => '1.9.x-dev',
             'version' => '1.9.9999999.9999999-dev',
-            'reference' => 'e4490cabc77465aaee90b20cfc9a770f8c04be6b',
             'type' => 'library',
             'install_path' => __DIR__ . '/../guzzlehttp/psr7',
             'aliases' => array(),
+            'reference' => 'e4490cabc77465aaee90b20cfc9a770f8c04be6b',
             'dev_requirement' => false,
         ),
         'hollisho/yii2-redis-pub-sub' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'd19daa3c6928bb28aca180a8b77e952ef435d41b',
             'type' => 'library',
             'install_path' => __DIR__ . '/../hollisho/yii2-redis-pub-sub',
             'aliases' => array(
                 0 => '9999999-dev',
             ),
+            'reference' => 'd19daa3c6928bb28aca180a8b77e952ef435d41b',
             'dev_requirement' => false,
         ),
         'imagine/imagine' => array(
             'pretty_version' => 'dev-develop',
             'version' => 'dev-develop',
-            'reference' => '43856ce80debe1c7b0d7a5fc8497ac64bb6870c3',
             'type' => 'library',
             'install_path' => __DIR__ . '/../imagine/imagine',
             'aliases' => array(
                 0 => '1.x-dev',
             ),
+            'reference' => '43856ce80debe1c7b0d7a5fc8497ac64bb6870c3',
             'dev_requirement' => false,
         ),
         'lcobucci/jwt' => array(
             'pretty_version' => '3.3.0',
             'version' => '3.3.0.0',
-            'reference' => '8866a58fa866f6872f2a6ea0e04ad56480f0f440',
             'type' => 'library',
             'install_path' => __DIR__ . '/../lcobucci/jwt',
             'aliases' => array(),
+            'reference' => '8866a58fa866f6872f2a6ea0e04ad56480f0f440',
             'dev_requirement' => false,
         ),
         'linslin/yii2-curl' => array(
             'pretty_version' => '1.0.11',
             'version' => '1.0.11.0',
-            'reference' => '0384d175c594a6b76c4eeb91eb3804e24eb867b3',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../linslin/yii2-curl',
             'aliases' => array(),
+            'reference' => '0384d175c594a6b76c4eeb91eb3804e24eb867b3',
             'dev_requirement' => false,
         ),
         'mtdowling/jmespath.php' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'b243cacd2a9803b4cbc259246aa5081208238c10',
             'type' => 'library',
             'install_path' => __DIR__ . '/../mtdowling/jmespath.php',
             'aliases' => array(
                 0 => '2.7.x-dev',
             ),
+            'reference' => 'b243cacd2a9803b4cbc259246aa5081208238c10',
             'dev_requirement' => false,
         ),
         'overtrue/chinese-calendar' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0',
             'type' => 'library',
             'install_path' => __DIR__ . '/../overtrue/chinese-calendar',
             'aliases' => array(
                 0 => '9999999-dev',
             ),
+            'reference' => '8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0',
             'dev_requirement' => false,
         ),
         'overtrue/pinyin' => array(
             'pretty_version' => '4.x-dev',
             'version' => '4.9999999.9999999.9999999-dev',
-            'reference' => '4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7',
             'type' => 'library',
             'install_path' => __DIR__ . '/../overtrue/pinyin',
             'aliases' => array(),
+            'reference' => '4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7',
             'dev_requirement' => false,
         ),
         'phpoffice/phpexcel' => array(
             'pretty_version' => '1.8.x-dev',
             'version' => '1.8.9999999.9999999-dev',
-            'reference' => '39534e3dd376041d0d50a4714e73375bf45b692b',
             'type' => 'library',
             'install_path' => __DIR__ . '/../phpoffice/phpexcel',
             'aliases' => array(),
+            'reference' => '39534e3dd376041d0d50a4714e73375bf45b692b',
             'dev_requirement' => false,
         ),
         'phpoption/phpoption' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'e3fac8b24f56113f7cb96af14958c0dd16330f54',
             'type' => 'library',
             'install_path' => __DIR__ . '/../phpoption/phpoption',
             'aliases' => array(
                 0 => '1.9.x-dev',
             ),
+            'reference' => 'e3fac8b24f56113f7cb96af14958c0dd16330f54',
             'dev_requirement' => false,
         ),
         'phpspec/php-diff' => array(
             'pretty_version' => 'v1.1.3',
             'version' => '1.1.3.0',
-            'reference' => 'fc1156187f9f6c8395886fe85ed88a0a245d72e9',
             'type' => 'library',
             'install_path' => __DIR__ . '/../phpspec/php-diff',
             'aliases' => array(),
+            'reference' => 'fc1156187f9f6c8395886fe85ed88a0a245d72e9',
             'dev_requirement' => true,
         ),
         'picqer/php-barcode-generator' => array(
             'pretty_version' => 'v0.3',
             'version' => '0.3.0.0',
-            'reference' => '2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c',
             'type' => 'library',
             'install_path' => __DIR__ . '/../picqer/php-barcode-generator',
             'aliases' => array(),
+            'reference' => '2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c',
             'dev_requirement' => false,
         ),
         'psr/container' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '707984727bd5b2b670e59559d3ed2500240cf875',
             'type' => 'library',
             'install_path' => __DIR__ . '/../psr/container',
             'aliases' => array(
                 0 => '2.0.x-dev',
             ),
+            'reference' => '707984727bd5b2b670e59559d3ed2500240cf875',
             'dev_requirement' => true,
         ),
         'psr/http-message' => array(
             'pretty_version' => '1.1',
             'version' => '1.1.0.0',
-            'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba',
             'type' => 'library',
             'install_path' => __DIR__ . '/../psr/http-message',
             'aliases' => array(),
+            'reference' => 'cb6ce4845ce34a8ad9e68117c10ee90a29919eba',
             'dev_requirement' => false,
         ),
         'psr/http-message-implementation' => array(
@@ -318,240 +318,240 @@
         'pwf0112/wxcrypt' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '4756b3cfb9e4b812d42acc381582485f21abe831',
             'type' => 'library',
             'install_path' => __DIR__ . '/../pwf0112/wxcrypt',
             'aliases' => array(
                 0 => '9999999-dev',
             ),
+            'reference' => '4756b3cfb9e4b812d42acc381582485f21abe831',
             'dev_requirement' => false,
         ),
         'ralouphie/getallheaders' => array(
             'pretty_version' => '3.0.3',
             'version' => '3.0.3.0',
-            'reference' => '120b605dfeb996808c31b6477290a714d356e822',
             'type' => 'library',
             'install_path' => __DIR__ . '/../ralouphie/getallheaders',
             'aliases' => array(),
+            'reference' => '120b605dfeb996808c31b6477290a714d356e822',
             'dev_requirement' => false,
         ),
         'shishaoqi/meituan-flash-purchase' => array(
             'pretty_version' => 'v1.1.0',
             'version' => '1.1.0.0',
-            'reference' => '23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe',
             'type' => 'library',
             'install_path' => __DIR__ . '/../shishaoqi/meituan-flash-purchase',
             'aliases' => array(),
+            'reference' => '23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe',
             'dev_requirement' => false,
         ),
         'swiftmailer/swiftmailer' => array(
             'pretty_version' => '5.x-dev',
             'version' => '5.9999999.9999999.9999999-dev',
-            'reference' => '181b89f18a90f8925ef805f950d47a7190e9b950',
             'type' => 'library',
             'install_path' => __DIR__ . '/../swiftmailer/swiftmailer',
             'aliases' => array(),
+            'reference' => '181b89f18a90f8925ef805f950d47a7190e9b950',
             'dev_requirement' => false,
         ),
         'symfony/deprecation-contracts' => array(
             'pretty_version' => '2.5.x-dev',
             'version' => '2.5.9999999.9999999-dev',
-            'reference' => '605389f2a7e5625f273b53960dc46aeaf9c62918',
             'type' => 'library',
             'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
             'aliases' => array(),
+            'reference' => '605389f2a7e5625f273b53960dc46aeaf9c62918',
             'dev_requirement' => true,
         ),
         'symfony/polyfill-ctype' => array(
             'pretty_version' => '1.x-dev',
             'version' => '1.9999999.9999999.9999999-dev',
-            'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638',
             'type' => 'library',
             'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
             'aliases' => array(),
+            'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638',
             'dev_requirement' => false,
         ),
         'symfony/polyfill-intl-idn' => array(
             'pretty_version' => '1.x-dev',
             'version' => '1.9999999.9999999.9999999-dev',
-            'reference' => '9614ac4d8061dc257ecc64cba1b140873dce8ad3',
             'type' => 'library',
             'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn',
             'aliases' => array(),
+            'reference' => '9614ac4d8061dc257ecc64cba1b140873dce8ad3',
             'dev_requirement' => false,
         ),
         'symfony/polyfill-intl-normalizer' => array(
             'pretty_version' => '1.x-dev',
             'version' => '1.9999999.9999999.9999999-dev',
-            'reference' => '3833d7255cc303546435cb650316bff708a1c75c',
             'type' => 'library',
             'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
             'aliases' => array(),
+            'reference' => '3833d7255cc303546435cb650316bff708a1c75c',
             'dev_requirement' => false,
         ),
         'symfony/polyfill-mbstring' => array(
             'pretty_version' => '1.x-dev',
             'version' => '1.9999999.9999999.9999999-dev',
-            'reference' => '6d857f4d76bd4b343eac26d6b539585d2bc56493',
             'type' => 'library',
             'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
             'aliases' => array(),
+            'reference' => '6d857f4d76bd4b343eac26d6b539585d2bc56493',
             'dev_requirement' => false,
         ),
         'symfony/var-dumper' => array(
             'pretty_version' => '3.4.x-dev',
             'version' => '3.4.9999999.9999999-dev',
-            'reference' => '0719f6cf4633a38b2c1585140998579ce23b4b7d',
             'type' => 'library',
             'install_path' => __DIR__ . '/../symfony/var-dumper',
             'aliases' => array(),
+            'reference' => '0719f6cf4633a38b2c1585140998579ce23b4b7d',
             'dev_requirement' => true,
         ),
         'symfony/yaml' => array(
             'pretty_version' => '2.8.x-dev',
             'version' => '2.8.9999999.9999999-dev',
-            'reference' => '02c1859112aa779d9ab394ae4f3381911d84052b',
             'type' => 'library',
             'install_path' => __DIR__ . '/../symfony/yaml',
             'aliases' => array(),
+            'reference' => '02c1859112aa779d9ab394ae4f3381911d84052b',
             'dev_requirement' => false,
         ),
         'vlucas/phpdotenv' => array(
             'pretty_version' => '4.3.x-dev',
             'version' => '4.3.9999999.9999999-dev',
-            'reference' => '67a491df68208bef8c37092db11fa3885008efcf',
             'type' => 'library',
             'install_path' => __DIR__ . '/../vlucas/phpdotenv',
             'aliases' => array(),
+            'reference' => '67a491df68208bef8c37092db11fa3885008efcf',
             'dev_requirement' => false,
         ),
         'workerman/gatewayclient' => array(
             'pretty_version' => 'v3.0.13',
             'version' => '3.0.13.0',
-            'reference' => '6f4e76f38947be5cabca2c6fee367151f248d949',
             'type' => 'library',
             'install_path' => __DIR__ . '/../workerman/gatewayclient',
             'aliases' => array(),
+            'reference' => '6f4e76f38947be5cabca2c6fee367151f248d949',
             'dev_requirement' => false,
         ),
         'yiier/yii2-aliyun-oss' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'ce1587cd58466cdf3a593f78532a210f2645f76a',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiier/yii2-aliyun-oss',
             'aliases' => array(
                 0 => '9999999-dev',
             ),
+            'reference' => 'ce1587cd58466cdf3a593f78532a210f2645f76a',
             'dev_requirement' => false,
         ),
         'yiisoft/yii2' => array(
             'pretty_version' => '2.0.29',
             'version' => '2.0.29.0',
-            'reference' => 'f972275551172a4b2e293979d77aa0c795ae36a2',
             'type' => 'library',
             'install_path' => __DIR__ . '/../yiisoft/yii2',
             'aliases' => array(),
+            'reference' => 'f972275551172a4b2e293979d77aa0c795ae36a2',
             'dev_requirement' => false,
         ),
         'yiisoft/yii2-app-advanced' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'efa7cc0790e46038bf278a5b4087312ff5daa841',
             'type' => 'project',
             'install_path' => __DIR__ . '/../../',
             'aliases' => array(),
+            'reference' => '2984de052ba1d2ffbcfb3c27eff91dceeaa63271',
             'dev_requirement' => false,
         ),
         'yiisoft/yii2-bootstrap' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '2aedc680e9496982e68c106fa010326a4138b389',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-bootstrap',
             'aliases' => array(
                 0 => '2.0.x-dev',
             ),
+            'reference' => '2aedc680e9496982e68c106fa010326a4138b389',
             'dev_requirement' => false,
         ),
         'yiisoft/yii2-codeception' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'c7d1509498c349179940a8d2b9c6d078e8054b90',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-codeception',
             'aliases' => array(
                 0 => '2.0.x-dev',
             ),
+            'reference' => 'c7d1509498c349179940a8d2b9c6d078e8054b90',
             'dev_requirement' => true,
         ),
         'yiisoft/yii2-composer' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => 'b684b01ecb119c8287721def726a0e24fec2fef2',
             'type' => 'composer-plugin',
             'install_path' => __DIR__ . '/../yiisoft/yii2-composer',
             'aliases' => array(
                 0 => '2.0.x-dev',
             ),
+            'reference' => 'b684b01ecb119c8287721def726a0e24fec2fef2',
             'dev_requirement' => false,
         ),
         'yiisoft/yii2-debug' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '9026d8a41571facc6fba816da15d62581f7f02cb',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-debug',
             'aliases' => array(
                 0 => '2.0.x-dev',
             ),
+            'reference' => '9026d8a41571facc6fba816da15d62581f7f02cb',
             'dev_requirement' => true,
         ),
         'yiisoft/yii2-faker' => array(
             'pretty_version' => 'dev-master',
             'version' => 'dev-master',
-            'reference' => '9550b28832322a13c9e4e76f3d348da3c29f19da',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-faker',
             'aliases' => array(
                 0 => '2.0.x-dev',
             ),
+            'reference' => '9550b28832322a13c9e4e76f3d348da3c29f19da',
             'dev_requirement' => true,
         ),
         'yiisoft/yii2-gii' => array(
             'pretty_version' => '2.0.8',
             'version' => '2.0.8.0',
-            'reference' => 'c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-gii',
             'aliases' => array(),
+            'reference' => 'c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1',
             'dev_requirement' => true,
         ),
         'yiisoft/yii2-imagine' => array(
             'pretty_version' => '2.3.1',
             'version' => '2.3.1.0',
-            'reference' => '7ec4332dc25893aec5a7cf084722b162b3a4d55d',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-imagine',
             'aliases' => array(),
+            'reference' => '7ec4332dc25893aec5a7cf084722b162b3a4d55d',
             'dev_requirement' => false,
         ),
         'yiisoft/yii2-redis' => array(
             'pretty_version' => '2.0.13',
             'version' => '2.0.13.0',
-            'reference' => '8b3ef7f6d7153b8958f75deab602c57aad454e1c',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-redis',
             'aliases' => array(),
+            'reference' => '8b3ef7f6d7153b8958f75deab602c57aad454e1c',
             'dev_requirement' => false,
         ),
         'yiisoft/yii2-swiftmailer' => array(
             'pretty_version' => '2.0.7',
             'version' => '2.0.7.0',
-            'reference' => '8a03a62cbcb82e7697d3002eb43a8d2637f566ec',
             'type' => 'yii2-extension',
             'install_path' => __DIR__ . '/../yiisoft/yii2-swiftmailer',
             'aliases' => array(),
+            'reference' => '8a03a62cbcb82e7697d3002eb43a8d2637f566ec',
             'dev_requirement' => false,
         ),
     ),

+ 0 - 26
vendor/composer/platform_check.php

@@ -1,26 +0,0 @@
-<?php
-
-// platform_check.php @generated by Composer
-
-$issues = array();
-
-if (!(PHP_VERSION_ID >= 70205)) {
-    $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". You are running ' . PHP_VERSION . '.';
-}
-
-if ($issues) {
-    if (!headers_sent()) {
-        header('HTTP/1.1 500 Internal Server Error');
-    }
-    if (!ini_get('display_errors')) {
-        if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
-            fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
-        } elseif (!headers_sent()) {
-            echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
-        }
-    }
-    trigger_error(
-        'Composer detected issues in your platform: ' . implode(' ', $issues),
-        E_USER_ERROR
-    );
-}