Commit b00b5b3f authored by jianghaiming's avatar jianghaiming

update:解决冲突

parents 9d491bad d2fdbda9
<?php <?php
namespace App\Services\user\Weixin\Weixin;
use App\Libraries\Http; namespace App\Services\user\Weixin;
/** /**
* Created by PhpStorm. * Created by PhpStorm.
* User: shixing
* Date: 2018/9/12 * Date: 2018/9/12
* Time: 10:48 * Time: 10:48
*/ */
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
"require": { "require": {
"php": "7.2.*", "php": "7.2.*",
"ext-json": "*", "ext-json": "*",
"api/php_services":"1.0.16", "api/php_services":"1.0.17",
"api/php_utils":"1.0.17", "api/php_utils":"1.0.17",
"ext-openssl": "*" "ext-openssl": "*"
}, },
......
...@@ -4,15 +4,15 @@ ...@@ -4,15 +4,15 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "a6ce79abff3778226d347be8c1ba2b8b", "content-hash": "9e0f4999c766018291a1b9b9ffe8d780",
"packages": [ "packages": [
{ {
"name": "api/php_services", "name": "api/php_services",
"version": "1.0.16", "version": "1.0.17",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://git.yidian-inc.com:8021/bp/php_services.git", "url": "https://git.yidian-inc.com:8021/bp/php_services.git",
"reference": "ea80bdaefe875350b425b0aee11f59bf45d7258d" "reference": "5b7bce9db15629dd3b1bcca0d066e2e1f1fae404"
}, },
"require": { "require": {
"endroid/qr-code": "^3.9", "endroid/qr-code": "^3.9",
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
} }
}, },
"description": "bp api php_services", "description": "bp api php_services",
"time": "2021-09-15T02:17:53+00:00" "time": "2021-09-22T06:19:58+00:00"
}, },
{ {
"name": "api/php_utils", "name": "api/php_utils",
...@@ -1913,12 +1913,12 @@ ...@@ -1913,12 +1913,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/string.git", "url": "https://github.com/symfony/string.git",
"reference": "fa2c5cc3f7dac23d87429652fe0daf28d65cbd5b" "reference": "412eda2039ad5466f823c3696c0c309e6c140086"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/fa2c5cc3f7dac23d87429652fe0daf28d65cbd5b", "url": "https://api.github.com/repos/symfony/string/zipball/412eda2039ad5466f823c3696c0c309e6c140086",
"reference": "fa2c5cc3f7dac23d87429652fe0daf28d65cbd5b", "reference": "412eda2039ad5466f823c3696c0c309e6c140086",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1988,7 +1988,7 @@ ...@@ -1988,7 +1988,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-08-26T08:23:47+00:00" "time": "2021-09-17T07:22:48+00:00"
} }
], ],
"packages-dev": [], "packages-dev": [],
...@@ -2003,5 +2003,5 @@ ...@@ -2003,5 +2003,5 @@
"ext-openssl": "*" "ext-openssl": "*"
}, },
"platform-dev": [], "platform-dev": [],
"plugin-api-version": "2.1.0" "plugin-api-version": "2.0.0"
} }
...@@ -38,7 +38,7 @@ class JwUser ...@@ -38,7 +38,7 @@ class JwUser
$params = ["mobilePhone" => $params['mobile']]; $params = ["mobilePhone" => $params['mobile']];
$begin = microtime(true); $begin = microtime(true);
$user_info = (new Request())->get($url, $params); $user_info = (new Request())->get($url, $params, 5000);
$end = microtime(true); $end = microtime(true);
$total_time = round(($end - $begin), 4) * 1000; $total_time = round(($end - $begin), 4) * 1000;
if (!empty($user_info['response'])) { if (!empty($user_info['response'])) {
...@@ -71,7 +71,7 @@ class JwUser ...@@ -71,7 +71,7 @@ class JwUser
$params = ["userId" => $params['user_id']]; $params = ["userId" => $params['user_id']];
$begin = microtime(true); $begin = microtime(true);
$user_info = (new Request())->post($url, $params); $user_info = (new Request())->post($url, $params, 5000);
$end = microtime(true); $end = microtime(true);
$total_time = round(($end - $begin), 4) * 1000; $total_time = round(($end - $begin), 4) * 1000;
if (!empty($user_info['response'])) { if (!empty($user_info['response'])) {
...@@ -102,7 +102,7 @@ class JwUser ...@@ -102,7 +102,7 @@ class JwUser
$params = ["userIds" => $params['user_id']]; $params = ["userIds" => $params['user_id']];
$begin = microtime(true); $begin = microtime(true);
$user_info = (new Request())->post($url, $params); $user_info = (new Request())->post($url, $params, 5000);
$end = microtime(true); $end = microtime(true);
$total_time = round(($end - $begin), 4) * 1000; $total_time = round(($end - $begin), 4) * 1000;
if (!empty($user_info['response'])) { if (!empty($user_info['response'])) {
...@@ -133,7 +133,7 @@ class JwUser ...@@ -133,7 +133,7 @@ class JwUser
} }
$params = []; $params = [];
//$city_list = (new TimeOut())->runGet($url, $params); //$city_list = (new TimeOut())->runGet($url, $params);
$city_list = (new Request())->get($url, $params); $city_list = (new Request())->get($url, $params, 5000);
FileLog::info('jw_user_getAllCityTree', json_encode($city_list)); FileLog::info('jw_user_getAllCityTree', json_encode($city_list));
if (!$city_list) { if (!$city_list) {
throw new CodeSpecialException("timeout"); throw new CodeSpecialException("timeout");
......
...@@ -4,5 +4,4 @@ ...@@ -4,5 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php'; require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383::getLoader(); return ComposerAutoloaderInite9c1cf708c572b30ccbaa1adb865583e::getLoader();
...@@ -338,7 +338,7 @@ class ClassLoader ...@@ -338,7 +338,7 @@ class ClassLoader
* Loads the given class or interface. * Loads the given class or interface.
* *
* @param string $class The name of the class * @param string $class The name of the class
* @return true|null True if loaded, null otherwise * @return bool|null True if loaded, null otherwise
*/ */
public function loadClass($class) public function loadClass($class)
{ {
...@@ -347,8 +347,6 @@ class ClassLoader ...@@ -347,8 +347,6 @@ class ClassLoader
return true; return true;
} }
return null;
} }
/** /**
......
<?php <?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer; namespace Composer;
use Composer\Autoload\ClassLoader; use Composer\Autoload\ClassLoader;
use Composer\Semver\VersionParser; use Composer\Semver\VersionParser;
/**
* This class is copied in every Composer installed project and available to all
*
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
*
* To require it's presence, you can require `composer-runtime-api ^2.0`
*/
class InstalledVersions class InstalledVersions
{ {
private static $installed; private static $installed = array (
private static $canGetVendors; 'root' =>
private static $installedByVendor = array(); array (
'pretty_version' => 'dev-develop',
/** 'version' => 'dev-develop',
* Returns a list of all package names which are present, either by being installed, replaced or provided 'aliases' =>
* array (
* @return string[] ),
* @psalm-return list<string> 'reference' => 'e57aa42ccab85ef592670fe44526010029dd6359',
*/ 'name' => 'yidian/yaf_demo',
public static function getInstalledPackages() ),
{ 'versions' =>
$packages = array(); array (
foreach (self::getInstalled() as $installed) { 'api/php_services' =>
$packages[] = array_keys($installed['versions']); array (
} 'pretty_version' => '1.0.17',
'version' => '1.0.17.0',
if (1 === \count($packages)) { 'aliases' =>
return $packages[0]; array (
} ),
'reference' => '5b7bce9db15629dd3b1bcca0d066e2e1f1fae404',
return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); ),
} 'api/php_utils' =>
array (
/** 'pretty_version' => 'v1.0.17',
* Returns a list of all package names with a specific type e.g. 'library' 'version' => '1.0.17.0',
* 'aliases' =>
* @param string $type array (
* @return string[] ),
* @psalm-return list<string> 'reference' => 'aa70ccdd545f3e421eaf717274954990f1805b87',
*/ ),
public static function getInstalledPackagesByType($type) 'bacon/bacon-qr-code' =>
{ array (
$packagesByType = array(); 'pretty_version' => '2.0.4',
'version' => '2.0.4.0',
foreach (self::getInstalled() as $installed) { 'aliases' =>
foreach ($installed['versions'] as $name => $package) { array (
if (isset($package['type']) && $package['type'] === $type) { ),
$packagesByType[] = $name; 'reference' => 'f73543ac4e1def05f1a70bcd1525c8a157a1ad09',
} ),
} 'dasprid/enum' =>
} array (
'pretty_version' => '1.0.3',
return $packagesByType; 'version' => '1.0.3.0',
} 'aliases' =>
array (
/** ),
* Checks whether the given package is installed 'reference' => '5abf82f213618696dda8e3bf6f64dd042d8542b2',
* ),
* This also returns true if the package name is provided or replaced by another package 'elasticsearch/elasticsearch' =>
* array (
* @param string $packageName 'pretty_version' => '7.11.x-dev',
* @param bool $includeDevRequirements 'version' => '7.11.9999999.9999999-dev',
* @return bool 'aliases' =>
*/ array (
public static function isInstalled($packageName, $includeDevRequirements = true) ),
{ 'reference' => '8d08050fef9d89004702b1428b8c1f7f4f6162cf',
foreach (self::getInstalled() as $installed) { ),
if (isset($installed['versions'][$packageName])) { 'endroid/qr-code' =>
return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); array (
} 'pretty_version' => '3.9.6',
} 'version' => '3.9.6.0',
'aliases' =>
return false; array (
} ),
'reference' => '9cdd4f5d609bfc8811ca4a62b4d23eb16976242f',
/** ),
* Checks whether the given package satisfies a version constraint 'ezimuel/guzzlestreams' =>
* array (
* e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: 'pretty_version' => 'dev-master',
* 'version' => 'dev-master',
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') 'aliases' =>
* array (
* @param VersionParser $parser Install composer/semver to have access to this class and functionality 0 => '3.0.x-dev',
* @param string $packageName ),
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package 'reference' => 'abe3791d231167f14eb80d413420d1eab91163a8',
* @return bool ),
*/ 'ezimuel/ringphp' =>
public static function satisfies(VersionParser $parser, $packageName, $constraint) array (
{ 'pretty_version' => 'dev-master',
$constraint = $parser->parseConstraints($constraint); 'version' => 'dev-master',
$provided = $parser->parseConstraints(self::getVersionRanges($packageName)); 'aliases' =>
array (
return $provided->matches($constraint); 0 => '1.1.x-dev',
} ),
'reference' => '0b78f89d8e0bb9e380046c31adfa40347e9f663b',
/** ),
* Returns a version constraint representing all the range(s) which are installed for a given package 'guzzlehttp/guzzle' =>
* array (
* It is easier to use this via isInstalled() with the $constraint argument if you need to check 'pretty_version' => '6.3.0',
* whether a given version of a package is installed, and not just whether it exists 'version' => '6.3.0.0',
* 'aliases' =>
* @param string $packageName array (
* @return string Version constraint usable with composer/semver ),
*/ 'reference' => 'f4db5a78a5ea468d4831de7f0bf9d9415e348699',
public static function getVersionRanges($packageName) ),
{ 'guzzlehttp/promises' =>
foreach (self::getInstalled() as $installed) { array (
if (!isset($installed['versions'][$packageName])) { 'pretty_version' => 'dev-master',
continue; 'version' => 'dev-master',
} 'aliases' =>
array (
$ranges = array(); 0 => '1.4.x-dev',
if (isset($installed['versions'][$packageName]['pretty_version'])) { ),
$ranges[] = $installed['versions'][$packageName]['pretty_version']; 'reference' => 'c1dd809c8f51a477701052f4b9e5b4bb5c1061aa',
} ),
if (array_key_exists('aliases', $installed['versions'][$packageName])) { 'guzzlehttp/psr7' =>
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); array (
} 'pretty_version' => '1.x-dev',
if (array_key_exists('replaced', $installed['versions'][$packageName])) { 'version' => '1.9999999.9999999.9999999-dev',
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); 'aliases' =>
} array (
if (array_key_exists('provided', $installed['versions'][$packageName])) { ),
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); 'reference' => '9d006741ba865a45adccfac45d8e1053086a5a3f',
} ),
'khanamiryan/qrcode-detector-decoder' =>
return implode(' || ', $ranges); array (
} 'pretty_version' => '1.0.5.2',
'version' => '1.0.5.2',
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 'aliases' =>
} array (
),
/** 'reference' => '04fdd58d86a387065f707dc6d3cc304c719910c1',
* @param string $packageName ),
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present 'mongodb/mongodb' =>
*/ array (
public static function getVersion($packageName) 'pretty_version' => '1.4.3',
{ 'version' => '1.4.3.0',
foreach (self::getInstalled() as $installed) { 'aliases' =>
if (!isset($installed['versions'][$packageName])) { array (
continue; ),
} 'reference' => '18fca8cc8d0c2cc07f76605760d20632bb3dab96',
),
if (!isset($installed['versions'][$packageName]['version'])) { 'myclabs/php-enum' =>
return null; array (
} 'pretty_version' => '1.7.7',
'version' => '1.7.7.0',
return $installed['versions'][$packageName]['version']; 'aliases' =>
} array (
),
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 'reference' => 'd178027d1e679832db9f38248fcc7200647dc2b7',
} ),
'perftools/php-profiler' =>
/** array (
* @param string $packageName 'pretty_version' => '0.18.0',
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present 'version' => '0.18.0.0',
*/ 'aliases' =>
public static function getPrettyVersion($packageName) array (
{ ),
foreach (self::getInstalled() as $installed) { 'reference' => '794c435f615ab9ca4347e386b4d8c6524fe9e3ae',
if (!isset($installed['versions'][$packageName])) { ),
continue; 'psr/http-message' =>
} array (
'pretty_version' => 'dev-master',
if (!isset($installed['versions'][$packageName]['pretty_version'])) { 'version' => 'dev-master',
return null; 'aliases' =>
} array (
0 => '1.0.x-dev',
return $installed['versions'][$packageName]['pretty_version']; ),
} 'reference' => 'efd67d1dc14a7ef4fc4e518e7dee91c271d524e4',
),
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 'psr/http-message-implementation' =>
} array (
'provided' =>
/** array (
* @param string $packageName 0 => '1.0',
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference ),
*/ ),
public static function getReference($packageName) 'psr/log' =>
{ array (
foreach (self::getInstalled() as $installed) { 'pretty_version' => '1.1.4',
if (!isset($installed['versions'][$packageName])) { 'version' => '1.1.4.0',
continue; 'aliases' =>
} array (
),
if (!isset($installed['versions'][$packageName]['reference'])) { 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
return null; ),
} 'ralouphie/getallheaders' =>
array (
return $installed['versions'][$packageName]['reference']; 'pretty_version' => '3.0.3',
} 'version' => '3.0.3.0',
'aliases' =>
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); array (
} ),
'reference' => '120b605dfeb996808c31b6477290a714d356e822',
/** ),
* @param string $packageName 'react/promise' =>
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. array (
*/ 'pretty_version' => '2.x-dev',
public static function getInstallPath($packageName) 'version' => '2.9999999.9999999.9999999-dev',
{ 'aliases' =>
foreach (self::getInstalled() as $installed) { array (
if (!isset($installed['versions'][$packageName])) { ),
continue; 'reference' => 'a9752a861e21c0fe0b380c9f9e55beddc0ed7d31',
} ),
'symfony/deprecation-contracts' =>
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; array (
} 'pretty_version' => 'dev-main',
'version' => 'dev-main',
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); 'aliases' =>
} array (
0 => '2.5.x-dev',
/** ),
* @return array 'reference' => '6f981ee24cf69ee7ce9736146d1c57c2780598a8',
* @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string} ),
*/ 'symfony/options-resolver' =>
public static function getRootPackage() array (
{ 'pretty_version' => '5.4.x-dev',
$installed = self::getInstalled(); 'version' => '5.4.9999999.9999999-dev',
'aliases' =>
return $installed[0]['root']; array (
} ),
'reference' => 'cd63dbab0428a47f8576e4e58148aeae2e32e91c',
/** ),
* Returns the raw installed.php data for custom implementations 'symfony/polyfill-ctype' =>
* array (
* @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. 'pretty_version' => 'dev-main',
* @return array[] 'version' => 'dev-main',
* @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>} 'aliases' =>
*/ array (
public static function getRawData() 0 => '1.23.x-dev',
{ ),
@trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); 'reference' => 'f24ae462b1d60c333df104f0b81ec7d0e12f6e9f',
),
if (null === self::$installed) { 'symfony/polyfill-intl-grapheme' =>
// only require the installed.php file if this file is loaded from its dumped location, array (
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 'pretty_version' => 'dev-main',
if (substr(__DIR__, -8, 1) !== 'C') { 'version' => 'dev-main',
self::$installed = include __DIR__ . '/installed.php'; 'aliases' =>
} else { array (
self::$installed = array(); 0 => '1.23.x-dev',
} ),
} 'reference' => '16880ba9c5ebe3642d1995ab866db29270b36535',
),
return self::$installed; 'symfony/polyfill-intl-normalizer' =>
} array (
'pretty_version' => 'dev-main',
/** 'version' => 'dev-main',
* Returns the raw data of all installed.php which are currently loaded for custom implementations 'aliases' =>
* array (
* @return array[] 0 => '1.23.x-dev',
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}> ),
*/ 'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8',
public static function getAllRawData() ),
{ 'symfony/polyfill-mbstring' =>
return self::getInstalled(); array (
} 'pretty_version' => 'dev-main',
'version' => 'dev-main',
/** 'aliases' =>
* Lets you reload the static array from another file array (
* 0 => '1.23.x-dev',
* This is only useful for complex integrations in which a project needs to use ),
* this class but then also needs to execute another project's autoloader in process, 'reference' => '344e456152e22a1bce3048c6c311059ea14bde47',
* and wants to ensure both projects have access to their version of installed.php. ),
* 'symfony/polyfill-php73' =>
* A typical case would be PHPUnit, where it would need to make sure it reads all array (
* the data it needs from this class, then call reload() with 'pretty_version' => 'dev-main',
* `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure 'version' => 'dev-main',
* the project in which it runs can then also use this class safely, without 'aliases' =>
* interference between PHPUnit's dependencies and the project's dependencies. array (
* 0 => '1.23.x-dev',
* @param array[] $data A vendor/composer/installed.php data set ),
* @return void 'reference' => 'cc5db0e22b3cb4111010e48785a97f670b350ca5',
* ),
* @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>} $data 'symfony/polyfill-php80' =>
*/ array (
public static function reload($data) 'pretty_version' => 'dev-main',
{ 'version' => 'dev-main',
self::$installed = $data; 'aliases' =>
self::$installedByVendor = array(); array (
} 0 => '1.23.x-dev',
),
/** 'reference' => '57b712b08eddb97c762a8caa32c84e037892d2e9',
* @return array[] ),
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string}>}> 'symfony/property-access' =>
*/ array (
private static function getInstalled() 'pretty_version' => '5.4.x-dev',
{ 'version' => '5.4.9999999.9999999-dev',
if (null === self::$canGetVendors) { 'aliases' =>
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); array (
} ),
'reference' => 'bd3efa2a2d856d167dde8e7b883c65119064b7f5',
$installed = array(); ),
'symfony/property-info' =>
if (self::$canGetVendors) { array (
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { 'pretty_version' => '5.4.x-dev',
if (isset(self::$installedByVendor[$vendorDir])) { 'version' => '5.4.9999999.9999999-dev',
$installed[] = self::$installedByVendor[$vendorDir]; 'aliases' =>
} elseif (is_file($vendorDir.'/composer/installed.php')) { array (
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; ),
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { 'reference' => '903f3f3f6a360bc4739f8390e5031acc70d9cd9f',
self::$installed = $installed[count($installed) - 1]; ),
} 'symfony/string' =>
} array (
} 'pretty_version' => '5.4.x-dev',
} 'version' => '5.4.9999999.9999999-dev',
'aliases' =>
if (null === self::$installed) { array (
// only require the installed.php file if this file is loaded from its dumped location, ),
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 'reference' => '412eda2039ad5466f823c3696c0c309e6c140086',
if (substr(__DIR__, -8, 1) !== 'C') { ),
self::$installed = require __DIR__ . '/installed.php'; 'yidian/yaf_demo' =>
} else { array (
self::$installed = array(); 'pretty_version' => 'dev-develop',
} 'version' => 'dev-develop',
} 'aliases' =>
$installed[] = self::$installed; array (
),
return $installed; 'reference' => 'e57aa42ccab85ef592670fe44526010029dd6359',
} ),
),
);
private static $canGetVendors;
private static $installedByVendor = array();
public static function getInstalledPackages()
{
$packages = array();
foreach (self::getInstalled() as $installed) {
$packages[] = array_keys($installed['versions']);
}
if (1 === \count($packages)) {
return $packages[0];
}
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
}
public static function isInstalled($packageName)
{
foreach (self::getInstalled() as $installed) {
if (isset($installed['versions'][$packageName])) {
return true;
}
}
return false;
}
public static function satisfies(VersionParser $parser, $packageName, $constraint)
{
$constraint = $parser->parseConstraints($constraint);
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
return $provided->matches($constraint);
}
public static function getVersionRanges($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
$ranges = array();
if (isset($installed['versions'][$packageName]['pretty_version'])) {
$ranges[] = $installed['versions'][$packageName]['pretty_version'];
}
if (array_key_exists('aliases', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
}
if (array_key_exists('replaced', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
}
if (array_key_exists('provided', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
}
return implode(' || ', $ranges);
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
public static function getVersion($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['version'])) {
return null;
}
return $installed['versions'][$packageName]['version'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
public static function getPrettyVersion($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['pretty_version'])) {
return null;
}
return $installed['versions'][$packageName]['pretty_version'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
public static function getReference($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['reference'])) {
return null;
}
return $installed['versions'][$packageName]['reference'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
public static function getRootPackage()
{
$installed = self::getInstalled();
return $installed[0]['root'];
}
public static function getRawData()
{
return self::$installed;
}
public static function reload($data)
{
self::$installed = $data;
self::$installedByVendor = array();
}
private static function getInstalled()
{
if (null === self::$canGetVendors) {
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
}
$installed = array();
if (self::$canGetVendors) {
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
if (isset(self::$installedByVendor[$vendorDir])) {
$installed[] = self::$installedByVendor[$vendorDir];
} elseif (is_file($vendorDir.'/composer/installed.php')) {
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
}
}
}
$installed[] = self::$installed;
return $installed;
}
} }
...@@ -165,6 +165,7 @@ return array( ...@@ -165,6 +165,7 @@ return array(
'App\\Services\\tcc\\TccService' => $baseDir . '/application/services/tcc/TccService.php', 'App\\Services\\tcc\\TccService' => $baseDir . '/application/services/tcc/TccService.php',
'App\\Services\\user\\UserService' => $baseDir . '/application/services/user/UserService.php', 'App\\Services\\user\\UserService' => $baseDir . '/application/services/user/UserService.php',
'App\\Services\\user\\Weixin\\ErrorCode' => $baseDir . '/application/services/user/Weixin/ErrorCode.php', 'App\\Services\\user\\Weixin\\ErrorCode' => $baseDir . '/application/services/user/Weixin/ErrorCode.php',
'App\\Services\\user\\Weixin\\Weixin' => $baseDir . '/application/services/user/Weixin/Weixin.php',
'App\\Services\\user\\Weixin\\WxBizDataCrypt' => $baseDir . '/application/services/user/Weixin/WxBizDataCrypt.php', 'App\\Services\\user\\Weixin\\WxBizDataCrypt' => $baseDir . '/application/services/user/Weixin/WxBizDataCrypt.php',
'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'BaconQrCode\\Common\\BitArray' => $vendorDir . '/bacon/bacon-qr-code/src/Common/BitArray.php', 'BaconQrCode\\Common\\BitArray' => $vendorDir . '/bacon/bacon-qr-code/src/Common/BitArray.php',
......
...@@ -3,8 +3,7 @@ ...@@ -3,8 +3,7 @@
// autoload_real.php @generated by Composer // autoload_real.php @generated by Composer
class ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383 class ComposerAutoloaderInite9c1cf708c572b30ccbaa1adb865583e
{ {
private static $loader; private static $loader;
...@@ -27,17 +26,14 @@ class ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383 ...@@ -27,17 +26,14 @@ class ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383
require __DIR__ . '/platform_check.php'; require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383', 'loadClassLoader'), true, true); spl_autoload_register(array('ComposerAutoloaderInite9c1cf708c572b30ccbaa1adb865583e', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
spl_autoload_unregister(array('ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383', 'loadClassLoader')); spl_autoload_unregister(array('ComposerAutoloaderInite9c1cf708c572b30ccbaa1adb865583e', '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 __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInite9c1cf708c572b30ccbaa1adb865583e::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit79ffc35c65c14e51408ef6c36a392383::getInitializer($loader));
} else { } else {
$map = require __DIR__ . '/autoload_namespaces.php'; $map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) { foreach ($map as $namespace => $path) {
...@@ -58,16 +54,13 @@ class ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383 ...@@ -58,16 +54,13 @@ class ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383
$loader->register(true); $loader->register(true);
if ($useStaticLoader) { if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit79ffc35c65c14e51408ef6c36a392383::$files; $includeFiles = Composer\Autoload\ComposerStaticInite9c1cf708c572b30ccbaa1adb865583e::$files;
} else { } else {
$includeFiles = require __DIR__ . '/autoload_files.php'; $includeFiles = require __DIR__ . '/autoload_files.php';
} }
foreach ($includeFiles as $fileIdentifier => $file) { foreach ($includeFiles as $fileIdentifier => $file) {
composerRequiree9c1cf708c572b30ccbaa1adb865583e($fileIdentifier, $file);
composerRequire79ffc35c65c14e51408ef6c36a392383($fileIdentifier, $file);
} }
return $loader; return $loader;
...@@ -75,8 +68,7 @@ class ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383 ...@@ -75,8 +68,7 @@ class ComposerAutoloaderInit79ffc35c65c14e51408ef6c36a392383
} }
function composerRequire79ffc35c65c14e51408ef6c36a392383($fileIdentifier, $file) function composerRequiree9c1cf708c572b30ccbaa1adb865583e($fileIdentifier, $file)
{ {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file; require $file;
......
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
namespace Composer\Autoload; namespace Composer\Autoload;
class ComposerStaticInit79ffc35c65c14e51408ef6c36a392383 class ComposerStaticInite9c1cf708c572b30ccbaa1adb865583e
{ {
public static $files = array ( public static $files = array (
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
...@@ -394,6 +393,7 @@ class ComposerStaticInit79ffc35c65c14e51408ef6c36a392383 ...@@ -394,6 +393,7 @@ class ComposerStaticInit79ffc35c65c14e51408ef6c36a392383
'App\\Services\\tcc\\TccService' => __DIR__ . '/../..' . '/application/services/tcc/TccService.php', 'App\\Services\\tcc\\TccService' => __DIR__ . '/../..' . '/application/services/tcc/TccService.php',
'App\\Services\\user\\UserService' => __DIR__ . '/../..' . '/application/services/user/UserService.php', 'App\\Services\\user\\UserService' => __DIR__ . '/../..' . '/application/services/user/UserService.php',
'App\\Services\\user\\Weixin\\ErrorCode' => __DIR__ . '/../..' . '/application/services/user/Weixin/ErrorCode.php', 'App\\Services\\user\\Weixin\\ErrorCode' => __DIR__ . '/../..' . '/application/services/user/Weixin/ErrorCode.php',
'App\\Services\\user\\Weixin\\Weixin' => __DIR__ . '/../..' . '/application/services/user/Weixin/Weixin.php',
'App\\Services\\user\\Weixin\\WxBizDataCrypt' => __DIR__ . '/../..' . '/application/services/user/Weixin/WxBizDataCrypt.php', 'App\\Services\\user\\Weixin\\WxBizDataCrypt' => __DIR__ . '/../..' . '/application/services/user/Weixin/WxBizDataCrypt.php',
'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'BaconQrCode\\Common\\BitArray' => __DIR__ . '/..' . '/bacon/bacon-qr-code/src/Common/BitArray.php', 'BaconQrCode\\Common\\BitArray' => __DIR__ . '/..' . '/bacon/bacon-qr-code/src/Common/BitArray.php',
...@@ -1315,10 +1315,10 @@ class ComposerStaticInit79ffc35c65c14e51408ef6c36a392383 ...@@ -1315,10 +1315,10 @@ class ComposerStaticInit79ffc35c65c14e51408ef6c36a392383
public static function getInitializer(ClassLoader $loader) public static function getInitializer(ClassLoader $loader)
{ {
return \Closure::bind(function () use ($loader) { return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit79ffc35c65c14e51408ef6c36a392383::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit79ffc35c65c14e51408ef6c36a392383::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit79ffc35c65c14e51408ef6c36a392383::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInite9c1cf708c572b30ccbaa1adb865583e::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInite9c1cf708c572b30ccbaa1adb865583e::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInite9c1cf708c572b30ccbaa1adb865583e::$classMap;
}, null, ClassLoader::class); }, null, ClassLoader::class);
} }
......
...@@ -2,19 +2,19 @@ ...@@ -2,19 +2,19 @@
"packages": [ "packages": [
{ {
"name": "api/php_services", "name": "api/php_services",
"version": "1.0.16", "version": "1.0.17",
"version_normalized": "1.0.16.0", "version_normalized": "1.0.17.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://git.yidian-inc.com:8021/bp/php_services.git", "url": "https://git.yidian-inc.com:8021/bp/php_services.git",
"reference": "ea80bdaefe875350b425b0aee11f59bf45d7258d" "reference": "5b7bce9db15629dd3b1bcca0d066e2e1f1fae404"
}, },
"require": { "require": {
"endroid/qr-code": "^3.9", "endroid/qr-code": "^3.9",
"perftools/php-profiler": "^0.18.0", "perftools/php-profiler": "^0.18.0",
"php": "7.2.*" "php": "7.2.*"
}, },
"time": "2021-09-15T02:17:53+00:00", "time": "2021-09-22T06:19:58+00:00",
"type": "library", "type": "library",
"installation-source": "source", "installation-source": "source",
"autoload": { "autoload": {
...@@ -68,13 +68,7 @@ ...@@ -68,13 +68,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09", "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
"reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09", "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"dasprid/enum": "^1.0.3", "dasprid/enum": "^1.0.3",
...@@ -130,13 +124,7 @@ ...@@ -130,13 +124,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2", "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
"reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2", "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^7 | ^8 | ^9", "phpunit/phpunit": "^7 | ^8 | ^9",
...@@ -186,13 +174,7 @@ ...@@ -186,13 +174,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/8d08050fef9d89004702b1428b8c1f7f4f6162cf", "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/8d08050fef9d89004702b1428b8c1f7f4f6162cf",
"reference": "8d08050fef9d89004702b1428b8c1f7f4f6162cf", "reference": "8d08050fef9d89004702b1428b8c1f7f4f6162cf",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"ext-json": ">=1.3.7", "ext-json": ">=1.3.7",
...@@ -264,13 +246,7 @@ ...@@ -264,13 +246,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/endroid/qr-code/zipball/9cdd4f5d609bfc8811ca4a62b4d23eb16976242f", "url": "https://api.github.com/repos/endroid/qr-code/zipball/9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
"reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f", "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"bacon/bacon-qr-code": "^2.0", "bacon/bacon-qr-code": "^2.0",
...@@ -348,13 +324,7 @@ ...@@ -348,13 +324,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/abe3791d231167f14eb80d413420d1eab91163a8", "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/abe3791d231167f14eb80d413420d1eab91163a8",
"reference": "abe3791d231167f14eb80d413420d1eab91163a8", "reference": "abe3791d231167f14eb80d413420d1eab91163a8",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.4.0" "php": ">=5.4.0"
...@@ -411,13 +381,7 @@ ...@@ -411,13 +381,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ezimuel/ringphp/zipball/0b78f89d8e0bb9e380046c31adfa40347e9f663b", "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/0b78f89d8e0bb9e380046c31adfa40347e9f663b",
"reference": "0b78f89d8e0bb9e380046c31adfa40347e9f663b", "reference": "0b78f89d8e0bb9e380046c31adfa40347e9f663b",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"ezimuel/guzzlestreams": "^3.0.1", "ezimuel/guzzlestreams": "^3.0.1",
...@@ -475,13 +439,7 @@ ...@@ -475,13 +439,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699", "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
"reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699", "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"guzzlehttp/promises": "^1.0", "guzzlehttp/promises": "^1.0",
...@@ -553,13 +511,7 @@ ...@@ -553,13 +511,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/promises/zipball/c1dd809c8f51a477701052f4b9e5b4bb5c1061aa", "url": "https://api.github.com/repos/guzzle/promises/zipball/c1dd809c8f51a477701052f4b9e5b4bb5c1061aa",
"reference": "c1dd809c8f51a477701052f4b9e5b4bb5c1061aa", "reference": "c1dd809c8f51a477701052f4b9e5b4bb5c1061aa",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.5" "php": ">=5.5"
...@@ -647,13 +599,7 @@ ...@@ -647,13 +599,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/9d006741ba865a45adccfac45d8e1053086a5a3f", "url": "https://api.github.com/repos/guzzle/psr7/zipball/9d006741ba865a45adccfac45d8e1053086a5a3f",
"reference": "9d006741ba865a45adccfac45d8e1053086a5a3f", "reference": "9d006741ba865a45adccfac45d8e1053086a5a3f",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.4.0", "php": ">=5.4.0",
...@@ -752,13 +698,7 @@ ...@@ -752,13 +698,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1", "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
"reference": "04fdd58d86a387065f707dc6d3cc304c719910c1", "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.6" "php": ">=5.6"
...@@ -816,13 +756,7 @@ ...@@ -816,13 +756,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/mongodb/mongo-php-library/zipball/18fca8cc8d0c2cc07f76605760d20632bb3dab96", "url": "https://api.github.com/repos/mongodb/mongo-php-library/zipball/18fca8cc8d0c2cc07f76605760d20632bb3dab96",
"reference": "18fca8cc8d0c2cc07f76605760d20632bb3dab96", "reference": "18fca8cc8d0c2cc07f76605760d20632bb3dab96",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"ext-hash": "*", "ext-hash": "*",
...@@ -889,13 +823,7 @@ ...@@ -889,13 +823,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7", "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
"reference": "d178027d1e679832db9f38248fcc7200647dc2b7", "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"ext-json": "*", "ext-json": "*",
...@@ -958,13 +886,7 @@ ...@@ -958,13 +886,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/perftools/php-profiler/zipball/794c435f615ab9ca4347e386b4d8c6524fe9e3ae", "url": "https://api.github.com/repos/perftools/php-profiler/zipball/794c435f615ab9ca4347e386b4d8c6524fe9e3ae",
"reference": "794c435f615ab9ca4347e386b4d8c6524fe9e3ae", "reference": "794c435f615ab9ca4347e386b4d8c6524fe9e3ae",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"ext-json": "*", "ext-json": "*",
...@@ -1029,13 +951,7 @@ ...@@ -1029,13 +951,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-fig/http-message/zipball/efd67d1dc14a7ef4fc4e518e7dee91c271d524e4", "url": "https://api.github.com/repos/php-fig/http-message/zipball/efd67d1dc14a7ef4fc4e518e7dee91c271d524e4",
"reference": "efd67d1dc14a7ef4fc4e518e7dee91c271d524e4", "reference": "efd67d1dc14a7ef4fc4e518e7dee91c271d524e4",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.3.0" "php": ">=5.3.0"
...@@ -1092,13 +1008,7 @@ ...@@ -1092,13 +1008,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
"reference": "d49695b909c3b7628b6289db5479a1c204601f11", "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.3.0" "php": ">=5.3.0"
...@@ -1151,13 +1061,7 @@ ...@@ -1151,13 +1061,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
"reference": "120b605dfeb996808c31b6477290a714d356e822", "reference": "120b605dfeb996808c31b6477290a714d356e822",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.6" "php": ">=5.6"
...@@ -1204,13 +1108,7 @@ ...@@ -1204,13 +1108,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/reactphp/promise/zipball/a9752a861e21c0fe0b380c9f9e55beddc0ed7d31", "url": "https://api.github.com/repos/reactphp/promise/zipball/a9752a861e21c0fe0b380c9f9e55beddc0ed7d31",
"reference": "a9752a861e21c0fe0b380c9f9e55beddc0ed7d31", "reference": "a9752a861e21c0fe0b380c9f9e55beddc0ed7d31",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=5.4.0" "php": ">=5.4.0"
...@@ -1273,13 +1171,7 @@ ...@@ -1273,13 +1171,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8", "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
"reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8", "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.1" "php": ">=7.1"
...@@ -1350,13 +1242,7 @@ ...@@ -1350,13 +1242,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/options-resolver/zipball/cd63dbab0428a47f8576e4e58148aeae2e32e91c", "url": "https://api.github.com/repos/symfony/options-resolver/zipball/cd63dbab0428a47f8576e4e58148aeae2e32e91c",
"reference": "cd63dbab0428a47f8576e4e58148aeae2e32e91c", "reference": "cd63dbab0428a47f8576e4e58148aeae2e32e91c",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.2.5", "php": ">=7.2.5",
...@@ -1511,13 +1397,7 @@ ...@@ -1511,13 +1397,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535", "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
"reference": "16880ba9c5ebe3642d1995ab866db29270b36535", "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.1" "php": ">=7.1"
...@@ -1602,13 +1482,7 @@ ...@@ -1602,13 +1482,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
"reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.1" "php": ">=7.1"
...@@ -1696,13 +1570,7 @@ ...@@ -1696,13 +1570,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/344e456152e22a1bce3048c6c311059ea14bde47", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/344e456152e22a1bce3048c6c311059ea14bde47",
"reference": "344e456152e22a1bce3048c6c311059ea14bde47", "reference": "344e456152e22a1bce3048c6c311059ea14bde47",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.1" "php": ">=7.1"
...@@ -1786,13 +1654,7 @@ ...@@ -1786,13 +1654,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5", "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
"reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5", "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.1" "php": ">=7.1"
...@@ -1875,13 +1737,7 @@ ...@@ -1875,13 +1737,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9", "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",
"reference": "57b712b08eddb97c762a8caa32c84e037892d2e9", "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.1" "php": ">=7.1"
...@@ -1968,13 +1824,7 @@ ...@@ -1968,13 +1824,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/property-access/zipball/bd3efa2a2d856d167dde8e7b883c65119064b7f5", "url": "https://api.github.com/repos/symfony/property-access/zipball/bd3efa2a2d856d167dde8e7b883c65119064b7f5",
"reference": "bd3efa2a2d856d167dde8e7b883c65119064b7f5", "reference": "bd3efa2a2d856d167dde8e7b883c65119064b7f5",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.2.5", "php": ">=7.2.5",
...@@ -2058,13 +1908,7 @@ ...@@ -2058,13 +1908,7 @@
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/property-info/zipball/903f3f3f6a360bc4739f8390e5031acc70d9cd9f", "url": "https://api.github.com/repos/symfony/property-info/zipball/903f3f3f6a360bc4739f8390e5031acc70d9cd9f",
"reference": "903f3f3f6a360bc4739f8390e5031acc70d9cd9f", "reference": "903f3f3f6a360bc4739f8390e5031acc70d9cd9f",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.2.5", "php": ">=7.2.5",
...@@ -2151,19 +1995,13 @@ ...@@ -2151,19 +1995,13 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/string.git", "url": "https://github.com/symfony/string.git",
"reference": "fa2c5cc3f7dac23d87429652fe0daf28d65cbd5b" "reference": "412eda2039ad5466f823c3696c0c309e6c140086"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/fa2c5cc3f7dac23d87429652fe0daf28d65cbd5b", "url": "https://api.github.com/repos/symfony/string/zipball/412eda2039ad5466f823c3696c0c309e6c140086",
"reference": "fa2c5cc3f7dac23d87429652fe0daf28d65cbd5b", "reference": "412eda2039ad5466f823c3696c0c309e6c140086",
"shasum": "", "shasum": ""
"mirrors": [
{
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
"preferred": true
}
]
}, },
"require": { "require": {
"php": ">=7.2.5", "php": ">=7.2.5",
...@@ -2179,7 +2017,7 @@ ...@@ -2179,7 +2017,7 @@
"symfony/translation-contracts": "^1.1|^2", "symfony/translation-contracts": "^1.1|^2",
"symfony/var-exporter": "^4.4|^5.0|^6.0" "symfony/var-exporter": "^4.4|^5.0|^6.0"
}, },
"time": "2021-08-26T08:23:47+00:00", "time": "2021-09-17T07:22:48+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {
......
<?php return array(
'root' => array( <?php return array (
'pretty_version' => 'dev-master', 'root' =>
'version' => 'dev-master', array (
'type' => 'project', 'pretty_version' => 'dev-develop',
'install_path' => __DIR__ . '/../../', 'version' => 'dev-develop',
'aliases' => array(), 'aliases' =>
'reference' => '40f8b230881d7a86438dc069837b93af2d6b8b73', array (
'name' => 'yidian/yaf_demo',
'dev' => true,
),
'versions' => array(
'api/php_services' => array(
'pretty_version' => '1.0.16',
'version' => '1.0.16.0',
'type' => 'library',
'install_path' => __DIR__ . '/../api/php_services',
'aliases' => array(),
'reference' => 'ea80bdaefe875350b425b0aee11f59bf45d7258d',
'dev_requirement' => false,
),
'api/php_utils' => array(
'pretty_version' => 'v1.0.17',
'version' => '1.0.17.0',
'type' => 'library',
'install_path' => __DIR__ . '/../api/php_utils',
'aliases' => array(),
'reference' => 'aa70ccdd545f3e421eaf717274954990f1805b87',
'dev_requirement' => false,
),
'bacon/bacon-qr-code' => array(
'pretty_version' => '2.0.4',
'version' => '2.0.4.0',
'type' => 'library',
'install_path' => __DIR__ . '/../bacon/bacon-qr-code',
'aliases' => array(),
'reference' => 'f73543ac4e1def05f1a70bcd1525c8a157a1ad09',
'dev_requirement' => false,
),
'dasprid/enum' => array(
'pretty_version' => '1.0.3',
'version' => '1.0.3.0',
'type' => 'library',
'install_path' => __DIR__ . '/../dasprid/enum',
'aliases' => array(),
'reference' => '5abf82f213618696dda8e3bf6f64dd042d8542b2',
'dev_requirement' => false,
),
'elasticsearch/elasticsearch' => array(
'pretty_version' => '7.11.x-dev',
'version' => '7.11.9999999.9999999-dev',
'type' => 'library',
'install_path' => __DIR__ . '/../elasticsearch/elasticsearch',
'aliases' => array(),
'reference' => '8d08050fef9d89004702b1428b8c1f7f4f6162cf',
'dev_requirement' => false,
),
'endroid/qr-code' => array(
'pretty_version' => '3.9.6',
'version' => '3.9.6.0',
'type' => 'library',
'install_path' => __DIR__ . '/../endroid/qr-code',
'aliases' => array(),
'reference' => '9cdd4f5d609bfc8811ca4a62b4d23eb16976242f',
'dev_requirement' => false,
),
'ezimuel/guzzlestreams' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'type' => 'library',
'install_path' => __DIR__ . '/../ezimuel/guzzlestreams',
'aliases' => array(
0 => '3.0.x-dev',
),
'reference' => 'abe3791d231167f14eb80d413420d1eab91163a8',
'dev_requirement' => false,
),
'ezimuel/ringphp' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'type' => 'library',
'install_path' => __DIR__ . '/../ezimuel/ringphp',
'aliases' => array(
0 => '1.1.x-dev',
),
'reference' => '0b78f89d8e0bb9e380046c31adfa40347e9f663b',
'dev_requirement' => false,
),
'guzzlehttp/guzzle' => array(
'pretty_version' => '6.3.0',
'version' => '6.3.0.0',
'type' => 'library',
'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
'aliases' => array(),
'reference' => 'f4db5a78a5ea468d4831de7f0bf9d9415e348699',
'dev_requirement' => false,
),
'guzzlehttp/promises' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'type' => 'library',
'install_path' => __DIR__ . '/../guzzlehttp/promises',
'aliases' => array(
0 => '1.4.x-dev',
),
'reference' => 'c1dd809c8f51a477701052f4b9e5b4bb5c1061aa',
'dev_requirement' => false,
),
'guzzlehttp/psr7' => array(
'pretty_version' => '1.x-dev',
'version' => '1.9999999.9999999.9999999-dev',
'type' => 'library',
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
'aliases' => array(),
'reference' => '9d006741ba865a45adccfac45d8e1053086a5a3f',
'dev_requirement' => false,
),
'khanamiryan/qrcode-detector-decoder' => array(
'pretty_version' => '1.0.5.2',
'version' => '1.0.5.2',
'type' => 'library',
'install_path' => __DIR__ . '/../khanamiryan/qrcode-detector-decoder',
'aliases' => array(),
'reference' => '04fdd58d86a387065f707dc6d3cc304c719910c1',
'dev_requirement' => false,
),
'mongodb/mongodb' => array(
'pretty_version' => '1.4.3',
'version' => '1.4.3.0',
'type' => 'library',
'install_path' => __DIR__ . '/../mongodb/mongodb',
'aliases' => array(),
'reference' => '18fca8cc8d0c2cc07f76605760d20632bb3dab96',
'dev_requirement' => false,
),
'myclabs/php-enum' => array(
'pretty_version' => '1.7.7',
'version' => '1.7.7.0',
'type' => 'library',
'install_path' => __DIR__ . '/../myclabs/php-enum',
'aliases' => array(),
'reference' => 'd178027d1e679832db9f38248fcc7200647dc2b7',
'dev_requirement' => false,
),
'perftools/php-profiler' => array(
'pretty_version' => '0.18.0',
'version' => '0.18.0.0',
'type' => 'library',
'install_path' => __DIR__ . '/../perftools/php-profiler',
'aliases' => array(),
'reference' => '794c435f615ab9ca4347e386b4d8c6524fe9e3ae',
'dev_requirement' => false,
),
'psr/http-message' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/http-message',
'aliases' => array(
0 => '1.0.x-dev',
),
'reference' => 'efd67d1dc14a7ef4fc4e518e7dee91c271d524e4',
'dev_requirement' => false,
),
'psr/http-message-implementation' => array(
'dev_requirement' => false,
'provided' => array(
0 => '1.0',
),
),
'psr/log' => array(
'pretty_version' => '1.1.4',
'version' => '1.1.4.0',
'type' => 'library',
'install_path' => __DIR__ . '/../psr/log',
'aliases' => array(),
'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
'dev_requirement' => false,
),
'ralouphie/getallheaders' => array(
'pretty_version' => '3.0.3',
'version' => '3.0.3.0',
'type' => 'library',
'install_path' => __DIR__ . '/../ralouphie/getallheaders',
'aliases' => array(),
'reference' => '120b605dfeb996808c31b6477290a714d356e822',
'dev_requirement' => false,
),
'react/promise' => array(
'pretty_version' => '2.x-dev',
'version' => '2.9999999.9999999.9999999-dev',
'type' => 'library',
'install_path' => __DIR__ . '/../react/promise',
'aliases' => array(),
'reference' => 'a9752a861e21c0fe0b380c9f9e55beddc0ed7d31',
'dev_requirement' => false,
),
'symfony/deprecation-contracts' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
'aliases' => array(
0 => '2.5.x-dev',
),
'reference' => '6f981ee24cf69ee7ce9736146d1c57c2780598a8',
'dev_requirement' => false,
),
'symfony/options-resolver' => array(
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/options-resolver',
'aliases' => array(),
'reference' => 'cd63dbab0428a47f8576e4e58148aeae2e32e91c',
'dev_requirement' => false,
),
'symfony/polyfill-ctype' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
'aliases' => array(
0 => '1.23.x-dev',
),
'reference' => 'f24ae462b1d60c333df104f0b81ec7d0e12f6e9f',
'dev_requirement' => false,
),
'symfony/polyfill-intl-grapheme' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
'aliases' => array(
0 => '1.23.x-dev',
),
'reference' => '16880ba9c5ebe3642d1995ab866db29270b36535',
'dev_requirement' => false,
),
'symfony/polyfill-intl-normalizer' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
'aliases' => array(
0 => '1.23.x-dev',
),
'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8',
'dev_requirement' => false,
),
'symfony/polyfill-mbstring' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
'aliases' => array(
0 => '1.23.x-dev',
),
'reference' => '344e456152e22a1bce3048c6c311059ea14bde47',
'dev_requirement' => false,
),
'symfony/polyfill-php73' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-php73',
'aliases' => array(
0 => '1.23.x-dev',
),
'reference' => 'cc5db0e22b3cb4111010e48785a97f670b350ca5',
'dev_requirement' => false,
),
'symfony/polyfill-php80' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/polyfill-php80',
'aliases' => array(
0 => '1.23.x-dev',
),
'reference' => '57b712b08eddb97c762a8caa32c84e037892d2e9',
'dev_requirement' => false,
),
'symfony/property-access' => array(
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/property-access',
'aliases' => array(),
'reference' => 'bd3efa2a2d856d167dde8e7b883c65119064b7f5',
'dev_requirement' => false,
),
'symfony/property-info' => array(
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/property-info',
'aliases' => array(),
'reference' => '903f3f3f6a360bc4739f8390e5031acc70d9cd9f',
'dev_requirement' => false,
),
'symfony/string' => array(
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/string',
'aliases' => array(),
'reference' => 'fa2c5cc3f7dac23d87429652fe0daf28d65cbd5b',
'dev_requirement' => false,
),
'yidian/yaf_demo' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'reference' => '40f8b230881d7a86438dc069837b93af2d6b8b73',
'dev_requirement' => false,
),
), ),
'reference' => 'e57aa42ccab85ef592670fe44526010029dd6359',
'name' => 'yidian/yaf_demo',
),
'versions' =>
array (
'api/php_services' =>
array (
'pretty_version' => '1.0.17',
'version' => '1.0.17.0',
'aliases' =>
array (
),
'reference' => '5b7bce9db15629dd3b1bcca0d066e2e1f1fae404',
),
'api/php_utils' =>
array (
'pretty_version' => 'v1.0.17',
'version' => '1.0.17.0',
'aliases' =>
array (
),
'reference' => 'aa70ccdd545f3e421eaf717274954990f1805b87',
),
'bacon/bacon-qr-code' =>
array (
'pretty_version' => '2.0.4',
'version' => '2.0.4.0',
'aliases' =>
array (
),
'reference' => 'f73543ac4e1def05f1a70bcd1525c8a157a1ad09',
),
'dasprid/enum' =>
array (
'pretty_version' => '1.0.3',
'version' => '1.0.3.0',
'aliases' =>
array (
),
'reference' => '5abf82f213618696dda8e3bf6f64dd042d8542b2',
),
'elasticsearch/elasticsearch' =>
array (
'pretty_version' => '7.11.x-dev',
'version' => '7.11.9999999.9999999-dev',
'aliases' =>
array (
),
'reference' => '8d08050fef9d89004702b1428b8c1f7f4f6162cf',
),
'endroid/qr-code' =>
array (
'pretty_version' => '3.9.6',
'version' => '3.9.6.0',
'aliases' =>
array (
),
'reference' => '9cdd4f5d609bfc8811ca4a62b4d23eb16976242f',
),
'ezimuel/guzzlestreams' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'aliases' =>
array (
0 => '3.0.x-dev',
),
'reference' => 'abe3791d231167f14eb80d413420d1eab91163a8',
),
'ezimuel/ringphp' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'aliases' =>
array (
0 => '1.1.x-dev',
),
'reference' => '0b78f89d8e0bb9e380046c31adfa40347e9f663b',
),
'guzzlehttp/guzzle' =>
array (
'pretty_version' => '6.3.0',
'version' => '6.3.0.0',
'aliases' =>
array (
),
'reference' => 'f4db5a78a5ea468d4831de7f0bf9d9415e348699',
),
'guzzlehttp/promises' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'aliases' =>
array (
0 => '1.4.x-dev',
),
'reference' => 'c1dd809c8f51a477701052f4b9e5b4bb5c1061aa',
),
'guzzlehttp/psr7' =>
array (
'pretty_version' => '1.x-dev',
'version' => '1.9999999.9999999.9999999-dev',
'aliases' =>
array (
),
'reference' => '9d006741ba865a45adccfac45d8e1053086a5a3f',
),
'khanamiryan/qrcode-detector-decoder' =>
array (
'pretty_version' => '1.0.5.2',
'version' => '1.0.5.2',
'aliases' =>
array (
),
'reference' => '04fdd58d86a387065f707dc6d3cc304c719910c1',
),
'mongodb/mongodb' =>
array (
'pretty_version' => '1.4.3',
'version' => '1.4.3.0',
'aliases' =>
array (
),
'reference' => '18fca8cc8d0c2cc07f76605760d20632bb3dab96',
),
'myclabs/php-enum' =>
array (
'pretty_version' => '1.7.7',
'version' => '1.7.7.0',
'aliases' =>
array (
),
'reference' => 'd178027d1e679832db9f38248fcc7200647dc2b7',
),
'perftools/php-profiler' =>
array (
'pretty_version' => '0.18.0',
'version' => '0.18.0.0',
'aliases' =>
array (
),
'reference' => '794c435f615ab9ca4347e386b4d8c6524fe9e3ae',
),
'psr/http-message' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'aliases' =>
array (
0 => '1.0.x-dev',
),
'reference' => 'efd67d1dc14a7ef4fc4e518e7dee91c271d524e4',
),
'psr/http-message-implementation' =>
array (
'provided' =>
array (
0 => '1.0',
),
),
'psr/log' =>
array (
'pretty_version' => '1.1.4',
'version' => '1.1.4.0',
'aliases' =>
array (
),
'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
),
'ralouphie/getallheaders' =>
array (
'pretty_version' => '3.0.3',
'version' => '3.0.3.0',
'aliases' =>
array (
),
'reference' => '120b605dfeb996808c31b6477290a714d356e822',
),
'react/promise' =>
array (
'pretty_version' => '2.x-dev',
'version' => '2.9999999.9999999.9999999-dev',
'aliases' =>
array (
),
'reference' => 'a9752a861e21c0fe0b380c9f9e55beddc0ed7d31',
),
'symfony/deprecation-contracts' =>
array (
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'aliases' =>
array (
0 => '2.5.x-dev',
),
'reference' => '6f981ee24cf69ee7ce9736146d1c57c2780598a8',
),
'symfony/options-resolver' =>
array (
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'aliases' =>
array (
),
'reference' => 'cd63dbab0428a47f8576e4e58148aeae2e32e91c',
),
'symfony/polyfill-ctype' =>
array (
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'aliases' =>
array (
0 => '1.23.x-dev',
),
'reference' => 'f24ae462b1d60c333df104f0b81ec7d0e12f6e9f',
),
'symfony/polyfill-intl-grapheme' =>
array (
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'aliases' =>
array (
0 => '1.23.x-dev',
),
'reference' => '16880ba9c5ebe3642d1995ab866db29270b36535',
),
'symfony/polyfill-intl-normalizer' =>
array (
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'aliases' =>
array (
0 => '1.23.x-dev',
),
'reference' => '8590a5f561694770bdcd3f9b5c69dde6945028e8',
),
'symfony/polyfill-mbstring' =>
array (
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'aliases' =>
array (
0 => '1.23.x-dev',
),
'reference' => '344e456152e22a1bce3048c6c311059ea14bde47',
),
'symfony/polyfill-php73' =>
array (
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'aliases' =>
array (
0 => '1.23.x-dev',
),
'reference' => 'cc5db0e22b3cb4111010e48785a97f670b350ca5',
),
'symfony/polyfill-php80' =>
array (
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'aliases' =>
array (
0 => '1.23.x-dev',
),
'reference' => '57b712b08eddb97c762a8caa32c84e037892d2e9',
),
'symfony/property-access' =>
array (
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'aliases' =>
array (
),
'reference' => 'bd3efa2a2d856d167dde8e7b883c65119064b7f5',
),
'symfony/property-info' =>
array (
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'aliases' =>
array (
),
'reference' => '903f3f3f6a360bc4739f8390e5031acc70d9cd9f',
),
'symfony/string' =>
array (
'pretty_version' => '5.4.x-dev',
'version' => '5.4.9999999.9999999-dev',
'aliases' =>
array (
),
'reference' => '412eda2039ad5466f823c3696c0c309e6c140086',
),
'yidian/yaf_demo' =>
array (
'pretty_version' => 'dev-develop',
'version' => 'dev-develop',
'aliases' =>
array (
),
'reference' => 'e57aa42ccab85ef592670fe44526010029dd6359',
),
),
); );
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
/* /*
* This file has been auto-generated by the Symfony String Component for internal use. * This file has been auto-generated by the Symfony String Component for internal use.
* *
* Unicode version: 13.0.0 * Unicode version: 14.0.0
* Date: 2020-03-12T08:04:33+00:00 * Date: 2021-09-17T09:20:30+02:00
*/ */
return [ return [
...@@ -450,10 +450,6 @@ return [ ...@@ -450,10 +450,6 @@ return [
], ],
[ [
19968, 19968,
40956,
],
[
40957,
40959, 40959,
], ],
[ [
...@@ -840,13 +836,25 @@ return [ ...@@ -840,13 +836,25 @@ return [
101632, 101632,
101640, 101640,
], ],
[
110576,
110579,
],
[
110581,
110587,
],
[
110589,
110590,
],
[ [
110592, 110592,
110847, 110847,
], ],
[ [
110848, 110848,
110878, 110882,
], ],
[ [
110928, 110928,
...@@ -996,6 +1004,10 @@ return [ ...@@ -996,6 +1004,10 @@ return [
128725, 128725,
128727, 128727,
], ],
[
128733,
128735,
],
[ [
128747, 128747,
128748, 128748,
...@@ -1008,6 +1020,10 @@ return [ ...@@ -1008,6 +1020,10 @@ return [
128992, 128992,
129003, 129003,
], ],
[
129008,
129008,
],
[ [
129292, 129292,
129338, 129338,
...@@ -1018,14 +1034,6 @@ return [ ...@@ -1018,14 +1034,6 @@ return [
], ],
[ [
129351, 129351,
129400,
],
[
129402,
129483,
],
[
129485,
129535, 129535,
], ],
[ [
...@@ -1034,7 +1042,7 @@ return [ ...@@ -1034,7 +1042,7 @@ return [
], ],
[ [
129656, 129656,
129658, 129660,
], ],
[ [
129664, 129664,
...@@ -1042,34 +1050,42 @@ return [ ...@@ -1042,34 +1050,42 @@ return [
], ],
[ [
129680, 129680,
129704, 129708,
], ],
[ [
129712, 129712,
129718, 129722,
], ],
[ [
129728, 129728,
129730, 129733,
], ],
[ [
129744, 129744,
129750, 129753,
],
[
129760,
129767,
],
[
129776,
129782,
], ],
[ [
131072, 131072,
173789, 173791,
], ],
[ [
173790, 173792,
173823, 173823,
], ],
[ [
173824, 173824,
177972, 177976,
], ],
[ [
177973, 177977,
177983, 177983,
], ],
[ [
......
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
/* /*
* This file has been auto-generated by the Symfony String Component for internal use. * This file has been auto-generated by the Symfony String Component for internal use.
* *
* Unicode version: 13.0.0 * Unicode version: 14.0.0
* Date: 2020-03-12T08:04:34+00:00 * Date: 2021-09-17T09:20:30+02:00
*/ */
return [ return [
...@@ -109,7 +109,11 @@ return [ ...@@ -109,7 +109,11 @@ return [
2139, 2139,
], ],
[ [
2259, 2200,
2207,
],
[
2250,
2273, 2273,
], ],
[ [
...@@ -272,6 +276,10 @@ return [ ...@@ -272,6 +276,10 @@ return [
3076, 3076,
3076, 3076,
], ],
[
3132,
3132,
],
[ [
3134, 3134,
3136, 3136,
...@@ -470,7 +478,7 @@ return [ ...@@ -470,7 +478,7 @@ return [
], ],
[ [
5938, 5938,
5940, 5939,
], ],
[ [
5970, 5970,
...@@ -504,6 +512,10 @@ return [ ...@@ -504,6 +512,10 @@ return [
6155, 6155,
6157, 6157,
], ],
[
6159,
6159,
],
[ [
6277, 6277,
6278, 6278,
...@@ -574,7 +586,7 @@ return [ ...@@ -574,7 +586,7 @@ return [
], ],
[ [
6847, 6847,
6848, 6862,
], ],
[ [
6912, 6912,
...@@ -666,10 +678,6 @@ return [ ...@@ -666,10 +678,6 @@ return [
], ],
[ [
7616, 7616,
7673,
],
[
7675,
7679, 7679,
], ],
[ [
...@@ -916,6 +924,10 @@ return [ ...@@ -916,6 +924,10 @@ return [
69446, 69446,
69456, 69456,
], ],
[
69506,
69509,
],
[ [
69633, 69633,
69633, 69633,
...@@ -924,6 +936,14 @@ return [ ...@@ -924,6 +936,14 @@ return [
69688, 69688,
69702, 69702,
], ],
[
69744,
69744,
],
[
69747,
69748,
],
[ [
69759, 69759,
69761, 69761,
...@@ -936,6 +956,10 @@ return [ ...@@ -936,6 +956,10 @@ return [
69817, 69817,
69818, 69818,
], ],
[
69826,
69826,
],
[ [
69888, 69888,
69890, 69890,
...@@ -1252,6 +1276,14 @@ return [ ...@@ -1252,6 +1276,14 @@ return [
113821, 113821,
113822, 113822,
], ],
[
118528,
118573,
],
[
118576,
118598,
],
[ [
119143, 119143,
119145, 119145,
...@@ -1320,6 +1352,10 @@ return [ ...@@ -1320,6 +1352,10 @@ return [
123184, 123184,
123190, 123190,
], ],
[
123566,
123566,
],
[ [
123628, 123628,
123631, 123631,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment