ComposerUpdate

This commit is contained in:
Anyon 2020-10-27 15:53:26 +08:00
parent 7e2e29cf87
commit 8ea8aa8f5d
7 changed files with 1083 additions and 1106 deletions

View File

@ -37,8 +37,8 @@ namespace Composer\Autoload;
* *
* @author Fabien Potencier <fabien@symfony.com> * @author Fabien Potencier <fabien@symfony.com>
* @author Jordi Boggiano <j.boggiano@seld.be> * @author Jordi Boggiano <j.boggiano@seld.be>
* @see https://www.php-fig.org/psr/psr-0/ * @see http://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/ * @see http://www.php-fig.org/psr/psr-4/
*/ */
class ClassLoader class ClassLoader
{ {

View File

@ -14,7 +14,6 @@ return array(
'AliPay\\Transfer' => $vendorDir . '/zoujingli/wechat-developer/AliPay/Transfer.php', 'AliPay\\Transfer' => $vendorDir . '/zoujingli/wechat-developer/AliPay/Transfer.php',
'AliPay\\Wap' => $vendorDir . '/zoujingli/wechat-developer/AliPay/Wap.php', 'AliPay\\Wap' => $vendorDir . '/zoujingli/wechat-developer/AliPay/Wap.php',
'AliPay\\Web' => $vendorDir . '/zoujingli/wechat-developer/AliPay/Web.php', 'AliPay\\Web' => $vendorDir . '/zoujingli/wechat-developer/AliPay/Web.php',
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
'Endroid\\QrCode\\Bundle\\Controller\\QrCodeController' => $vendorDir . '/endroid/qr-code/src/Bundle/Controller/QrCodeController.php', 'Endroid\\QrCode\\Bundle\\Controller\\QrCodeController' => $vendorDir . '/endroid/qr-code/src/Bundle/Controller/QrCodeController.php',
'Endroid\\QrCode\\Bundle\\DependencyInjection\\Configuration' => $vendorDir . '/endroid/qr-code/src/Bundle/DependencyInjection/Configuration.php', 'Endroid\\QrCode\\Bundle\\DependencyInjection\\Configuration' => $vendorDir . '/endroid/qr-code/src/Bundle/DependencyInjection/Configuration.php',
'Endroid\\QrCode\\Bundle\\DependencyInjection\\EndroidQrCodeExtension' => $vendorDir . '/endroid/qr-code/src/Bundle/DependencyInjection/EndroidQrCodeExtension.php', 'Endroid\\QrCode\\Bundle\\DependencyInjection\\EndroidQrCodeExtension' => $vendorDir . '/endroid/qr-code/src/Bundle/DependencyInjection/EndroidQrCodeExtension.php',
@ -438,6 +437,7 @@ return array(
'think\\facade\\Db' => $vendorDir . '/topthink/think-orm/src/facade/Db.php', 'think\\facade\\Db' => $vendorDir . '/topthink/think-orm/src/facade/Db.php',
'think\\facade\\Env' => $vendorDir . '/topthink/framework/src/think/facade/Env.php', 'think\\facade\\Env' => $vendorDir . '/topthink/framework/src/think/facade/Env.php',
'think\\facade\\Event' => $vendorDir . '/topthink/framework/src/think/facade/Event.php', 'think\\facade\\Event' => $vendorDir . '/topthink/framework/src/think/facade/Event.php',
'think\\facade\\Facade' => $vendorDir . '/topthink/think-orm/src/facade/Db.php',
'think\\facade\\Filesystem' => $vendorDir . '/topthink/framework/src/think/facade/Filesystem.php', 'think\\facade\\Filesystem' => $vendorDir . '/topthink/framework/src/think/facade/Filesystem.php',
'think\\facade\\Lang' => $vendorDir . '/topthink/framework/src/think/facade/Lang.php', 'think\\facade\\Lang' => $vendorDir . '/topthink/framework/src/think/facade/Lang.php',
'think\\facade\\Log' => $vendorDir . '/topthink/framework/src/think/facade/Log.php', 'think\\facade\\Log' => $vendorDir . '/topthink/framework/src/think/facade/Log.php',

View File

@ -8,7 +8,7 @@ $baseDir = dirname($vendorDir);
return array( return array(
'think\\view\\driver\\' => array($vendorDir . '/topthink/think-view/src'), 'think\\view\\driver\\' => array($vendorDir . '/topthink/think-view/src'),
'think\\admin\\' => array($vendorDir . '/zoujingli/think-library/src'), 'think\\admin\\' => array($vendorDir . '/zoujingli/think-library/src'),
'think\\' => array($vendorDir . '/topthink/think-helper/src', $vendorDir . '/topthink/think-orm/src', $vendorDir . '/topthink/think-template/src', $vendorDir . '/topthink/framework/src/think'), 'think\\' => array($vendorDir . '/topthink/framework/src/think', $vendorDir . '/topthink/think-helper/src', $vendorDir . '/topthink/think-orm/src', $vendorDir . '/topthink/think-template/src'),
'app\\' => array($baseDir . '/app'), 'app\\' => array($baseDir . '/app'),
'WePay\\' => array($vendorDir . '/zoujingli/wechat-developer/WePay'), 'WePay\\' => array($vendorDir . '/zoujingli/wechat-developer/WePay'),
'WeMini\\' => array($vendorDir . '/zoujingli/wechat-developer/WeMini'), 'WeMini\\' => array($vendorDir . '/zoujingli/wechat-developer/WeMini'),

View File

@ -22,15 +22,13 @@ class ComposerAutoloaderInit4f89fd0e0503ccf740f2fa5757825d7b
return self::$loader; return self::$loader;
} }
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit4f89fd0e0503ccf740f2fa5757825d7b', 'loadClassLoader'), true, true); spl_autoload_register(array('ComposerAutoloaderInit4f89fd0e0503ccf740f2fa5757825d7b', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(); self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit4f89fd0e0503ccf740f2fa5757825d7b', 'loadClassLoader')); spl_autoload_unregister(array('ComposerAutoloaderInit4f89fd0e0503ccf740f2fa5757825d7b', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) { if ($useStaticLoader) {
require __DIR__ . '/autoload_static.php'; require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit4f89fd0e0503ccf740f2fa5757825d7b::getInitializer($loader)); call_user_func(\Composer\Autoload\ComposerStaticInit4f89fd0e0503ccf740f2fa5757825d7b::getInitializer($loader));
} else { } else {

View File

@ -66,10 +66,10 @@ class ComposerStaticInit4f89fd0e0503ccf740f2fa5757825d7b
), ),
'think\\' => 'think\\' =>
array ( array (
0 => __DIR__ . '/..' . '/topthink/think-helper/src', 0 => __DIR__ . '/..' . '/topthink/framework/src/think',
1 => __DIR__ . '/..' . '/topthink/think-orm/src', 1 => __DIR__ . '/..' . '/topthink/think-helper/src',
2 => __DIR__ . '/..' . '/topthink/think-template/src', 2 => __DIR__ . '/..' . '/topthink/think-orm/src',
3 => __DIR__ . '/..' . '/topthink/framework/src/think', 3 => __DIR__ . '/..' . '/topthink/think-template/src',
), ),
'app\\' => 'app\\' =>
array ( array (
@ -142,7 +142,6 @@ class ComposerStaticInit4f89fd0e0503ccf740f2fa5757825d7b
'AliPay\\Transfer' => __DIR__ . '/..' . '/zoujingli/wechat-developer/AliPay/Transfer.php', 'AliPay\\Transfer' => __DIR__ . '/..' . '/zoujingli/wechat-developer/AliPay/Transfer.php',
'AliPay\\Wap' => __DIR__ . '/..' . '/zoujingli/wechat-developer/AliPay/Wap.php', 'AliPay\\Wap' => __DIR__ . '/..' . '/zoujingli/wechat-developer/AliPay/Wap.php',
'AliPay\\Web' => __DIR__ . '/..' . '/zoujingli/wechat-developer/AliPay/Web.php', 'AliPay\\Web' => __DIR__ . '/..' . '/zoujingli/wechat-developer/AliPay/Web.php',
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
'Endroid\\QrCode\\Bundle\\Controller\\QrCodeController' => __DIR__ . '/..' . '/endroid/qr-code/src/Bundle/Controller/QrCodeController.php', 'Endroid\\QrCode\\Bundle\\Controller\\QrCodeController' => __DIR__ . '/..' . '/endroid/qr-code/src/Bundle/Controller/QrCodeController.php',
'Endroid\\QrCode\\Bundle\\DependencyInjection\\Configuration' => __DIR__ . '/..' . '/endroid/qr-code/src/Bundle/DependencyInjection/Configuration.php', 'Endroid\\QrCode\\Bundle\\DependencyInjection\\Configuration' => __DIR__ . '/..' . '/endroid/qr-code/src/Bundle/DependencyInjection/Configuration.php',
'Endroid\\QrCode\\Bundle\\DependencyInjection\\EndroidQrCodeExtension' => __DIR__ . '/..' . '/endroid/qr-code/src/Bundle/DependencyInjection/EndroidQrCodeExtension.php', 'Endroid\\QrCode\\Bundle\\DependencyInjection\\EndroidQrCodeExtension' => __DIR__ . '/..' . '/endroid/qr-code/src/Bundle/DependencyInjection/EndroidQrCodeExtension.php',
@ -566,6 +565,7 @@ class ComposerStaticInit4f89fd0e0503ccf740f2fa5757825d7b
'think\\facade\\Db' => __DIR__ . '/..' . '/topthink/think-orm/src/facade/Db.php', 'think\\facade\\Db' => __DIR__ . '/..' . '/topthink/think-orm/src/facade/Db.php',
'think\\facade\\Env' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Env.php', 'think\\facade\\Env' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Env.php',
'think\\facade\\Event' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Event.php', 'think\\facade\\Event' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Event.php',
'think\\facade\\Facade' => __DIR__ . '/..' . '/topthink/think-orm/src/facade/Db.php',
'think\\facade\\Filesystem' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Filesystem.php', 'think\\facade\\Filesystem' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Filesystem.php',
'think\\facade\\Lang' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Lang.php', 'think\\facade\\Lang' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Lang.php',
'think\\facade\\Log' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Log.php', 'think\\facade\\Log' => __DIR__ . '/..' . '/topthink/framework/src/think/facade/Log.php',

View File

@ -1,5 +1,4 @@
{ [
"packages": [
{ {
"name": "endroid/qr-code", "name": "endroid/qr-code",
"version": "1.9.3", "version": "1.9.3",
@ -70,8 +69,7 @@
"support": { "support": {
"issues": "https://github.com/endroid/qr-code/issues", "issues": "https://github.com/endroid/qr-code/issues",
"source": "https://github.com/endroid/qr-code/tree/1.9.3" "source": "https://github.com/endroid/qr-code/tree/1.9.3"
}, }
"install-path": "../endroid/qr-code"
}, },
{ {
"name": "league/flysystem", "name": "league/flysystem",
@ -174,8 +172,7 @@
"url": "https://offset.earth/frankdejonge", "url": "https://offset.earth/frankdejonge",
"type": "other" "type": "other"
} }
], ]
"install-path": "../league/flysystem"
}, },
{ {
"name": "league/flysystem-cached-adapter", "name": "league/flysystem-cached-adapter",
@ -234,8 +231,7 @@
"support": { "support": {
"issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues", "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
"source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master" "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
}, }
"install-path": "../league/flysystem-cached-adapter"
}, },
{ {
"name": "league/mime-type-detection", "name": "league/mime-type-detection",
@ -298,8 +294,7 @@
"url": "https://tidelift.com/funding/github/packagist/league/flysystem", "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
"type": "tidelift" "type": "tidelift"
} }
], ]
"install-path": "../league/mime-type-detection"
}, },
{ {
"name": "psr/cache", "name": "psr/cache",
@ -356,8 +351,7 @@
], ],
"support": { "support": {
"source": "https://github.com/php-fig/cache/tree/master" "source": "https://github.com/php-fig/cache/tree/master"
}, }
"install-path": "../psr/cache"
}, },
{ {
"name": "psr/container", "name": "psr/container",
@ -418,8 +412,7 @@
"support": { "support": {
"issues": "https://github.com/php-fig/container/issues", "issues": "https://github.com/php-fig/container/issues",
"source": "https://github.com/php-fig/container/tree/master" "source": "https://github.com/php-fig/container/tree/master"
}, }
"install-path": "../psr/container"
}, },
{ {
"name": "psr/log", "name": "psr/log",
@ -477,8 +470,7 @@
], ],
"support": { "support": {
"source": "https://github.com/php-fig/log/tree/1.1.3" "source": "https://github.com/php-fig/log/tree/1.1.3"
}, }
"install-path": "../psr/log"
}, },
{ {
"name": "psr/simple-cache", "name": "psr/simple-cache",
@ -537,8 +529,7 @@
], ],
"support": { "support": {
"source": "https://github.com/php-fig/simple-cache/tree/master" "source": "https://github.com/php-fig/simple-cache/tree/master"
}, }
"install-path": "../psr/simple-cache"
}, },
{ {
"name": "symfony/options-resolver", "name": "symfony/options-resolver",
@ -617,8 +608,7 @@
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift" "type": "tidelift"
} }
], ]
"install-path": "../symfony/options-resolver"
}, },
{ {
"name": "topthink/framework", "name": "topthink/framework",
@ -691,8 +681,7 @@
"support": { "support": {
"issues": "https://github.com/top-think/framework/issues", "issues": "https://github.com/top-think/framework/issues",
"source": "https://github.com/top-think/framework/tree/v6.0.5" "source": "https://github.com/top-think/framework/tree/v6.0.5"
}, }
"install-path": "../topthink/framework"
}, },
{ {
"name": "topthink/think-helper", "name": "topthink/think-helper",
@ -743,8 +732,7 @@
"support": { "support": {
"issues": "https://github.com/top-think/think-helper/issues", "issues": "https://github.com/top-think/think-helper/issues",
"source": "https://github.com/top-think/think-helper/tree/3.0" "source": "https://github.com/top-think/think-helper/tree/3.0"
}, }
"install-path": "../topthink/think-helper"
}, },
{ {
"name": "topthink/think-orm", "name": "topthink/think-orm",
@ -801,8 +789,7 @@
"support": { "support": {
"issues": "https://github.com/top-think/think-orm/issues", "issues": "https://github.com/top-think/think-orm/issues",
"source": "https://github.com/top-think/think-orm/tree/v2.0.34" "source": "https://github.com/top-think/think-orm/tree/v2.0.34"
}, }
"install-path": "../topthink/think-orm"
}, },
{ {
"name": "topthink/think-template", "name": "topthink/think-template",
@ -851,8 +838,7 @@
"support": { "support": {
"issues": "https://github.com/top-think/think-template/issues", "issues": "https://github.com/top-think/think-template/issues",
"source": "https://github.com/top-think/think-template/tree/v2.0.7" "source": "https://github.com/top-think/think-template/tree/v2.0.7"
}, }
"install-path": "../topthink/think-template"
}, },
{ {
"name": "topthink/think-view", "name": "topthink/think-view",
@ -901,8 +887,7 @@
"support": { "support": {
"issues": "https://github.com/top-think/think-view/issues", "issues": "https://github.com/top-think/think-view/issues",
"source": "https://github.com/top-think/think-view/tree/v1.0.14" "source": "https://github.com/top-think/think-view/tree/v1.0.14"
}, }
"install-path": "../topthink/think-view"
}, },
{ {
"name": "zoujingli/ip2region", "name": "zoujingli/ip2region",
@ -955,8 +940,7 @@
"support": { "support": {
"issues": "https://github.com/zoujingli/ip2region/issues", "issues": "https://github.com/zoujingli/ip2region/issues",
"source": "https://github.com/zoujingli/ip2region/tree/master" "source": "https://github.com/zoujingli/ip2region/tree/master"
}, }
"install-path": "../zoujingli/ip2region"
}, },
{ {
"name": "zoujingli/think-library", "name": "zoujingli/think-library",
@ -988,7 +972,6 @@
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2020-10-26T10:23:23+00:00", "time": "2020-10-26T10:23:23+00:00",
"default-branch": true,
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {
@ -1021,8 +1004,7 @@
"support": { "support": {
"issues": "https://github.com/zoujingli/ThinkLibrary/issues", "issues": "https://github.com/zoujingli/ThinkLibrary/issues",
"source": "https://github.com/zoujingli/ThinkLibrary/tree/v6.0" "source": "https://github.com/zoujingli/ThinkLibrary/tree/v6.0"
}, }
"install-path": "../zoujingli/think-library"
}, },
{ {
"name": "zoujingli/wechat-developer", "name": "zoujingli/wechat-developer",
@ -1094,9 +1076,6 @@
"support": { "support": {
"issues": "https://github.com/zoujingli/WeChatDeveloper/issues", "issues": "https://github.com/zoujingli/WeChatDeveloper/issues",
"source": "https://github.com/zoujingli/WeChatDeveloper/tree/v1.2.26" "source": "https://github.com/zoujingli/WeChatDeveloper/tree/v1.2.26"
},
"install-path": "../zoujingli/wechat-developer"
} }
], }
"dev": false ]
}

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2020-10-27 15:21:32 // This file is automatically generated at:2020-10-27 15:53:11
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\admin\\Library', 0 => 'think\\admin\\Library',