This commit is contained in:
wangjinlei
2022-11-23 14:48:15 +08:00
parent 0a92e69b83
commit ec59e99a8b
636 changed files with 59164 additions and 46329 deletions

View File

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

View File

@@ -19,11 +19,20 @@ private static $installed = array (
'aliases' =>
array (
),
'reference' => '2c373f1587474940063688399f43ef8f93fed848',
'reference' => '0a92e69b830447e8acf0e4eb2b0aef31ebb76d30',
'name' => 'topthink/think',
),
'versions' =>
array (
'laminas/laminas-escaper' =>
array (
'pretty_version' => '2.9.0',
'version' => '2.9.0.0',
'aliases' =>
array (
),
'reference' => '891ad70986729e20ed2e86355fcf93c9dc238a5f',
),
'phpmailer/phpmailer' =>
array (
'pretty_version' => 'v6.6.0',
@@ -33,6 +42,15 @@ private static $installed = array (
),
'reference' => 'e43bac82edc26ca04b36143a48bde1c051cfd5b1',
),
'phpoffice/phpword' =>
array (
'pretty_version' => '1.0.0',
'version' => '1.0.0.0',
'aliases' =>
array (
),
'reference' => '8521612b39edeec9055d3688ad555342a40857dd',
),
'tecnickcom/tcpdf' =>
array (
'pretty_version' => '6.4.4',
@@ -58,7 +76,7 @@ private static $installed = array (
'aliases' =>
array (
),
'reference' => '2c373f1587474940063688399f43ef8f93fed848',
'reference' => '0a92e69b830447e8acf0e4eb2b0aef31ebb76d30',
),
'topthink/think-captcha' =>
array (

View File

@@ -6,6 +6,7 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
'Datamatrix' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/datamatrix.php',
'PDF417' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/pdf417.php',
'QRcode' => $vendorDir . '/tecnickcom/tcpdf/include/barcodes/qrcode.php',

View File

@@ -8,6 +8,6 @@ $baseDir = dirname($vendorDir);
return array(
'9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php',
'1cfd2761b63b0a29ed23657ea394cb2d' => $vendorDir . '/topthink/think-captcha/src/helper.php',
'ddc3cd2a04224f9638c5d0de6a69c7e3' => $vendorDir . '/topthink/think-migration/src/config.php',
'cc56288302d9df745d97c934d6a6e5f0' => $vendorDir . '/topthink/think-queue/src/common.php',
'644e9cafc67b331e17cc7661548f33d0' => $vendorDir . '/weiwei/api-doc/src/helper.php',
);

View File

@@ -6,16 +6,13 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'think\\worker\\' => array($vendorDir . '/topthink/think-worker/src'),
'think\\oracle\\' => array($vendorDir . '/topthink/think-oracle/src'),
'think\\mongo\\' => array($vendorDir . '/topthink/think-mongo/src'),
'think\\migration\\' => array($vendorDir . '/topthink/think-migration/src'),
'think\\helper\\' => array($vendorDir . '/topthink/think-helper/src'),
'think\\composer\\' => array($vendorDir . '/topthink/think-installer/src'),
'think\\captcha\\' => array($vendorDir . '/topthink/think-captcha/src'),
'think\\' => array($baseDir . '/thinkphp/library/think', $vendorDir . '/topthink/think-image/src', $vendorDir . '/topthink/think-queue/src'),
'think\\' => array($baseDir . '/thinkphp/library/think', $vendorDir . '/topthink/think-queue/src'),
'app\\' => array($baseDir . '/application'),
'Workerman\\' => array($vendorDir . '/workerman/workerman'),
'Phinx\\' => array($vendorDir . '/topthink/think-migration/phinx/src/Phinx'),
'PhpOffice\\PhpWord\\' => array($vendorDir . '/phpoffice/phpword/src/PhpWord'),
'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'),
'Laminas\\Escaper\\' => array($vendorDir . '/laminas/laminas-escaper/src'),
'Api\\Doc\\' => array($vendorDir . '/weiwei/api-doc/src'),
);

View File

@@ -22,13 +22,15 @@ class ComposerAutoloaderInit2bc4f313dba415539e266f7ac2c87dcd
return self::$loader;
}
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit2bc4f313dba415539e266f7ac2c87dcd', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit2bc4f313dba415539e266f7ac2c87dcd', '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';
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit2bc4f313dba415539e266f7ac2c87dcd::getInitializer($loader));
} else {

View File

@@ -9,17 +9,13 @@ class ComposerStaticInit2bc4f313dba415539e266f7ac2c87dcd
public static $files = array (
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
'1cfd2761b63b0a29ed23657ea394cb2d' => __DIR__ . '/..' . '/topthink/think-captcha/src/helper.php',
'ddc3cd2a04224f9638c5d0de6a69c7e3' => __DIR__ . '/..' . '/topthink/think-migration/src/config.php',
'cc56288302d9df745d97c934d6a6e5f0' => __DIR__ . '/..' . '/topthink/think-queue/src/common.php',
'644e9cafc67b331e17cc7661548f33d0' => __DIR__ . '/..' . '/weiwei/api-doc/src/helper.php',
);
public static $prefixLengthsPsr4 = array (
't' =>
array (
'think\\worker\\' => 13,
'think\\oracle\\' => 13,
'think\\mongo\\' => 12,
'think\\migration\\' => 16,
'think\\helper\\' => 13,
'think\\composer\\' => 15,
'think\\captcha\\' => 14,
@@ -29,34 +25,22 @@ class ComposerStaticInit2bc4f313dba415539e266f7ac2c87dcd
array (
'app\\' => 4,
),
'W' =>
array (
'Workerman\\' => 10,
),
'P' =>
array (
'Phinx\\' => 6,
'PhpOffice\\PhpWord\\' => 18,
'PHPMailer\\PHPMailer\\' => 20,
),
'L' =>
array (
'Laminas\\Escaper\\' => 16,
),
'A' =>
array (
'Api\\Doc\\' => 8,
),
);
public static $prefixDirsPsr4 = array (
'think\\worker\\' =>
array (
0 => __DIR__ . '/..' . '/topthink/think-worker/src',
),
'think\\oracle\\' =>
array (
0 => __DIR__ . '/..' . '/topthink/think-oracle/src',
),
'think\\mongo\\' =>
array (
0 => __DIR__ . '/..' . '/topthink/think-mongo/src',
),
'think\\migration\\' =>
array (
0 => __DIR__ . '/..' . '/topthink/think-migration/src',
),
'think\\helper\\' =>
array (
0 => __DIR__ . '/..' . '/topthink/think-helper/src',
@@ -72,28 +56,32 @@ class ComposerStaticInit2bc4f313dba415539e266f7ac2c87dcd
'think\\' =>
array (
0 => __DIR__ . '/../..' . '/thinkphp/library/think',
1 => __DIR__ . '/..' . '/topthink/think-image/src',
2 => __DIR__ . '/..' . '/topthink/think-queue/src',
1 => __DIR__ . '/..' . '/topthink/think-queue/src',
),
'app\\' =>
array (
0 => __DIR__ . '/../..' . '/application',
),
'Workerman\\' =>
'PhpOffice\\PhpWord\\' =>
array (
0 => __DIR__ . '/..' . '/workerman/workerman',
),
'Phinx\\' =>
array (
0 => __DIR__ . '/..' . '/topthink/think-migration/phinx/src/Phinx',
0 => __DIR__ . '/..' . '/phpoffice/phpword/src/PhpWord',
),
'PHPMailer\\PHPMailer\\' =>
array (
0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src',
),
'Laminas\\Escaper\\' =>
array (
0 => __DIR__ . '/..' . '/laminas/laminas-escaper/src',
),
'Api\\Doc\\' =>
array (
0 => __DIR__ . '/..' . '/weiwei/api-doc/src',
),
);
public static $classMap = array (
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
'Datamatrix' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/datamatrix.php',
'PDF417' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/pdf417.php',
'QRcode' => __DIR__ . '/..' . '/tecnickcom/tcpdf/include/barcodes/qrcode.php',

File diff suppressed because it is too large Load Diff

View File

@@ -6,11 +6,20 @@
'aliases' =>
array (
),
'reference' => '2c373f1587474940063688399f43ef8f93fed848',
'reference' => '0a92e69b830447e8acf0e4eb2b0aef31ebb76d30',
'name' => 'topthink/think',
),
'versions' =>
array (
'laminas/laminas-escaper' =>
array (
'pretty_version' => '2.9.0',
'version' => '2.9.0.0',
'aliases' =>
array (
),
'reference' => '891ad70986729e20ed2e86355fcf93c9dc238a5f',
),
'phpmailer/phpmailer' =>
array (
'pretty_version' => 'v6.6.0',
@@ -20,6 +29,15 @@
),
'reference' => 'e43bac82edc26ca04b36143a48bde1c051cfd5b1',
),
'phpoffice/phpword' =>
array (
'pretty_version' => '1.0.0',
'version' => '1.0.0.0',
'aliases' =>
array (
),
'reference' => '8521612b39edeec9055d3688ad555342a40857dd',
),
'tecnickcom/tcpdf' =>
array (
'pretty_version' => '6.4.4',
@@ -45,7 +63,7 @@
'aliases' =>
array (
),
'reference' => '2c373f1587474940063688399f43ef8f93fed848',
'reference' => '0a92e69b830447e8acf0e4eb2b0aef31ebb76d30',
),
'topthink/think-captcha' =>
array (

View File

@@ -4,8 +4,8 @@
$issues = array();
if (!(PHP_VERSION_ID >= 50500)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 5.5.0". You are running ' . PHP_VERSION . '.';
if (!(PHP_VERSION_ID >= 70300)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.3.0". You are running ' . PHP_VERSION . '.';
}
if ($issues) {