├── .gitignore ├── .prettierrc ├── .travis.yml ├── README.md ├── app ├── .htaccess ├── AppService.php ├── BaseController.php ├── ExceptionHandle.php ├── Request.php ├── behavior │ └── CORS.php ├── common.php ├── controller │ ├── cms │ │ ├── Ad.php │ │ ├── Address.php │ │ ├── Admins.php │ │ ├── Article.php │ │ ├── Category.php │ │ ├── Common.php │ │ ├── Coupon.php │ │ ├── Desk.php │ │ ├── Form.php │ │ ├── Group.php │ │ ├── Machine.php │ │ ├── Mobile.php │ │ ├── Order.php │ │ ├── Pros.php │ │ ├── Resource.php │ │ ├── System.php │ │ └── User.php │ ├── install │ │ ├── Check.php │ │ └── Index.php │ └── mobile │ │ ├── Index.php │ │ ├── Lists.php │ │ ├── MobileController.php │ │ ├── Order.php │ │ ├── Pros.php │ │ └── User.php ├── data │ ├── backup │ │ └── .gitignore │ └── ruhua.sql ├── event.php ├── http │ └── middleware │ │ └── cmsAuth.php ├── middleware.php ├── model │ ├── Address.php │ ├── Admins.php │ ├── Article.php │ ├── AuthRule.php │ ├── Banner.php │ ├── BannerItem.php │ ├── Category.php │ ├── Coupon.php │ ├── Desk.php │ ├── File.php │ ├── Form.php │ ├── FormData.php │ ├── Group.php │ ├── GroupAccess.php │ ├── Image.php │ ├── Machine.php │ ├── MbDiy.php │ ├── MbNavs.php │ ├── Order.php │ ├── OrderGoods.php │ ├── OrderLog.php │ ├── OrderUser.php │ ├── Pros.php │ ├── ProsSku.php │ ├── Resource.php │ ├── Rule.php │ ├── SkuModel.php │ ├── SysConfig.php │ └── User.php ├── provider.php ├── service.php ├── service │ ├── CmsTokenService.php │ ├── GroupService.php │ ├── TokenService.php │ ├── UserTokenService.php │ └── XcxService.php └── validate │ ├── ADValidate.php │ ├── AdminsValidate.php │ ├── ArticleValidate.php │ ├── CategoryValidate.php │ ├── CouponValidate.php │ ├── GroupValidate.php │ ├── IDPostiveInt.php │ ├── InstallValidate.php │ ├── LoginValidate.php │ ├── MachineValidate.php │ ├── OrderValidate.php │ ├── PassWordValidate.php │ └── ProsValidate.php ├── composer.json ├── config ├── app.php ├── cache.php ├── console.php ├── cookie.php ├── database.php ├── filesystem.php ├── lang.php ├── log.php ├── middleware.php ├── route.php ├── session.php ├── setting.php ├── trace.php └── view.php ├── data └── main.sql ├── extend └── .gitignore ├── public ├── .htaccess ├── assets │ ├── css │ │ └── theme.min.css │ └── svg │ │ ├── arr011.svg │ │ └── arr012.svg ├── cms │ ├── assets │ │ ├── 1.9c6c9a51.jpg │ │ ├── 404.10bd589f.css │ │ ├── 404.7942a69f.js │ │ ├── 404.e2baa9dd.svg │ │ ├── ad.1bf8e5f5.js │ │ ├── ad.bd1f09f2.js │ │ ├── ad.f3b9a970.css │ │ ├── add.6a273aa3.js │ │ ├── add.8de41606.css │ │ ├── add.b656a1fe.css │ │ ├── add.bb31e692.js │ │ ├── address.8c06f134.js │ │ ├── address.a53f4312.css │ │ ├── admins.2f6312da.js │ │ ├── admins.b49653c3.css │ │ ├── article.12d26598.js │ │ ├── bg.4f8da57b.png │ │ ├── bg1.f0fcd6e9.png │ │ ├── blue.0d1b3c10.png │ │ ├── common.dc574b31.js │ │ ├── coupon.8c718424.css │ │ ├── coupon.bfd242b8.js │ │ ├── data.88462661.js │ │ ├── erweima.b4ceebf5.svg │ │ ├── eye-close.036a4f29.svg │ │ ├── goods.6983e12f.js │ │ ├── groups.12a0064e.css │ │ ├── groups.3153182e.js │ │ ├── groups.b2d88766.js │ │ ├── index.558741a8.css │ │ ├── index.5b9acd41.js │ │ ├── index.78774107.css │ │ ├── index.8323f02c.css │ │ ├── index.9469dea3.js │ │ ├── index.9f6d3879.css │ │ ├── index.aa0178c7.js │ │ ├── index.b3d271f8.js │ │ ├── index.b8fb4955.js │ │ ├── index.c8a2b102.css │ │ ├── index.dde08e97.css │ │ ├── index.e692599c.js │ │ ├── index.eb29ea26.js │ │ ├── index.ef1cb9e3.css │ │ ├── info.fadafb4e.js │ │ ├── language.ad93dddf.svg │ │ ├── list.27899bfc.js │ │ ├── list.499c355b.js │ │ ├── list.5c73d0c7.css │ │ ├── list.9fb0cca0.js │ │ ├── list.bc100c38.css │ │ ├── list.fcdf818d.css │ │ ├── login1.f90db286.png │ │ ├── login2.f8edf7df.png │ │ ├── moon.82d2d3c4.svg │ │ ├── order.a9b7f7f3.js │ │ ├── phone_box.760b4d01.png │ │ ├── picLib.7013f1f8.css │ │ ├── picLib.ebfc09fb.js │ │ ├── print.63536049.js │ │ ├── print.eca52034.css │ │ ├── resource.0add065e.css │ │ ├── resource.f46199b7.js │ │ ├── shape-6.9a356d39.svg │ │ ├── style.333266d0.js │ │ ├── style.4f35b623.css │ │ ├── sun.8263299b.svg │ │ ├── tui.1ed14426.css │ │ ├── tui.aa11fd67.js │ │ ├── useimg.1f5e3688.js │ │ ├── user.91c16a16.js │ │ ├── userList.1c69e2d5.js │ │ └── userList.cb09fb1b.css │ ├── index.html │ └── vite.svg ├── favicon.ico ├── h5 │ ├── assets │ │ ├── coupons.13e4275e.js │ │ ├── coupons.abbfd2f5.png │ │ ├── footerMenu.3ebb07b9.js │ │ ├── footerMenu.4b943abe.css │ │ ├── home.40168c8a.png │ │ ├── home1.7089f06d.png │ │ ├── index.325fe786.js │ │ ├── index.382269b3.css │ │ ├── index.956bbbdc.js │ │ ├── index.b37c9468.css │ │ ├── index.e7b10523.css │ │ ├── index.fe5640a1.js │ │ ├── j.cbaba81b.png │ │ ├── lists.b8f071e7.css │ │ ├── order.724c423d.css │ │ ├── order.73d436b0.js │ │ ├── order.d922e690.js │ │ ├── order_pro_item.47e7688c.js │ │ ├── pages-404-404.bbef021e.js │ │ ├── pages-article-article.05bdea3b.js │ │ ├── pages-index-coupons-coupons.f969cfe4.js │ │ ├── pages-index-index.7c916c9a.js │ │ ├── pages-index-point-point.1d0eea93.js │ │ ├── pages-index-qrcode-qrcode.9dc9f702.js │ │ ├── pages-lists-address-address.2307c5bb.js │ │ ├── pages-lists-addressAdd-addressAdd.62dd7d4f.js │ │ ├── pages-lists-desk-desk.57f58dbc.js │ │ ├── pages-lists-lists.8adbd48b.js │ │ ├── pages-lists-search-search.c5d379cc.js │ │ ├── pages-my-my.ec1f3828.js │ │ ├── pages-my-order-detail.d155f648.js │ │ ├── pages-my-order-order.c8b364ad.js │ │ ├── pages-pay-pay.34a34687.js │ │ ├── pages-pay-placeOrder.beb66832.js │ │ ├── plugin-vue_export-helper.21dcd24c.js │ │ ├── pros.02b6e662.css │ │ ├── pros.834e8d62.js │ │ └── uni.e2990af9.css │ ├── index.html │ └── static │ │ ├── icon │ │ ├── coupons.png │ │ ├── down.png │ │ ├── home.png │ │ ├── home1.png │ │ ├── j.png │ │ ├── my.png │ │ ├── my1.png │ │ ├── order.png │ │ ├── right.png │ │ ├── shopping.png │ │ ├── ss1.png │ │ ├── ss2.png │ │ └── ss3.png │ │ ├── img │ │ ├── shape-6.svg │ │ └── titlebg.png │ │ ├── logo.png │ │ ├── svg │ │ ├── box.svg │ │ ├── documentchecked.svg │ │ ├── documentcopy.svg │ │ ├── edit.svg │ │ ├── goods.svg │ │ ├── grid.svg │ │ ├── guide.svg │ │ ├── house.svg │ │ ├── menu.svg │ │ ├── netobook.svg │ │ ├── picture.svg │ │ ├── pricetag.svg │ │ ├── setup.svg │ │ └── user.svg │ │ └── tabbar │ │ ├── index.png │ │ ├── index1.png │ │ ├── my.png │ │ ├── my1.png │ │ ├── serve.png │ │ └── serve1.png ├── index.php ├── robots.txt ├── router.php └── static │ └── .gitignore ├── route ├── admin.php ├── common.php └── mobile.php ├── think ├── vendor ├── autoload.php ├── bin │ ├── var-dump-server │ └── var-dump-server.bat ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php ├── easywechat-composer │ └── easywechat-composer │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ ├── Commands │ │ │ ├── ExtensionsCommand.php │ │ │ └── Provider.php │ │ ├── Contracts │ │ │ └── Encrypter.php │ │ ├── Delegation │ │ │ ├── DelegationOptions.php │ │ │ ├── DelegationTo.php │ │ │ └── Hydrate.php │ │ ├── EasyWeChat.php │ │ ├── Encryption │ │ │ └── DefaultEncrypter.php │ │ ├── Exceptions │ │ │ ├── DecryptException.php │ │ │ ├── DelegationException.php │ │ │ └── EncryptException.php │ │ ├── Extension.php │ │ ├── Http │ │ │ ├── DelegationResponse.php │ │ │ └── Response.php │ │ ├── Laravel │ │ │ ├── Http │ │ │ │ └── Controllers │ │ │ │ │ └── DelegatesController.php │ │ │ ├── ServiceProvider.php │ │ │ ├── config.php │ │ │ └── routes.php │ │ ├── ManifestManager.php │ │ ├── Plugin.php │ │ └── Traits │ │ │ ├── MakesHttpRequests.php │ │ │ └── WithAggregator.php │ │ └── tests │ │ └── ManifestManagerTest.php ├── firebase │ └── php-jwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BeforeValidException.php │ │ ├── CachedKeySet.php │ │ ├── ExpiredException.php │ │ ├── JWK.php │ │ ├── JWT.php │ │ ├── Key.php │ │ └── SignatureInvalidException.php ├── guzzlehttp │ ├── guzzle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── HeaderProcessor.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── Exception │ │ └── MalformedUriException.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── HttpFactory.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriComparator.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ └── Utils.php ├── league │ ├── flysystem-cached-adapter │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── clover │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── phpspec.yml │ │ ├── phpunit.php │ │ ├── phpunit.xml │ │ ├── readme.md │ │ ├── spec │ │ │ └── CachedAdapterSpec.php │ │ ├── src │ │ │ ├── CacheInterface.php │ │ │ ├── CachedAdapter.php │ │ │ └── Storage │ │ │ │ ├── AbstractCache.php │ │ │ │ ├── Adapter.php │ │ │ │ ├── Memcached.php │ │ │ │ ├── Memory.php │ │ │ │ ├── Noop.php │ │ │ │ ├── PhpRedis.php │ │ │ │ ├── Predis.php │ │ │ │ ├── Psr6Cache.php │ │ │ │ └── Stash.php │ │ └── tests │ │ │ ├── AdapterCacheTests.php │ │ │ ├── InspectionTests.php │ │ │ ├── MemcachedTests.php │ │ │ ├── MemoryCacheTests.php │ │ │ ├── NoopCacheTests.php │ │ │ ├── PhpRedisTests.php │ │ │ ├── PredisTests.php │ │ │ ├── Psr6CacheTest.php │ │ │ └── StashTest.php │ ├── flysystem │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── deprecations.md │ │ └── src │ │ │ ├── Adapter │ │ │ ├── AbstractAdapter.php │ │ │ ├── AbstractFtpAdapter.php │ │ │ ├── CanOverwriteFiles.php │ │ │ ├── Ftp.php │ │ │ ├── Ftpd.php │ │ │ ├── Local.php │ │ │ ├── NullAdapter.php │ │ │ ├── Polyfill │ │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ │ ├── StreamedCopyTrait.php │ │ │ │ ├── StreamedReadingTrait.php │ │ │ │ ├── StreamedTrait.php │ │ │ │ └── StreamedWritingTrait.php │ │ │ └── SynologyFtp.php │ │ │ ├── AdapterInterface.php │ │ │ ├── Config.php │ │ │ ├── ConfigAwareTrait.php │ │ │ ├── ConnectionErrorException.php │ │ │ ├── ConnectionRuntimeException.php │ │ │ ├── CorruptedPathDetected.php │ │ │ ├── Directory.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── FileExistsException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemException.php │ │ │ ├── FilesystemInterface.php │ │ │ ├── FilesystemNotFoundException.php │ │ │ ├── Handler.php │ │ │ ├── InvalidRootException.php │ │ │ ├── MountManager.php │ │ │ ├── NotSupportedException.php │ │ │ ├── Plugin │ │ │ ├── AbstractPlugin.php │ │ │ ├── EmptyDir.php │ │ │ ├── ForcedCopy.php │ │ │ ├── ForcedRename.php │ │ │ ├── GetWithMetadata.php │ │ │ ├── ListFiles.php │ │ │ ├── ListPaths.php │ │ │ ├── ListWith.php │ │ │ ├── PluggableTrait.php │ │ │ └── PluginNotFoundException.php │ │ │ ├── PluginInterface.php │ │ │ ├── ReadInterface.php │ │ │ ├── RootViolationException.php │ │ │ ├── SafeStorage.php │ │ │ ├── UnreadableFileException.php │ │ │ ├── Util.php │ │ │ └── Util │ │ │ ├── ContentListingFormatter.php │ │ │ ├── MimeType.php │ │ │ └── StreamHasher.php │ └── mime-type-detection │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ ├── ExtensionMimeTypeDetector.php │ │ ├── ExtensionToMimeTypeMap.php │ │ ├── FinfoMimeTypeDetector.php │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ ├── MimeTypeDetector.php │ │ └── OverridingExtensionToMimeTypeMap.php ├── monolog │ └── monolog │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ └── Monolog │ │ ├── Attribute │ │ └── AsMonologProcessor.php │ │ ├── DateTimeImmutable.php │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── ElasticsearchFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── GoogleCloudLoggingFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogmaticFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticaHandler.php │ │ ├── ElasticsearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FallbackGroupHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── FormattableHandlerInterface.php │ │ ├── FormattableHandlerTrait.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── LogmaticHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NoopHandler.php │ │ ├── NullHandler.php │ │ ├── OverflowHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RedisHandler.php │ │ ├── RedisPubSubHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SendGridHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SocketHandler.php │ │ ├── SqsHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SymfonyMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TelegramBotHandler.php │ │ ├── TestHandler.php │ │ ├── WebRequestRecognizerTrait.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── HostnameProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── ProcessorInterface.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ ├── Test │ │ └── TestCase.php │ │ └── Utils.php ├── overtrue │ ├── socialite │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── dependabot.yml │ │ ├── .gitignore │ │ ├── .phpunit.result.cache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── README_CN.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Config.php │ │ │ ├── Contracts │ │ │ │ ├── FactoryInterface.php │ │ │ │ ├── ProviderInterface.php │ │ │ │ └── UserInterface.php │ │ │ ├── Exceptions │ │ │ │ ├── AuthorizeFailedException.php │ │ │ │ ├── BadRequestException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Feishu │ │ │ │ │ └── InvalidTicketException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidTokenException.php │ │ │ │ └── MethodDoesNotSupportException.php │ │ │ ├── Providers │ │ │ │ ├── Alipay.php │ │ │ │ ├── Baidu.php │ │ │ │ ├── Base.php │ │ │ │ ├── DingTalk.php │ │ │ │ ├── DouYin.php │ │ │ │ ├── Douban.php │ │ │ │ ├── Facebook.php │ │ │ │ ├── FeiShu.php │ │ │ │ ├── GitHub.php │ │ │ │ ├── Gitee.php │ │ │ │ ├── Google.php │ │ │ │ ├── Line.php │ │ │ │ ├── Linkedin.php │ │ │ │ ├── OpenWeWork.php │ │ │ │ ├── Outlook.php │ │ │ │ ├── QCloud.php │ │ │ │ ├── QQ.php │ │ │ │ ├── Taobao.php │ │ │ │ ├── Tapd.php │ │ │ │ ├── WeChat.php │ │ │ │ ├── WeWork.php │ │ │ │ └── Weibo.php │ │ │ ├── SocialiteManager.php │ │ │ ├── Traits │ │ │ │ └── HasAttributes.php │ │ │ └── User.php │ │ └── tests │ │ │ ├── OAuthTest.php │ │ │ ├── Providers │ │ │ ├── FeiShuTest.php │ │ │ ├── WeWorkTest.php │ │ │ └── WechatTest.php │ │ │ ├── SocialiteManagerTest.php │ │ │ └── UserTest.php │ └── wechat │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ ├── BasicService │ │ ├── Application.php │ │ ├── ContentSecurity │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Jssdk │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Media │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── QrCode │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ └── Url │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Factory.php │ │ ├── Kernel │ │ ├── AccessToken.php │ │ ├── BaseClient.php │ │ ├── Clauses │ │ │ └── Clause.php │ │ ├── Config.php │ │ ├── Contracts │ │ │ ├── AccessTokenInterface.php │ │ │ ├── Arrayable.php │ │ │ ├── EventHandlerInterface.php │ │ │ ├── MediaInterface.php │ │ │ └── MessageInterface.php │ │ ├── Decorators │ │ │ ├── FinallyResult.php │ │ │ └── TerminateResult.php │ │ ├── Encryptor.php │ │ ├── Events │ │ │ ├── AccessTokenRefreshed.php │ │ │ ├── ApplicationInitialized.php │ │ │ ├── HttpResponseCreated.php │ │ │ └── ServerGuardResponseCreated.php │ │ ├── Exceptions │ │ │ ├── BadRequestException.php │ │ │ ├── DecryptException.php │ │ │ ├── Exception.php │ │ │ ├── HttpException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidConfigException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnboundServiceException.php │ │ ├── Helpers.php │ │ ├── Http │ │ │ ├── Response.php │ │ │ └── StreamResponse.php │ │ ├── Log │ │ │ └── LogManager.php │ │ ├── Messages │ │ │ ├── Article.php │ │ │ ├── Card.php │ │ │ ├── DeviceEvent.php │ │ │ ├── DeviceText.php │ │ │ ├── File.php │ │ │ ├── Image.php │ │ │ ├── InteractiveTaskCard.php │ │ │ ├── Link.php │ │ │ ├── Location.php │ │ │ ├── Media.php │ │ │ ├── Message.php │ │ │ ├── MiniProgramPage.php │ │ │ ├── MiniprogramNotice.php │ │ │ ├── Music.php │ │ │ ├── News.php │ │ │ ├── NewsItem.php │ │ │ ├── Raw.php │ │ │ ├── ReplyInteractiveTaskCard.php │ │ │ ├── ShortVideo.php │ │ │ ├── TaskCard.php │ │ │ ├── Text.php │ │ │ ├── TextCard.php │ │ │ ├── Transfer.php │ │ │ ├── Video.php │ │ │ └── Voice.php │ │ ├── Providers │ │ │ ├── ConfigServiceProvider.php │ │ │ ├── EventDispatcherServiceProvider.php │ │ │ ├── ExtensionServiceProvider.php │ │ │ ├── HttpClientServiceProvider.php │ │ │ ├── LogServiceProvider.php │ │ │ └── RequestServiceProvider.php │ │ ├── ServerGuard.php │ │ ├── ServiceContainer.php │ │ ├── Support │ │ │ ├── AES.php │ │ │ ├── Arr.php │ │ │ ├── ArrayAccessible.php │ │ │ ├── Collection.php │ │ │ ├── File.php │ │ │ ├── Helpers.php │ │ │ ├── Str.php │ │ │ └── XML.php │ │ └── Traits │ │ │ ├── HasAttributes.php │ │ │ ├── HasHttpRequests.php │ │ │ ├── InteractsWithCache.php │ │ │ ├── Observable.php │ │ │ └── ResponseCastable.php │ │ ├── MicroMerchant │ │ ├── Application.php │ │ ├── Base │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Certficates │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Kernel │ │ │ ├── BaseClient.php │ │ │ └── Exceptions │ │ │ │ ├── EncryptException.php │ │ │ │ ├── InvalidExtensionException.php │ │ │ │ └── InvalidSignException.php │ │ ├── Material │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Media │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── MerchantConfig │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ └── Withdraw │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── MiniProgram │ │ ├── ActivityMessage │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── AppCode │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Application.php │ │ ├── Auth │ │ │ ├── AccessToken.php │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Base │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Broadcast │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Business │ │ │ ├── Client.php │ │ │ ├── Messenger.php │ │ │ └── ServiceProvider.php │ │ ├── CustomerService │ │ │ └── ServiceProvider.php │ │ ├── DataCube │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Encryptor.php │ │ ├── Express │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Live │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Mall │ │ │ ├── CartClient.php │ │ │ ├── ForwardsMall.php │ │ │ ├── MediaClient.php │ │ │ ├── OrderClient.php │ │ │ ├── ProductClient.php │ │ │ └── ServiceProvider.php │ │ ├── NearbyPoi │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── OCR │ │ │ └── ServiceProvider.php │ │ ├── OpenData │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── PhoneNumber │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Plugin │ │ │ ├── Client.php │ │ │ ├── DevClient.php │ │ │ └── ServiceProvider.php │ │ ├── QrCode │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── RealtimeLog │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── RiskControl │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Search │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Server │ │ │ └── ServiceProvider.php │ │ ├── Shop │ │ │ ├── Account │ │ │ │ ├── Client.php │ │ │ │ └── ServiceProvider.php │ │ │ ├── Aftersale │ │ │ │ ├── Client.php │ │ │ │ └── ServiceProvider.php │ │ │ ├── Basic │ │ │ │ ├── Client.php │ │ │ │ └── ServiceProvider.php │ │ │ ├── Delivery │ │ │ │ ├── Client.php │ │ │ │ └── ServiceProvider.php │ │ │ ├── Order │ │ │ │ ├── Client.php │ │ │ │ └── ServiceProvider.php │ │ │ ├── Register │ │ │ │ ├── Client.php │ │ │ │ └── ServiceProvider.php │ │ │ └── Spu │ │ │ │ ├── Client.php │ │ │ │ └── ServiceProvider.php │ │ ├── ShortLink │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Soter │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── SubscribeMessage │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── TemplateMessage │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── UniformMessage │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Union │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── UrlLink │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ └── UrlScheme │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── OfficialAccount │ │ ├── Application.php │ │ ├── Auth │ │ │ ├── AccessToken.php │ │ │ └── ServiceProvider.php │ │ ├── AutoReply │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Base │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Broadcasting │ │ │ ├── Client.php │ │ │ ├── MessageBuilder.php │ │ │ └── ServiceProvider.php │ │ ├── Card │ │ │ ├── BoardingPassClient.php │ │ │ ├── Card.php │ │ │ ├── Client.php │ │ │ ├── CodeClient.php │ │ │ ├── CoinClient.php │ │ │ ├── GeneralCardClient.php │ │ │ ├── GiftCardClient.php │ │ │ ├── GiftCardOrderClient.php │ │ │ ├── GiftCardPageClient.php │ │ │ ├── InvoiceClient.php │ │ │ ├── JssdkClient.php │ │ │ ├── MeetingTicketClient.php │ │ │ ├── MemberCardClient.php │ │ │ ├── MovieTicketClient.php │ │ │ ├── ServiceProvider.php │ │ │ └── SubMerchantClient.php │ │ ├── Comment │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── CustomerService │ │ │ ├── Client.php │ │ │ ├── Messenger.php │ │ │ ├── ServiceProvider.php │ │ │ └── SessionClient.php │ │ ├── DataCube │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Device │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Draft │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── FreePublish │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Goods │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Guide │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Material │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Menu │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── OAuth │ │ │ └── ServiceProvider.php │ │ ├── OCR │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── POI │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Semantic │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Server │ │ │ ├── Guard.php │ │ │ ├── Handlers │ │ │ │ └── EchoStrHandler.php │ │ │ └── ServiceProvider.php │ │ ├── ShakeAround │ │ │ ├── Client.php │ │ │ ├── DeviceClient.php │ │ │ ├── GroupClient.php │ │ │ ├── MaterialClient.php │ │ │ ├── PageClient.php │ │ │ ├── RelationClient.php │ │ │ ├── ServiceProvider.php │ │ │ ├── ShakeAround.php │ │ │ └── StatsClient.php │ │ ├── Store │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── SubscribeMessage │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── TemplateMessage │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── User │ │ │ ├── ServiceProvider.php │ │ │ ├── TagClient.php │ │ │ └── UserClient.php │ │ └── WiFi │ │ │ ├── CardClient.php │ │ │ ├── Client.php │ │ │ ├── DeviceClient.php │ │ │ ├── ServiceProvider.php │ │ │ └── ShopClient.php │ │ ├── OpenPlatform │ │ ├── Application.php │ │ ├── Auth │ │ │ ├── AccessToken.php │ │ │ ├── ServiceProvider.php │ │ │ └── VerifyTicket.php │ │ ├── Authorizer │ │ │ ├── Aggregate │ │ │ │ ├── Account │ │ │ │ │ └── Client.php │ │ │ │ └── AggregateServiceProvider.php │ │ │ ├── Auth │ │ │ │ └── AccessToken.php │ │ │ ├── MiniProgram │ │ │ │ ├── Account │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ │ ├── Application.php │ │ │ │ ├── Auth │ │ │ │ │ └── Client.php │ │ │ │ ├── Code │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ │ ├── Domain │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ │ ├── Material │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ │ ├── Privacy │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ │ ├── Security │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ │ ├── Setting │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ │ └── Tester │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ ├── OfficialAccount │ │ │ │ ├── Account │ │ │ │ │ └── Client.php │ │ │ │ ├── Application.php │ │ │ │ └── MiniProgram │ │ │ │ │ ├── Client.php │ │ │ │ │ └── ServiceProvider.php │ │ │ └── Server │ │ │ │ └── Guard.php │ │ ├── Base │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── CodeTemplate │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Component │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ └── Server │ │ │ ├── Guard.php │ │ │ ├── Handlers │ │ │ ├── Authorized.php │ │ │ ├── Unauthorized.php │ │ │ ├── UpdateAuthorized.php │ │ │ └── VerifyTicketRefreshed.php │ │ │ └── ServiceProvider.php │ │ ├── OpenWork │ │ ├── Application.php │ │ ├── Auth │ │ │ ├── AccessToken.php │ │ │ └── ServiceProvider.php │ │ ├── Contact │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Corp │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Device │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── License │ │ │ ├── Account.php │ │ │ ├── App.php │ │ │ ├── AutoActive.php │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Media │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── MiniProgram │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Provider │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Server │ │ │ ├── Guard.php │ │ │ ├── Handlers │ │ │ │ └── EchoStrHandler.php │ │ │ └── ServiceProvider.php │ │ ├── SuiteAuth │ │ │ ├── AccessToken.php │ │ │ ├── ServiceProvider.php │ │ │ └── SuiteTicket.php │ │ └── Work │ │ │ ├── Application.php │ │ │ └── Auth │ │ │ └── AccessToken.php │ │ ├── Payment │ │ ├── Application.php │ │ ├── Base │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Bill │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Contract │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Coupon │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Fundflow │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Jssdk │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Kernel │ │ │ ├── BaseClient.php │ │ │ └── Exceptions │ │ │ │ ├── InvalidSignException.php │ │ │ │ └── SandboxException.php │ │ ├── Merchant │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Notify │ │ │ ├── Handler.php │ │ │ ├── Paid.php │ │ │ ├── Refunded.php │ │ │ └── Scanned.php │ │ ├── Order │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── ProfitSharing │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Redpack │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Refund │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Reverse │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Sandbox │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ ├── Security │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ └── Transfer │ │ │ ├── Client.php │ │ │ └── ServiceProvider.php │ │ └── Work │ │ ├── Agent │ │ ├── Client.php │ │ ├── ServiceProvider.php │ │ └── WorkbenchClient.php │ │ ├── Application.php │ │ ├── Auth │ │ ├── AccessToken.php │ │ └── ServiceProvider.php │ │ ├── Base │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Calendar │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Chat │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── CorpGroup │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Department │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── ExternalContact │ │ ├── Client.php │ │ ├── ContactWayClient.php │ │ ├── GroupChatWayClient.php │ │ ├── InterceptClient.php │ │ ├── MessageClient.php │ │ ├── MessageTemplateClient.php │ │ ├── MomentClient.php │ │ ├── ProductClient.php │ │ ├── SchoolClient.php │ │ ├── ServiceProvider.php │ │ └── StatisticsClient.php │ │ ├── GroupRobot │ │ ├── Client.php │ │ ├── Messages │ │ │ ├── Image.php │ │ │ ├── Markdown.php │ │ │ ├── Message.php │ │ │ ├── News.php │ │ │ ├── NewsItem.php │ │ │ └── Text.php │ │ ├── Messenger.php │ │ └── ServiceProvider.php │ │ ├── GroupWelcomeTemplate │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Invoice │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Jssdk │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Kf │ │ ├── AccountClient.php │ │ ├── MessageClient.php │ │ ├── ServiceProvider.php │ │ └── ServicerClient.php │ │ ├── Live │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Media │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Menu │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Message │ │ ├── Client.php │ │ ├── Messenger.php │ │ └── ServiceProvider.php │ │ ├── MiniProgram │ │ ├── Application.php │ │ └── Auth │ │ │ └── Client.php │ │ ├── Mobile │ │ ├── Auth │ │ │ └── Client.php │ │ └── ServiceProvider.php │ │ ├── MsgAudit │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── OA │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── OAuth │ │ ├── Manager.php │ │ └── ServiceProvider.php │ │ ├── Schedule │ │ ├── Client.php │ │ └── ServiceProvider.php │ │ ├── Server │ │ ├── Guard.php │ │ ├── Handlers │ │ │ └── EchoStrHandler.php │ │ └── ServiceProvider.php │ │ ├── User │ │ ├── BatchJobsClient.php │ │ ├── Client.php │ │ ├── LinkedCorpClient.php │ │ ├── ServiceProvider.php │ │ └── TagClient.php │ │ └── Wedrive │ │ ├── Client.php │ │ ├── FileClient.php │ │ ├── ServiceProvider.php │ │ ├── SpaceClient.php │ │ └── Wedrive.php ├── pimple │ └── pimple │ │ ├── .github │ │ └── workflows │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ └── Pimple │ │ ├── Container.php │ │ ├── Exception │ │ ├── ExpectedInvokableException.php │ │ ├── FrozenServiceException.php │ │ ├── InvalidServiceIdentifierException.php │ │ └── UnknownIdentifierException.php │ │ ├── Psr11 │ │ ├── Container.php │ │ └── ServiceLocator.php │ │ ├── ServiceIterator.php │ │ ├── ServiceProviderInterface.php │ │ └── Tests │ │ ├── Fixtures │ │ ├── Invokable.php │ │ ├── NonInvokable.php │ │ ├── PimpleServiceProvider.php │ │ └── Service.php │ │ ├── PimpleServiceProviderInterfaceTest.php │ │ ├── PimpleTest.php │ │ ├── Psr11 │ │ ├── ContainerTest.php │ │ └── ServiceLocatorTest.php │ │ └── ServiceIteratorTest.php ├── psr │ ├── cache │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CacheException.php │ │ │ ├── CacheItemInterface.php │ │ │ ├── CacheItemPoolInterface.php │ │ │ └── InvalidArgumentException.php │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── event-dispatcher │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── ListenerProviderInterface.php │ │ │ └── StoppableEventInterface.php │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── log │ │ ├── LICENSE │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ ├── DummyTest.php │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php ├── ruhua │ └── ruhua_framework │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── auth │ │ └── auth │ │ │ ├── Auth.php │ │ │ ├── CheckCms.php │ │ │ └── DomeGroup.php │ │ ├── bases │ │ ├── BaseCache.php │ │ ├── BaseCommon.php │ │ ├── BaseController.php │ │ ├── BaseModel.php │ │ └── BaseValidate.php │ │ ├── enum │ │ ├── OrderEnum.php │ │ └── ScopeEnum.php │ │ ├── events │ │ ├── OrderEvent.php │ │ └── listens │ │ │ ├── CheckCoupon.php │ │ │ ├── CheckStock.php │ │ │ ├── CheckStyle.php │ │ │ ├── ReduceStock.php │ │ │ ├── addPoints.php │ │ │ ├── editCoupon.php │ │ │ └── editSales.php │ │ ├── exceptions │ │ ├── BaseException.php │ │ ├── CmsException.php │ │ ├── ExceptionHandle.php │ │ ├── OrderException.php │ │ ├── PcException.php │ │ ├── ProductException.php │ │ ├── ShopsException.php │ │ ├── TokenException.php │ │ └── UserException.php │ │ ├── interfaces │ │ └── RoleInterface.php │ │ ├── job │ │ └── Job1.php │ │ ├── msg │ │ ├── News │ │ │ ├── CacheNews.php │ │ │ └── News.php │ │ └── 数据库相关.md │ │ ├── services │ │ ├── HttpService.php │ │ ├── LivePlayer.php │ │ └── QyFactory.php │ │ ├── subscribes │ │ ├── FxSubscribes.php │ │ ├── OrderSubscribes.php │ │ ├── Points.php │ │ └── User.php │ │ ├── traits │ │ ├── BaseTrait.php │ │ └── UserTrait.php │ │ └── utils │ │ ├── Json.php │ │ ├── JwtAuth.php │ │ ├── Logs.php │ │ ├── System.php │ │ └── UpImg.php ├── services.php ├── symfony │ ├── cache-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CacheInterface.php │ │ ├── CacheTrait.php │ │ ├── CallbackInterface.php │ │ ├── ItemInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TagAwareCacheInterface.php │ │ └── composer.json │ ├── cache │ │ ├── Adapter │ │ │ ├── AbstractAdapter.php │ │ │ ├── AbstractTagAwareAdapter.php │ │ │ ├── AdapterInterface.php │ │ │ ├── ApcuAdapter.php │ │ │ ├── ArrayAdapter.php │ │ │ ├── ChainAdapter.php │ │ │ ├── CouchbaseBucketAdapter.php │ │ │ ├── CouchbaseCollectionAdapter.php │ │ │ ├── DoctrineAdapter.php │ │ │ ├── DoctrineDbalAdapter.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemTagAwareAdapter.php │ │ │ ├── MemcachedAdapter.php │ │ │ ├── NullAdapter.php │ │ │ ├── ParameterNormalizer.php │ │ │ ├── PdoAdapter.php │ │ │ ├── PhpArrayAdapter.php │ │ │ ├── PhpFilesAdapter.php │ │ │ ├── ProxyAdapter.php │ │ │ ├── Psr16Adapter.php │ │ │ ├── RedisAdapter.php │ │ │ ├── RedisTagAwareAdapter.php │ │ │ ├── TagAwareAdapter.php │ │ │ ├── TagAwareAdapterInterface.php │ │ │ ├── TraceableAdapter.php │ │ │ └── TraceableTagAwareAdapter.php │ │ ├── CHANGELOG.md │ │ ├── CacheItem.php │ │ ├── DataCollector │ │ │ └── CacheDataCollector.php │ │ ├── DependencyInjection │ │ │ ├── CacheCollectorPass.php │ │ │ ├── CachePoolClearerPass.php │ │ │ ├── CachePoolPass.php │ │ │ └── CachePoolPrunerPass.php │ │ ├── DoctrineProvider.php │ │ ├── Exception │ │ │ ├── CacheException.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── LogicException.php │ │ ├── LICENSE │ │ ├── LockRegistry.php │ │ ├── Marshaller │ │ │ ├── DefaultMarshaller.php │ │ │ ├── DeflateMarshaller.php │ │ │ ├── MarshallerInterface.php │ │ │ ├── SodiumMarshaller.php │ │ │ └── TagAwareMarshaller.php │ │ ├── Messenger │ │ │ ├── EarlyExpirationDispatcher.php │ │ │ ├── EarlyExpirationHandler.php │ │ │ └── EarlyExpirationMessage.php │ │ ├── PruneableInterface.php │ │ ├── Psr16Cache.php │ │ ├── README.md │ │ ├── ResettableInterface.php │ │ ├── Traits │ │ │ ├── AbstractAdapterTrait.php │ │ │ ├── ContractsTrait.php │ │ │ ├── FilesystemCommonTrait.php │ │ │ ├── FilesystemTrait.php │ │ │ ├── ProxyTrait.php │ │ │ ├── RedisClusterNodeProxy.php │ │ │ ├── RedisClusterProxy.php │ │ │ ├── RedisProxy.php │ │ │ └── RedisTrait.php │ │ └── composer.json │ ├── deprecation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── event-dispatcher-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Event.php │ │ ├── EventDispatcherInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── event-dispatcher │ │ ├── Attribute │ │ │ └── AsEventListener.php │ │ ├── CHANGELOG.md │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ ├── AddEventAliasesPass.php │ │ │ └── RegisterListenersPass.php │ │ ├── EventDispatcher.php │ │ ├── EventDispatcherInterface.php │ │ ├── EventSubscriberInterface.php │ │ ├── GenericEvent.php │ │ ├── ImmutableEventDispatcher.php │ │ ├── LICENSE │ │ ├── LegacyEventDispatcherProxy.php │ │ ├── README.md │ │ └── composer.json │ ├── http-foundation │ │ ├── AcceptHeader.php │ │ ├── AcceptHeaderItem.php │ │ ├── BinaryFileResponse.php │ │ ├── CHANGELOG.md │ │ ├── Cookie.php │ │ ├── Exception │ │ │ ├── BadRequestException.php │ │ │ ├── ConflictingHeadersException.php │ │ │ ├── JsonException.php │ │ │ ├── RequestExceptionInterface.php │ │ │ ├── SessionNotFoundException.php │ │ │ └── SuspiciousOperationException.php │ │ ├── ExpressionRequestMatcher.php │ │ ├── File │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ ├── CannotWriteFileException.php │ │ │ │ ├── ExtensionFileException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── FormSizeFileException.php │ │ │ │ ├── IniSizeFileException.php │ │ │ │ ├── NoFileException.php │ │ │ │ ├── NoTmpDirFileException.php │ │ │ │ ├── PartialFileException.php │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ └── UploadException.php │ │ │ ├── File.php │ │ │ ├── Stream.php │ │ │ └── UploadedFile.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── HeaderUtils.php │ │ ├── InputBag.php │ │ ├── IpUtils.php │ │ ├── JsonResponse.php │ │ ├── LICENSE │ │ ├── ParameterBag.php │ │ ├── README.md │ │ ├── RateLimiter │ │ │ ├── AbstractRequestRateLimiter.php │ │ │ └── RequestRateLimiterInterface.php │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ └── NamespacedAttributeBag.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.php │ │ │ ├── Session.php │ │ │ ├── SessionBagInterface.php │ │ │ ├── SessionBagProxy.php │ │ │ ├── SessionFactory.php │ │ │ ├── SessionFactoryInterface.php │ │ │ ├── SessionInterface.php │ │ │ ├── SessionUtils.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ ├── IdentityMarshaller.php │ │ │ │ ├── MarshallingSessionHandler.php │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ ├── MigratingSessionHandler.php │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ ├── RedisSessionHandler.php │ │ │ │ ├── SessionHandlerFactory.php │ │ │ │ └── StrictSessionHandler.php │ │ │ │ ├── MetadataBag.php │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ ├── MockFileSessionStorageFactory.php │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ ├── NativeSessionStorageFactory.php │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ ├── PhpBridgeSessionStorageFactory.php │ │ │ │ ├── Proxy │ │ │ │ ├── AbstractProxy.php │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ ├── ServiceSessionFactory.php │ │ │ │ ├── SessionStorageFactoryInterface.php │ │ │ │ └── SessionStorageInterface.php │ │ ├── StreamedResponse.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── RequestAttributeValueSame.php │ │ │ │ ├── ResponseCookieValueSame.php │ │ │ │ ├── ResponseFormatSame.php │ │ │ │ ├── ResponseHasCookie.php │ │ │ │ ├── ResponseHasHeader.php │ │ │ │ ├── ResponseHeaderSame.php │ │ │ │ ├── ResponseIsRedirected.php │ │ │ │ ├── ResponseIsSuccessful.php │ │ │ │ ├── ResponseIsUnprocessable.php │ │ │ │ └── ResponseStatusCodeSame.php │ │ ├── UrlHelper.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php73 │ │ ├── LICENSE │ │ ├── Php73.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── JsonException.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── psr-http-message-bridge │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── ArgumentValueResolver │ │ │ └── PsrServerRequestResolver.php │ │ ├── CHANGELOG.md │ │ ├── EventListener │ │ │ └── PsrResponseListener.php │ │ ├── Factory │ │ │ ├── HttpFoundationFactory.php │ │ │ ├── PsrHttpFactory.php │ │ │ └── UploadedFile.php │ │ ├── HttpFoundationFactoryInterface.php │ │ ├── HttpMessageFactoryInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Tests │ │ │ ├── ArgumentValueResolver │ │ │ │ └── PsrServerRequestResolverTest.php │ │ │ ├── EventListener │ │ │ │ └── PsrResponseListenerTest.php │ │ │ ├── Factory │ │ │ │ ├── AbstractHttpMessageFactoryTest.php │ │ │ │ ├── HttpFoundationFactoryTest.php │ │ │ │ └── PsrHttpFactoryTest.php │ │ │ ├── Fixtures │ │ │ │ ├── App │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── PsrRequestController.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ └── Kernel44.php │ │ │ │ ├── Message.php │ │ │ │ ├── Response.php │ │ │ │ ├── ServerRequest.php │ │ │ │ ├── Stream.php │ │ │ │ ├── UploadedFile.php │ │ │ │ └── Uri.php │ │ │ └── Functional │ │ │ │ ├── ControllerTest.php │ │ │ │ └── CovertTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── service-contracts │ │ ├── .gitignore │ │ ├── Attribute │ │ │ ├── Required.php │ │ │ └── SubscribedService.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResetInterface.php │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ └── ServiceLocatorTest.php │ │ └── composer.json │ ├── var-dumper │ │ ├── CHANGELOG.md │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── DsCaster.php │ │ │ ├── DsPairStub.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.php │ │ │ ├── ImagineCaster.php │ │ │ ├── ImgStub.php │ │ │ ├── IntlCaster.php │ │ │ ├── LinkStub.php │ │ │ ├── MemcachedCaster.php │ │ │ ├── MysqliCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ProxyManagerCaster.php │ │ │ ├── RedisCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── SymfonyCaster.php │ │ │ ├── TraceStub.php │ │ │ ├── UuidCaster.php │ │ │ ├── XmlReaderCaster.php │ │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.php │ │ │ ├── Stub.php │ │ │ └── VarCloner.php │ │ ├── Command │ │ │ ├── Descriptor │ │ │ │ ├── CliDescriptor.php │ │ │ │ ├── DumpDescriptorInterface.php │ │ │ │ └── HtmlDescriptor.php │ │ │ └── ServerDumpCommand.php │ │ ├── Dumper │ │ │ ├── AbstractDumper.php │ │ │ ├── CliDumper.php │ │ │ ├── ContextProvider │ │ │ │ ├── CliContextProvider.php │ │ │ │ ├── ContextProviderInterface.php │ │ │ │ ├── RequestContextProvider.php │ │ │ │ └── SourceContextProvider.php │ │ │ ├── ContextualizedDumper.php │ │ │ ├── DataDumperInterface.php │ │ │ ├── HtmlDumper.php │ │ │ └── ServerDumper.php │ │ ├── Exception │ │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── var-dump-server │ │ │ ├── css │ │ │ │ └── htmlDescriptor.css │ │ │ ├── functions │ │ │ │ └── dump.php │ │ │ └── js │ │ │ │ └── htmlDescriptor.js │ │ ├── Server │ │ │ ├── Connection.php │ │ │ └── DumpServer.php │ │ ├── Test │ │ │ └── VarDumperTestTrait.php │ │ ├── VarDumper.php │ │ └── composer.json │ └── var-exporter │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── ExceptionInterface.php │ │ └── NotInstantiableTypeException.php │ │ ├── Instantiator.php │ │ ├── Internal │ │ ├── Exporter.php │ │ ├── Hydrator.php │ │ ├── Reference.php │ │ ├── Registry.php │ │ └── Values.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VarExporter.php │ │ └── composer.json └── topthink │ ├── framework │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ ├── logo.png │ ├── phpunit.xml.dist │ ├── src │ │ ├── helper.php │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── think │ │ │ ├── App.php │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Console.php │ │ │ ├── Container.php │ │ │ ├── Cookie.php │ │ │ ├── Db.php │ │ │ ├── Env.php │ │ │ ├── Event.php │ │ │ ├── Exception.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Filesystem.php │ │ │ ├── Http.php │ │ │ ├── Lang.php │ │ │ ├── Log.php │ │ │ ├── Manager.php │ │ │ ├── Middleware.php │ │ │ ├── Pipeline.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ ├── Service.php │ │ │ ├── Session.php │ │ │ ├── Validate.php │ │ │ ├── View.php │ │ │ ├── cache │ │ │ │ ├── Driver.php │ │ │ │ ├── TagSet.php │ │ │ │ └── driver │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Memcache.php │ │ │ │ │ ├── Memcached.php │ │ │ │ │ ├── Redis.php │ │ │ │ │ └── Wincache.php │ │ │ ├── console │ │ │ │ ├── Command.php │ │ │ │ ├── Input.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Output.php │ │ │ │ ├── Table.php │ │ │ │ ├── bin │ │ │ │ │ ├── README.md │ │ │ │ │ └── hiddeninput.exe │ │ │ │ ├── command │ │ │ │ │ ├── Clear.php │ │ │ │ │ ├── Help.php │ │ │ │ │ ├── Lists.php │ │ │ │ │ ├── Make.php │ │ │ │ │ ├── RouteList.php │ │ │ │ │ ├── RunServer.php │ │ │ │ │ ├── ServiceDiscover.php │ │ │ │ │ ├── VendorPublish.php │ │ │ │ │ ├── Version.php │ │ │ │ │ ├── make │ │ │ │ │ │ ├── Command.php │ │ │ │ │ │ ├── Controller.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── Listener.php │ │ │ │ │ │ ├── Middleware.php │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── Subscribe.php │ │ │ │ │ │ ├── Validate.php │ │ │ │ │ │ └── stubs │ │ │ │ │ │ │ ├── command.stub │ │ │ │ │ │ │ ├── controller.api.stub │ │ │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ │ │ ├── controller.stub │ │ │ │ │ │ │ ├── event.stub │ │ │ │ │ │ │ ├── listener.stub │ │ │ │ │ │ │ ├── middleware.stub │ │ │ │ │ │ │ ├── model.stub │ │ │ │ │ │ │ ├── service.stub │ │ │ │ │ │ │ ├── subscribe.stub │ │ │ │ │ │ │ └── validate.stub │ │ │ │ │ └── optimize │ │ │ │ │ │ ├── Route.php │ │ │ │ │ │ └── Schema.php │ │ │ │ ├── input │ │ │ │ │ ├── Argument.php │ │ │ │ │ ├── Definition.php │ │ │ │ │ └── Option.php │ │ │ │ └── output │ │ │ │ │ ├── Ask.php │ │ │ │ │ ├── Descriptor.php │ │ │ │ │ ├── Formatter.php │ │ │ │ │ ├── Question.php │ │ │ │ │ ├── descriptor │ │ │ │ │ └── Console.php │ │ │ │ │ ├── driver │ │ │ │ │ ├── Buffer.php │ │ │ │ │ ├── Console.php │ │ │ │ │ └── Nothing.php │ │ │ │ │ ├── formatter │ │ │ │ │ ├── Stack.php │ │ │ │ │ └── Style.php │ │ │ │ │ └── question │ │ │ │ │ ├── Choice.php │ │ │ │ │ └── Confirmation.php │ │ │ ├── contract │ │ │ │ ├── CacheHandlerInterface.php │ │ │ │ ├── LogHandlerInterface.php │ │ │ │ ├── ModelRelationInterface.php │ │ │ │ ├── SessionHandlerInterface.php │ │ │ │ └── TemplateHandlerInterface.php │ │ │ ├── event │ │ │ │ ├── AppInit.php │ │ │ │ ├── HttpEnd.php │ │ │ │ ├── HttpRun.php │ │ │ │ ├── LogRecord.php │ │ │ │ ├── LogWrite.php │ │ │ │ └── RouteLoaded.php │ │ │ ├── exception │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ErrorException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FuncNotFoundException.php │ │ │ │ ├── Handle.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpResponseException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── RouteNotFoundException.php │ │ │ │ └── ValidateException.php │ │ │ ├── facade │ │ │ │ ├── App.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Console.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Env.php │ │ │ │ ├── Event.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Log.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Request.php │ │ │ │ ├── Route.php │ │ │ │ ├── Session.php │ │ │ │ ├── Validate.php │ │ │ │ └── View.php │ │ │ ├── file │ │ │ │ └── UploadedFile.php │ │ │ ├── filesystem │ │ │ │ ├── CacheStore.php │ │ │ │ ├── Driver.php │ │ │ │ └── driver │ │ │ │ │ └── Local.php │ │ │ ├── initializer │ │ │ │ ├── BootService.php │ │ │ │ ├── Error.php │ │ │ │ └── RegisterService.php │ │ │ ├── log │ │ │ │ ├── Channel.php │ │ │ │ ├── ChannelSet.php │ │ │ │ └── driver │ │ │ │ │ ├── File.php │ │ │ │ │ └── Socket.php │ │ │ ├── middleware │ │ │ │ ├── AllowCrossDomain.php │ │ │ │ ├── CheckRequestCache.php │ │ │ │ ├── FormTokenCheck.php │ │ │ │ ├── LoadLangPack.php │ │ │ │ └── SessionInit.php │ │ │ ├── response │ │ │ │ ├── File.php │ │ │ │ ├── Html.php │ │ │ │ ├── Json.php │ │ │ │ ├── Jsonp.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── View.php │ │ │ │ └── Xml.php │ │ │ ├── route │ │ │ │ ├── Dispatch.php │ │ │ │ ├── Domain.php │ │ │ │ ├── Resource.php │ │ │ │ ├── Rule.php │ │ │ │ ├── RuleGroup.php │ │ │ │ ├── RuleItem.php │ │ │ │ ├── RuleName.php │ │ │ │ ├── Url.php │ │ │ │ └── dispatch │ │ │ │ │ ├── Callback.php │ │ │ │ │ ├── Controller.php │ │ │ │ │ └── Url.php │ │ │ ├── service │ │ │ │ ├── ModelService.php │ │ │ │ ├── PaginatorService.php │ │ │ │ └── ValidateService.php │ │ │ ├── session │ │ │ │ ├── Store.php │ │ │ │ └── driver │ │ │ │ │ ├── Cache.php │ │ │ │ │ └── File.php │ │ │ ├── validate │ │ │ │ └── ValidateRule.php │ │ │ └── view │ │ │ │ └── driver │ │ │ │ └── Php.php │ │ └── tpl │ │ │ └── think_exception.tpl │ └── tests │ │ ├── AppTest.php │ │ ├── CacheTest.php │ │ ├── ConfigTest.php │ │ ├── ContainerTest.php │ │ ├── DbTest.php │ │ ├── DispatchTest.php │ │ ├── EnvTest.php │ │ ├── EventTest.php │ │ ├── FilesystemTest.php │ │ ├── HttpTest.php │ │ ├── InteractsWithApp.php │ │ ├── LogTest.php │ │ ├── MiddlewareTest.php │ │ ├── RouteTest.php │ │ ├── SessionTest.php │ │ ├── ViewTest.php │ │ └── bootstrap.php │ ├── think-helper │ ├── .github │ │ └── workflows │ │ │ ├── ci.yml │ │ │ └── php.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Collection.php │ │ ├── contract │ │ │ ├── Arrayable.php │ │ │ └── Jsonable.php │ │ ├── helper.php │ │ └── helper │ │ │ ├── Arr.php │ │ │ └── Str.php │ └── tests │ │ ├── ArrTest.php │ │ ├── CollectionTest.php │ │ ├── StrTest.php │ │ └── TestCase.php │ ├── think-image │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Image.php │ │ └── image │ │ │ ├── Exception.php │ │ │ └── gif │ │ │ ├── Decoder.php │ │ │ ├── Encoder.php │ │ │ └── Gif.php │ └── tests │ │ ├── CropTest.php │ │ ├── FlipTest.php │ │ ├── InfoTest.php │ │ ├── RotateTest.php │ │ ├── TestCase.php │ │ ├── TextTest.php │ │ ├── ThumbTest.php │ │ ├── WaterTest.php │ │ ├── autoload.php │ │ ├── images │ │ ├── test.bmp │ │ ├── test.gif │ │ ├── test.jpg │ │ ├── test.png │ │ └── test.ttf │ │ └── tmp │ │ └── .gitignore │ ├── think-orm │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ │ ├── DbManager.php │ │ ├── Model.php │ │ ├── Paginator.php │ │ ├── db │ │ │ ├── BaseQuery.php │ │ │ ├── Builder.php │ │ │ ├── CacheItem.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── Fetch.php │ │ │ ├── Mongo.php │ │ │ ├── PDOConnection.php │ │ │ ├── Query.php │ │ │ ├── Raw.php │ │ │ ├── Where.php │ │ │ ├── builder │ │ │ │ ├── Mongo.php │ │ │ │ ├── Mysql.php │ │ │ │ ├── Oracle.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ └── Sqlsrv.php │ │ │ ├── concern │ │ │ │ ├── AggregateQuery.php │ │ │ │ ├── JoinAndViewQuery.php │ │ │ │ ├── ModelRelationQuery.php │ │ │ │ ├── ParamsBind.php │ │ │ │ ├── ResultOperation.php │ │ │ │ ├── TableFieldInfo.php │ │ │ │ ├── TimeFieldQuery.php │ │ │ │ ├── Transaction.php │ │ │ │ └── WhereQuery.php │ │ │ ├── connector │ │ │ │ ├── Mongo.php │ │ │ │ ├── Mysql.php │ │ │ │ ├── Oracle.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Sqlsrv.php │ │ │ │ └── pgsql.sql │ │ │ └── exception │ │ │ │ ├── BindParamException.php │ │ │ │ ├── DataNotFoundException.php │ │ │ │ ├── DbEventException.php │ │ │ │ ├── DbException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── ModelEventException.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ └── PDOException.php │ │ ├── facade │ │ │ └── Db.php │ │ ├── model │ │ │ ├── Collection.php │ │ │ ├── Pivot.php │ │ │ ├── Relation.php │ │ │ ├── concern │ │ │ │ ├── Attribute.php │ │ │ │ ├── Conversion.php │ │ │ │ ├── ModelEvent.php │ │ │ │ ├── OptimLock.php │ │ │ │ ├── RelationShip.php │ │ │ │ ├── SoftDelete.php │ │ │ │ ├── TimeStamp.php │ │ │ │ └── Virtual.php │ │ │ └── relation │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── HasOneThrough.php │ │ │ │ ├── MorphMany.php │ │ │ │ ├── MorphOne.php │ │ │ │ ├── MorphTo.php │ │ │ │ ├── MorphToMany.php │ │ │ │ └── OneToOne.php │ │ └── paginator │ │ │ └── driver │ │ │ └── Bootstrap.php │ └── stubs │ │ ├── Exception.php │ │ ├── Facade.php │ │ └── load_stubs.php │ ├── think-template │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Template.php │ │ ├── facade │ │ └── Template.php │ │ └── template │ │ ├── TagLib.php │ │ ├── driver │ │ └── File.php │ │ ├── exception │ │ └── TemplateNotFoundException.php │ │ └── taglib │ │ └── Cx.php │ ├── think-trace │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Console.php │ │ ├── Html.php │ │ ├── Service.php │ │ ├── TraceDebug.php │ │ ├── config.php │ │ └── tpl │ │ └── page_trace.tpl │ └── think-view │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Think.php └── view └── install └── index ├── step1.html ├── step2.html ├── step3.html └── step4.html /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | /runtime 4 | *.log 5 | .env -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/AppService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/AppService.php -------------------------------------------------------------------------------- /app/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/BaseController.php -------------------------------------------------------------------------------- /app/ExceptionHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/ExceptionHandle.php -------------------------------------------------------------------------------- /app/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/Request.php -------------------------------------------------------------------------------- /app/behavior/CORS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/behavior/CORS.php -------------------------------------------------------------------------------- /app/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/common.php -------------------------------------------------------------------------------- /app/controller/cms/Ad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Ad.php -------------------------------------------------------------------------------- /app/controller/cms/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Address.php -------------------------------------------------------------------------------- /app/controller/cms/Admins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Admins.php -------------------------------------------------------------------------------- /app/controller/cms/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Article.php -------------------------------------------------------------------------------- /app/controller/cms/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Category.php -------------------------------------------------------------------------------- /app/controller/cms/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Common.php -------------------------------------------------------------------------------- /app/controller/cms/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Coupon.php -------------------------------------------------------------------------------- /app/controller/cms/Desk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Desk.php -------------------------------------------------------------------------------- /app/controller/cms/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Form.php -------------------------------------------------------------------------------- /app/controller/cms/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Group.php -------------------------------------------------------------------------------- /app/controller/cms/Machine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Machine.php -------------------------------------------------------------------------------- /app/controller/cms/Mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Mobile.php -------------------------------------------------------------------------------- /app/controller/cms/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Order.php -------------------------------------------------------------------------------- /app/controller/cms/Pros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Pros.php -------------------------------------------------------------------------------- /app/controller/cms/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/Resource.php -------------------------------------------------------------------------------- /app/controller/cms/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/System.php -------------------------------------------------------------------------------- /app/controller/cms/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/cms/User.php -------------------------------------------------------------------------------- /app/controller/install/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/install/Check.php -------------------------------------------------------------------------------- /app/controller/install/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/install/Index.php -------------------------------------------------------------------------------- /app/controller/mobile/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/mobile/Index.php -------------------------------------------------------------------------------- /app/controller/mobile/Lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/mobile/Lists.php -------------------------------------------------------------------------------- /app/controller/mobile/MobileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/mobile/MobileController.php -------------------------------------------------------------------------------- /app/controller/mobile/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/mobile/Order.php -------------------------------------------------------------------------------- /app/controller/mobile/Pros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/mobile/Pros.php -------------------------------------------------------------------------------- /app/controller/mobile/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/controller/mobile/User.php -------------------------------------------------------------------------------- /app/data/backup/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /app/data/ruhua.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/data/ruhua.sql -------------------------------------------------------------------------------- /app/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/event.php -------------------------------------------------------------------------------- /app/http/middleware/cmsAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/http/middleware/cmsAuth.php -------------------------------------------------------------------------------- /app/middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/middleware.php -------------------------------------------------------------------------------- /app/model/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Address.php -------------------------------------------------------------------------------- /app/model/Admins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Admins.php -------------------------------------------------------------------------------- /app/model/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Article.php -------------------------------------------------------------------------------- /app/model/AuthRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/AuthRule.php -------------------------------------------------------------------------------- /app/model/Banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Banner.php -------------------------------------------------------------------------------- /app/model/BannerItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/BannerItem.php -------------------------------------------------------------------------------- /app/model/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Category.php -------------------------------------------------------------------------------- /app/model/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Coupon.php -------------------------------------------------------------------------------- /app/model/Desk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Desk.php -------------------------------------------------------------------------------- /app/model/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/File.php -------------------------------------------------------------------------------- /app/model/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Form.php -------------------------------------------------------------------------------- /app/model/FormData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/FormData.php -------------------------------------------------------------------------------- /app/model/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Group.php -------------------------------------------------------------------------------- /app/model/GroupAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/GroupAccess.php -------------------------------------------------------------------------------- /app/model/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Image.php -------------------------------------------------------------------------------- /app/model/Machine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Machine.php -------------------------------------------------------------------------------- /app/model/MbDiy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/MbDiy.php -------------------------------------------------------------------------------- /app/model/MbNavs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/MbNavs.php -------------------------------------------------------------------------------- /app/model/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Order.php -------------------------------------------------------------------------------- /app/model/OrderGoods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/OrderGoods.php -------------------------------------------------------------------------------- /app/model/OrderLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/OrderLog.php -------------------------------------------------------------------------------- /app/model/OrderUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/OrderUser.php -------------------------------------------------------------------------------- /app/model/Pros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Pros.php -------------------------------------------------------------------------------- /app/model/ProsSku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/ProsSku.php -------------------------------------------------------------------------------- /app/model/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Resource.php -------------------------------------------------------------------------------- /app/model/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/Rule.php -------------------------------------------------------------------------------- /app/model/SkuModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/SkuModel.php -------------------------------------------------------------------------------- /app/model/SysConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/SysConfig.php -------------------------------------------------------------------------------- /app/model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/model/User.php -------------------------------------------------------------------------------- /app/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/provider.php -------------------------------------------------------------------------------- /app/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/service.php -------------------------------------------------------------------------------- /app/service/CmsTokenService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/service/CmsTokenService.php -------------------------------------------------------------------------------- /app/service/GroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/service/GroupService.php -------------------------------------------------------------------------------- /app/service/TokenService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/service/TokenService.php -------------------------------------------------------------------------------- /app/service/UserTokenService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/service/UserTokenService.php -------------------------------------------------------------------------------- /app/service/XcxService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/service/XcxService.php -------------------------------------------------------------------------------- /app/validate/ADValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/ADValidate.php -------------------------------------------------------------------------------- /app/validate/AdminsValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/AdminsValidate.php -------------------------------------------------------------------------------- /app/validate/ArticleValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/ArticleValidate.php -------------------------------------------------------------------------------- /app/validate/CategoryValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/CategoryValidate.php -------------------------------------------------------------------------------- /app/validate/CouponValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/CouponValidate.php -------------------------------------------------------------------------------- /app/validate/GroupValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/GroupValidate.php -------------------------------------------------------------------------------- /app/validate/IDPostiveInt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/IDPostiveInt.php -------------------------------------------------------------------------------- /app/validate/InstallValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/InstallValidate.php -------------------------------------------------------------------------------- /app/validate/LoginValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/LoginValidate.php -------------------------------------------------------------------------------- /app/validate/MachineValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/MachineValidate.php -------------------------------------------------------------------------------- /app/validate/OrderValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/OrderValidate.php -------------------------------------------------------------------------------- /app/validate/PassWordValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/PassWordValidate.php -------------------------------------------------------------------------------- /app/validate/ProsValidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/app/validate/ProsValidate.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/app.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/console.php -------------------------------------------------------------------------------- /config/cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/cookie.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/filesystem.php -------------------------------------------------------------------------------- /config/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/lang.php -------------------------------------------------------------------------------- /config/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/log.php -------------------------------------------------------------------------------- /config/middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/middleware.php -------------------------------------------------------------------------------- /config/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/route.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/session.php -------------------------------------------------------------------------------- /config/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/setting.php -------------------------------------------------------------------------------- /config/trace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/trace.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/config/view.php -------------------------------------------------------------------------------- /data/main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/data/main.sql -------------------------------------------------------------------------------- /extend/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/css/theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/assets/css/theme.min.css -------------------------------------------------------------------------------- /public/assets/svg/arr011.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/assets/svg/arr011.svg -------------------------------------------------------------------------------- /public/assets/svg/arr012.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/assets/svg/arr012.svg -------------------------------------------------------------------------------- /public/cms/assets/1.9c6c9a51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/1.9c6c9a51.jpg -------------------------------------------------------------------------------- /public/cms/assets/404.10bd589f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/404.10bd589f.css -------------------------------------------------------------------------------- /public/cms/assets/404.7942a69f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/404.7942a69f.js -------------------------------------------------------------------------------- /public/cms/assets/404.e2baa9dd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/404.e2baa9dd.svg -------------------------------------------------------------------------------- /public/cms/assets/ad.1bf8e5f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/ad.1bf8e5f5.js -------------------------------------------------------------------------------- /public/cms/assets/ad.bd1f09f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/ad.bd1f09f2.js -------------------------------------------------------------------------------- /public/cms/assets/ad.f3b9a970.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/ad.f3b9a970.css -------------------------------------------------------------------------------- /public/cms/assets/add.6a273aa3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/add.6a273aa3.js -------------------------------------------------------------------------------- /public/cms/assets/add.8de41606.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/add.8de41606.css -------------------------------------------------------------------------------- /public/cms/assets/add.b656a1fe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/add.b656a1fe.css -------------------------------------------------------------------------------- /public/cms/assets/add.bb31e692.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/add.bb31e692.js -------------------------------------------------------------------------------- /public/cms/assets/address.8c06f134.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/address.8c06f134.js -------------------------------------------------------------------------------- /public/cms/assets/address.a53f4312.css: -------------------------------------------------------------------------------- 1 | .el-input[data-v-2e97f3ef]{height:40px} 2 | -------------------------------------------------------------------------------- /public/cms/assets/admins.2f6312da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/admins.2f6312da.js -------------------------------------------------------------------------------- /public/cms/assets/admins.b49653c3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/admins.b49653c3.css -------------------------------------------------------------------------------- /public/cms/assets/article.12d26598.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/article.12d26598.js -------------------------------------------------------------------------------- /public/cms/assets/bg.4f8da57b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/bg.4f8da57b.png -------------------------------------------------------------------------------- /public/cms/assets/bg1.f0fcd6e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/bg1.f0fcd6e9.png -------------------------------------------------------------------------------- /public/cms/assets/blue.0d1b3c10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/blue.0d1b3c10.png -------------------------------------------------------------------------------- /public/cms/assets/common.dc574b31.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/common.dc574b31.js -------------------------------------------------------------------------------- /public/cms/assets/coupon.8c718424.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/coupon.8c718424.css -------------------------------------------------------------------------------- /public/cms/assets/coupon.bfd242b8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/coupon.bfd242b8.js -------------------------------------------------------------------------------- /public/cms/assets/data.88462661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/data.88462661.js -------------------------------------------------------------------------------- /public/cms/assets/erweima.b4ceebf5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/erweima.b4ceebf5.svg -------------------------------------------------------------------------------- /public/cms/assets/eye-close.036a4f29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/eye-close.036a4f29.svg -------------------------------------------------------------------------------- /public/cms/assets/goods.6983e12f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/goods.6983e12f.js -------------------------------------------------------------------------------- /public/cms/assets/groups.12a0064e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/groups.12a0064e.css -------------------------------------------------------------------------------- /public/cms/assets/groups.3153182e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/groups.3153182e.js -------------------------------------------------------------------------------- /public/cms/assets/groups.b2d88766.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/groups.b2d88766.js -------------------------------------------------------------------------------- /public/cms/assets/index.558741a8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.558741a8.css -------------------------------------------------------------------------------- /public/cms/assets/index.5b9acd41.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.5b9acd41.js -------------------------------------------------------------------------------- /public/cms/assets/index.78774107.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.78774107.css -------------------------------------------------------------------------------- /public/cms/assets/index.8323f02c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.8323f02c.css -------------------------------------------------------------------------------- /public/cms/assets/index.9469dea3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.9469dea3.js -------------------------------------------------------------------------------- /public/cms/assets/index.9f6d3879.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.9f6d3879.css -------------------------------------------------------------------------------- /public/cms/assets/index.aa0178c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.aa0178c7.js -------------------------------------------------------------------------------- /public/cms/assets/index.b3d271f8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.b3d271f8.js -------------------------------------------------------------------------------- /public/cms/assets/index.b8fb4955.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.b8fb4955.js -------------------------------------------------------------------------------- /public/cms/assets/index.c8a2b102.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.c8a2b102.css -------------------------------------------------------------------------------- /public/cms/assets/index.dde08e97.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.dde08e97.css -------------------------------------------------------------------------------- /public/cms/assets/index.e692599c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.e692599c.js -------------------------------------------------------------------------------- /public/cms/assets/index.eb29ea26.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.eb29ea26.js -------------------------------------------------------------------------------- /public/cms/assets/index.ef1cb9e3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/index.ef1cb9e3.css -------------------------------------------------------------------------------- /public/cms/assets/info.fadafb4e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/info.fadafb4e.js -------------------------------------------------------------------------------- /public/cms/assets/language.ad93dddf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/language.ad93dddf.svg -------------------------------------------------------------------------------- /public/cms/assets/list.27899bfc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/list.27899bfc.js -------------------------------------------------------------------------------- /public/cms/assets/list.499c355b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/list.499c355b.js -------------------------------------------------------------------------------- /public/cms/assets/list.5c73d0c7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/list.5c73d0c7.css -------------------------------------------------------------------------------- /public/cms/assets/list.9fb0cca0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/list.9fb0cca0.js -------------------------------------------------------------------------------- /public/cms/assets/list.bc100c38.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/list.bc100c38.css -------------------------------------------------------------------------------- /public/cms/assets/list.fcdf818d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/list.fcdf818d.css -------------------------------------------------------------------------------- /public/cms/assets/login1.f90db286.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/login1.f90db286.png -------------------------------------------------------------------------------- /public/cms/assets/login2.f8edf7df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/login2.f8edf7df.png -------------------------------------------------------------------------------- /public/cms/assets/moon.82d2d3c4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/moon.82d2d3c4.svg -------------------------------------------------------------------------------- /public/cms/assets/order.a9b7f7f3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/order.a9b7f7f3.js -------------------------------------------------------------------------------- /public/cms/assets/phone_box.760b4d01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/phone_box.760b4d01.png -------------------------------------------------------------------------------- /public/cms/assets/picLib.7013f1f8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/picLib.7013f1f8.css -------------------------------------------------------------------------------- /public/cms/assets/picLib.ebfc09fb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/picLib.ebfc09fb.js -------------------------------------------------------------------------------- /public/cms/assets/print.63536049.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/print.63536049.js -------------------------------------------------------------------------------- /public/cms/assets/print.eca52034.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/print.eca52034.css -------------------------------------------------------------------------------- /public/cms/assets/resource.0add065e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/resource.0add065e.css -------------------------------------------------------------------------------- /public/cms/assets/resource.f46199b7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/resource.f46199b7.js -------------------------------------------------------------------------------- /public/cms/assets/shape-6.9a356d39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/shape-6.9a356d39.svg -------------------------------------------------------------------------------- /public/cms/assets/style.333266d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/style.333266d0.js -------------------------------------------------------------------------------- /public/cms/assets/style.4f35b623.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/style.4f35b623.css -------------------------------------------------------------------------------- /public/cms/assets/sun.8263299b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/sun.8263299b.svg -------------------------------------------------------------------------------- /public/cms/assets/tui.1ed14426.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/tui.1ed14426.css -------------------------------------------------------------------------------- /public/cms/assets/tui.aa11fd67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/tui.aa11fd67.js -------------------------------------------------------------------------------- /public/cms/assets/useimg.1f5e3688.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/useimg.1f5e3688.js -------------------------------------------------------------------------------- /public/cms/assets/user.91c16a16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/user.91c16a16.js -------------------------------------------------------------------------------- /public/cms/assets/userList.1c69e2d5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/userList.1c69e2d5.js -------------------------------------------------------------------------------- /public/cms/assets/userList.cb09fb1b.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/assets/userList.cb09fb1b.css -------------------------------------------------------------------------------- /public/cms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/index.html -------------------------------------------------------------------------------- /public/cms/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/cms/vite.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/h5/assets/coupons.13e4275e.js: -------------------------------------------------------------------------------- 1 | var s="/h5/assets/coupons.abbfd2f5.png";export{s as _}; 2 | -------------------------------------------------------------------------------- /public/h5/assets/coupons.abbfd2f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/coupons.abbfd2f5.png -------------------------------------------------------------------------------- /public/h5/assets/footerMenu.3ebb07b9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/footerMenu.3ebb07b9.js -------------------------------------------------------------------------------- /public/h5/assets/footerMenu.4b943abe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/footerMenu.4b943abe.css -------------------------------------------------------------------------------- /public/h5/assets/home.40168c8a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/home.40168c8a.png -------------------------------------------------------------------------------- /public/h5/assets/home1.7089f06d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/home1.7089f06d.png -------------------------------------------------------------------------------- /public/h5/assets/index.325fe786.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/index.325fe786.js -------------------------------------------------------------------------------- /public/h5/assets/index.382269b3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/index.382269b3.css -------------------------------------------------------------------------------- /public/h5/assets/index.956bbbdc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/index.956bbbdc.js -------------------------------------------------------------------------------- /public/h5/assets/index.b37c9468.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/index.b37c9468.css -------------------------------------------------------------------------------- /public/h5/assets/index.e7b10523.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/index.e7b10523.css -------------------------------------------------------------------------------- /public/h5/assets/index.fe5640a1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/index.fe5640a1.js -------------------------------------------------------------------------------- /public/h5/assets/j.cbaba81b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/j.cbaba81b.png -------------------------------------------------------------------------------- /public/h5/assets/lists.b8f071e7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/lists.b8f071e7.css -------------------------------------------------------------------------------- /public/h5/assets/order.724c423d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/order.724c423d.css -------------------------------------------------------------------------------- /public/h5/assets/order.73d436b0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/order.73d436b0.js -------------------------------------------------------------------------------- /public/h5/assets/order.d922e690.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/order.d922e690.js -------------------------------------------------------------------------------- /public/h5/assets/order_pro_item.47e7688c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/order_pro_item.47e7688c.js -------------------------------------------------------------------------------- /public/h5/assets/pages-404-404.bbef021e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-404-404.bbef021e.js -------------------------------------------------------------------------------- /public/h5/assets/pages-article-article.05bdea3b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-article-article.05bdea3b.js -------------------------------------------------------------------------------- /public/h5/assets/pages-index-index.7c916c9a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-index-index.7c916c9a.js -------------------------------------------------------------------------------- /public/h5/assets/pages-lists-desk-desk.57f58dbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-lists-desk-desk.57f58dbc.js -------------------------------------------------------------------------------- /public/h5/assets/pages-lists-lists.8adbd48b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-lists-lists.8adbd48b.js -------------------------------------------------------------------------------- /public/h5/assets/pages-my-my.ec1f3828.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-my-my.ec1f3828.js -------------------------------------------------------------------------------- /public/h5/assets/pages-my-order-detail.d155f648.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-my-order-detail.d155f648.js -------------------------------------------------------------------------------- /public/h5/assets/pages-my-order-order.c8b364ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-my-order-order.c8b364ad.js -------------------------------------------------------------------------------- /public/h5/assets/pages-pay-pay.34a34687.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-pay-pay.34a34687.js -------------------------------------------------------------------------------- /public/h5/assets/pages-pay-placeOrder.beb66832.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pages-pay-placeOrder.beb66832.js -------------------------------------------------------------------------------- /public/h5/assets/pros.02b6e662.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pros.02b6e662.css -------------------------------------------------------------------------------- /public/h5/assets/pros.834e8d62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/pros.834e8d62.js -------------------------------------------------------------------------------- /public/h5/assets/uni.e2990af9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/assets/uni.e2990af9.css -------------------------------------------------------------------------------- /public/h5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/index.html -------------------------------------------------------------------------------- /public/h5/static/icon/coupons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/coupons.png -------------------------------------------------------------------------------- /public/h5/static/icon/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/down.png -------------------------------------------------------------------------------- /public/h5/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/home.png -------------------------------------------------------------------------------- /public/h5/static/icon/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/home1.png -------------------------------------------------------------------------------- /public/h5/static/icon/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/j.png -------------------------------------------------------------------------------- /public/h5/static/icon/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/my.png -------------------------------------------------------------------------------- /public/h5/static/icon/my1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/my1.png -------------------------------------------------------------------------------- /public/h5/static/icon/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/order.png -------------------------------------------------------------------------------- /public/h5/static/icon/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/right.png -------------------------------------------------------------------------------- /public/h5/static/icon/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/shopping.png -------------------------------------------------------------------------------- /public/h5/static/icon/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/ss1.png -------------------------------------------------------------------------------- /public/h5/static/icon/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/ss2.png -------------------------------------------------------------------------------- /public/h5/static/icon/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/icon/ss3.png -------------------------------------------------------------------------------- /public/h5/static/img/shape-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/img/shape-6.svg -------------------------------------------------------------------------------- /public/h5/static/img/titlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/img/titlebg.png -------------------------------------------------------------------------------- /public/h5/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/logo.png -------------------------------------------------------------------------------- /public/h5/static/svg/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/box.svg -------------------------------------------------------------------------------- /public/h5/static/svg/documentchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/documentchecked.svg -------------------------------------------------------------------------------- /public/h5/static/svg/documentcopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/documentcopy.svg -------------------------------------------------------------------------------- /public/h5/static/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/edit.svg -------------------------------------------------------------------------------- /public/h5/static/svg/goods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/goods.svg -------------------------------------------------------------------------------- /public/h5/static/svg/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/grid.svg -------------------------------------------------------------------------------- /public/h5/static/svg/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/guide.svg -------------------------------------------------------------------------------- /public/h5/static/svg/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/house.svg -------------------------------------------------------------------------------- /public/h5/static/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/menu.svg -------------------------------------------------------------------------------- /public/h5/static/svg/netobook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/netobook.svg -------------------------------------------------------------------------------- /public/h5/static/svg/picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/picture.svg -------------------------------------------------------------------------------- /public/h5/static/svg/pricetag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/pricetag.svg -------------------------------------------------------------------------------- /public/h5/static/svg/setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/setup.svg -------------------------------------------------------------------------------- /public/h5/static/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/svg/user.svg -------------------------------------------------------------------------------- /public/h5/static/tabbar/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/tabbar/index.png -------------------------------------------------------------------------------- /public/h5/static/tabbar/index1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/tabbar/index1.png -------------------------------------------------------------------------------- /public/h5/static/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/tabbar/my.png -------------------------------------------------------------------------------- /public/h5/static/tabbar/my1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/tabbar/my1.png -------------------------------------------------------------------------------- /public/h5/static/tabbar/serve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/tabbar/serve.png -------------------------------------------------------------------------------- /public/h5/static/tabbar/serve1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/h5/static/tabbar/serve1.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/public/router.php -------------------------------------------------------------------------------- /public/static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /route/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/route/admin.php -------------------------------------------------------------------------------- /route/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/route/common.php -------------------------------------------------------------------------------- /route/mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/route/mobile.php -------------------------------------------------------------------------------- /think: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/think -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/var-dump-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/bin/var-dump-server -------------------------------------------------------------------------------- /vendor/bin/var-dump-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/bin/var-dump-server.bat -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/LICENSE -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/README.md -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/composer.json -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/CachedKeySet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/src/CachedKeySet.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/ExpiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/src/ExpiredException.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/JWK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/src/JWK.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/JWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/src/JWT.php -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/firebase/php-jwt/src/Key.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/UPGRADING.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/composer.json -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/BodySummarizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/BodySummarizer.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/Client.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/ClientInterface.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/ClientTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/ClientTrait.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Handler/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/HandlerStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/HandlerStack.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/MessageFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/MessageFormatter.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/Middleware.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/Pool.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/RequestOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/RequestOptions.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/RetryMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/TransferStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/TransferStats.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/Utils.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/functions.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/functions_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/guzzle/src/functions_include.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/composer.json -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Coroutine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/Coroutine.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/Create.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Each.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/Each.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/EachPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/EachPromise.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/Is.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/Promise.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/RejectedPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/RejectedPromise.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/TaskQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/TaskQueue.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/Utils.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/promises/src/functions.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/composer.json -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/AppendStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/AppendStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/BufferStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/BufferStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/CachingStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/CachingStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/DroppingStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/DroppingStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/FnStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/FnStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Header.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/HttpFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/HttpFactory.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/InflateStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/InflateStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/LazyOpenStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/LazyOpenStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/LimitStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/LimitStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Message.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/MessageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/MessageTrait.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/MimeType.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/MultipartStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/MultipartStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/NoSeekStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/NoSeekStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/PumpStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/PumpStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Query.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Request.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Response.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Rfc7230.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Rfc7230.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/ServerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/ServerRequest.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Stream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/StreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/StreamWrapper.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/UploadedFile.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/UriComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/UriComparator.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/UriNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/UriNormalizer.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/UriResolver.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/guzzlehttp/psr7/src/Utils.php -------------------------------------------------------------------------------- /vendor/league/flysystem-cached-adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/league/flysystem-cached-adapter/.gitignore -------------------------------------------------------------------------------- /vendor/league/flysystem-cached-adapter/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/league/flysystem-cached-adapter/.php_cs -------------------------------------------------------------------------------- /vendor/league/flysystem-cached-adapter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/league/flysystem-cached-adapter/.travis.yml -------------------------------------------------------------------------------- /vendor/league/flysystem-cached-adapter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/league/flysystem-cached-adapter/LICENSE -------------------------------------------------------------------------------- /vendor/league/flysystem-cached-adapter/clover/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/league/flysystem-cached-adapter/phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baok1592/food_wm2/HEAD/vendor/league/flysystem-cached-adapter/phpspec.yml -------------------------------------------------------------------------------- /vendor/league/flysystem-cached-adapter/phpunit.php: -------------------------------------------------------------------------------- 1 |