From 81ade70944d4c35d40099989730ce143e8e2f5ba Mon Sep 17 00:00:00 2001 From: gaofeng <1212121@qq.com> Date: Wed, 17 Jun 2026 09:23:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 12 + .example.env | 17 + .gitignore | 4 + .htaccess | 0 .travis.yml | 42 + LICENSE.txt | 32 + README.md | 77 + app/.htaccess | 1 + app/AppService.php | 22 + app/BaseController.php | 94 + app/ExceptionHandle.php | 58 + app/Request.php | 8 + app/common.php | 2 + app/event.php | 17 + app/lang/en-us.php | 1058 ++++++ app/lang/zh-cn.php | 911 ++++++ app/log/driver/Monolog.php | 81 + app/middleware.php | 11 + app/middleware/LogRecorder.php | 41 + app/miniapi/common.php | 413 +++ app/miniapi/controller/Auth.php | 134 + app/miniapi/controller/Base.php | 283 ++ app/miniapi/controller/Esta.php | 107 + app/miniapi/controller/Evus.php | 139 + app/miniapi/controller/Help.php | 57 + app/miniapi/controller/Index.php | 87 + app/miniapi/controller/News.php | 79 + app/miniapi/controller/Ocr.php | 68 + app/miniapi/controller/Order.php | 193 ++ app/miniapi/controller/Upload.php | 74 + .../service/Context/MiniAppContext.php | 66 + .../service/Legal/LegalDocumentService.php | 144 + .../service/Payment/MiniPayService.php | 65 + .../service/Payment/PaymentChannelService.php | 35 + .../service/Product/ProductService.php | 94 + app/provider.php | 9 + app/service.php | 9 + app/service/AwsUploadService.php | 126 + app/service/BaiduOcrService.php | 122 + app/service/CompressImgService.php | 185 ++ app/service/MiniProgramWechatService.php | 127 + app/service/OssService.php | 301 ++ app/service/OssUploadService.php | 203 ++ app/service/PassportOcrService.php | 233 ++ app/service/SwooleService.php | 63 + app/service/UploadService.php | 133 + composer.json | 53 + composer.lock | 1794 ++++++++++ config/app.php | 31 + config/cache.php | 29 + config/citic.php | 6 + config/console.php | 9 + config/cookie.php | 20 + config/database.php | 63 + config/filesystem.php | 47 + config/lang.php | 29 + config/log.php | 50 + config/middleware.php | 8 + config/mini_legal.php | 43 + config/mini_payment.php | 57 + config/mini_product.php | 49 + config/miniapp.php | 24 + config/ocr.php | 10 + config/oss.php | 13 + config/route.php | 51 + config/session.php | 19 + config/trace.php | 10 + config/view.php | 25 + extend/api/Httpcurl.php | 125 + extend/api/Verify.php | 337 ++ extend/api/Verify/bgs/1.jpg | Bin 0 -> 30428 bytes extend/api/Verify/bgs/2.jpg | Bin 0 -> 29677 bytes extend/api/Verify/bgs/3.jpg | Bin 0 -> 32109 bytes extend/api/Verify/bgs/4.jpg | Bin 0 -> 29081 bytes extend/api/Verify/bgs/5.jpg | Bin 0 -> 27940 bytes extend/api/Verify/bgs/6.jpg | Bin 0 -> 31381 bytes extend/api/Verify/bgs/7.jpg | Bin 0 -> 30234 bytes extend/api/Verify/bgs/8.jpg | Bin 0 -> 30188 bytes extend/api/Verify/ttfs/1.ttf | Bin 0 -> 57520 bytes extend/api/Verify/ttfs/2.ttf | Bin 0 -> 28328 bytes extend/api/Verify/ttfs/3.ttf | Bin 0 -> 39308 bytes extend/api/Verify/ttfs/4.ttf | Bin 0 -> 34852 bytes extend/api/Verify/ttfs/5.ttf | Bin 0 -> 32664 bytes extend/api/Verify/ttfs/6.ttf | Bin 0 -> 28036 bytes nginx.htaccess | 8 + public/.htaccess | 0 public/index.php | 25 + public/json/country.json | 978 ++++++ public/json/country_en.json | 978 ++++++ public/json/phone_prefix.json | 978 ++++++ public/json/phone_prefix_en.json | 979 ++++++ public/json/us.json | 234 ++ public/json/us_en.json | 234 ++ public/nginx.htaccess | 8 + public/robots.txt | 2 + public/router.php | 19 + route/app.php | 41 + think | 11 + thinkphp/lang/zh-cn.php | 136 + .../oss-v2/.github/workflows/main.yml | 37 + vendor/alibabacloud/oss-v2/.gitignore | 10 + vendor/alibabacloud/oss-v2/CHANGELOG.md | 72 + vendor/alibabacloud/oss-v2/DEVGUIDE-CN.md | 1767 ++++++++++ vendor/alibabacloud/oss-v2/DEVGUIDE.md | 0 vendor/alibabacloud/oss-v2/LICENSE | 201 ++ vendor/alibabacloud/oss-v2/README-CN.md | 146 + vendor/alibabacloud/oss-v2/README.md | 146 + vendor/alibabacloud/oss-v2/autoload.php | 11 + vendor/alibabacloud/oss-v2/composer.json | 30 + vendor/alibabacloud/oss-v2/index.php | 3 + vendor/alibabacloud/oss-v2/phpunit.xml | 46 + .../oss-v2/sample/AbortBucketWorm.php | 45 + .../oss-v2/sample/AbortMultipartUpload.php | 50 + .../oss-v2/sample/AppendObject.php | 54 + .../oss-v2/sample/AsyncProcessObject.php | 59 + .../oss-v2/sample/CleanRestoredObject.php | 49 + .../oss-v2/sample/CloseMetaQuery.php | 45 + .../oss-v2/sample/CompleteMultipartUpload.php | 125 + vendor/alibabacloud/oss-v2/sample/Copier.php | 120 + .../alibabacloud/oss-v2/sample/CopyObject.php | 57 + .../oss-v2/sample/CreateAccessPoint.php | 52 + .../CreateBucketDataRedundancyTransition.php | 47 + .../oss-v2/sample/CreateCnameToken.php | 51 + .../oss-v2/sample/DeleteAccessPoint.php | 48 + .../oss-v2/sample/DeleteBucket.php | 47 + .../oss-v2/sample/DeleteBucketCors.php | 47 + .../DeleteBucketDataRedundancyTransition.php | 47 + .../oss-v2/sample/DeleteBucketEncryption.php | 47 + .../oss-v2/sample/DeleteBucketInventory.php | 50 + .../oss-v2/sample/DeleteBucketLifecycle.php | 47 + .../oss-v2/sample/DeleteBucketLogging.php | 47 + .../oss-v2/sample/DeleteBucketOverwrite.php | 47 + .../oss-v2/sample/DeleteBucketPolicy.php | 47 + .../sample/DeleteBucketPublicAccessBlock.php | 46 + .../oss-v2/sample/DeleteBucketReplication.php | 51 + .../oss-v2/sample/DeleteBucketTags.php | 47 + .../oss-v2/sample/DeleteBucketWebsite.php | 47 + .../oss-v2/sample/DeleteCname.php | 50 + .../oss-v2/sample/DeleteMultipleObjects.php | 57 + .../oss-v2/sample/DeleteObject.php | 50 + .../oss-v2/sample/DeleteObjectTagging.php | 46 + .../oss-v2/sample/DeletePublicAccessBlock.php | 44 + .../oss-v2/sample/DeleteStyle.php | 49 + .../DeleteUserDefinedLogFieldsConfig.php | 46 + .../sample/DeletetAccessPointPolicy.php | 48 + .../oss-v2/sample/DescribeRegions.php | 46 + .../oss-v2/sample/DoMetaQuery.php | 80 + .../alibabacloud/oss-v2/sample/Downloader.php | 71 + .../oss-v2/sample/EncryptionClient.php | 172 + .../oss-v2/sample/ExtentBucketWorm.php | 47 + .../oss-v2/sample/GetAccessPoint.php | 49 + .../oss-v2/sample/GetAccessPointPolicy.php | 49 + .../oss-v2/sample/GetBucketAccessMonitor.php | 47 + .../oss-v2/sample/GetBucketAcl.php | 45 + .../sample/GetBucketArchiveDirectRead.php | 47 + .../oss-v2/sample/GetBucketCors.php | 48 + .../GetBucketDataRedundancyTransition.php | 48 + .../oss-v2/sample/GetBucketEncryption.php | 48 + .../oss-v2/sample/GetBucketHttpsConfig.php | 49 + .../oss-v2/sample/GetBucketInfo.php | 49 + .../oss-v2/sample/GetBucketInventory.php | 51 + .../oss-v2/sample/GetBucketLifecycle.php | 48 + .../oss-v2/sample/GetBucketLocation.php | 49 + .../oss-v2/sample/GetBucketLogging.php | 48 + .../oss-v2/sample/GetBucketOverwrite.php | 48 + .../oss-v2/sample/GetBucketPolicy.php | 48 + .../oss-v2/sample/GetBucketPolicyStatus.php | 48 + .../sample/GetBucketPublicAccessBlock.php | 47 + .../oss-v2/sample/GetBucketReferer.php | 47 + .../oss-v2/sample/GetBucketReplication.php | 48 + .../sample/GetBucketReplicationLocation.php | 48 + .../sample/GetBucketReplicationProgress.php | 50 + .../oss-v2/sample/GetBucketRequestPayment.php | 48 + .../oss-v2/sample/GetBucketResourceGroup.php | 47 + .../oss-v2/sample/GetBucketStat.php | 49 + .../oss-v2/sample/GetBucketTags.php | 48 + .../sample/GetBucketTransferAcceleration.php | 48 + .../oss-v2/sample/GetBucketVersioning.php | 45 + .../oss-v2/sample/GetBucketWebsite.php | 48 + .../oss-v2/sample/GetBucketWorm.php | 48 + .../oss-v2/sample/GetCnameToken.php | 47 + .../oss-v2/sample/GetMetaQueryStatus.php | 47 + .../alibabacloud/oss-v2/sample/GetObject.php | 51 + .../oss-v2/sample/GetObjectAcl.php | 47 + .../oss-v2/sample/GetObjectMeta.php | 51 + .../oss-v2/sample/GetObjectTagging.php | 47 + .../oss-v2/sample/GetPublicAccessBlock.php | 45 + .../alibabacloud/oss-v2/sample/GetStyle.php | 50 + .../alibabacloud/oss-v2/sample/GetSymlink.php | 47 + .../sample/GetUserDefinedLogFieldsConfig.php | 47 + .../alibabacloud/oss-v2/sample/HeadObject.php | 51 + .../oss-v2/sample/InitiateBucketWorm.php | 48 + .../oss-v2/sample/InitiateMultipartUpload.php | 50 + .../oss-v2/sample/InvokeOperation.php | 98 + .../oss-v2/sample/IsBucketExist.php | 45 + .../oss-v2/sample/IsObjectExist.php | 47 + .../oss-v2/sample/ListAccessPoint.php | 48 + .../ListBucketDataRedundancyTransition.php | 46 + .../oss-v2/sample/ListBucketInventory.php | 49 + .../oss-v2/sample/ListBuckets.php | 46 + .../oss-v2/sample/ListCloudBoxes.php | 47 + .../alibabacloud/oss-v2/sample/ListCname.php | 47 + .../oss-v2/sample/ListMultipartUploads.php | 51 + .../oss-v2/sample/ListObjectVersions.php | 50 + .../oss-v2/sample/ListObjects.php | 50 + .../oss-v2/sample/ListObjectsV2.php | 48 + .../alibabacloud/oss-v2/sample/ListParts.php | 55 + .../alibabacloud/oss-v2/sample/ListStyle.php | 49 + .../ListUserDataRedundancyTransition.php | 44 + .../oss-v2/sample/OpenMetaQuery.php | 57 + .../oss-v2/sample/OptionObject.php | 53 + .../alibabacloud/oss-v2/sample/PostObject.php | 156 + vendor/alibabacloud/oss-v2/sample/Presign.php | 102 + .../oss-v2/sample/ProcessObject.php | 56 + .../oss-v2/sample/PutAccessPointPolicy.php | 67 + .../alibabacloud/oss-v2/sample/PutBucket.php | 47 + .../oss-v2/sample/PutBucketAccessMonitor.php | 48 + .../oss-v2/sample/PutBucketAcl.php | 44 + .../sample/PutBucketArchiveDirectRead.php | 48 + .../oss-v2/sample/PutBucketCors.php | 54 + .../oss-v2/sample/PutBucketEncryption.php | 50 + .../oss-v2/sample/PutBucketHttpsConfig.php | 54 + .../oss-v2/sample/PutBucketInventory.php | 81 + .../oss-v2/sample/PutBucketLifecycle.php | 59 + .../oss-v2/sample/PutBucketLogging.php | 51 + .../oss-v2/sample/PutBucketOverwrite.php | 57 + .../oss-v2/sample/PutBucketPolicy.php | 59 + .../sample/PutBucketPublicAccessBlock.php | 48 + .../oss-v2/sample/PutBucketReferer.php | 51 + .../oss-v2/sample/PutBucketReplication.php | 64 + .../oss-v2/sample/PutBucketRequestPayment.php | 48 + .../oss-v2/sample/PutBucketResourceGroup.php | 48 + .../oss-v2/sample/PutBucketRtc.php | 57 + .../oss-v2/sample/PutBucketTags.php | 50 + .../sample/PutBucketTransferAcceleration.php | 48 + .../oss-v2/sample/PutBucketVersioning.php | 46 + .../oss-v2/sample/PutBucketWebsite.php | 55 + .../alibabacloud/oss-v2/sample/PutCname.php | 50 + .../alibabacloud/oss-v2/sample/PutObject.php | 52 + .../oss-v2/sample/PutObjectAcl.php | 46 + .../oss-v2/sample/PutObjectTagging.php | 53 + .../oss-v2/sample/PutPublicAccessBlock.php | 46 + .../alibabacloud/oss-v2/sample/PutStyle.php | 50 + .../alibabacloud/oss-v2/sample/PutSymlink.php | 49 + .../sample/PutUserDefinedLogFieldsConfig.php | 49 + .../oss-v2/sample/RestoreObject.php | 49 + .../oss-v2/sample/SealAppendObject.php | 51 + .../alibabacloud/oss-v2/sample/UploadPart.php | 107 + .../oss-v2/sample/UploadPartCopy.php | 60 + .../alibabacloud/oss-v2/sample/Uploader.php | 133 + .../src/Annotation/AnnotationInterface.php | 10 + .../oss-v2/src/Annotation/Functions.php | 85 + .../src/Annotation/RequiredProperty.php | 8 + .../oss-v2/src/Annotation/TagBody.php | 14 + .../oss-v2/src/Annotation/TagHeader.php | 14 + .../oss-v2/src/Annotation/TagProperty.php | 28 + .../oss-v2/src/Annotation/TagQuery.php | 14 + .../oss-v2/src/Annotation/XmlElement.php | 22 + .../oss-v2/src/Annotation/XmlRoot.php | 16 + vendor/alibabacloud/oss-v2/src/Client.php | 435 +++ .../oss-v2/src/ClientExtensionTrait.php | 202 ++ vendor/alibabacloud/oss-v2/src/ClientImpl.php | 752 +++++ vendor/alibabacloud/oss-v2/src/Config.php | 700 ++++ vendor/alibabacloud/oss-v2/src/Copier.php | 533 +++ .../AnonymousCredentialsProvider.php | 14 + .../oss-v2/src/Credentials/Credentials.php | 93 + .../src/Credentials/CredentialsProvider.php | 13 + .../Credentials/CredentialsProviderFunc.php | 26 + ...EnvironmentVariableCredentialsProvider.php | 20 + .../Credentials/StaticCredentialsProvider.php | 36 + .../alibabacloud/oss-v2/src/Crypto/AesCtr.php | 152 + .../oss-v2/src/Crypto/AesCtrCipher.php | 61 + .../oss-v2/src/Crypto/AesCtrCipherBuilder.php | 65 + .../oss-v2/src/Crypto/CipherData.php | 43 + .../oss-v2/src/Crypto/CipherInterface.php | 18 + .../src/Crypto/ContentCipherInterface.php | 21 + .../oss-v2/src/Crypto/Envelope.php | 43 + .../oss-v2/src/Crypto/LazyDecryptStream.php | 107 + .../src/Crypto/MasterCipherInterface.php | 45 + .../oss-v2/src/Crypto/MasterRsaCipher.php | 113 + .../oss-v2/src/Crypto/ReadDecryptStream.php | 56 + .../oss-v2/src/Crypto/ReadEncryptStream.php | 56 + vendor/alibabacloud/oss-v2/src/Defaults.php | 113 + .../alibabacloud/oss-v2/src/Deserializer.php | 325 ++ vendor/alibabacloud/oss-v2/src/Downloader.php | 422 +++ .../oss-v2/src/EncryptionClient.php | 750 +++++ .../oss-v2/src/Exception/CopyException.php | 41 + .../src/Exception/CredentialsException.php | 18 + .../Exception/DeserializationExecption.php | 16 + .../src/Exception/DownloadException.php | 32 + .../src/Exception/InconsistentExecption.php | 25 + .../src/Exception/OperationException.php | 22 + .../oss-v2/src/Exception/ParserException.php | 17 + .../src/Exception/SerializationExecption.php | 16 + .../oss-v2/src/Exception/ServiceException.php | 111 + .../src/Exception/StreamRewindException.php | 17 + .../oss-v2/src/Exception/UploadException.php | 41 + .../src/Models/AbortBucketWormRequest.php | 38 + .../src/Models/AbortBucketWormResult.php | 15 + .../Models/AbortMultipartUploadRequest.php | 63 + .../src/Models/AbortMultipartUploadResult.php | 16 + .../oss-v2/src/Models/AccessControlList.php | 36 + .../src/Models/AccessMonitorConfiguration.php | 36 + .../src/Models/AccessMonitorStatusType.php | 15 + .../oss-v2/src/Models/AccessPoint.php | 85 + .../src/Models/AccessPointEndpoints.php | 45 + .../Models/AccessPointVpcConfiguration.php | 35 + .../oss-v2/src/Models/AccessPoints.php | 35 + .../oss-v2/src/Models/AppendObjectRequest.php | 234 ++ .../oss-v2/src/Models/AppendObjectResult.php | 86 + .../ApplyServerSideEncryptionByDefault.php | 56 + .../Models/ArchiveDirectReadConfiguration.php | 35 + .../src/Models/AsyncProcessObjectRequest.php | 62 + .../src/Models/AsyncProcessObjectResult.php | 50 + .../alibabacloud/oss-v2/src/Models/Bucket.php | 106 + .../oss-v2/src/Models/BucketACLType.php | 30 + .../src/Models/BucketCnameConfiguration.php | 35 + .../Models/BucketDataRedundancyTransition.php | 106 + .../oss-v2/src/Models/BucketInfo.php | 189 ++ .../oss-v2/src/Models/BucketLoggingStatus.php | 36 + .../oss-v2/src/Models/BucketPolicy.php | 45 + .../BucketResourceGroupConfiguration.php | 35 + .../src/Models/BucketVersioningStatusType.php | 22 + .../oss-v2/src/Models/BucketWormStateType.php | 23 + .../oss-v2/src/Models/CORSConfiguration.php | 46 + .../oss-v2/src/Models/CORSRule.php | 76 + .../src/Models/CertificateConfiguration.php | 86 + .../oss-v2/src/Models/CipherSuite.php | 61 + .../src/Models/CleanRestoredObjectRequest.php | 61 + .../src/Models/CleanRestoredObjectResult.php | 15 + .../src/Models/CloseMetaQueryRequest.php | 38 + .../src/Models/CloseMetaQueryResult.php | 15 + .../oss-v2/src/Models/CloudBox.php | 74 + .../oss-v2/src/Models/CloudBoxes.php | 34 + .../alibabacloud/oss-v2/src/Models/Cname.php | 45 + .../oss-v2/src/Models/CnameCertificate.php | 95 + .../oss-v2/src/Models/CnameInfo.php | 65 + .../oss-v2/src/Models/CnameToken.php | 65 + .../oss-v2/src/Models/CommonPrefix.php | 35 + .../src/Models/CompleteBucketWormRequest.php | 49 + .../src/Models/CompleteBucketWormResult.php | 15 + .../src/Models/CompleteMultipartUpload.php | 36 + .../Models/CompleteMultipartUploadRequest.php | 128 + .../Models/CompleteMultipartUploadResult.php | 96 + .../oss-v2/src/Models/CopyObjectRequest.php | 291 ++ .../oss-v2/src/Models/CopyObjectResult.php | 96 + .../oss-v2/src/Models/CopyResult.php | 68 + .../oss-v2/src/Models/CreateAccessPoint.php | 46 + .../Models/CreateAccessPointConfiguration.php | 55 + .../src/Models/CreateAccessPointRequest.php | 49 + .../src/Models/CreateAccessPointResult.php | 33 + .../src/Models/CreateBucketConfiguration.php | 45 + ...eBucketDataRedundancyTransitionRequest.php | 49 + ...teBucketDataRedundancyTransitionResult.php | 33 + .../src/Models/CreateCnameTokenRequest.php | 49 + .../src/Models/CreateCnameTokenResult.php | 33 + .../oss-v2/src/Models/DataRedundancyType.php | 25 + .../alibabacloud/oss-v2/src/Models/Delete.php | 44 + .../Models/DeleteAccessPointPolicyRequest.php | 49 + .../Models/DeleteAccessPointPolicyResult.php | 15 + .../src/Models/DeleteAccessPointRequest.php | 49 + .../src/Models/DeleteAccessPointResult.php | 15 + .../src/Models/DeleteBucketCorsRequest.php | 38 + .../src/Models/DeleteBucketCorsResult.php | 15 + ...eBucketDataRedundancyTransitionRequest.php | 49 + ...teBucketDataRedundancyTransitionResult.php | 15 + .../Models/DeleteBucketEncryptionRequest.php | 38 + .../Models/DeleteBucketEncryptionResult.php | 15 + .../Models/DeleteBucketInventoryRequest.php | 49 + .../Models/DeleteBucketInventoryResult.php | 15 + .../Models/DeleteBucketLifecycleRequest.php | 38 + .../Models/DeleteBucketLifecycleResult.php | 15 + .../src/Models/DeleteBucketLoggingRequest.php | 38 + .../src/Models/DeleteBucketLoggingResult.php | 15 + .../DeleteBucketOverwriteConfigRequest.php | 38 + .../DeleteBucketOverwriteConfigResult.php | 15 + .../src/Models/DeleteBucketPolicyRequest.php | 38 + .../src/Models/DeleteBucketPolicyResult.php | 15 + .../DeleteBucketPublicAccessBlockRequest.php | 38 + .../DeleteBucketPublicAccessBlockResult.php | 15 + .../Models/DeleteBucketReplicationRequest.php | 49 + .../Models/DeleteBucketReplicationResult.php | 15 + .../oss-v2/src/Models/DeleteBucketRequest.php | 35 + .../oss-v2/src/Models/DeleteBucketResult.php | 16 + .../src/Models/DeleteBucketTagsRequest.php | 47 + .../src/Models/DeleteBucketTagsResult.php | 15 + .../src/Models/DeleteBucketWebsiteRequest.php | 38 + .../src/Models/DeleteBucketWebsiteResult.php | 15 + .../oss-v2/src/Models/DeleteCnameRequest.php | 49 + .../oss-v2/src/Models/DeleteCnameResult.php | 15 + .../src/Models/DeleteMarkerProperties.php | 75 + .../Models/DeleteMultipleObjectsRequest.php | 83 + .../Models/DeleteMultipleObjectsResult.php | 41 + .../oss-v2/src/Models/DeleteObject.php | 44 + .../oss-v2/src/Models/DeleteObjectRequest.php | 62 + .../oss-v2/src/Models/DeleteObjectResult.php | 41 + .../src/Models/DeleteObjectTaggingRequest.php | 62 + .../src/Models/DeleteObjectTaggingResult.php | 32 + .../Models/DeletePublicAccessBlockRequest.php | 25 + .../Models/DeletePublicAccessBlockResult.php | 15 + .../oss-v2/src/Models/DeleteStyleRequest.php | 49 + .../oss-v2/src/Models/DeleteStyleResult.php | 15 + ...eleteUserDefinedLogFieldsConfigRequest.php | 37 + ...DeleteUserDefinedLogFieldsConfigResult.php | 15 + .../oss-v2/src/Models/DeletedInfo.php | 65 + .../src/Models/DescribeRegionsRequest.php | 36 + .../src/Models/DescribeRegionsResult.php | 32 + .../oss-v2/src/Models/DoMetaQueryRequest.php | 59 + .../oss-v2/src/Models/DoMetaQueryResult.php | 54 + .../oss-v2/src/Models/DownloadResult.php | 29 + .../oss-v2/src/Models/EncodeType.php | 14 + .../src/Models/EncryptionMultipartContext.php | 55 + .../oss-v2/src/Models/ErrorDocument.php | 46 + .../src/Models/ExtendBucketWormRequest.php | 60 + .../src/Models/ExtendBucketWormResult.php | 15 + .../src/Models/ExtendWormConfiguration.php | 35 + .../oss-v2/src/Models/GetAccessPoint.php | 135 + .../Models/GetAccessPointPolicyRequest.php | 49 + .../src/Models/GetAccessPointPolicyResult.php | 30 + .../src/Models/GetAccessPointRequest.php | 49 + .../src/Models/GetAccessPointResult.php | 33 + .../Models/GetBucketAccessMonitorRequest.php | 38 + .../Models/GetBucketAccessMonitorResult.php | 33 + .../oss-v2/src/Models/GetBucketAclRequest.php | 35 + .../oss-v2/src/Models/GetBucketAclResult.php | 42 + .../GetBucketArchiveDirectReadRequest.php | 38 + .../GetBucketArchiveDirectReadResult.php | 34 + .../src/Models/GetBucketCorsRequest.php | 38 + .../oss-v2/src/Models/GetBucketCorsResult.php | 34 + ...tBucketDataRedundancyTransitionRequest.php | 49 + ...etBucketDataRedundancyTransitionResult.php | 33 + .../src/Models/GetBucketEncryptionRequest.php | 38 + .../src/Models/GetBucketEncryptionResult.php | 33 + .../Models/GetBucketHttpsConfigRequest.php | 38 + .../src/Models/GetBucketHttpsConfigResult.php | 33 + .../src/Models/GetBucketInfoRequest.php | 35 + .../oss-v2/src/Models/GetBucketInfoResult.php | 32 + .../src/Models/GetBucketInventoryRequest.php | 49 + .../src/Models/GetBucketInventoryResult.php | 33 + .../src/Models/GetBucketLifecycleRequest.php | 38 + .../src/Models/GetBucketLifecycleResult.php | 34 + .../src/Models/GetBucketLocationRequest.php | 35 + .../src/Models/GetBucketLocationResult.php | 32 + .../src/Models/GetBucketLoggingRequest.php | 38 + .../src/Models/GetBucketLoggingResult.php | 33 + .../GetBucketOverwriteConfigRequest.php | 38 + .../Models/GetBucketOverwriteConfigResult.php | 33 + .../src/Models/GetBucketPolicyRequest.php | 38 + .../src/Models/GetBucketPolicyResult.php | 30 + .../Models/GetBucketPolicyStatusRequest.php | 38 + .../Models/GetBucketPolicyStatusResult.php | 33 + .../GetBucketPublicAccessBlockRequest.php | 37 + .../GetBucketPublicAccessBlockResult.php | 34 + .../src/Models/GetBucketRefererRequest.php | 38 + .../src/Models/GetBucketRefererResult.php | 34 + .../GetBucketReplicationLocationRequest.php | 38 + .../GetBucketReplicationLocationResult.php | 33 + .../GetBucketReplicationProgressRequest.php | 49 + .../GetBucketReplicationProgressResult.php | 33 + .../Models/GetBucketReplicationRequest.php | 38 + .../src/Models/GetBucketReplicationResult.php | 33 + .../Models/GetBucketRequestPaymentRequest.php | 38 + .../Models/GetBucketRequestPaymentResult.php | 33 + .../Models/GetBucketResourceGroupRequest.php | 38 + .../Models/GetBucketResourceGroupResult.php | 33 + .../src/Models/GetBucketStatRequest.php | 35 + .../oss-v2/src/Models/GetBucketStatResult.php | 212 ++ .../src/Models/GetBucketTagsRequest.php | 38 + .../oss-v2/src/Models/GetBucketTagsResult.php | 33 + .../GetBucketTransferAccelerationRequest.php | 38 + .../GetBucketTransferAccelerationResult.php | 34 + .../src/Models/GetBucketVersioningRequest.php | 35 + .../src/Models/GetBucketVersioningResult.php | 32 + .../src/Models/GetBucketWebsiteRequest.php | 38 + .../src/Models/GetBucketWebsiteResult.php | 33 + .../src/Models/GetBucketWormRequest.php | 38 + .../oss-v2/src/Models/GetBucketWormResult.php | 33 + .../src/Models/GetCnameTokenRequest.php | 49 + .../oss-v2/src/Models/GetCnameTokenResult.php | 33 + .../src/Models/GetMetaQueryStatusRequest.php | 38 + .../src/Models/GetMetaQueryStatusResult.php | 33 + .../oss-v2/src/Models/GetObjectAclRequest.php | 62 + .../oss-v2/src/Models/GetObjectAclResult.php | 45 + .../src/Models/GetObjectMetaRequest.php | 62 + .../oss-v2/src/Models/GetObjectMetaResult.php | 76 + .../oss-v2/src/Models/GetObjectRequest.php | 208 ++ .../oss-v2/src/Models/GetObjectResult.php | 257 ++ .../src/Models/GetObjectTaggingRequest.php | 62 + .../src/Models/GetObjectTaggingResult.php | 34 + .../Models/GetPublicAccessBlockRequest.php | 28 + .../src/Models/GetPublicAccessBlockResult.php | 34 + .../oss-v2/src/Models/GetStyleRequest.php | 49 + .../oss-v2/src/Models/GetStyleResult.php | 33 + .../oss-v2/src/Models/GetSymlinkRequest.php | 62 + .../oss-v2/src/Models/GetSymlinkResult.php | 52 + .../GetUserDefinedLogFieldsConfigRequest.php | 38 + .../GetUserDefinedLogFieldsConfigResult.php | 33 + .../oss-v2/src/Models/HeadObjectRequest.php | 98 + .../oss-v2/src/Models/HeadObjectResult.php | 300 ++ .../HistoricalObjectReplicationType.php | 15 + .../oss-v2/src/Models/HttpsConfiguration.php | 44 + .../oss-v2/src/Models/IndexDocument.php | 56 + .../src/Models/InitiateBucketWormRequest.php | 49 + .../src/Models/InitiateBucketWormResult.php | 33 + .../Models/InitiateMultipartUploadRequest.php | 219 ++ .../Models/InitiateMultipartUploadResult.php | 68 + .../src/Models/InitiateWormConfiguration.php | 35 + .../src/Models/InventoryConfiguration.php | 95 + .../src/Models/InventoryDestination.php | 35 + .../oss-v2/src/Models/InventoryEncryption.php | 45 + .../oss-v2/src/Models/InventoryFilter.php | 85 + .../oss-v2/src/Models/InventoryFormatType.php | 14 + .../src/Models/InventoryFrequencyType.php | 15 + .../Models/InventoryOSSBucketDestination.php | 86 + .../src/Models/InventoryOptionalFieldType.php | 20 + .../oss-v2/src/Models/InventorySchedule.php | 36 + .../src/Models/LifecycleConfiguration.php | 36 + .../oss-v2/src/Models/LifecycleRule.php | 136 + .../LifecycleRuleAbortMultipartUpload.php | 46 + .../src/Models/LifecycleRuleExpiration.php | 56 + .../oss-v2/src/Models/LifecycleRuleFilter.php | 56 + .../oss-v2/src/Models/LifecycleRuleNot.php | 46 + .../src/Models/LifecycleRuleTransition.php | 87 + .../oss-v2/src/Models/ListAccessPoints.php | 75 + .../src/Models/ListAccessPointsRequest.php | 58 + .../src/Models/ListAccessPointsResult.php | 33 + .../ListBucketDataRedundancyTransition.php | 34 + ...tBucketDataRedundancyTransitionRequest.php | 37 + ...stBucketDataRedundancyTransitionResult.php | 33 + .../src/Models/ListBucketInventoryRequest.php | 48 + .../src/Models/ListBucketInventoryResult.php | 34 + .../oss-v2/src/Models/ListBucketsRequest.php | 94 + .../oss-v2/src/Models/ListBucketsResult.php | 85 + .../oss-v2/src/Models/ListCloudBoxes.php | 97 + .../src/Models/ListCloudBoxesRequest.php | 57 + .../src/Models/ListCloudBoxesResult.php | 33 + .../oss-v2/src/Models/ListCnameRequest.php | 38 + .../oss-v2/src/Models/ListCnameResult.php | 54 + .../ListInventoryConfigurationsResult.php | 55 + .../Models/ListMultipartUploadsRequest.php | 99 + .../src/Models/ListMultipartUploadsResult.php | 122 + .../src/Models/ListObjectVersionsRequest.php | 99 + .../src/Models/ListObjectVersionsResult.php | 141 + .../oss-v2/src/Models/ListObjectsRequest.php | 91 + .../oss-v2/src/Models/ListObjectsResult.php | 113 + .../src/Models/ListObjectsV2Request.php | 109 + .../oss-v2/src/Models/ListObjectsV2Result.php | 131 + .../oss-v2/src/Models/ListPartsRequest.php | 89 + .../oss-v2/src/Models/ListPartsResult.php | 115 + .../oss-v2/src/Models/ListStyleRequest.php | 38 + .../oss-v2/src/Models/ListStyleResult.php | 33 + ...istUserDataRedundancyTransitionRequest.php | 45 + ...ListUserDataRedundancyTransitionResult.php | 32 + .../src/Models/LocationRTCConstraint.php | 35 + .../src/Models/LocationTransferType.php | 44 + .../Models/LocationTransferTypeConstraint.php | 35 + .../oss-v2/src/Models/LoggingEnabled.php | 56 + .../oss-v2/src/Models/LoggingHeaderSet.php | 35 + .../oss-v2/src/Models/LoggingParamSet.php | 35 + .../oss-v2/src/Models/MetaQuery.php | 106 + .../oss-v2/src/Models/MetaQueryAddress.php | 95 + .../oss-v2/src/Models/MetaQueryAddresses.php | 34 + .../src/Models/MetaQueryAggregation.php | 65 + .../src/Models/MetaQueryAggregations.php | 34 + .../src/Models/MetaQueryAudioStream.php | 95 + .../src/Models/MetaQueryAudioStreams.php | 34 + .../oss-v2/src/Models/MetaQueryFile.php | 481 +++ .../oss-v2/src/Models/MetaQueryFiles.php | 34 + .../oss-v2/src/Models/MetaQueryGroup.php | 45 + .../oss-v2/src/Models/MetaQueryGroups.php | 35 + .../oss-v2/src/Models/MetaQueryMediaTypes.php | 35 + .../oss-v2/src/Models/MetaQueryOrderType.php | 15 + .../oss-v2/src/Models/MetaQueryOssTagging.php | 34 + .../src/Models/MetaQueryOssUserMeta.php | 34 + .../oss-v2/src/Models/MetaQueryStatus.php | 65 + .../oss-v2/src/Models/MetaQuerySubtitle.php | 65 + .../oss-v2/src/Models/MetaQuerySubtitles.php | 34 + .../oss-v2/src/Models/MetaQueryTagging.php | 45 + .../oss-v2/src/Models/MetaQueryUserMeta.php | 44 + .../src/Models/MetaQueryVideoStream.php | 145 + .../src/Models/MetaQueryVideoStreams.php | 34 + .../oss-v2/src/Models/MirrorAuth.php | 65 + .../oss-v2/src/Models/MirrorHeaderSet.php | 46 + .../oss-v2/src/Models/MirrorHeaders.php | 66 + .../src/Models/MirrorMultiAlternate.php | 65 + .../src/Models/MirrorMultiAlternates.php | 35 + .../oss-v2/src/Models/MirrorReturnHeaders.php | 35 + .../oss-v2/src/Models/MirrorTagging.php | 45 + .../oss-v2/src/Models/MirrorTaggings.php | 35 + .../Models/NoncurrentVersionExpiration.php | 36 + .../Models/NoncurrentVersionTransition.php | 77 + .../oss-v2/src/Models/ObjectACLType.php | 34 + .../oss-v2/src/Models/ObjectIdentifier.php | 45 + .../oss-v2/src/Models/ObjectProperties.php | 116 + .../src/Models/ObjectVersionProperties.php | 137 + .../src/Models/OpenMetaQueryRequest.php | 48 + .../oss-v2/src/Models/OpenMetaQueryResult.php | 15 + .../oss-v2/src/Models/OptionObjectRequest.php | 81 + .../oss-v2/src/Models/OptionObjectResult.php | 67 + .../oss-v2/src/Models/OptionalFields.php | 35 + .../src/Models/OverwriteConfiguration.php | 35 + .../oss-v2/src/Models/OverwritePrincipals.php | 35 + .../oss-v2/src/Models/OverwriteRule.php | 75 + .../alibabacloud/oss-v2/src/Models/Owner.php | 45 + .../alibabacloud/oss-v2/src/Models/Part.php | 77 + .../oss-v2/src/Models/PolicyStatus.php | 35 + .../oss-v2/src/Models/PresignResult.php | 56 + .../src/Models/ProcessObjectRequest.php | 62 + .../oss-v2/src/Models/ProcessObjectResult.php | 59 + .../Models/PublicAccessBlockConfiguration.php | 35 + .../Models/PutAccessPointPolicyRequest.php | 60 + .../src/Models/PutAccessPointPolicyResult.php | 15 + .../Models/PutBucketAccessMonitorRequest.php | 49 + .../Models/PutBucketAccessMonitorResult.php | 15 + .../oss-v2/src/Models/PutBucketAclRequest.php | 45 + .../oss-v2/src/Models/PutBucketAclResult.php | 16 + .../PutBucketArchiveDirectReadRequest.php | 49 + .../PutBucketArchiveDirectReadResult.php | 15 + .../src/Models/PutBucketCorsRequest.php | 49 + .../oss-v2/src/Models/PutBucketCorsResult.php | 15 + .../src/Models/PutBucketEncryptionRequest.php | 49 + .../src/Models/PutBucketEncryptionResult.php | 15 + .../Models/PutBucketHttpsConfigRequest.php | 49 + .../src/Models/PutBucketHttpsConfigResult.php | 15 + .../src/Models/PutBucketInventoryRequest.php | 60 + .../src/Models/PutBucketInventoryResult.php | 15 + .../src/Models/PutBucketLifecycleRequest.php | 59 + .../src/Models/PutBucketLifecycleResult.php | 15 + .../src/Models/PutBucketLoggingRequest.php | 49 + .../src/Models/PutBucketLoggingResult.php | 15 + .../PutBucketOverwriteConfigRequest.php | 49 + .../Models/PutBucketOverwriteConfigResult.php | 15 + .../src/Models/PutBucketPolicyRequest.php | 49 + .../src/Models/PutBucketPolicyResult.php | 15 + .../PutBucketPublicAccessBlockRequest.php | 49 + .../PutBucketPublicAccessBlockResult.php | 15 + .../src/Models/PutBucketRefererRequest.php | 49 + .../src/Models/PutBucketRefererResult.php | 15 + .../Models/PutBucketReplicationRequest.php | 49 + .../src/Models/PutBucketReplicationResult.php | 32 + .../oss-v2/src/Models/PutBucketRequest.php | 63 + .../Models/PutBucketRequestPaymentRequest.php | 49 + .../Models/PutBucketRequestPaymentResult.php | 15 + .../Models/PutBucketResourceGroupRequest.php | 49 + .../Models/PutBucketResourceGroupResult.php | 15 + .../oss-v2/src/Models/PutBucketResult.php | 16 + .../oss-v2/src/Models/PutBucketRtcRequest.php | 49 + .../oss-v2/src/Models/PutBucketRtcResult.php | 15 + .../src/Models/PutBucketTagsRequest.php | 49 + .../oss-v2/src/Models/PutBucketTagsResult.php | 15 + .../PutBucketTransferAccelerationRequest.php | 49 + .../PutBucketTransferAccelerationResult.php | 15 + .../src/Models/PutBucketVersioningRequest.php | 44 + .../src/Models/PutBucketVersioningResult.php | 16 + .../src/Models/PutBucketWebsiteRequest.php | 49 + .../src/Models/PutBucketWebsiteResult.php | 15 + .../oss-v2/src/Models/PutCnameRequest.php | 49 + .../oss-v2/src/Models/PutCnameResult.php | 15 + .../oss-v2/src/Models/PutObjectAclRequest.php | 74 + .../oss-v2/src/Models/PutObjectAclResult.php | 30 + .../oss-v2/src/Models/PutObjectRequest.php | 253 ++ .../oss-v2/src/Models/PutObjectResult.php | 69 + .../src/Models/PutObjectTaggingRequest.php | 71 + .../src/Models/PutObjectTaggingResult.php | 32 + .../Models/PutPublicAccessBlockRequest.php | 39 + .../src/Models/PutPublicAccessBlockResult.php | 15 + .../oss-v2/src/Models/PutStyleRequest.php | 70 + .../oss-v2/src/Models/PutStyleResult.php | 15 + .../oss-v2/src/Models/PutSymlinkRequest.php | 107 + .../oss-v2/src/Models/PutSymlinkResult.php | 32 + .../PutUserDefinedLogFieldsConfigRequest.php | 49 + .../PutUserDefinedLogFieldsConfigResult.php | 15 + .../oss-v2/src/Models/RefererBlacklist.php | 35 + .../src/Models/RefererConfiguration.php | 75 + .../oss-v2/src/Models/RefererList.php | 35 + .../oss-v2/src/Models/RegionInfo.php | 66 + .../src/Models/ReplicationConfiguration.php | 35 + .../src/Models/ReplicationDestination.php | 56 + .../ReplicationEncryptionConfiguration.php | 34 + .../oss-v2/src/Models/ReplicationLocation.php | 55 + .../src/Models/ReplicationPrefixSet.php | 35 + .../oss-v2/src/Models/ReplicationProgress.php | 35 + .../Models/ReplicationProgressInformation.php | 44 + .../src/Models/ReplicationProgressRule.php | 95 + .../oss-v2/src/Models/ReplicationRule.php | 126 + .../oss-v2/src/Models/ReplicationRules.php | 35 + .../ReplicationSourceSelectionCriteria.php | 35 + .../src/Models/ReplicationTimeControl.php | 35 + .../Models/RequestPaymentConfiguration.php | 35 + .../src/Models/RestoreObjectRequest.php | 71 + .../oss-v2/src/Models/RestoreObjectResult.php | 42 + .../oss-v2/src/Models/RestoreRequest.php | 43 + .../oss-v2/src/Models/ReturnHeader.php | 45 + .../oss-v2/src/Models/RoutingRule.php | 64 + .../src/Models/RoutingRuleCondition.php | 66 + .../src/Models/RoutingRuleIncludeHeader.php | 66 + .../src/Models/RoutingRuleLuaConfig.php | 35 + .../oss-v2/src/Models/RoutingRuleRedirect.php | 403 +++ .../oss-v2/src/Models/RoutingRules.php | 35 + .../oss-v2/src/Models/RtcConfiguration.php | 45 + .../alibabacloud/oss-v2/src/Models/SSEKMS.php | 35 + .../src/Models/SealAppendObjectRequest.php | 52 + .../src/Models/SealAppendObjectResult.php | 30 + .../src/Models/ServerSideEncryptionRule.php | 36 + .../Models/ServerSideEncryptionRuleInfo.php | 55 + .../src/Models/SseKmsEncryptedObjects.php | 36 + .../oss-v2/src/Models/StatusType.php | 16 + .../oss-v2/src/Models/StorageClassType.php | 43 + .../oss-v2/src/Models/StyleContent.php | 35 + .../oss-v2/src/Models/StyleInfo.php | 75 + .../oss-v2/src/Models/StyleList.php | 35 + vendor/alibabacloud/oss-v2/src/Models/TLS.php | 44 + vendor/alibabacloud/oss-v2/src/Models/Tag.php | 40 + .../alibabacloud/oss-v2/src/Models/TagSet.php | 36 + .../oss-v2/src/Models/Tagging.php | 35 + .../TransferAccelerationConfiguration.php | 35 + .../oss-v2/src/Models/TransferType.php | 16 + .../oss-v2/src/Models/TransferTypes.php | 35 + .../alibabacloud/oss-v2/src/Models/Upload.php | 56 + .../oss-v2/src/Models/UploadPart.php | 47 + .../src/Models/UploadPartCopyRequest.php | 152 + .../src/Models/UploadPartCopyResult.php | 51 + .../oss-v2/src/Models/UploadPartRequest.php | 193 ++ .../oss-v2/src/Models/UploadPartResult.php | 51 + .../oss-v2/src/Models/UploadResult.php | 74 + .../UserDefinedLogFieldsConfiguration.php | 46 + .../src/Models/VersioningConfiguration.php | 36 + .../src/Models/WebsiteConfiguration.php | 56 + .../oss-v2/src/Models/WormConfiguration.php | 77 + .../oss-v2/src/OperationInput.php | 180 + .../oss-v2/src/OperationOutput.php | 103 + .../src/Paginator/ListBucketsPaginator.php | 85 + .../ListMultipartUploadsPaginator.php | 89 + .../Paginator/ListObjectVersionsPaginator.php | 89 + .../src/Paginator/ListObjectsPaginator.php | 85 + .../src/Paginator/ListObjectsV2Paginator.php | 85 + .../src/Paginator/ListPartsPaginator.php | 85 + .../oss-v2/src/Paginator/Paginator.php | 40 + .../oss-v2/src/ProgressStream.php | 73 + .../src/Retry/BackoffDelayerInterface.php | 17 + .../oss-v2/src/Retry/ClientErrorRetryable.php | 41 + .../oss-v2/src/Retry/EqualJitterBackoff.php | 54 + .../src/Retry/ErrorRetryableInterface.php | 11 + .../oss-v2/src/Retry/FixedDelayBackoff.php | 38 + .../oss-v2/src/Retry/FullJitterBackoff.php | 51 + .../src/Retry/HTTPStatusCodeRetryable.php | 27 + .../oss-v2/src/Retry/NopRetryer.php | 23 + .../oss-v2/src/Retry/RetryerInterface.php | 15 + .../src/Retry/ServiceErrorCodeRetryable.php | 26 + .../oss-v2/src/Retry/StandardRetryer.php | 64 + .../oss-v2/src/RetryMiddleware.php | 138 + vendor/alibabacloud/oss-v2/src/Serializer.php | 265 ++ .../oss-v2/src/Signer/NopSigner.php | 13 + .../oss-v2/src/Signer/SignerInterface.php | 24 + .../oss-v2/src/Signer/SignerV1.php | 209 ++ .../oss-v2/src/Signer/SignerV4.php | 317 ++ .../oss-v2/src/Signer/SigningContext.php | 115 + .../oss-v2/src/SinkStreamWrapper.php | 91 + .../oss-v2/src/Transform/AccessPoint.php | 260 ++ .../src/Transform/BucketAccessMonitor.php | 83 + .../src/Transform/BucketArchiveDirectRead.php | 87 + .../oss-v2/src/Transform/BucketBasic.php | 958 ++++++ .../oss-v2/src/Transform/BucketCname.php | 195 ++ .../oss-v2/src/Transform/BucketCors.php | 155 + .../oss-v2/src/Transform/BucketEncryption.php | 120 + .../src/Transform/BucketHttpsConfig.php | 87 + .../oss-v2/src/Transform/BucketInventory.php | 156 + .../oss-v2/src/Transform/BucketLifecycle.php | 118 + .../oss-v2/src/Transform/BucketLogging.php | 217 ++ .../oss-v2/src/Transform/BucketMetaQuery.php | 159 + .../src/Transform/BucketOverwriteConfig.php | 120 + .../oss-v2/src/Transform/BucketPolicy.php | 155 + .../src/Transform/BucketPublicAccessBlock.php | 120 + .../Transform/BucketRedundancyTransition.php | 194 ++ .../oss-v2/src/Transform/BucketReferer.php | 87 + .../src/Transform/BucketReplication.php | 230 ++ .../src/Transform/BucketRequestPayment.php | 87 + .../src/Transform/BucketResourceGroup.php | 87 + .../oss-v2/src/Transform/BucketStyle.php | 156 + .../oss-v2/src/Transform/BucketTags.php | 120 + .../Transform/BucketTransferAcceleration.php | 87 + .../oss-v2/src/Transform/BucketWebsite.php | 118 + .../oss-v2/src/Transform/BucketWorm.php | 181 + .../oss-v2/src/Transform/CloudBoxes.php | 53 + .../oss-v2/src/Transform/Functions.php | 367 +++ .../oss-v2/src/Transform/ObjectBasic.php | 1690 ++++++++++ .../oss-v2/src/Transform/ObjectMultipart.php | 616 ++++ .../src/Transform/PublicAccessBlock.php | 117 + .../alibabacloud/oss-v2/src/Types/Model.php | 8 + .../oss-v2/src/Types/ModelTrait.php | 26 + .../oss-v2/src/Types/RequestModel.php | 34 + .../oss-v2/src/Types/ResultModel.php | 39 + vendor/alibabacloud/oss-v2/src/Uploader.php | 399 +++ vendor/alibabacloud/oss-v2/src/Utils.php | 409 +++ vendor/alibabacloud/oss-v2/src/Validation.php | 56 + vendor/alibabacloud/oss-v2/src/Version.php | 14 + .../oss-v2/tests/Data/enc-example.jpg | Bin 0 -> 21839 bytes .../oss-v2/tests/Data/example.jpg | Bin 0 -> 21839 bytes .../ClientAccessPointTest.php | 242 ++ .../ClientBucketAccessMonitorTest.php | 80 + .../ClientBucketArchiveDirectReadTest.php | 81 + .../ClientBucketBasicTest.php | 514 +++ .../ClientBucketCnameTest.php | 166 + .../IntegrationTests/ClientBucketCorsTest.php | 159 + ...ientBucketDataRedundancyTransitionTest.php | 147 + .../ClientBucketEncryptionTest.php | 109 + .../ClientBucketHttpsConfigTest.php | 116 + .../ClientBucketInventoryTest.php | 190 ++ .../ClientBucketLifecycleTest.php | 127 + .../ClientBucketLoggingTest.php | 188 ++ .../ClientBucketMetaQueryTest.php | 184 ++ .../ClientBucketOverwriteTest.php | 112 + .../ClientBucketPolicyTest.php | 136 + .../ClientBucketPublicAccessBlockTest.php | 90 + .../ClientBucketRefererTest.php | 83 + .../ClientBucketReplicationTest.php | 246 ++ .../ClientBucketRequestPaymentTest.php | 80 + .../ClientBucketResourceGroupTest.php | 78 + .../ClientBucketStyleTest.php | 128 + .../IntegrationTests/ClientBucketTagsTest.php | 109 + .../ClientBucketTransferAccelerationTest.php | 81 + .../ClientBucketWebsiteTest.php | 242 ++ .../IntegrationTests/ClientBucketWormTest.php | 183 ++ .../IntegrationTests/ClientExtensionTest.php | 1010 ++++++ .../ClientListCloudBoxesTest.php | 57 + .../tests/IntegrationTests/ClientMiscTest.php | 380 +++ .../ClientObjectBasicTest.php | 634 ++++ .../ClientObjectMultipartTest.php | 433 +++ .../IntegrationTests/ClientPaginatorTest.php | 774 +++++ .../IntegrationTests/ClientPresignerTest.php | 507 +++ .../ClientPublicAccessBlockTest.php | 88 + .../IntegrationTests/EncryptionClientTest.php | 1045 ++++++ .../IntegrationTests/TestIntegration.php | 402 +++ .../UnitTests/Annotation/AnnotationTest.php | 80 + .../UnitTests/Annotation/ModelObject.php | 39 + .../tests/UnitTests/Annotation/XmlObject.php | 39 + .../oss-v2/tests/UnitTests/ClientImplTest.php | 2282 +++++++++++++ .../UnitTests/Credentials/CredentialsTest.php | 84 + .../UnitTests/Crypto/AesCtrCipherTest.php | 218 ++ .../UnitTests/Crypto/MasterRsaCipherTest.php | 113 + .../tests/UnitTests/Crypto/enc-example.jpg | Bin 0 -> 21839 bytes .../oss-v2/tests/UnitTests/Crypto/example.jpg | Bin 0 -> 21839 bytes .../tests/UnitTests/DeserializerTest.php | 632 ++++ .../UnitTests/Exception/ExceptionTest.php | 15 + .../Fixtures/BaiscTypeLackAnnotationXml.php | 32 + .../UnitTests/Fixtures/BaiscTypeListXml.php | 36 + .../tests/UnitTests/Fixtures/BaiscTypeXml.php | 36 + .../UnitTests/Fixtures/DatetimeTypeXml.php | 36 + .../UnitTests/Fixtures/MixedTypeListXml.php | 30 + .../tests/UnitTests/Fixtures/MixedTypeXml.php | 38 + .../UnitTests/Fixtures/NoRewindStream.php | 23 + .../UnitTests/Fixtures/PutApiARequest.php | 44 + .../UnitTests/Fixtures/PutApiBRequest.php | 44 + .../UnitTests/Fixtures/PutApiBResult.php | 52 + .../UnitTests/Fixtures/PutApiRequest.php | 107 + .../tests/UnitTests/Fixtures/PutApiResult.php | 62 + .../UnitTests/Fixtures/RewindStatStream.php | 34 + .../UnitTests/Fixtures/RootConfiguration.php | 34 + .../UnitTests/Fixtures/SubConfiguration.php | 29 + .../tests/UnitTests/Retry/BackoffTest.php | 58 + .../UnitTests/Retry/ErrorRetryableTest.php | 72 + .../tests/UnitTests/Retry/RetryerTest.php | 76 + .../oss-v2/tests/UnitTests/SerializerTest.php | 722 ++++ .../tests/UnitTests/Signer/NopSignerTest.php | 18 + .../UnitTests/Signer/SignerContextTest.php | 26 + .../tests/UnitTests/Signer/SignerV1Test.php | 258 ++ .../tests/UnitTests/Signer/SignerV4Test.php | 618 ++++ .../UnitTests/Transform/AccessPointTest.php | 482 +++ .../Transform/BucketAccessMonitorTest.php | 115 + .../Transform/BucketArchiveDirectReadTest.php | 133 + .../UnitTests/Transform/BucketBasicTest.php | 2414 ++++++++++++++ .../UnitTests/Transform/BucketCnameTest.php | 377 +++ .../UnitTests/Transform/BucketCorsTest.php | 271 ++ .../Transform/BucketEncryptionTest.php | 232 ++ .../Transform/BucketHttpsConfigTest.php | 177 + .../Transform/BucketInventoryTest.php | 497 +++ .../Transform/BucketLifecycleTest.php | 538 +++ .../UnitTests/Transform/BucketLoggingTest.php | 354 ++ .../Transform/BucketMetaQueryTest.php | 639 ++++ .../Transform/BucketOverwriteConfigTest.php | 200 ++ .../UnitTests/Transform/BucketPolicyTest.php | 197 ++ .../Transform/BucketPublicAccessBlockTest.php | 155 + .../BucketRedundancyTransitionTest.php | 467 +++ .../UnitTests/Transform/BucketRefererTest.php | 200 ++ .../Transform/BucketReplicationTest.php | 428 +++ .../Transform/BucketRequestPaymentTest.php | 143 + .../Transform/BucketResourceGroupTest.php | 115 + .../UnitTests/Transform/BucketStyleTest.php | 274 ++ .../UnitTests/Transform/BucketTagsTest.php | 177 + .../BucketTransferAccelerationTest.php | 133 + .../UnitTests/Transform/BucketWebsiteTest.php | 590 ++++ .../UnitTests/Transform/BucketWormTest.php | 276 ++ .../UnitTests/Transform/CloudBoxesTest.php | 85 + .../UnitTests/Transform/FunctionsTest.php | 105 + .../UnitTests/Transform/ObjectBasicTest.php | 2903 +++++++++++++++++ .../Transform/ObjectMultipartTest.php | 1121 +++++++ .../Transform/PublicAccessBlockTest.php | 127 + .../oss-v2/tests/UnitTests/Types/ModelA.php | 30 + .../tests/UnitTests/Types/ModelPrivate.php | 41 + .../tests/UnitTests/Types/ModelTest.php | 112 + .../tests/UnitTests/Types/XmlModelA.php | 44 + .../oss-v2/tests/UnitTests/UtilsTest.php | 187 ++ .../oss-v2/tests/UnitTests/ValidationTest.php | 44 + vendor/autoload.php | 25 + vendor/bin/var-dump-server | 119 + vendor/bin/var-dump-server.bat | 5 + vendor/composer/ClassLoader.php | 579 ++++ vendor/composer/InstalledVersions.php | 359 ++ vendor/composer/LICENSE | 21 + vendor/composer/autoload_classmap.php | 10 + vendor/composer/autoload_files.php | 19 + vendor/composer/autoload_namespaces.php | 10 + vendor/composer/autoload_psr4.php | 30 + vendor/composer/autoload_real.php | 50 + vendor/composer/autoload_static.php | 182 ++ vendor/composer/installed.json | 1870 +++++++++++ vendor/composer/installed.php | 302 ++ vendor/composer/platform_check.php | 26 + vendor/guzzlehttp/guzzle/CHANGELOG.md | 1672 ++++++++++ vendor/guzzlehttp/guzzle/LICENSE | 27 + vendor/guzzlehttp/guzzle/README.md | 94 + vendor/guzzlehttp/guzzle/UPGRADING.md | 1253 +++++++ vendor/guzzlehttp/guzzle/composer.json | 131 + .../guzzlehttp/guzzle/src/BodySummarizer.php | 28 + .../guzzle/src/BodySummarizerInterface.php | 13 + vendor/guzzlehttp/guzzle/src/Client.php | 483 +++ .../guzzlehttp/guzzle/src/ClientInterface.php | 84 + vendor/guzzlehttp/guzzle/src/ClientTrait.php | 241 ++ .../guzzle/src/Cookie/CookieJar.php | 307 ++ .../guzzle/src/Cookie/CookieJarInterface.php | 80 + .../guzzle/src/Cookie/FileCookieJar.php | 101 + .../guzzle/src/Cookie/SessionCookieJar.php | 77 + .../guzzle/src/Cookie/SetCookie.php | 492 +++ .../src/Exception/BadResponseException.php | 39 + .../guzzle/src/Exception/ClientException.php | 10 + .../guzzle/src/Exception/ConnectException.php | 56 + .../guzzle/src/Exception/GuzzleException.php | 9 + .../Exception/InvalidArgumentException.php | 7 + .../guzzle/src/Exception/RequestException.php | 150 + .../guzzle/src/Exception/ServerException.php | 10 + .../Exception/TooManyRedirectsException.php | 7 + .../src/Exception/TransferException.php | 7 + .../guzzle/src/Handler/CurlFactory.php | 736 +++++ .../src/Handler/CurlFactoryInterface.php | 25 + .../guzzle/src/Handler/CurlHandler.php | 49 + .../guzzle/src/Handler/CurlMultiHandler.php | 284 ++ .../guzzle/src/Handler/EasyHandle.php | 112 + .../guzzle/src/Handler/HeaderProcessor.php | 42 + .../guzzle/src/Handler/MockHandler.php | 212 ++ .../guzzlehttp/guzzle/src/Handler/Proxy.php | 51 + .../guzzle/src/Handler/StreamHandler.php | 627 ++++ vendor/guzzlehttp/guzzle/src/HandlerStack.php | 275 ++ .../guzzle/src/MessageFormatter.php | 199 ++ .../guzzle/src/MessageFormatterInterface.php | 18 + vendor/guzzlehttp/guzzle/src/Middleware.php | 268 ++ vendor/guzzlehttp/guzzle/src/Pool.php | 125 + .../guzzle/src/PrepareBodyMiddleware.php | 105 + .../guzzle/src/RedirectMiddleware.php | 228 ++ .../guzzlehttp/guzzle/src/RequestOptions.php | 274 ++ .../guzzlehttp/guzzle/src/RetryMiddleware.php | 119 + .../guzzlehttp/guzzle/src/TransferStats.php | 133 + vendor/guzzlehttp/guzzle/src/Utils.php | 384 +++ vendor/guzzlehttp/guzzle/src/functions.php | 167 + .../guzzle/src/functions_include.php | 6 + vendor/guzzlehttp/promises/CHANGELOG.md | 180 + vendor/guzzlehttp/promises/LICENSE | 24 + vendor/guzzlehttp/promises/README.md | 559 ++++ vendor/guzzlehttp/promises/composer.json | 58 + .../promises/src/AggregateException.php | 19 + .../promises/src/CancellationException.php | 12 + vendor/guzzlehttp/promises/src/Coroutine.php | 162 + vendor/guzzlehttp/promises/src/Create.php | 79 + vendor/guzzlehttp/promises/src/Each.php | 81 + .../guzzlehttp/promises/src/EachPromise.php | 248 ++ .../promises/src/FulfilledPromise.php | 89 + vendor/guzzlehttp/promises/src/Is.php | 40 + vendor/guzzlehttp/promises/src/Promise.php | 281 ++ .../promises/src/PromiseInterface.php | 91 + .../promises/src/PromisorInterface.php | 16 + .../promises/src/RejectedPromise.php | 95 + .../promises/src/RejectionException.php | 49 + vendor/guzzlehttp/promises/src/TaskQueue.php | 71 + .../promises/src/TaskQueueInterface.php | 24 + vendor/guzzlehttp/promises/src/Utils.php | 261 ++ vendor/guzzlehttp/psr7/CHANGELOG.md | 475 +++ vendor/guzzlehttp/psr7/LICENSE | 26 + vendor/guzzlehttp/psr7/README.md | 887 +++++ vendor/guzzlehttp/psr7/composer.json | 93 + vendor/guzzlehttp/psr7/src/AppendStream.php | 248 ++ vendor/guzzlehttp/psr7/src/BufferStream.php | 147 + vendor/guzzlehttp/psr7/src/CachingStream.php | 153 + vendor/guzzlehttp/psr7/src/DroppingStream.php | 49 + .../src/Exception/MalformedUriException.php | 14 + vendor/guzzlehttp/psr7/src/FnStream.php | 180 + vendor/guzzlehttp/psr7/src/Header.php | 134 + vendor/guzzlehttp/psr7/src/HttpFactory.php | 94 + vendor/guzzlehttp/psr7/src/InflateStream.php | 37 + vendor/guzzlehttp/psr7/src/LazyOpenStream.php | 49 + vendor/guzzlehttp/psr7/src/LimitStream.php | 157 + vendor/guzzlehttp/psr7/src/Message.php | 246 ++ vendor/guzzlehttp/psr7/src/MessageTrait.php | 265 ++ vendor/guzzlehttp/psr7/src/MimeType.php | 1259 +++++++ .../guzzlehttp/psr7/src/MultipartStream.php | 165 + vendor/guzzlehttp/psr7/src/NoSeekStream.php | 28 + vendor/guzzlehttp/psr7/src/PumpStream.php | 179 + vendor/guzzlehttp/psr7/src/Query.php | 118 + vendor/guzzlehttp/psr7/src/Request.php | 159 + vendor/guzzlehttp/psr7/src/Response.php | 161 + vendor/guzzlehttp/psr7/src/Rfc7230.php | 23 + vendor/guzzlehttp/psr7/src/ServerRequest.php | 340 ++ vendor/guzzlehttp/psr7/src/Stream.php | 283 ++ .../psr7/src/StreamDecoratorTrait.php | 156 + vendor/guzzlehttp/psr7/src/StreamWrapper.php | 207 ++ vendor/guzzlehttp/psr7/src/UploadedFile.php | 211 ++ vendor/guzzlehttp/psr7/src/Uri.php | 743 +++++ vendor/guzzlehttp/psr7/src/UriComparator.php | 52 + vendor/guzzlehttp/psr7/src/UriNormalizer.php | 220 ++ vendor/guzzlehttp/psr7/src/UriResolver.php | 211 ++ vendor/guzzlehttp/psr7/src/Utils.php | 477 +++ .../FallbackMimeTypeDetector.php | 52 + vendor/league/flysystem-local/LICENSE | 19 + .../LocalFilesystemAdapter.php | 485 +++ vendor/league/flysystem-local/composer.json | 25 + vendor/league/flysystem/INFO.md | 2 + vendor/league/flysystem/LICENSE | 19 + vendor/league/flysystem/composer.json | 72 + vendor/league/flysystem/readme.md | 61 + .../src/CalculateChecksumFromStream.php | 30 + .../src/ChecksumAlgoIsNotSupported.php | 11 + .../league/flysystem/src/ChecksumProvider.php | 14 + vendor/league/flysystem/src/Config.php | 57 + .../flysystem/src/CorruptedPathDetected.php | 13 + .../league/flysystem/src/DecoratedAdapter.php | 97 + .../flysystem/src/DirectoryAttributes.php | 87 + .../league/flysystem/src/DirectoryListing.php | 93 + .../league/flysystem/src/FileAttributes.php | 100 + vendor/league/flysystem/src/Filesystem.php | 290 ++ .../flysystem/src/FilesystemAdapter.php | 115 + .../flysystem/src/FilesystemException.php | 11 + .../src/FilesystemOperationFailed.php | 25 + .../flysystem/src/FilesystemOperator.php | 9 + .../league/flysystem/src/FilesystemReader.php | 85 + .../league/flysystem/src/FilesystemWriter.php | 58 + .../flysystem/src/InvalidStreamProvided.php | 11 + .../src/InvalidVisibilityProvided.php | 20 + vendor/league/flysystem/src/MountManager.php | 434 +++ .../league/flysystem/src/PathNormalizer.php | 10 + vendor/league/flysystem/src/PathPrefixer.php | 50 + .../flysystem/src/PathTraversalDetected.php | 25 + .../flysystem/src/PortableVisibilityGuard.php | 19 + .../src/ProxyArrayAccessToProperties.php | 62 + .../src/ResolveIdenticalPathConflict.php | 11 + .../flysystem/src/StorageAttributes.php | 40 + .../flysystem/src/SymbolicLinkEncountered.php | 25 + .../src/UnableToCheckDirectoryExistence.php | 13 + .../flysystem/src/UnableToCheckExistence.php | 26 + .../src/UnableToCheckFileExistence.php | 13 + .../league/flysystem/src/UnableToCopyFile.php | 62 + .../flysystem/src/UnableToCreateDirectory.php | 50 + .../flysystem/src/UnableToDeleteDirectory.php | 48 + .../flysystem/src/UnableToDeleteFile.php | 45 + .../src/UnableToGeneratePublicUrl.php | 26 + .../src/UnableToGenerateTemporaryUrl.php | 26 + .../flysystem/src/UnableToListContents.php | 24 + .../flysystem/src/UnableToMountFilesystem.php | 32 + .../league/flysystem/src/UnableToMoveFile.php | 67 + .../flysystem/src/UnableToProvideChecksum.php | 16 + .../league/flysystem/src/UnableToReadFile.php | 45 + .../src/UnableToResolveFilesystemMount.php | 20 + .../src/UnableToRetrieveMetadata.php | 76 + .../flysystem/src/UnableToSetVisibility.php | 49 + .../flysystem/src/UnableToWriteFile.php | 45 + .../PortableVisibilityConverter.php | 79 + .../UnixVisibility/VisibilityConverter.php | 14 + .../src/UnreadableFileEncountered.php | 28 + .../ChainedPublicUrlGenerator.php | 30 + .../PrefixPublicUrlGenerator.php | 23 + .../src/UrlGeneration/PublicUrlGenerator.php | 16 + .../ShardedPrefixPublicUrlGenerator.php | 39 + .../UrlGeneration/TemporaryUrlGenerator.php | 16 + vendor/league/flysystem/src/Visibility.php | 11 + .../src/WhitespacePathNormalizer.php | 49 + .../league/mime-type-detection/CHANGELOG.md | 64 + vendor/league/mime-type-detection/LICENSE | 19 + .../league/mime-type-detection/composer.json | 34 + .../src/EmptyExtensionToMimeTypeMap.php | 13 + .../src/ExtensionLookup.php | 14 + .../src/ExtensionMimeTypeDetector.php | 56 + .../src/ExtensionToMimeTypeMap.php | 10 + .../src/FinfoMimeTypeDetector.php | 106 + .../src/GeneratedExtensionToMimeTypeMap.php | 2310 +++++++++++++ .../src/MimeTypeDetector.php | 19 + .../src/OverridingExtensionToMimeTypeMap.php | 30 + .../php-curl-class/CHANGELOG.md | 350 ++ vendor/php-curl-class/php-curl-class/LICENSE | 24 + .../php-curl-class/php-curl-class/README.md | 408 +++ .../php-curl-class/php-curl-class/SECURITY.md | 127 + .../php-curl-class/composer.json | 53 + .../php-curl-class/src/Curl/ArrayUtil.php | 159 + .../php-curl-class/src/Curl/BaseCurl.php | 422 +++ .../src/Curl/CaseInsensitiveArray.php | 211 ++ .../php-curl-class/src/Curl/Curl.php | 2275 +++++++++++++ .../php-curl-class/src/Curl/Decoder.php | 45 + .../php-curl-class/src/Curl/Encoder.php | 30 + .../php-curl-class/src/Curl/MultiCurl.php | 976 ++++++ .../php-curl-class/src/Curl/StringUtil.php | 65 + .../php-curl-class/src/Curl/Url.php | 253 ++ vendor/psr/container/LICENSE | 21 + vendor/psr/container/README.md | 13 + vendor/psr/container/composer.json | 27 + .../src/ContainerExceptionInterface.php | 12 + .../psr/container/src/ContainerInterface.php | 36 + .../src/NotFoundExceptionInterface.php | 10 + vendor/psr/http-client/CHANGELOG.md | 31 + vendor/psr/http-client/LICENSE | 19 + vendor/psr/http-client/README.md | 12 + vendor/psr/http-client/composer.json | 30 + .../src/ClientExceptionInterface.php | 10 + .../psr/http-client/src/ClientInterface.php | 20 + .../src/NetworkExceptionInterface.php | 24 + .../src/RequestExceptionInterface.php | 24 + vendor/psr/http-factory/LICENSE | 21 + vendor/psr/http-factory/README.md | 12 + vendor/psr/http-factory/composer.json | 38 + .../src/RequestFactoryInterface.php | 18 + .../src/ResponseFactoryInterface.php | 18 + .../src/ServerRequestFactoryInterface.php | 24 + .../src/StreamFactoryInterface.php | 45 + .../src/UploadedFileFactoryInterface.php | 34 + .../http-factory/src/UriFactoryInterface.php | 17 + vendor/psr/http-message/CHANGELOG.md | 36 + vendor/psr/http-message/LICENSE | 19 + vendor/psr/http-message/README.md | 16 + vendor/psr/http-message/composer.json | 26 + .../psr/http-message/docs/PSR7-Interfaces.md | 130 + vendor/psr/http-message/docs/PSR7-Usage.md | 159 + .../psr/http-message/src/MessageInterface.php | 189 ++ .../psr/http-message/src/RequestInterface.php | 131 + .../http-message/src/ResponseInterface.php | 70 + .../src/ServerRequestInterface.php | 263 ++ .../psr/http-message/src/StreamInterface.php | 160 + .../src/UploadedFileInterface.php | 125 + vendor/psr/http-message/src/UriInterface.php | 326 ++ vendor/psr/log/LICENSE | 19 + vendor/psr/log/README.md | 58 + vendor/psr/log/composer.json | 26 + vendor/psr/log/src/AbstractLogger.php | 15 + .../psr/log/src/InvalidArgumentException.php | 7 + vendor/psr/log/src/LogLevel.php | 18 + vendor/psr/log/src/LoggerAwareInterface.php | 14 + vendor/psr/log/src/LoggerAwareTrait.php | 22 + vendor/psr/log/src/LoggerInterface.php | 98 + vendor/psr/log/src/LoggerTrait.php | 98 + vendor/psr/log/src/NullLogger.php | 26 + vendor/psr/simple-cache/.editorconfig | 12 + vendor/psr/simple-cache/LICENSE.md | 21 + vendor/psr/simple-cache/README.md | 8 + vendor/psr/simple-cache/composer.json | 25 + .../psr/simple-cache/src/CacheException.php | 10 + .../psr/simple-cache/src/CacheInterface.php | 114 + .../src/InvalidArgumentException.php | 13 + vendor/ralouphie/getallheaders/LICENSE | 21 + vendor/ralouphie/getallheaders/README.md | 27 + vendor/ralouphie/getallheaders/composer.json | 26 + .../getallheaders/src/getallheaders.php | 46 + vendor/services.php | 7 + .../deprecation-contracts/CHANGELOG.md | 5 + vendor/symfony/deprecation-contracts/LICENSE | 19 + .../symfony/deprecation-contracts/README.md | 26 + .../deprecation-contracts/composer.json | 35 + .../deprecation-contracts/function.php | 27 + vendor/symfony/polyfill-mbstring/LICENSE | 19 + vendor/symfony/polyfill-mbstring/Mbstring.php | 1045 ++++++ vendor/symfony/polyfill-mbstring/README.md | 13 + .../Resources/unidata/caseFolding.php | 119 + .../Resources/unidata/lowerCase.php | 1397 ++++++++ .../Resources/unidata/titleCaseRegexp.php | 5 + .../Resources/unidata/upperCase.php | 1489 +++++++++ .../symfony/polyfill-mbstring/bootstrap.php | 172 + .../symfony/polyfill-mbstring/bootstrap80.php | 167 + .../symfony/polyfill-mbstring/composer.json | 39 + vendor/symfony/var-dumper/CHANGELOG.md | 116 + .../var-dumper/Caster/AddressInfoCaster.php | 82 + .../symfony/var-dumper/Caster/AmqpCaster.php | 214 ++ vendor/symfony/var-dumper/Caster/ArgsStub.php | 79 + vendor/symfony/var-dumper/Caster/Caster.php | 203 ++ .../symfony/var-dumper/Caster/ClassStub.php | 104 + .../symfony/var-dumper/Caster/ConstStub.php | 52 + .../symfony/var-dumper/Caster/CurlCaster.php | 31 + .../var-dumper/Caster/CutArrayStub.php | 30 + vendor/symfony/var-dumper/Caster/CutStub.php | 64 + .../symfony/var-dumper/Caster/DOMCaster.php | 318 ++ .../symfony/var-dumper/Caster/DateCaster.php | 129 + .../var-dumper/Caster/DoctrineCaster.php | 64 + vendor/symfony/var-dumper/Caster/DsCaster.php | 70 + .../symfony/var-dumper/Caster/DsPairStub.php | 28 + vendor/symfony/var-dumper/Caster/EnumStub.php | 29 + .../var-dumper/Caster/ExceptionCaster.php | 397 +++ .../symfony/var-dumper/Caster/FFICaster.php | 171 + .../symfony/var-dumper/Caster/FiberCaster.php | 43 + .../symfony/var-dumper/Caster/FrameStub.php | 28 + vendor/symfony/var-dumper/Caster/GdCaster.php | 30 + .../symfony/var-dumper/Caster/GmpCaster.php | 34 + .../var-dumper/Caster/ImagineCaster.php | 39 + vendor/symfony/var-dumper/Caster/ImgStub.php | 26 + .../symfony/var-dumper/Caster/IntlCaster.php | 174 + vendor/symfony/var-dumper/Caster/LinkStub.php | 105 + .../var-dumper/Caster/MemcachedCaster.php | 83 + .../var-dumper/Caster/MysqliCaster.php | 33 + .../var-dumper/Caster/OpenSSLCaster.php | 69 + .../symfony/var-dumper/Caster/PdoCaster.php | 124 + .../symfony/var-dumper/Caster/PgSqlCaster.php | 158 + .../var-dumper/Caster/ProxyManagerCaster.php | 35 + .../var-dumper/Caster/RdKafkaCaster.php | 188 ++ .../symfony/var-dumper/Caster/RedisCaster.php | 152 + .../var-dumper/Caster/ReflectionCaster.php | 448 +++ .../var-dumper/Caster/ResourceCaster.php | 92 + .../symfony/var-dumper/Caster/ScalarStub.php | 27 + .../var-dumper/Caster/SocketCaster.php | 64 + .../symfony/var-dumper/Caster/SplCaster.php | 258 ++ .../var-dumper/Caster/SqliteCaster.php | 32 + .../symfony/var-dumper/Caster/StubCaster.php | 94 + .../var-dumper/Caster/SymfonyCaster.php | 123 + .../symfony/var-dumper/Caster/TraceStub.php | 32 + .../var-dumper/Caster/UninitializedStub.php | 25 + .../symfony/var-dumper/Caster/UuidCaster.php | 32 + .../symfony/var-dumper/Caster/VirtualStub.php | 21 + .../var-dumper/Caster/XmlReaderCaster.php | 94 + .../var-dumper/Caster/XmlResourceCaster.php | 65 + .../var-dumper/Cloner/AbstractCloner.php | 413 +++ .../var-dumper/Cloner/ClonerInterface.php | 23 + vendor/symfony/var-dumper/Cloner/Cursor.php | 43 + vendor/symfony/var-dumper/Cloner/Data.php | 429 +++ .../var-dumper/Cloner/DumperInterface.php | 53 + .../var-dumper/Cloner/Internal/NoDefault.php | 25 + vendor/symfony/var-dumper/Cloner/Stub.php | 75 + .../symfony/var-dumper/Cloner/VarCloner.php | 218 ++ .../Command/Descriptor/CliDescriptor.php | 78 + .../Descriptor/DumpDescriptorInterface.php | 23 + .../Command/Descriptor/HtmlDescriptor.php | 118 + .../var-dumper/Command/ServerDumpCommand.php | 111 + .../var-dumper/Dumper/AbstractDumper.php | 201 ++ .../symfony/var-dumper/Dumper/CliDumper.php | 667 ++++ .../ContextProvider/CliContextProvider.php | 32 + .../ContextProviderInterface.php | 22 + .../RequestContextProvider.php | 50 + .../ContextProvider/SourceContextProvider.php | 121 + .../Dumper/ContextualizedDumper.php | 40 + .../var-dumper/Dumper/DataDumperInterface.php | 27 + .../symfony/var-dumper/Dumper/HtmlDumper.php | 980 ++++++ .../var-dumper/Dumper/ServerDumper.php | 53 + .../Exception/ThrowingCasterException.php | 26 + vendor/symfony/var-dumper/LICENSE | 19 + vendor/symfony/var-dumper/README.md | 15 + .../var-dumper/Resources/bin/var-dump-server | 67 + .../Resources/css/htmlDescriptor.css | 130 + .../var-dumper/Resources/functions/dump.php | 68 + .../var-dumper/Resources/js/htmlDescriptor.js | 10 + .../symfony/var-dumper/Server/Connection.php | 97 + .../symfony/var-dumper/Server/DumpServer.php | 109 + .../var-dumper/Test/VarDumperTestTrait.php | 87 + vendor/symfony/var-dumper/VarDumper.php | 118 + vendor/symfony/var-dumper/composer.json | 45 + .../.github/ISSUE_TEMPLATE/1-bug-report.yml | 67 + .../ISSUE_TEMPLATE/2-feature_request.md | 20 + .../.github/ISSUE_TEMPLATE/3-custom.md | 10 + .../.github/ISSUE_TEMPLATE/config.yml | 8 + .../framework/.github/workflows/build.yml | 48 + .../.github/workflows/php-cs-fixer.yml | 31 + vendor/topthink/framework/CONTRIBUTING.md | 119 + vendor/topthink/framework/LICENSE.txt | 32 + vendor/topthink/framework/README.md | 85 + vendor/topthink/framework/composer.json | 59 + vendor/topthink/framework/logo.png | Bin 0 -> 6995 bytes vendor/topthink/framework/phpunit.xml.dist | 27 + vendor/topthink/framework/src/helper.php | 677 ++++ vendor/topthink/framework/src/lang/zh-cn.php | 157 + vendor/topthink/framework/src/think/App.php | 651 ++++ vendor/topthink/framework/src/think/Cache.php | 200 ++ .../topthink/framework/src/think/Config.php | 209 ++ .../topthink/framework/src/think/Console.php | 787 +++++ .../topthink/framework/src/think/Cookie.php | 223 ++ vendor/topthink/framework/src/think/Db.php | 117 + vendor/topthink/framework/src/think/Env.php | 199 ++ vendor/topthink/framework/src/think/Event.php | 291 ++ .../framework/src/think/Exception.php | 59 + vendor/topthink/framework/src/think/File.php | 198 ++ vendor/topthink/framework/src/think/Http.php | 279 ++ vendor/topthink/framework/src/think/Lang.php | 273 ++ vendor/topthink/framework/src/think/Log.php | 249 ++ .../topthink/framework/src/think/Manager.php | 173 + .../framework/src/think/Middleware.php | 248 ++ .../topthink/framework/src/think/Pipeline.php | 106 + .../topthink/framework/src/think/Request.php | 2218 +++++++++++++ .../topthink/framework/src/think/Response.php | 425 +++ vendor/topthink/framework/src/think/Route.php | 885 +++++ .../topthink/framework/src/think/Service.php | 63 + .../topthink/framework/src/think/Session.php | 65 + vendor/topthink/framework/src/think/View.php | 187 ++ .../framework/src/think/cache/Driver.php | 385 +++ .../framework/src/think/cache/TagSet.php | 121 + .../framework/src/think/cache/driver/File.php | 308 ++ .../src/think/cache/driver/Memcache.php | 204 ++ .../src/think/cache/driver/Memcached.php | 215 ++ .../src/think/cache/driver/Redis.php | 254 ++ .../src/think/cache/driver/Wincache.php | 170 + .../framework/src/think/console/Command.php | 504 +++ .../framework/src/think/console/Input.php | 465 +++ .../framework/src/think/console/LICENSE | 19 + .../framework/src/think/console/Output.php | 231 ++ .../framework/src/think/console/Table.php | 300 ++ .../framework/src/think/console/bin/README.md | 1 + .../src/think/console/bin/hiddeninput.exe | Bin 0 -> 9216 bytes .../src/think/console/command/Clear.php | 85 + .../src/think/console/command/Help.php | 70 + .../src/think/console/command/Lists.php | 74 + .../src/think/console/command/Make.php | 99 + .../src/think/console/command/RouteList.php | 128 + .../src/think/console/command/RunServer.php | 72 + .../think/console/command/ServiceDiscover.php | 52 + .../think/console/command/VendorPublish.php | 69 + .../src/think/console/command/Version.php | 35 + .../think/console/command/make/Command.php | 54 + .../think/console/command/make/Controller.php | 55 + .../src/think/console/command/make/Event.php | 35 + .../think/console/command/make/Listener.php | 35 + .../think/console/command/make/Middleware.php | 36 + .../src/think/console/command/make/Model.php | 36 + .../think/console/command/make/Service.php | 36 + .../think/console/command/make/Subscribe.php | 35 + .../think/console/command/make/Validate.php | 38 + .../console/command/make/stubs/command.stub | 26 + .../command/make/stubs/controller.api.stub | 64 + .../command/make/stubs/controller.plain.stub | 9 + .../command/make/stubs/controller.stub | 85 + .../console/command/make/stubs/event.stub | 8 + .../console/command/make/stubs/listener.stub | 17 + .../command/make/stubs/middleware.stub | 19 + .../console/command/make/stubs/model.stub | 14 + .../console/command/make/stubs/service.stub | 27 + .../console/command/make/stubs/subscribe.stub | 8 + .../console/command/make/stubs/validate.stub | 25 + .../think/console/command/optimize/Route.php | 66 + .../think/console/command/optimize/Schema.php | 109 + .../src/think/console/input/Argument.php | 138 + .../src/think/console/input/Definition.php | 375 +++ .../src/think/console/input/Option.php | 221 ++ .../src/think/console/output/Ask.php | 336 ++ .../src/think/console/output/Descriptor.php | 323 ++ .../src/think/console/output/Formatter.php | 198 ++ .../src/think/console/output/Question.php | 211 ++ .../console/output/descriptor/Console.php | 153 + .../think/console/output/driver/Buffer.php | 52 + .../think/console/output/driver/Console.php | 369 +++ .../think/console/output/driver/Nothing.php | 33 + .../think/console/output/formatter/Stack.php | 116 + .../think/console/output/formatter/Style.php | 190 ++ .../think/console/output/question/Choice.php | 163 + .../console/output/question/Confirmation.php | 57 + .../think/contract/CacheHandlerInterface.php | 71 + .../think/contract/LogHandlerInterface.php | 28 + .../think/contract/ModelRelationInterface.php | 98 + .../contract/SessionHandlerInterface.php | 23 + .../contract/TemplateHandlerInterface.php | 56 + .../framework/src/think/event/AppInit.php | 20 + .../framework/src/think/event/HttpEnd.php | 20 + .../framework/src/think/event/HttpRun.php | 20 + .../framework/src/think/event/LogRecord.php | 29 + .../framework/src/think/event/LogWrite.php | 23 + .../framework/src/think/event/RouteLoaded.php | 20 + .../exception/ClassNotFoundException.php | 36 + .../src/think/exception/ErrorException.php | 57 + .../src/think/exception/FileException.php | 17 + .../framework/src/think/exception/Handle.php | 371 +++ .../src/think/exception/HttpException.php | 36 + .../think/exception/HttpResponseException.php | 31 + .../exception/InvalidArgumentException.php | 21 + .../think/exception/InvalidCacheException.php | 19 + .../exception/RouteNotFoundException.php | 26 + .../framework/src/think/facade/App.php | 59 + .../framework/src/think/facade/Cache.php | 48 + .../framework/src/think/facade/Config.php | 37 + .../framework/src/think/facade/Console.php | 56 + .../framework/src/think/facade/Cookie.php | 40 + .../framework/src/think/facade/Env.php | 44 + .../framework/src/think/facade/Event.php | 42 + .../framework/src/think/facade/Lang.php | 41 + .../framework/src/think/facade/Log.php | 58 + .../framework/src/think/facade/Middleware.php | 42 + .../framework/src/think/facade/Request.php | 134 + .../framework/src/think/facade/Route.php | 82 + .../framework/src/think/facade/Session.php | 45 + .../framework/src/think/facade/View.php | 42 + .../framework/src/think/file/UploadedFile.php | 129 + .../src/think/initializer/BootService.php | 26 + .../framework/src/think/initializer/Error.php | 120 + .../src/think/initializer/RegisterService.php | 48 + .../framework/src/think/log/Channel.php | 163 + .../framework/src/think/log/ChannelSet.php | 34 + .../framework/src/think/log/driver/File.php | 207 ++ .../framework/src/think/log/driver/Socket.php | 307 ++ .../src/think/middleware/AllowCrossDomain.php | 63 + .../think/middleware/CheckRequestCache.php | 183 ++ .../src/think/middleware/FormTokenCheck.php | 44 + .../src/think/middleware/LoadLangPack.php | 113 + .../src/think/middleware/SessionInit.php | 71 + .../framework/src/think/response/File.php | 161 + .../framework/src/think/response/Html.php | 34 + .../framework/src/think/response/Json.php | 61 + .../framework/src/think/response/Jsonp.php | 73 + .../framework/src/think/response/Redirect.php | 102 + .../framework/src/think/response/View.php | 150 + .../framework/src/think/response/Xml.php | 127 + .../framework/src/think/route/Dispatch.php | 348 ++ .../framework/src/think/route/Domain.php | 41 + .../framework/src/think/route/Resource.php | 263 ++ .../src/think/route/ResourceRegister.php | 72 + .../framework/src/think/route/Rule.php | 1036 ++++++ .../framework/src/think/route/RuleGroup.php | 732 +++++ .../framework/src/think/route/RuleItem.php | 328 ++ .../framework/src/think/route/RuleName.php | 212 ++ .../framework/src/think/route/Url.php | 478 +++ .../src/think/route/dispatch/Callback.php | 65 + .../src/think/route/dispatch/Controller.php | 115 + .../src/think/service/ModelService.php | 52 + .../src/think/service/PaginatorService.php | 52 + .../src/think/service/ValidateService.php | 31 + .../framework/src/think/session/Store.php | 325 ++ .../src/think/session/driver/Cache.php | 50 + .../src/think/session/driver/File.php | 248 ++ .../framework/src/think/view/driver/Php.php | 209 ++ .../framework/src/tpl/think_exception.tpl | 502 +++ vendor/topthink/framework/tests/AppTest.php | 207 ++ vendor/topthink/framework/tests/CacheTest.php | 154 + .../topthink/framework/tests/ConfigTest.php | 46 + vendor/topthink/framework/tests/DbTest.php | 49 + .../topthink/framework/tests/DispatchTest.php | 32 + vendor/topthink/framework/tests/EnvTest.php | 80 + vendor/topthink/framework/tests/EventTest.php | 134 + vendor/topthink/framework/tests/HttpTest.php | 153 + .../framework/tests/InteractsWithApp.php | 30 + vendor/topthink/framework/tests/LogTest.php | 132 + .../framework/tests/MiddlewareTest.php | 110 + vendor/topthink/framework/tests/RouteTest.php | 230 ++ .../topthink/framework/tests/SessionTest.php | 225 ++ .../topthink/framework/tests/UrlRouteTest.php | 60 + vendor/topthink/framework/tests/ViewTest.php | 122 + vendor/topthink/framework/tests/bootstrap.php | 3 + vendor/topthink/think-container/.travis.yml | 26 + vendor/topthink/think-container/LICENSE | 201 ++ vendor/topthink/think-container/README.md | 95 + vendor/topthink/think-container/composer.json | 26 + .../topthink/think-container/phpunit.xml.dist | 25 + .../think-container/src/Container.php | 564 ++++ .../topthink/think-container/src/Facade.php | 99 + .../src/exception/ClassNotFoundException.php | 36 + .../src/exception/FuncNotFoundException.php | 27 + .../think-container/tests/ContainerTest.php | 361 ++ .../think-container/tests/bootstrap.php | 3 + vendor/topthink/think-dumper/README.md | 35 + vendor/topthink/think-dumper/composer.json | 32 + vendor/topthink/think-dumper/phpunit.xml.dist | 25 + .../topthink/think-dumper/src/Connection.php | 82 + vendor/topthink/think-dumper/src/Dumper.php | 103 + .../think-dumper/src/ServerDumper.php | 31 + .../src/SourceContextProvider.php | 58 + vendor/topthink/think-dumper/src/helper.php | 8 + .../think-dumper/tests/DumperTest.php | 14 + .../topthink/think-dumper/tests/bootstrap.php | 13 + vendor/topthink/think-filesystem/README.md | 5 + .../topthink/think-filesystem/composer.json | 34 + .../think-filesystem/phpunit.xml.dist | 17 + .../think-filesystem/src/Filesystem.php | 89 + .../src/facade/Filesystem.php | 33 + .../src/filesystem/Driver.php | 130 + .../src/filesystem/driver/Local.php | 98 + .../think-filesystem/tests/FilesystemTest.php | 80 + .../think-filesystem/tests/bootstrap.php | 2 + .../topthink/think-filesystem/tests/test.txt | 1 + .../think-helper/.github/workflows/ci.yml | 36 + .../think-helper/.github/workflows/php.yml | 36 + vendor/topthink/think-helper/LICENSE | 201 ++ vendor/topthink/think-helper/README.md | 35 + vendor/topthink/think-helper/composer.json | 36 + vendor/topthink/think-helper/phpunit.xml.dist | 17 + .../topthink/think-helper/src/Collection.php | 678 ++++ .../think-helper/src/contract/Arrayable.php | 8 + .../think-helper/src/contract/Jsonable.php | 8 + vendor/topthink/think-helper/src/helper.php | 317 ++ .../topthink/think-helper/src/helper/Arr.php | 669 ++++ .../think-helper/src/helper/Macroable.php | 66 + .../topthink/think-helper/src/helper/Str.php | 234 ++ .../topthink/think-helper/tests/ArrTest.php | 372 +++ .../think-helper/tests/CollectionTest.php | 70 + .../think-helper/tests/IsAssocTest.php | 48 + .../think-helper/tests/MergeDeepTest.php | 69 + .../topthink/think-helper/tests/StrTest.php | 59 + .../topthink/think-helper/tests/TestCase.php | 13 + vendor/topthink/think-multi-app/LICENSE | 201 ++ vendor/topthink/think-multi-app/README.md | 14 + vendor/topthink/think-multi-app/composer.json | 28 + .../topthink/think-multi-app/src/MultiApp.php | 223 ++ .../topthink/think-multi-app/src/Service.php | 32 + vendor/topthink/think-multi-app/src/Url.php | 229 ++ .../think-multi-app/src/command/Build.php | 180 + .../think-multi-app/src/command/Clear.php | 66 + .../src/command/stubs/controller.stub | 12 + vendor/topthink/think-orm/.gitattributes | 3 + vendor/topthink/think-orm/LICENSE | 201 ++ vendor/topthink/think-orm/README.md | 43 + vendor/topthink/think-orm/composer.json | 47 + vendor/topthink/think-orm/src/DbManager.php | 400 +++ vendor/topthink/think-orm/src/Entity.php | 327 ++ vendor/topthink/think-orm/src/Model.php | 892 +++++ vendor/topthink/think-orm/src/Paginator.php | 568 ++++ .../topthink/think-orm/src/db/BaseBuilder.php | 971 ++++++ .../topthink/think-orm/src/db/BaseQuery.php | 1756 ++++++++++ vendor/topthink/think-orm/src/db/Builder.php | 839 +++++ .../topthink/think-orm/src/db/CacheItem.php | 220 ++ .../topthink/think-orm/src/db/Connection.php | 383 +++ .../think-orm/src/db/ConnectionInterface.php | 208 ++ vendor/topthink/think-orm/src/db/Express.php | 64 + vendor/topthink/think-orm/src/db/Fetch.php | 544 +++ vendor/topthink/think-orm/src/db/Mongo.php | 802 +++++ .../think-orm/src/db/PDOConnection.php | 2003 ++++++++++++ vendor/topthink/think-orm/src/db/Query.php | 648 ++++ vendor/topthink/think-orm/src/db/Raw.php | 54 + vendor/topthink/think-orm/src/db/Where.php | 175 + .../think-orm/src/db/builder/Mongo.php | 692 ++++ .../think-orm/src/db/builder/Mysql.php | 525 +++ .../think-orm/src/db/builder/Oracle.php | 134 + .../think-orm/src/db/builder/Pgsql.php | 123 + .../think-orm/src/db/builder/Sqlite.php | 118 + .../think-orm/src/db/builder/Sqlsrv.php | 194 ++ .../src/db/concern/AggregateQuery.php | 131 + .../src/db/concern/JoinAndViewQuery.php | 241 ++ .../src/db/concern/ModelRelationQuery.php | 729 +++++ .../think-orm/src/db/concern/ParamsBind.php | 149 + .../src/db/concern/ResultOperation.php | 266 ++ .../src/db/concern/TableFieldInfo.php | 107 + .../src/db/concern/TimeFieldQuery.php | 227 ++ .../think-orm/src/db/concern/Transaction.php | 131 + .../think-orm/src/db/concern/WhereQuery.php | 670 ++++ .../think-orm/src/db/connector/Mongo.php | 1214 +++++++ .../think-orm/src/db/connector/Mysql.php | 169 + .../think-orm/src/db/connector/Oracle.php | 125 + .../think-orm/src/db/connector/Pgsql.php | 113 + .../think-orm/src/db/connector/Sqlite.php | 97 + .../think-orm/src/db/connector/Sqlsrv.php | 131 + .../think-orm/src/db/connector/pgsql.sql | 117 + .../think-orm/src/db/connector/pgsql12.sql | 117 + .../src/db/exception/BindParamException.php | 35 + .../db/exception/DataNotFoundException.php | 44 + .../src/db/exception/DbEventException.php | 21 + .../src/db/exception/DbException.php | 45 + .../src/db/exception/DuplicateException.php | 21 + .../db/exception/InvalidArgumentException.php | 23 + .../src/db/exception/ModelEventException.php | 21 + .../db/exception/ModelNotFoundException.php | 44 + .../src/db/exception/PDOException.php | 45 + vendor/topthink/think-orm/src/facade/Db.php | 32 + vendor/topthink/think-orm/src/helper.php | 52 + .../think-orm/src/model/Collection.php | 284 ++ vendor/topthink/think-orm/src/model/Pivot.php | 77 + .../topthink/think-orm/src/model/Relation.php | 354 ++ vendor/topthink/think-orm/src/model/View.php | 744 +++++ .../topthink/think-orm/src/model/Virtual.php | 72 + .../think-orm/src/model/concern/Attribute.php | 719 ++++ .../src/model/concern/AutoWriteData.php | 138 + .../src/model/concern/Conversion.php | 208 ++ .../think-orm/src/model/concern/DbConnect.php | 202 ++ .../src/model/concern/ModelEvent.php | 85 + .../think-orm/src/model/concern/OptimLock.php | 87 + .../src/model/concern/RelationShip.php | 902 +++++ .../src/model/concern/SoftDelete.php | 219 ++ .../src/model/contract/EnumTransform.php | 10 + .../src/model/contract/FieldTypeTransform.php | 17 + .../src/model/contract/Modelable.php | 9 + .../think-orm/src/model/contract/Typeable.php | 17 + .../src/model/relation/BelongsTo.php | 350 ++ .../src/model/relation/BelongsToMany.php | 735 +++++ .../think-orm/src/model/relation/HasMany.php | 386 +++ .../src/model/relation/HasManyThrough.php | 391 +++ .../think-orm/src/model/relation/HasOne.php | 317 ++ .../src/model/relation/HasOneThrough.php | 164 + .../src/model/relation/MorphMany.php | 436 +++ .../think-orm/src/model/relation/MorphOne.php | 393 +++ .../think-orm/src/model/relation/MorphTo.php | 392 +++ .../src/model/relation/MorphToMany.php | 497 +++ .../think-orm/src/model/relation/OneToOne.php | 347 ++ .../think-orm/src/model/type/Date.php | 19 + .../think-orm/src/model/type/DateTime.php | 74 + .../think-orm/src/model/type/Json.php | 43 + .../src/paginator/driver/Bootstrap.php | 219 ++ vendor/topthink/think-orm/stubs/Exception.php | 59 + vendor/topthink/think-orm/stubs/Facade.php | 69 + .../topthink/think-orm/stubs/load_stubs.php | 9 + vendor/topthink/think-template/LICENSE | 201 ++ vendor/topthink/think-template/README.md | 70 + vendor/topthink/think-template/composer.json | 20 + vendor/topthink/think-template/phpunit.xml | 12 + .../topthink/think-template/src/Template.php | 1316 ++++++++ .../think-template/src/facade/Template.php | 83 + .../think-template/src/template/TagLib.php | 341 ++ .../src/template/contract/DriverInterface.php | 35 + .../src/template/driver/File.php | 84 + .../exception/TemplateNotFoundException.php | 33 + .../think-template/src/template/taglib/Cx.php | 715 ++++ .../think-template/tests/bootstrap.php | 3 + .../think-template/tests/tag/Demo.php | 46 + .../think-template/tests/template/extend.html | 2 + .../think-template/tests/template/fetch.html | 1 + .../tests/template/include.html | 1 + .../think-template/tests/template/layout.html | 1 + .../tests/think/TemplateTest.php | 247 ++ vendor/topthink/think-trace/LICENSE | 201 ++ vendor/topthink/think-trace/README.md | 15 + vendor/topthink/think-trace/composer.json | 31 + vendor/topthink/think-trace/src/Console.php | 173 + vendor/topthink/think-trace/src/Html.php | 126 + vendor/topthink/think-trace/src/Service.php | 21 + .../topthink/think-trace/src/TraceDebug.php | 109 + vendor/topthink/think-trace/src/config.php | 10 + .../think-trace/src/tpl/page_trace.tpl | 71 + vendor/topthink/think-validate/LICENSE | 201 ++ vendor/topthink/think-validate/README.md | 82 + vendor/topthink/think-validate/composer.json | 23 + .../topthink/think-validate/src/Validate.php | 2197 +++++++++++++ .../think-validate/src/contract/Enumable.php | 22 + .../src/exception/ValidateException.php | 45 + .../think-validate/src/facade/Validate.php | 80 + vendor/topthink/think-validate/src/helper.php | 67 + .../src/validate/ValidateRule.php | 187 ++ .../src/validate/ValidateRuleSet.php | 74 + vendor/topthink/think-view/LICENSE | 201 ++ vendor/topthink/think-view/README.md | 36 + vendor/topthink/think-view/composer.json | 20 + vendor/topthink/think-view/src/Think.php | 254 ++ 1638 files changed, 213697 insertions(+) create mode 100644 .env create mode 100644 .example.env create mode 100644 .gitignore create mode 100644 .htaccess create mode 100644 .travis.yml create mode 100644 LICENSE.txt create mode 100644 README.md create mode 100644 app/.htaccess create mode 100644 app/AppService.php create mode 100644 app/BaseController.php create mode 100644 app/ExceptionHandle.php create mode 100644 app/Request.php create mode 100644 app/common.php create mode 100644 app/event.php create mode 100644 app/lang/en-us.php create mode 100644 app/lang/zh-cn.php create mode 100644 app/log/driver/Monolog.php create mode 100644 app/middleware.php create mode 100644 app/middleware/LogRecorder.php create mode 100644 app/miniapi/common.php create mode 100644 app/miniapi/controller/Auth.php create mode 100644 app/miniapi/controller/Base.php create mode 100644 app/miniapi/controller/Esta.php create mode 100644 app/miniapi/controller/Evus.php create mode 100644 app/miniapi/controller/Help.php create mode 100644 app/miniapi/controller/Index.php create mode 100644 app/miniapi/controller/News.php create mode 100644 app/miniapi/controller/Ocr.php create mode 100644 app/miniapi/controller/Order.php create mode 100644 app/miniapi/controller/Upload.php create mode 100644 app/miniapi/service/Context/MiniAppContext.php create mode 100644 app/miniapi/service/Legal/LegalDocumentService.php create mode 100644 app/miniapi/service/Payment/MiniPayService.php create mode 100644 app/miniapi/service/Payment/PaymentChannelService.php create mode 100644 app/miniapi/service/Product/ProductService.php create mode 100644 app/provider.php create mode 100644 app/service.php create mode 100644 app/service/AwsUploadService.php create mode 100644 app/service/BaiduOcrService.php create mode 100644 app/service/CompressImgService.php create mode 100644 app/service/MiniProgramWechatService.php create mode 100644 app/service/OssService.php create mode 100644 app/service/OssUploadService.php create mode 100644 app/service/PassportOcrService.php create mode 100644 app/service/SwooleService.php create mode 100644 app/service/UploadService.php create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/app.php create mode 100644 config/cache.php create mode 100644 config/citic.php create mode 100644 config/console.php create mode 100644 config/cookie.php create mode 100644 config/database.php create mode 100644 config/filesystem.php create mode 100644 config/lang.php create mode 100644 config/log.php create mode 100644 config/middleware.php create mode 100644 config/mini_legal.php create mode 100644 config/mini_payment.php create mode 100644 config/mini_product.php create mode 100644 config/miniapp.php create mode 100644 config/ocr.php create mode 100644 config/oss.php create mode 100644 config/route.php create mode 100644 config/session.php create mode 100644 config/trace.php create mode 100644 config/view.php create mode 100644 extend/api/Httpcurl.php create mode 100644 extend/api/Verify.php create mode 100644 extend/api/Verify/bgs/1.jpg create mode 100644 extend/api/Verify/bgs/2.jpg create mode 100644 extend/api/Verify/bgs/3.jpg create mode 100644 extend/api/Verify/bgs/4.jpg create mode 100644 extend/api/Verify/bgs/5.jpg create mode 100644 extend/api/Verify/bgs/6.jpg create mode 100644 extend/api/Verify/bgs/7.jpg create mode 100644 extend/api/Verify/bgs/8.jpg create mode 100644 extend/api/Verify/ttfs/1.ttf create mode 100644 extend/api/Verify/ttfs/2.ttf create mode 100644 extend/api/Verify/ttfs/3.ttf create mode 100644 extend/api/Verify/ttfs/4.ttf create mode 100644 extend/api/Verify/ttfs/5.ttf create mode 100644 extend/api/Verify/ttfs/6.ttf create mode 100644 nginx.htaccess create mode 100644 public/.htaccess create mode 100644 public/index.php create mode 100644 public/json/country.json create mode 100644 public/json/country_en.json create mode 100644 public/json/phone_prefix.json create mode 100644 public/json/phone_prefix_en.json create mode 100644 public/json/us.json create mode 100644 public/json/us_en.json create mode 100644 public/nginx.htaccess create mode 100644 public/robots.txt create mode 100644 public/router.php create mode 100644 route/app.php create mode 100644 think create mode 100644 thinkphp/lang/zh-cn.php create mode 100644 vendor/alibabacloud/oss-v2/.github/workflows/main.yml create mode 100644 vendor/alibabacloud/oss-v2/.gitignore create mode 100644 vendor/alibabacloud/oss-v2/CHANGELOG.md create mode 100644 vendor/alibabacloud/oss-v2/DEVGUIDE-CN.md create mode 100644 vendor/alibabacloud/oss-v2/DEVGUIDE.md create mode 100644 vendor/alibabacloud/oss-v2/LICENSE create mode 100644 vendor/alibabacloud/oss-v2/README-CN.md create mode 100644 vendor/alibabacloud/oss-v2/README.md create mode 100644 vendor/alibabacloud/oss-v2/autoload.php create mode 100644 vendor/alibabacloud/oss-v2/composer.json create mode 100644 vendor/alibabacloud/oss-v2/index.php create mode 100644 vendor/alibabacloud/oss-v2/phpunit.xml create mode 100644 vendor/alibabacloud/oss-v2/sample/AbortBucketWorm.php create mode 100644 vendor/alibabacloud/oss-v2/sample/AbortMultipartUpload.php create mode 100644 vendor/alibabacloud/oss-v2/sample/AppendObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/AsyncProcessObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/CleanRestoredObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/CloseMetaQuery.php create mode 100644 vendor/alibabacloud/oss-v2/sample/CompleteMultipartUpload.php create mode 100644 vendor/alibabacloud/oss-v2/sample/Copier.php create mode 100644 vendor/alibabacloud/oss-v2/sample/CopyObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/CreateAccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/sample/CreateBucketDataRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/sample/CreateCnameToken.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteAccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucket.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketCors.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketDataRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketEncryption.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketInventory.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketLifecycle.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketLogging.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketOverwrite.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketPublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketReplication.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketTags.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteBucketWebsite.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteCname.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteMultipleObjects.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteObjectTagging.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeletePublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteStyle.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeleteUserDefinedLogFieldsConfig.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DeletetAccessPointPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DescribeRegions.php create mode 100644 vendor/alibabacloud/oss-v2/sample/DoMetaQuery.php create mode 100644 vendor/alibabacloud/oss-v2/sample/Downloader.php create mode 100644 vendor/alibabacloud/oss-v2/sample/EncryptionClient.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ExtentBucketWorm.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetAccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetAccessPointPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketAccessMonitor.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketAcl.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketArchiveDirectRead.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketCors.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketDataRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketEncryption.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketHttpsConfig.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketInfo.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketInventory.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketLifecycle.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketLocation.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketLogging.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketOverwrite.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketPolicyStatus.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketPublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketReferer.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketReplication.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketReplicationLocation.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketReplicationProgress.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketRequestPayment.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketResourceGroup.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketStat.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketTags.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketTransferAcceleration.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketVersioning.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketWebsite.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetBucketWorm.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetCnameToken.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetMetaQueryStatus.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetObjectAcl.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetObjectMeta.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetObjectTagging.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetPublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetStyle.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetSymlink.php create mode 100644 vendor/alibabacloud/oss-v2/sample/GetUserDefinedLogFieldsConfig.php create mode 100644 vendor/alibabacloud/oss-v2/sample/HeadObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/InitiateBucketWorm.php create mode 100644 vendor/alibabacloud/oss-v2/sample/InitiateMultipartUpload.php create mode 100644 vendor/alibabacloud/oss-v2/sample/InvokeOperation.php create mode 100644 vendor/alibabacloud/oss-v2/sample/IsBucketExist.php create mode 100644 vendor/alibabacloud/oss-v2/sample/IsObjectExist.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListAccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListBucketDataRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListBucketInventory.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListBuckets.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListCloudBoxes.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListCname.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListMultipartUploads.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListObjectVersions.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListObjects.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListObjectsV2.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListParts.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListStyle.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ListUserDataRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/sample/OpenMetaQuery.php create mode 100644 vendor/alibabacloud/oss-v2/sample/OptionObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PostObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/Presign.php create mode 100644 vendor/alibabacloud/oss-v2/sample/ProcessObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutAccessPointPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucket.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketAccessMonitor.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketAcl.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketArchiveDirectRead.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketCors.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketEncryption.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketHttpsConfig.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketInventory.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketLifecycle.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketLogging.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketOverwrite.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketPublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketReferer.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketReplication.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketRequestPayment.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketResourceGroup.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketRtc.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketTags.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketTransferAcceleration.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketVersioning.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutBucketWebsite.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutCname.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutObjectAcl.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutObjectTagging.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutPublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutStyle.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutSymlink.php create mode 100644 vendor/alibabacloud/oss-v2/sample/PutUserDefinedLogFieldsConfig.php create mode 100644 vendor/alibabacloud/oss-v2/sample/RestoreObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/SealAppendObject.php create mode 100644 vendor/alibabacloud/oss-v2/sample/UploadPart.php create mode 100644 vendor/alibabacloud/oss-v2/sample/UploadPartCopy.php create mode 100644 vendor/alibabacloud/oss-v2/sample/Uploader.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/AnnotationInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/Functions.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/RequiredProperty.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/TagBody.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/TagHeader.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/TagProperty.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/TagQuery.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/XmlElement.php create mode 100644 vendor/alibabacloud/oss-v2/src/Annotation/XmlRoot.php create mode 100644 vendor/alibabacloud/oss-v2/src/Client.php create mode 100644 vendor/alibabacloud/oss-v2/src/ClientExtensionTrait.php create mode 100644 vendor/alibabacloud/oss-v2/src/ClientImpl.php create mode 100644 vendor/alibabacloud/oss-v2/src/Config.php create mode 100644 vendor/alibabacloud/oss-v2/src/Copier.php create mode 100644 vendor/alibabacloud/oss-v2/src/Credentials/AnonymousCredentialsProvider.php create mode 100644 vendor/alibabacloud/oss-v2/src/Credentials/Credentials.php create mode 100644 vendor/alibabacloud/oss-v2/src/Credentials/CredentialsProvider.php create mode 100644 vendor/alibabacloud/oss-v2/src/Credentials/CredentialsProviderFunc.php create mode 100644 vendor/alibabacloud/oss-v2/src/Credentials/EnvironmentVariableCredentialsProvider.php create mode 100644 vendor/alibabacloud/oss-v2/src/Credentials/StaticCredentialsProvider.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/AesCtr.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/AesCtrCipher.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/AesCtrCipherBuilder.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/CipherData.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/CipherInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/ContentCipherInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/Envelope.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/LazyDecryptStream.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/MasterCipherInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/MasterRsaCipher.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/ReadDecryptStream.php create mode 100644 vendor/alibabacloud/oss-v2/src/Crypto/ReadEncryptStream.php create mode 100644 vendor/alibabacloud/oss-v2/src/Defaults.php create mode 100644 vendor/alibabacloud/oss-v2/src/Deserializer.php create mode 100644 vendor/alibabacloud/oss-v2/src/Downloader.php create mode 100644 vendor/alibabacloud/oss-v2/src/EncryptionClient.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/CopyException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/CredentialsException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/DeserializationExecption.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/DownloadException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/InconsistentExecption.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/OperationException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/ParserException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/SerializationExecption.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/ServiceException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/StreamRewindException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Exception/UploadException.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AbortBucketWormRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AbortBucketWormResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AbortMultipartUploadRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AbortMultipartUploadResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AccessControlList.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AccessMonitorConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AccessMonitorStatusType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AccessPointEndpoints.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AccessPointVpcConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AccessPoints.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AppendObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AppendObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ApplyServerSideEncryptionByDefault.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ArchiveDirectReadConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AsyncProcessObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/AsyncProcessObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Bucket.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketACLType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketCnameConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketDataRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketInfo.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketLoggingStatus.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketResourceGroupConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketVersioningStatusType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/BucketWormStateType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CORSConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CORSRule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CertificateConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CipherSuite.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CleanRestoredObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CleanRestoredObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CloseMetaQueryRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CloseMetaQueryResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CloudBox.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CloudBoxes.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Cname.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CnameCertificate.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CnameInfo.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CnameToken.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CommonPrefix.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CompleteBucketWormRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CompleteBucketWormResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CompleteMultipartUpload.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CompleteMultipartUploadRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CompleteMultipartUploadResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CopyObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CopyObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CopyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateAccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateAccessPointConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateAccessPointRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateAccessPointResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateBucketConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateBucketDataRedundancyTransitionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateBucketDataRedundancyTransitionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateCnameTokenRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/CreateCnameTokenResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DataRedundancyType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Delete.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteAccessPointPolicyRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteAccessPointPolicyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteAccessPointRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteAccessPointResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketCorsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketCorsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketDataRedundancyTransitionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketDataRedundancyTransitionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketEncryptionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketEncryptionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketInventoryRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketInventoryResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketLifecycleRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketLifecycleResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketLoggingRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketLoggingResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketOverwriteConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketOverwriteConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketPolicyRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketPolicyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketPublicAccessBlockRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketPublicAccessBlockResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketReplicationRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketReplicationResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketTagsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketTagsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketWebsiteRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteBucketWebsiteResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteCnameRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteCnameResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteMarkerProperties.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteMultipleObjectsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteMultipleObjectsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteObject.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteObjectTaggingRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteObjectTaggingResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeletePublicAccessBlockRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeletePublicAccessBlockResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteStyleRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteStyleResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteUserDefinedLogFieldsConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeleteUserDefinedLogFieldsConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DeletedInfo.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DescribeRegionsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DescribeRegionsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DoMetaQueryRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DoMetaQueryResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/DownloadResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/EncodeType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/EncryptionMultipartContext.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ErrorDocument.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ExtendBucketWormRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ExtendBucketWormResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ExtendWormConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetAccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetAccessPointPolicyRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetAccessPointPolicyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetAccessPointRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetAccessPointResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketAccessMonitorRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketAccessMonitorResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketAclRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketAclResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketArchiveDirectReadRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketArchiveDirectReadResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketCorsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketCorsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketDataRedundancyTransitionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketDataRedundancyTransitionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketEncryptionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketEncryptionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketHttpsConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketHttpsConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketInfoRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketInfoResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketInventoryRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketInventoryResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketLifecycleRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketLifecycleResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketLocationRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketLocationResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketLoggingRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketLoggingResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketOverwriteConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketOverwriteConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketPolicyRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketPolicyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketPolicyStatusRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketPolicyStatusResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketPublicAccessBlockRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketPublicAccessBlockResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketRefererRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketRefererResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketReplicationLocationRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketReplicationLocationResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketReplicationProgressRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketReplicationProgressResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketReplicationRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketReplicationResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketRequestPaymentRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketRequestPaymentResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketResourceGroupRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketResourceGroupResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketStatRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketStatResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketTagsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketTagsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketTransferAccelerationRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketTransferAccelerationResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketVersioningRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketVersioningResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketWebsiteRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketWebsiteResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketWormRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetBucketWormResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetCnameTokenRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetCnameTokenResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetMetaQueryStatusRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetMetaQueryStatusResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectAclRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectAclResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectMetaRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectMetaResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectTaggingRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetObjectTaggingResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetPublicAccessBlockRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetPublicAccessBlockResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetStyleRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetStyleResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetSymlinkRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetSymlinkResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetUserDefinedLogFieldsConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/GetUserDefinedLogFieldsConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/HeadObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/HeadObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/HistoricalObjectReplicationType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/HttpsConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/IndexDocument.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InitiateBucketWormRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InitiateBucketWormResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InitiateMultipartUploadRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InitiateMultipartUploadResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InitiateWormConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryDestination.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryEncryption.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryFilter.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryFormatType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryFrequencyType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryOSSBucketDestination.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventoryOptionalFieldType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/InventorySchedule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LifecycleConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LifecycleRule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LifecycleRuleAbortMultipartUpload.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LifecycleRuleExpiration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LifecycleRuleFilter.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LifecycleRuleNot.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LifecycleRuleTransition.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListAccessPoints.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListAccessPointsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListAccessPointsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListBucketDataRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListBucketDataRedundancyTransitionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListBucketDataRedundancyTransitionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListBucketInventoryRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListBucketInventoryResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListBucketsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListBucketsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListCloudBoxes.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListCloudBoxesRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListCloudBoxesResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListCnameRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListCnameResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListInventoryConfigurationsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListMultipartUploadsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListMultipartUploadsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListObjectVersionsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListObjectVersionsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListObjectsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListObjectsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListObjectsV2Request.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListObjectsV2Result.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListPartsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListPartsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListStyleRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListStyleResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListUserDataRedundancyTransitionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ListUserDataRedundancyTransitionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LocationRTCConstraint.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LocationTransferType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LocationTransferTypeConstraint.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LoggingEnabled.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LoggingHeaderSet.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/LoggingParamSet.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQuery.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryAddress.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryAddresses.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryAggregation.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryAggregations.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryAudioStream.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryAudioStreams.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryFile.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryFiles.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryGroup.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryGroups.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryMediaTypes.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryOrderType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryOssTagging.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryOssUserMeta.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryStatus.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQuerySubtitle.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQuerySubtitles.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryTagging.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryUserMeta.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryVideoStream.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MetaQueryVideoStreams.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorAuth.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorHeaderSet.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorHeaders.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorMultiAlternate.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorMultiAlternates.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorReturnHeaders.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorTagging.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/MirrorTaggings.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/NoncurrentVersionExpiration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/NoncurrentVersionTransition.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ObjectACLType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ObjectIdentifier.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ObjectProperties.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ObjectVersionProperties.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OpenMetaQueryRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OpenMetaQueryResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OptionObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OptionObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OptionalFields.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OverwriteConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OverwritePrincipals.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/OverwriteRule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Owner.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Part.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PolicyStatus.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PresignResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ProcessObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ProcessObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PublicAccessBlockConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutAccessPointPolicyRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutAccessPointPolicyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketAccessMonitorRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketAccessMonitorResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketAclRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketAclResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketArchiveDirectReadRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketArchiveDirectReadResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketCorsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketCorsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketEncryptionRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketEncryptionResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketHttpsConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketHttpsConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketInventoryRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketInventoryResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketLifecycleRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketLifecycleResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketLoggingRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketLoggingResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketOverwriteConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketOverwriteConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketPolicyRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketPolicyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketPublicAccessBlockRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketPublicAccessBlockResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketRefererRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketRefererResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketReplicationRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketReplicationResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketRequestPaymentRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketRequestPaymentResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketResourceGroupRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketResourceGroupResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketRtcRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketRtcResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketTagsRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketTagsResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketTransferAccelerationRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketTransferAccelerationResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketVersioningRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketVersioningResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketWebsiteRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutBucketWebsiteResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutCnameRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutCnameResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutObjectAclRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutObjectAclResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutObjectTaggingRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutObjectTaggingResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutPublicAccessBlockRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutPublicAccessBlockResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutStyleRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutStyleResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutSymlinkRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutSymlinkResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutUserDefinedLogFieldsConfigRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/PutUserDefinedLogFieldsConfigResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RefererBlacklist.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RefererConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RefererList.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RegionInfo.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationDestination.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationEncryptionConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationLocation.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationPrefixSet.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationProgress.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationProgressInformation.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationProgressRule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationRule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationRules.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationSourceSelectionCriteria.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReplicationTimeControl.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RequestPaymentConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RestoreObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RestoreObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RestoreRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ReturnHeader.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RoutingRule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RoutingRuleCondition.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RoutingRuleIncludeHeader.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RoutingRuleLuaConfig.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RoutingRuleRedirect.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RoutingRules.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/RtcConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/SSEKMS.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/SealAppendObjectRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/SealAppendObjectResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ServerSideEncryptionRule.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/ServerSideEncryptionRuleInfo.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/SseKmsEncryptedObjects.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/StatusType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/StorageClassType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/StyleContent.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/StyleInfo.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/StyleList.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/TLS.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Tag.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/TagSet.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Tagging.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/TransferAccelerationConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/TransferType.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/TransferTypes.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/Upload.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/UploadPart.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/UploadPartCopyRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/UploadPartCopyResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/UploadPartRequest.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/UploadPartResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/UploadResult.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/UserDefinedLogFieldsConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/VersioningConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/WebsiteConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Models/WormConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/src/OperationInput.php create mode 100644 vendor/alibabacloud/oss-v2/src/OperationOutput.php create mode 100644 vendor/alibabacloud/oss-v2/src/Paginator/ListBucketsPaginator.php create mode 100644 vendor/alibabacloud/oss-v2/src/Paginator/ListMultipartUploadsPaginator.php create mode 100644 vendor/alibabacloud/oss-v2/src/Paginator/ListObjectVersionsPaginator.php create mode 100644 vendor/alibabacloud/oss-v2/src/Paginator/ListObjectsPaginator.php create mode 100644 vendor/alibabacloud/oss-v2/src/Paginator/ListObjectsV2Paginator.php create mode 100644 vendor/alibabacloud/oss-v2/src/Paginator/ListPartsPaginator.php create mode 100644 vendor/alibabacloud/oss-v2/src/Paginator/Paginator.php create mode 100644 vendor/alibabacloud/oss-v2/src/ProgressStream.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/BackoffDelayerInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/ClientErrorRetryable.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/EqualJitterBackoff.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/ErrorRetryableInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/FixedDelayBackoff.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/FullJitterBackoff.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/HTTPStatusCodeRetryable.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/NopRetryer.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/RetryerInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/ServiceErrorCodeRetryable.php create mode 100644 vendor/alibabacloud/oss-v2/src/Retry/StandardRetryer.php create mode 100644 vendor/alibabacloud/oss-v2/src/RetryMiddleware.php create mode 100644 vendor/alibabacloud/oss-v2/src/Serializer.php create mode 100644 vendor/alibabacloud/oss-v2/src/Signer/NopSigner.php create mode 100644 vendor/alibabacloud/oss-v2/src/Signer/SignerInterface.php create mode 100644 vendor/alibabacloud/oss-v2/src/Signer/SignerV1.php create mode 100644 vendor/alibabacloud/oss-v2/src/Signer/SignerV4.php create mode 100644 vendor/alibabacloud/oss-v2/src/Signer/SigningContext.php create mode 100644 vendor/alibabacloud/oss-v2/src/SinkStreamWrapper.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/AccessPoint.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketAccessMonitor.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketArchiveDirectRead.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketBasic.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketCname.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketCors.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketEncryption.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketHttpsConfig.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketInventory.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketLifecycle.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketLogging.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketMetaQuery.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketOverwriteConfig.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketPolicy.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketPublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketRedundancyTransition.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketReferer.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketReplication.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketRequestPayment.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketResourceGroup.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketStyle.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketTags.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketTransferAcceleration.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketWebsite.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/BucketWorm.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/CloudBoxes.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/Functions.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/ObjectBasic.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/ObjectMultipart.php create mode 100644 vendor/alibabacloud/oss-v2/src/Transform/PublicAccessBlock.php create mode 100644 vendor/alibabacloud/oss-v2/src/Types/Model.php create mode 100644 vendor/alibabacloud/oss-v2/src/Types/ModelTrait.php create mode 100644 vendor/alibabacloud/oss-v2/src/Types/RequestModel.php create mode 100644 vendor/alibabacloud/oss-v2/src/Types/ResultModel.php create mode 100644 vendor/alibabacloud/oss-v2/src/Uploader.php create mode 100644 vendor/alibabacloud/oss-v2/src/Utils.php create mode 100644 vendor/alibabacloud/oss-v2/src/Validation.php create mode 100644 vendor/alibabacloud/oss-v2/src/Version.php create mode 100644 vendor/alibabacloud/oss-v2/tests/Data/enc-example.jpg create mode 100644 vendor/alibabacloud/oss-v2/tests/Data/example.jpg create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientAccessPointTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketAccessMonitorTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketArchiveDirectReadTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketBasicTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketCnameTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketCorsTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketDataRedundancyTransitionTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketEncryptionTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketHttpsConfigTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketInventoryTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketLifecycleTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketLoggingTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketMetaQueryTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketOverwriteTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketPolicyTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketPublicAccessBlockTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketRefererTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketReplicationTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketRequestPaymentTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketResourceGroupTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketStyleTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketTagsTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketTransferAccelerationTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketWebsiteTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientBucketWormTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientExtensionTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientListCloudBoxesTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientMiscTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientObjectBasicTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientObjectMultipartTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientPaginatorTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientPresignerTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/ClientPublicAccessBlockTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/EncryptionClientTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/IntegrationTests/TestIntegration.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Annotation/AnnotationTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Annotation/ModelObject.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Annotation/XmlObject.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/ClientImplTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Credentials/CredentialsTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Crypto/AesCtrCipherTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Crypto/MasterRsaCipherTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Crypto/enc-example.jpg create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Crypto/example.jpg create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/DeserializerTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Exception/ExceptionTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/BaiscTypeLackAnnotationXml.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/BaiscTypeListXml.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/BaiscTypeXml.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/DatetimeTypeXml.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/MixedTypeListXml.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/MixedTypeXml.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/NoRewindStream.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/PutApiARequest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/PutApiBRequest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/PutApiBResult.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/PutApiRequest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/PutApiResult.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/RewindStatStream.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/RootConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Fixtures/SubConfiguration.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Retry/BackoffTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Retry/ErrorRetryableTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Retry/RetryerTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/SerializerTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Signer/NopSignerTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Signer/SignerContextTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Signer/SignerV1Test.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Signer/SignerV4Test.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/AccessPointTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketAccessMonitorTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketArchiveDirectReadTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketBasicTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketCnameTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketCorsTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketEncryptionTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketHttpsConfigTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketInventoryTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketLifecycleTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketLoggingTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketMetaQueryTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketOverwriteConfigTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketPolicyTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketPublicAccessBlockTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketRedundancyTransitionTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketRefererTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketReplicationTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketRequestPaymentTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketResourceGroupTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketStyleTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketTagsTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketTransferAccelerationTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketWebsiteTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/BucketWormTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/CloudBoxesTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/FunctionsTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/ObjectBasicTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/ObjectMultipartTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Transform/PublicAccessBlockTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Types/ModelA.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Types/ModelPrivate.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Types/ModelTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/Types/XmlModelA.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/UtilsTest.php create mode 100644 vendor/alibabacloud/oss-v2/tests/UnitTests/ValidationTest.php create mode 100644 vendor/autoload.php create mode 100644 vendor/bin/var-dump-server create mode 100644 vendor/bin/var-dump-server.bat create mode 100644 vendor/composer/ClassLoader.php create mode 100644 vendor/composer/InstalledVersions.php create mode 100644 vendor/composer/LICENSE create mode 100644 vendor/composer/autoload_classmap.php create mode 100644 vendor/composer/autoload_files.php create mode 100644 vendor/composer/autoload_namespaces.php create mode 100644 vendor/composer/autoload_psr4.php create mode 100644 vendor/composer/autoload_real.php create mode 100644 vendor/composer/autoload_static.php create mode 100644 vendor/composer/installed.json create mode 100644 vendor/composer/installed.php create mode 100644 vendor/composer/platform_check.php create mode 100644 vendor/guzzlehttp/guzzle/CHANGELOG.md create mode 100644 vendor/guzzlehttp/guzzle/LICENSE create mode 100644 vendor/guzzlehttp/guzzle/README.md create mode 100644 vendor/guzzlehttp/guzzle/UPGRADING.md create mode 100644 vendor/guzzlehttp/guzzle/composer.json create mode 100644 vendor/guzzlehttp/guzzle/src/BodySummarizer.php create mode 100644 vendor/guzzlehttp/guzzle/src/BodySummarizerInterface.php create mode 100644 vendor/guzzlehttp/guzzle/src/Client.php create mode 100644 vendor/guzzlehttp/guzzle/src/ClientInterface.php create mode 100644 vendor/guzzlehttp/guzzle/src/ClientTrait.php create mode 100644 vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php create mode 100644 vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php create mode 100644 vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php create mode 100644 vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php create mode 100644 vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/ClientException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/RequestException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/ServerException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Exception/TransferException.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/HeaderProcessor.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/Proxy.php create mode 100644 vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php create mode 100644 vendor/guzzlehttp/guzzle/src/HandlerStack.php create mode 100644 vendor/guzzlehttp/guzzle/src/MessageFormatter.php create mode 100644 vendor/guzzlehttp/guzzle/src/MessageFormatterInterface.php create mode 100644 vendor/guzzlehttp/guzzle/src/Middleware.php create mode 100644 vendor/guzzlehttp/guzzle/src/Pool.php create mode 100644 vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php create mode 100644 vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php create mode 100644 vendor/guzzlehttp/guzzle/src/RequestOptions.php create mode 100644 vendor/guzzlehttp/guzzle/src/RetryMiddleware.php create mode 100644 vendor/guzzlehttp/guzzle/src/TransferStats.php create mode 100644 vendor/guzzlehttp/guzzle/src/Utils.php create mode 100644 vendor/guzzlehttp/guzzle/src/functions.php create mode 100644 vendor/guzzlehttp/guzzle/src/functions_include.php create mode 100644 vendor/guzzlehttp/promises/CHANGELOG.md create mode 100644 vendor/guzzlehttp/promises/LICENSE create mode 100644 vendor/guzzlehttp/promises/README.md create mode 100644 vendor/guzzlehttp/promises/composer.json create mode 100644 vendor/guzzlehttp/promises/src/AggregateException.php create mode 100644 vendor/guzzlehttp/promises/src/CancellationException.php create mode 100644 vendor/guzzlehttp/promises/src/Coroutine.php create mode 100644 vendor/guzzlehttp/promises/src/Create.php create mode 100644 vendor/guzzlehttp/promises/src/Each.php create mode 100644 vendor/guzzlehttp/promises/src/EachPromise.php create mode 100644 vendor/guzzlehttp/promises/src/FulfilledPromise.php create mode 100644 vendor/guzzlehttp/promises/src/Is.php create mode 100644 vendor/guzzlehttp/promises/src/Promise.php create mode 100644 vendor/guzzlehttp/promises/src/PromiseInterface.php create mode 100644 vendor/guzzlehttp/promises/src/PromisorInterface.php create mode 100644 vendor/guzzlehttp/promises/src/RejectedPromise.php create mode 100644 vendor/guzzlehttp/promises/src/RejectionException.php create mode 100644 vendor/guzzlehttp/promises/src/TaskQueue.php create mode 100644 vendor/guzzlehttp/promises/src/TaskQueueInterface.php create mode 100644 vendor/guzzlehttp/promises/src/Utils.php create mode 100644 vendor/guzzlehttp/psr7/CHANGELOG.md create mode 100644 vendor/guzzlehttp/psr7/LICENSE create mode 100644 vendor/guzzlehttp/psr7/README.md create mode 100644 vendor/guzzlehttp/psr7/composer.json create mode 100644 vendor/guzzlehttp/psr7/src/AppendStream.php create mode 100644 vendor/guzzlehttp/psr7/src/BufferStream.php create mode 100644 vendor/guzzlehttp/psr7/src/CachingStream.php create mode 100644 vendor/guzzlehttp/psr7/src/DroppingStream.php create mode 100644 vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php create mode 100644 vendor/guzzlehttp/psr7/src/FnStream.php create mode 100644 vendor/guzzlehttp/psr7/src/Header.php create mode 100644 vendor/guzzlehttp/psr7/src/HttpFactory.php create mode 100644 vendor/guzzlehttp/psr7/src/InflateStream.php create mode 100644 vendor/guzzlehttp/psr7/src/LazyOpenStream.php create mode 100644 vendor/guzzlehttp/psr7/src/LimitStream.php create mode 100644 vendor/guzzlehttp/psr7/src/Message.php create mode 100644 vendor/guzzlehttp/psr7/src/MessageTrait.php create mode 100644 vendor/guzzlehttp/psr7/src/MimeType.php create mode 100644 vendor/guzzlehttp/psr7/src/MultipartStream.php create mode 100644 vendor/guzzlehttp/psr7/src/NoSeekStream.php create mode 100644 vendor/guzzlehttp/psr7/src/PumpStream.php create mode 100644 vendor/guzzlehttp/psr7/src/Query.php create mode 100644 vendor/guzzlehttp/psr7/src/Request.php create mode 100644 vendor/guzzlehttp/psr7/src/Response.php create mode 100644 vendor/guzzlehttp/psr7/src/Rfc7230.php create mode 100644 vendor/guzzlehttp/psr7/src/ServerRequest.php create mode 100644 vendor/guzzlehttp/psr7/src/Stream.php create mode 100644 vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php create mode 100644 vendor/guzzlehttp/psr7/src/StreamWrapper.php create mode 100644 vendor/guzzlehttp/psr7/src/UploadedFile.php create mode 100644 vendor/guzzlehttp/psr7/src/Uri.php create mode 100644 vendor/guzzlehttp/psr7/src/UriComparator.php create mode 100644 vendor/guzzlehttp/psr7/src/UriNormalizer.php create mode 100644 vendor/guzzlehttp/psr7/src/UriResolver.php create mode 100644 vendor/guzzlehttp/psr7/src/Utils.php create mode 100644 vendor/league/flysystem-local/FallbackMimeTypeDetector.php create mode 100644 vendor/league/flysystem-local/LICENSE create mode 100644 vendor/league/flysystem-local/LocalFilesystemAdapter.php create mode 100644 vendor/league/flysystem-local/composer.json create mode 100644 vendor/league/flysystem/INFO.md create mode 100644 vendor/league/flysystem/LICENSE create mode 100644 vendor/league/flysystem/composer.json create mode 100644 vendor/league/flysystem/readme.md create mode 100644 vendor/league/flysystem/src/CalculateChecksumFromStream.php create mode 100644 vendor/league/flysystem/src/ChecksumAlgoIsNotSupported.php create mode 100644 vendor/league/flysystem/src/ChecksumProvider.php create mode 100644 vendor/league/flysystem/src/Config.php create mode 100644 vendor/league/flysystem/src/CorruptedPathDetected.php create mode 100644 vendor/league/flysystem/src/DecoratedAdapter.php create mode 100644 vendor/league/flysystem/src/DirectoryAttributes.php create mode 100644 vendor/league/flysystem/src/DirectoryListing.php create mode 100644 vendor/league/flysystem/src/FileAttributes.php create mode 100644 vendor/league/flysystem/src/Filesystem.php create mode 100644 vendor/league/flysystem/src/FilesystemAdapter.php create mode 100644 vendor/league/flysystem/src/FilesystemException.php create mode 100644 vendor/league/flysystem/src/FilesystemOperationFailed.php create mode 100644 vendor/league/flysystem/src/FilesystemOperator.php create mode 100644 vendor/league/flysystem/src/FilesystemReader.php create mode 100644 vendor/league/flysystem/src/FilesystemWriter.php create mode 100644 vendor/league/flysystem/src/InvalidStreamProvided.php create mode 100644 vendor/league/flysystem/src/InvalidVisibilityProvided.php create mode 100644 vendor/league/flysystem/src/MountManager.php create mode 100644 vendor/league/flysystem/src/PathNormalizer.php create mode 100644 vendor/league/flysystem/src/PathPrefixer.php create mode 100644 vendor/league/flysystem/src/PathTraversalDetected.php create mode 100644 vendor/league/flysystem/src/PortableVisibilityGuard.php create mode 100644 vendor/league/flysystem/src/ProxyArrayAccessToProperties.php create mode 100644 vendor/league/flysystem/src/ResolveIdenticalPathConflict.php create mode 100644 vendor/league/flysystem/src/StorageAttributes.php create mode 100644 vendor/league/flysystem/src/SymbolicLinkEncountered.php create mode 100644 vendor/league/flysystem/src/UnableToCheckDirectoryExistence.php create mode 100644 vendor/league/flysystem/src/UnableToCheckExistence.php create mode 100644 vendor/league/flysystem/src/UnableToCheckFileExistence.php create mode 100644 vendor/league/flysystem/src/UnableToCopyFile.php create mode 100644 vendor/league/flysystem/src/UnableToCreateDirectory.php create mode 100644 vendor/league/flysystem/src/UnableToDeleteDirectory.php create mode 100644 vendor/league/flysystem/src/UnableToDeleteFile.php create mode 100644 vendor/league/flysystem/src/UnableToGeneratePublicUrl.php create mode 100644 vendor/league/flysystem/src/UnableToGenerateTemporaryUrl.php create mode 100644 vendor/league/flysystem/src/UnableToListContents.php create mode 100644 vendor/league/flysystem/src/UnableToMountFilesystem.php create mode 100644 vendor/league/flysystem/src/UnableToMoveFile.php create mode 100644 vendor/league/flysystem/src/UnableToProvideChecksum.php create mode 100644 vendor/league/flysystem/src/UnableToReadFile.php create mode 100644 vendor/league/flysystem/src/UnableToResolveFilesystemMount.php create mode 100644 vendor/league/flysystem/src/UnableToRetrieveMetadata.php create mode 100644 vendor/league/flysystem/src/UnableToSetVisibility.php create mode 100644 vendor/league/flysystem/src/UnableToWriteFile.php create mode 100644 vendor/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php create mode 100644 vendor/league/flysystem/src/UnixVisibility/VisibilityConverter.php create mode 100644 vendor/league/flysystem/src/UnreadableFileEncountered.php create mode 100644 vendor/league/flysystem/src/UrlGeneration/ChainedPublicUrlGenerator.php create mode 100644 vendor/league/flysystem/src/UrlGeneration/PrefixPublicUrlGenerator.php create mode 100644 vendor/league/flysystem/src/UrlGeneration/PublicUrlGenerator.php create mode 100644 vendor/league/flysystem/src/UrlGeneration/ShardedPrefixPublicUrlGenerator.php create mode 100644 vendor/league/flysystem/src/UrlGeneration/TemporaryUrlGenerator.php create mode 100644 vendor/league/flysystem/src/Visibility.php create mode 100644 vendor/league/flysystem/src/WhitespacePathNormalizer.php create mode 100644 vendor/league/mime-type-detection/CHANGELOG.md create mode 100644 vendor/league/mime-type-detection/LICENSE create mode 100644 vendor/league/mime-type-detection/composer.json create mode 100644 vendor/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php create mode 100644 vendor/league/mime-type-detection/src/ExtensionLookup.php create mode 100644 vendor/league/mime-type-detection/src/ExtensionMimeTypeDetector.php create mode 100644 vendor/league/mime-type-detection/src/ExtensionToMimeTypeMap.php create mode 100644 vendor/league/mime-type-detection/src/FinfoMimeTypeDetector.php create mode 100644 vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php create mode 100644 vendor/league/mime-type-detection/src/MimeTypeDetector.php create mode 100644 vendor/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php create mode 100644 vendor/php-curl-class/php-curl-class/CHANGELOG.md create mode 100644 vendor/php-curl-class/php-curl-class/LICENSE create mode 100644 vendor/php-curl-class/php-curl-class/README.md create mode 100644 vendor/php-curl-class/php-curl-class/SECURITY.md create mode 100644 vendor/php-curl-class/php-curl-class/composer.json create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/ArrayUtil.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/BaseCurl.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/Curl.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/Decoder.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/Encoder.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/MultiCurl.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/StringUtil.php create mode 100644 vendor/php-curl-class/php-curl-class/src/Curl/Url.php create mode 100644 vendor/psr/container/LICENSE create mode 100644 vendor/psr/container/README.md create mode 100644 vendor/psr/container/composer.json create mode 100644 vendor/psr/container/src/ContainerExceptionInterface.php create mode 100644 vendor/psr/container/src/ContainerInterface.php create mode 100644 vendor/psr/container/src/NotFoundExceptionInterface.php create mode 100644 vendor/psr/http-client/CHANGELOG.md create mode 100644 vendor/psr/http-client/LICENSE create mode 100644 vendor/psr/http-client/README.md create mode 100644 vendor/psr/http-client/composer.json create mode 100644 vendor/psr/http-client/src/ClientExceptionInterface.php create mode 100644 vendor/psr/http-client/src/ClientInterface.php create mode 100644 vendor/psr/http-client/src/NetworkExceptionInterface.php create mode 100644 vendor/psr/http-client/src/RequestExceptionInterface.php create mode 100644 vendor/psr/http-factory/LICENSE create mode 100644 vendor/psr/http-factory/README.md create mode 100644 vendor/psr/http-factory/composer.json create mode 100644 vendor/psr/http-factory/src/RequestFactoryInterface.php create mode 100644 vendor/psr/http-factory/src/ResponseFactoryInterface.php create mode 100644 vendor/psr/http-factory/src/ServerRequestFactoryInterface.php create mode 100644 vendor/psr/http-factory/src/StreamFactoryInterface.php create mode 100644 vendor/psr/http-factory/src/UploadedFileFactoryInterface.php create mode 100644 vendor/psr/http-factory/src/UriFactoryInterface.php create mode 100644 vendor/psr/http-message/CHANGELOG.md create mode 100644 vendor/psr/http-message/LICENSE create mode 100644 vendor/psr/http-message/README.md create mode 100644 vendor/psr/http-message/composer.json create mode 100644 vendor/psr/http-message/docs/PSR7-Interfaces.md create mode 100644 vendor/psr/http-message/docs/PSR7-Usage.md create mode 100644 vendor/psr/http-message/src/MessageInterface.php create mode 100644 vendor/psr/http-message/src/RequestInterface.php create mode 100644 vendor/psr/http-message/src/ResponseInterface.php create mode 100644 vendor/psr/http-message/src/ServerRequestInterface.php create mode 100644 vendor/psr/http-message/src/StreamInterface.php create mode 100644 vendor/psr/http-message/src/UploadedFileInterface.php create mode 100644 vendor/psr/http-message/src/UriInterface.php create mode 100644 vendor/psr/log/LICENSE create mode 100644 vendor/psr/log/README.md create mode 100644 vendor/psr/log/composer.json create mode 100644 vendor/psr/log/src/AbstractLogger.php create mode 100644 vendor/psr/log/src/InvalidArgumentException.php create mode 100644 vendor/psr/log/src/LogLevel.php create mode 100644 vendor/psr/log/src/LoggerAwareInterface.php create mode 100644 vendor/psr/log/src/LoggerAwareTrait.php create mode 100644 vendor/psr/log/src/LoggerInterface.php create mode 100644 vendor/psr/log/src/LoggerTrait.php create mode 100644 vendor/psr/log/src/NullLogger.php create mode 100644 vendor/psr/simple-cache/.editorconfig create mode 100644 vendor/psr/simple-cache/LICENSE.md create mode 100644 vendor/psr/simple-cache/README.md create mode 100644 vendor/psr/simple-cache/composer.json create mode 100644 vendor/psr/simple-cache/src/CacheException.php create mode 100644 vendor/psr/simple-cache/src/CacheInterface.php create mode 100644 vendor/psr/simple-cache/src/InvalidArgumentException.php create mode 100644 vendor/ralouphie/getallheaders/LICENSE create mode 100644 vendor/ralouphie/getallheaders/README.md create mode 100644 vendor/ralouphie/getallheaders/composer.json create mode 100644 vendor/ralouphie/getallheaders/src/getallheaders.php create mode 100644 vendor/services.php create mode 100644 vendor/symfony/deprecation-contracts/CHANGELOG.md create mode 100644 vendor/symfony/deprecation-contracts/LICENSE create mode 100644 vendor/symfony/deprecation-contracts/README.md create mode 100644 vendor/symfony/deprecation-contracts/composer.json create mode 100644 vendor/symfony/deprecation-contracts/function.php create mode 100644 vendor/symfony/polyfill-mbstring/LICENSE create mode 100644 vendor/symfony/polyfill-mbstring/Mbstring.php create mode 100644 vendor/symfony/polyfill-mbstring/README.md create mode 100644 vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php create mode 100644 vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php create mode 100644 vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php create mode 100644 vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php create mode 100644 vendor/symfony/polyfill-mbstring/bootstrap.php create mode 100644 vendor/symfony/polyfill-mbstring/bootstrap80.php create mode 100644 vendor/symfony/polyfill-mbstring/composer.json create mode 100644 vendor/symfony/var-dumper/CHANGELOG.md create mode 100644 vendor/symfony/var-dumper/Caster/AddressInfoCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/AmqpCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/ArgsStub.php create mode 100644 vendor/symfony/var-dumper/Caster/Caster.php create mode 100644 vendor/symfony/var-dumper/Caster/ClassStub.php create mode 100644 vendor/symfony/var-dumper/Caster/ConstStub.php create mode 100644 vendor/symfony/var-dumper/Caster/CurlCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/CutArrayStub.php create mode 100644 vendor/symfony/var-dumper/Caster/CutStub.php create mode 100644 vendor/symfony/var-dumper/Caster/DOMCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/DateCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/DoctrineCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/DsCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/DsPairStub.php create mode 100644 vendor/symfony/var-dumper/Caster/EnumStub.php create mode 100644 vendor/symfony/var-dumper/Caster/ExceptionCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/FFICaster.php create mode 100644 vendor/symfony/var-dumper/Caster/FiberCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/FrameStub.php create mode 100644 vendor/symfony/var-dumper/Caster/GdCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/GmpCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/ImagineCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/ImgStub.php create mode 100644 vendor/symfony/var-dumper/Caster/IntlCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/LinkStub.php create mode 100644 vendor/symfony/var-dumper/Caster/MemcachedCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/MysqliCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/OpenSSLCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/PdoCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/PgSqlCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/RdKafkaCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/RedisCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/ReflectionCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/ResourceCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/ScalarStub.php create mode 100644 vendor/symfony/var-dumper/Caster/SocketCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/SplCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/SqliteCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/StubCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/SymfonyCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/TraceStub.php create mode 100644 vendor/symfony/var-dumper/Caster/UninitializedStub.php create mode 100644 vendor/symfony/var-dumper/Caster/UuidCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/VirtualStub.php create mode 100644 vendor/symfony/var-dumper/Caster/XmlReaderCaster.php create mode 100644 vendor/symfony/var-dumper/Caster/XmlResourceCaster.php create mode 100644 vendor/symfony/var-dumper/Cloner/AbstractCloner.php create mode 100644 vendor/symfony/var-dumper/Cloner/ClonerInterface.php create mode 100644 vendor/symfony/var-dumper/Cloner/Cursor.php create mode 100644 vendor/symfony/var-dumper/Cloner/Data.php create mode 100644 vendor/symfony/var-dumper/Cloner/DumperInterface.php create mode 100644 vendor/symfony/var-dumper/Cloner/Internal/NoDefault.php create mode 100644 vendor/symfony/var-dumper/Cloner/Stub.php create mode 100644 vendor/symfony/var-dumper/Cloner/VarCloner.php create mode 100644 vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php create mode 100644 vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php create mode 100644 vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php create mode 100644 vendor/symfony/var-dumper/Command/ServerDumpCommand.php create mode 100644 vendor/symfony/var-dumper/Dumper/AbstractDumper.php create mode 100644 vendor/symfony/var-dumper/Dumper/CliDumper.php create mode 100644 vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php create mode 100644 vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php create mode 100644 vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php create mode 100644 vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php create mode 100644 vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php create mode 100644 vendor/symfony/var-dumper/Dumper/DataDumperInterface.php create mode 100644 vendor/symfony/var-dumper/Dumper/HtmlDumper.php create mode 100644 vendor/symfony/var-dumper/Dumper/ServerDumper.php create mode 100644 vendor/symfony/var-dumper/Exception/ThrowingCasterException.php create mode 100644 vendor/symfony/var-dumper/LICENSE create mode 100644 vendor/symfony/var-dumper/README.md create mode 100644 vendor/symfony/var-dumper/Resources/bin/var-dump-server create mode 100644 vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css create mode 100644 vendor/symfony/var-dumper/Resources/functions/dump.php create mode 100644 vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js create mode 100644 vendor/symfony/var-dumper/Server/Connection.php create mode 100644 vendor/symfony/var-dumper/Server/DumpServer.php create mode 100644 vendor/symfony/var-dumper/Test/VarDumperTestTrait.php create mode 100644 vendor/symfony/var-dumper/VarDumper.php create mode 100644 vendor/symfony/var-dumper/composer.json create mode 100644 vendor/topthink/framework/.github/ISSUE_TEMPLATE/1-bug-report.yml create mode 100644 vendor/topthink/framework/.github/ISSUE_TEMPLATE/2-feature_request.md create mode 100644 vendor/topthink/framework/.github/ISSUE_TEMPLATE/3-custom.md create mode 100644 vendor/topthink/framework/.github/ISSUE_TEMPLATE/config.yml create mode 100644 vendor/topthink/framework/.github/workflows/build.yml create mode 100644 vendor/topthink/framework/.github/workflows/php-cs-fixer.yml create mode 100644 vendor/topthink/framework/CONTRIBUTING.md create mode 100644 vendor/topthink/framework/LICENSE.txt create mode 100644 vendor/topthink/framework/README.md create mode 100644 vendor/topthink/framework/composer.json create mode 100644 vendor/topthink/framework/logo.png create mode 100644 vendor/topthink/framework/phpunit.xml.dist create mode 100644 vendor/topthink/framework/src/helper.php create mode 100644 vendor/topthink/framework/src/lang/zh-cn.php create mode 100644 vendor/topthink/framework/src/think/App.php create mode 100644 vendor/topthink/framework/src/think/Cache.php create mode 100644 vendor/topthink/framework/src/think/Config.php create mode 100644 vendor/topthink/framework/src/think/Console.php create mode 100644 vendor/topthink/framework/src/think/Cookie.php create mode 100644 vendor/topthink/framework/src/think/Db.php create mode 100644 vendor/topthink/framework/src/think/Env.php create mode 100644 vendor/topthink/framework/src/think/Event.php create mode 100644 vendor/topthink/framework/src/think/Exception.php create mode 100644 vendor/topthink/framework/src/think/File.php create mode 100644 vendor/topthink/framework/src/think/Http.php create mode 100644 vendor/topthink/framework/src/think/Lang.php create mode 100644 vendor/topthink/framework/src/think/Log.php create mode 100644 vendor/topthink/framework/src/think/Manager.php create mode 100644 vendor/topthink/framework/src/think/Middleware.php create mode 100644 vendor/topthink/framework/src/think/Pipeline.php create mode 100644 vendor/topthink/framework/src/think/Request.php create mode 100644 vendor/topthink/framework/src/think/Response.php create mode 100644 vendor/topthink/framework/src/think/Route.php create mode 100644 vendor/topthink/framework/src/think/Service.php create mode 100644 vendor/topthink/framework/src/think/Session.php create mode 100644 vendor/topthink/framework/src/think/View.php create mode 100644 vendor/topthink/framework/src/think/cache/Driver.php create mode 100644 vendor/topthink/framework/src/think/cache/TagSet.php create mode 100644 vendor/topthink/framework/src/think/cache/driver/File.php create mode 100644 vendor/topthink/framework/src/think/cache/driver/Memcache.php create mode 100644 vendor/topthink/framework/src/think/cache/driver/Memcached.php create mode 100644 vendor/topthink/framework/src/think/cache/driver/Redis.php create mode 100644 vendor/topthink/framework/src/think/cache/driver/Wincache.php create mode 100644 vendor/topthink/framework/src/think/console/Command.php create mode 100644 vendor/topthink/framework/src/think/console/Input.php create mode 100644 vendor/topthink/framework/src/think/console/LICENSE create mode 100644 vendor/topthink/framework/src/think/console/Output.php create mode 100644 vendor/topthink/framework/src/think/console/Table.php create mode 100644 vendor/topthink/framework/src/think/console/bin/README.md create mode 100644 vendor/topthink/framework/src/think/console/bin/hiddeninput.exe create mode 100644 vendor/topthink/framework/src/think/console/command/Clear.php create mode 100644 vendor/topthink/framework/src/think/console/command/Help.php create mode 100644 vendor/topthink/framework/src/think/console/command/Lists.php create mode 100644 vendor/topthink/framework/src/think/console/command/Make.php create mode 100644 vendor/topthink/framework/src/think/console/command/RouteList.php create mode 100644 vendor/topthink/framework/src/think/console/command/RunServer.php create mode 100644 vendor/topthink/framework/src/think/console/command/ServiceDiscover.php create mode 100644 vendor/topthink/framework/src/think/console/command/VendorPublish.php create mode 100644 vendor/topthink/framework/src/think/console/command/Version.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Command.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Controller.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Event.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Listener.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Middleware.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Model.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Service.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Subscribe.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/Validate.php create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/command.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/controller.api.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/controller.plain.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/controller.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/event.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/listener.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/middleware.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/model.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/service.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/subscribe.stub create mode 100644 vendor/topthink/framework/src/think/console/command/make/stubs/validate.stub create mode 100644 vendor/topthink/framework/src/think/console/command/optimize/Route.php create mode 100644 vendor/topthink/framework/src/think/console/command/optimize/Schema.php create mode 100644 vendor/topthink/framework/src/think/console/input/Argument.php create mode 100644 vendor/topthink/framework/src/think/console/input/Definition.php create mode 100644 vendor/topthink/framework/src/think/console/input/Option.php create mode 100644 vendor/topthink/framework/src/think/console/output/Ask.php create mode 100644 vendor/topthink/framework/src/think/console/output/Descriptor.php create mode 100644 vendor/topthink/framework/src/think/console/output/Formatter.php create mode 100644 vendor/topthink/framework/src/think/console/output/Question.php create mode 100644 vendor/topthink/framework/src/think/console/output/descriptor/Console.php create mode 100644 vendor/topthink/framework/src/think/console/output/driver/Buffer.php create mode 100644 vendor/topthink/framework/src/think/console/output/driver/Console.php create mode 100644 vendor/topthink/framework/src/think/console/output/driver/Nothing.php create mode 100644 vendor/topthink/framework/src/think/console/output/formatter/Stack.php create mode 100644 vendor/topthink/framework/src/think/console/output/formatter/Style.php create mode 100644 vendor/topthink/framework/src/think/console/output/question/Choice.php create mode 100644 vendor/topthink/framework/src/think/console/output/question/Confirmation.php create mode 100644 vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php create mode 100644 vendor/topthink/framework/src/think/contract/LogHandlerInterface.php create mode 100644 vendor/topthink/framework/src/think/contract/ModelRelationInterface.php create mode 100644 vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php create mode 100644 vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php create mode 100644 vendor/topthink/framework/src/think/event/AppInit.php create mode 100644 vendor/topthink/framework/src/think/event/HttpEnd.php create mode 100644 vendor/topthink/framework/src/think/event/HttpRun.php create mode 100644 vendor/topthink/framework/src/think/event/LogRecord.php create mode 100644 vendor/topthink/framework/src/think/event/LogWrite.php create mode 100644 vendor/topthink/framework/src/think/event/RouteLoaded.php create mode 100644 vendor/topthink/framework/src/think/exception/ClassNotFoundException.php create mode 100644 vendor/topthink/framework/src/think/exception/ErrorException.php create mode 100644 vendor/topthink/framework/src/think/exception/FileException.php create mode 100644 vendor/topthink/framework/src/think/exception/Handle.php create mode 100644 vendor/topthink/framework/src/think/exception/HttpException.php create mode 100644 vendor/topthink/framework/src/think/exception/HttpResponseException.php create mode 100644 vendor/topthink/framework/src/think/exception/InvalidArgumentException.php create mode 100644 vendor/topthink/framework/src/think/exception/InvalidCacheException.php create mode 100644 vendor/topthink/framework/src/think/exception/RouteNotFoundException.php create mode 100644 vendor/topthink/framework/src/think/facade/App.php create mode 100644 vendor/topthink/framework/src/think/facade/Cache.php create mode 100644 vendor/topthink/framework/src/think/facade/Config.php create mode 100644 vendor/topthink/framework/src/think/facade/Console.php create mode 100644 vendor/topthink/framework/src/think/facade/Cookie.php create mode 100644 vendor/topthink/framework/src/think/facade/Env.php create mode 100644 vendor/topthink/framework/src/think/facade/Event.php create mode 100644 vendor/topthink/framework/src/think/facade/Lang.php create mode 100644 vendor/topthink/framework/src/think/facade/Log.php create mode 100644 vendor/topthink/framework/src/think/facade/Middleware.php create mode 100644 vendor/topthink/framework/src/think/facade/Request.php create mode 100644 vendor/topthink/framework/src/think/facade/Route.php create mode 100644 vendor/topthink/framework/src/think/facade/Session.php create mode 100644 vendor/topthink/framework/src/think/facade/View.php create mode 100644 vendor/topthink/framework/src/think/file/UploadedFile.php create mode 100644 vendor/topthink/framework/src/think/initializer/BootService.php create mode 100644 vendor/topthink/framework/src/think/initializer/Error.php create mode 100644 vendor/topthink/framework/src/think/initializer/RegisterService.php create mode 100644 vendor/topthink/framework/src/think/log/Channel.php create mode 100644 vendor/topthink/framework/src/think/log/ChannelSet.php create mode 100644 vendor/topthink/framework/src/think/log/driver/File.php create mode 100644 vendor/topthink/framework/src/think/log/driver/Socket.php create mode 100644 vendor/topthink/framework/src/think/middleware/AllowCrossDomain.php create mode 100644 vendor/topthink/framework/src/think/middleware/CheckRequestCache.php create mode 100644 vendor/topthink/framework/src/think/middleware/FormTokenCheck.php create mode 100644 vendor/topthink/framework/src/think/middleware/LoadLangPack.php create mode 100644 vendor/topthink/framework/src/think/middleware/SessionInit.php create mode 100644 vendor/topthink/framework/src/think/response/File.php create mode 100644 vendor/topthink/framework/src/think/response/Html.php create mode 100644 vendor/topthink/framework/src/think/response/Json.php create mode 100644 vendor/topthink/framework/src/think/response/Jsonp.php create mode 100644 vendor/topthink/framework/src/think/response/Redirect.php create mode 100644 vendor/topthink/framework/src/think/response/View.php create mode 100644 vendor/topthink/framework/src/think/response/Xml.php create mode 100644 vendor/topthink/framework/src/think/route/Dispatch.php create mode 100644 vendor/topthink/framework/src/think/route/Domain.php create mode 100644 vendor/topthink/framework/src/think/route/Resource.php create mode 100644 vendor/topthink/framework/src/think/route/ResourceRegister.php create mode 100644 vendor/topthink/framework/src/think/route/Rule.php create mode 100644 vendor/topthink/framework/src/think/route/RuleGroup.php create mode 100644 vendor/topthink/framework/src/think/route/RuleItem.php create mode 100644 vendor/topthink/framework/src/think/route/RuleName.php create mode 100644 vendor/topthink/framework/src/think/route/Url.php create mode 100644 vendor/topthink/framework/src/think/route/dispatch/Callback.php create mode 100644 vendor/topthink/framework/src/think/route/dispatch/Controller.php create mode 100644 vendor/topthink/framework/src/think/service/ModelService.php create mode 100644 vendor/topthink/framework/src/think/service/PaginatorService.php create mode 100644 vendor/topthink/framework/src/think/service/ValidateService.php create mode 100644 vendor/topthink/framework/src/think/session/Store.php create mode 100644 vendor/topthink/framework/src/think/session/driver/Cache.php create mode 100644 vendor/topthink/framework/src/think/session/driver/File.php create mode 100644 vendor/topthink/framework/src/think/view/driver/Php.php create mode 100644 vendor/topthink/framework/src/tpl/think_exception.tpl create mode 100644 vendor/topthink/framework/tests/AppTest.php create mode 100644 vendor/topthink/framework/tests/CacheTest.php create mode 100644 vendor/topthink/framework/tests/ConfigTest.php create mode 100644 vendor/topthink/framework/tests/DbTest.php create mode 100644 vendor/topthink/framework/tests/DispatchTest.php create mode 100644 vendor/topthink/framework/tests/EnvTest.php create mode 100644 vendor/topthink/framework/tests/EventTest.php create mode 100644 vendor/topthink/framework/tests/HttpTest.php create mode 100644 vendor/topthink/framework/tests/InteractsWithApp.php create mode 100644 vendor/topthink/framework/tests/LogTest.php create mode 100644 vendor/topthink/framework/tests/MiddlewareTest.php create mode 100644 vendor/topthink/framework/tests/RouteTest.php create mode 100644 vendor/topthink/framework/tests/SessionTest.php create mode 100644 vendor/topthink/framework/tests/UrlRouteTest.php create mode 100644 vendor/topthink/framework/tests/ViewTest.php create mode 100644 vendor/topthink/framework/tests/bootstrap.php create mode 100644 vendor/topthink/think-container/.travis.yml create mode 100644 vendor/topthink/think-container/LICENSE create mode 100644 vendor/topthink/think-container/README.md create mode 100644 vendor/topthink/think-container/composer.json create mode 100644 vendor/topthink/think-container/phpunit.xml.dist create mode 100644 vendor/topthink/think-container/src/Container.php create mode 100644 vendor/topthink/think-container/src/Facade.php create mode 100644 vendor/topthink/think-container/src/exception/ClassNotFoundException.php create mode 100644 vendor/topthink/think-container/src/exception/FuncNotFoundException.php create mode 100644 vendor/topthink/think-container/tests/ContainerTest.php create mode 100644 vendor/topthink/think-container/tests/bootstrap.php create mode 100644 vendor/topthink/think-dumper/README.md create mode 100644 vendor/topthink/think-dumper/composer.json create mode 100644 vendor/topthink/think-dumper/phpunit.xml.dist create mode 100644 vendor/topthink/think-dumper/src/Connection.php create mode 100644 vendor/topthink/think-dumper/src/Dumper.php create mode 100644 vendor/topthink/think-dumper/src/ServerDumper.php create mode 100644 vendor/topthink/think-dumper/src/SourceContextProvider.php create mode 100644 vendor/topthink/think-dumper/src/helper.php create mode 100644 vendor/topthink/think-dumper/tests/DumperTest.php create mode 100644 vendor/topthink/think-dumper/tests/bootstrap.php create mode 100644 vendor/topthink/think-filesystem/README.md create mode 100644 vendor/topthink/think-filesystem/composer.json create mode 100644 vendor/topthink/think-filesystem/phpunit.xml.dist create mode 100644 vendor/topthink/think-filesystem/src/Filesystem.php create mode 100644 vendor/topthink/think-filesystem/src/facade/Filesystem.php create mode 100644 vendor/topthink/think-filesystem/src/filesystem/Driver.php create mode 100644 vendor/topthink/think-filesystem/src/filesystem/driver/Local.php create mode 100644 vendor/topthink/think-filesystem/tests/FilesystemTest.php create mode 100644 vendor/topthink/think-filesystem/tests/bootstrap.php create mode 100644 vendor/topthink/think-filesystem/tests/test.txt create mode 100644 vendor/topthink/think-helper/.github/workflows/ci.yml create mode 100644 vendor/topthink/think-helper/.github/workflows/php.yml create mode 100644 vendor/topthink/think-helper/LICENSE create mode 100644 vendor/topthink/think-helper/README.md create mode 100644 vendor/topthink/think-helper/composer.json create mode 100644 vendor/topthink/think-helper/phpunit.xml.dist create mode 100644 vendor/topthink/think-helper/src/Collection.php create mode 100644 vendor/topthink/think-helper/src/contract/Arrayable.php create mode 100644 vendor/topthink/think-helper/src/contract/Jsonable.php create mode 100644 vendor/topthink/think-helper/src/helper.php create mode 100644 vendor/topthink/think-helper/src/helper/Arr.php create mode 100644 vendor/topthink/think-helper/src/helper/Macroable.php create mode 100644 vendor/topthink/think-helper/src/helper/Str.php create mode 100644 vendor/topthink/think-helper/tests/ArrTest.php create mode 100644 vendor/topthink/think-helper/tests/CollectionTest.php create mode 100644 vendor/topthink/think-helper/tests/IsAssocTest.php create mode 100644 vendor/topthink/think-helper/tests/MergeDeepTest.php create mode 100644 vendor/topthink/think-helper/tests/StrTest.php create mode 100644 vendor/topthink/think-helper/tests/TestCase.php create mode 100644 vendor/topthink/think-multi-app/LICENSE create mode 100644 vendor/topthink/think-multi-app/README.md create mode 100644 vendor/topthink/think-multi-app/composer.json create mode 100644 vendor/topthink/think-multi-app/src/MultiApp.php create mode 100644 vendor/topthink/think-multi-app/src/Service.php create mode 100644 vendor/topthink/think-multi-app/src/Url.php create mode 100644 vendor/topthink/think-multi-app/src/command/Build.php create mode 100644 vendor/topthink/think-multi-app/src/command/Clear.php create mode 100644 vendor/topthink/think-multi-app/src/command/stubs/controller.stub create mode 100644 vendor/topthink/think-orm/.gitattributes create mode 100644 vendor/topthink/think-orm/LICENSE create mode 100644 vendor/topthink/think-orm/README.md create mode 100644 vendor/topthink/think-orm/composer.json create mode 100644 vendor/topthink/think-orm/src/DbManager.php create mode 100644 vendor/topthink/think-orm/src/Entity.php create mode 100644 vendor/topthink/think-orm/src/Model.php create mode 100644 vendor/topthink/think-orm/src/Paginator.php create mode 100644 vendor/topthink/think-orm/src/db/BaseBuilder.php create mode 100644 vendor/topthink/think-orm/src/db/BaseQuery.php create mode 100644 vendor/topthink/think-orm/src/db/Builder.php create mode 100644 vendor/topthink/think-orm/src/db/CacheItem.php create mode 100644 vendor/topthink/think-orm/src/db/Connection.php create mode 100644 vendor/topthink/think-orm/src/db/ConnectionInterface.php create mode 100644 vendor/topthink/think-orm/src/db/Express.php create mode 100644 vendor/topthink/think-orm/src/db/Fetch.php create mode 100644 vendor/topthink/think-orm/src/db/Mongo.php create mode 100644 vendor/topthink/think-orm/src/db/PDOConnection.php create mode 100644 vendor/topthink/think-orm/src/db/Query.php create mode 100644 vendor/topthink/think-orm/src/db/Raw.php create mode 100644 vendor/topthink/think-orm/src/db/Where.php create mode 100644 vendor/topthink/think-orm/src/db/builder/Mongo.php create mode 100644 vendor/topthink/think-orm/src/db/builder/Mysql.php create mode 100644 vendor/topthink/think-orm/src/db/builder/Oracle.php create mode 100644 vendor/topthink/think-orm/src/db/builder/Pgsql.php create mode 100644 vendor/topthink/think-orm/src/db/builder/Sqlite.php create mode 100644 vendor/topthink/think-orm/src/db/builder/Sqlsrv.php create mode 100644 vendor/topthink/think-orm/src/db/concern/AggregateQuery.php create mode 100644 vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php create mode 100644 vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php create mode 100644 vendor/topthink/think-orm/src/db/concern/ParamsBind.php create mode 100644 vendor/topthink/think-orm/src/db/concern/ResultOperation.php create mode 100644 vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php create mode 100644 vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php create mode 100644 vendor/topthink/think-orm/src/db/concern/Transaction.php create mode 100644 vendor/topthink/think-orm/src/db/concern/WhereQuery.php create mode 100644 vendor/topthink/think-orm/src/db/connector/Mongo.php create mode 100644 vendor/topthink/think-orm/src/db/connector/Mysql.php create mode 100644 vendor/topthink/think-orm/src/db/connector/Oracle.php create mode 100644 vendor/topthink/think-orm/src/db/connector/Pgsql.php create mode 100644 vendor/topthink/think-orm/src/db/connector/Sqlite.php create mode 100644 vendor/topthink/think-orm/src/db/connector/Sqlsrv.php create mode 100644 vendor/topthink/think-orm/src/db/connector/pgsql.sql create mode 100644 vendor/topthink/think-orm/src/db/connector/pgsql12.sql create mode 100644 vendor/topthink/think-orm/src/db/exception/BindParamException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/DataNotFoundException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/DbEventException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/DbException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/DuplicateException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/InvalidArgumentException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/ModelEventException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/ModelNotFoundException.php create mode 100644 vendor/topthink/think-orm/src/db/exception/PDOException.php create mode 100644 vendor/topthink/think-orm/src/facade/Db.php create mode 100644 vendor/topthink/think-orm/src/helper.php create mode 100644 vendor/topthink/think-orm/src/model/Collection.php create mode 100644 vendor/topthink/think-orm/src/model/Pivot.php create mode 100644 vendor/topthink/think-orm/src/model/Relation.php create mode 100644 vendor/topthink/think-orm/src/model/View.php create mode 100644 vendor/topthink/think-orm/src/model/Virtual.php create mode 100644 vendor/topthink/think-orm/src/model/concern/Attribute.php create mode 100644 vendor/topthink/think-orm/src/model/concern/AutoWriteData.php create mode 100644 vendor/topthink/think-orm/src/model/concern/Conversion.php create mode 100644 vendor/topthink/think-orm/src/model/concern/DbConnect.php create mode 100644 vendor/topthink/think-orm/src/model/concern/ModelEvent.php create mode 100644 vendor/topthink/think-orm/src/model/concern/OptimLock.php create mode 100644 vendor/topthink/think-orm/src/model/concern/RelationShip.php create mode 100644 vendor/topthink/think-orm/src/model/concern/SoftDelete.php create mode 100644 vendor/topthink/think-orm/src/model/contract/EnumTransform.php create mode 100644 vendor/topthink/think-orm/src/model/contract/FieldTypeTransform.php create mode 100644 vendor/topthink/think-orm/src/model/contract/Modelable.php create mode 100644 vendor/topthink/think-orm/src/model/contract/Typeable.php create mode 100644 vendor/topthink/think-orm/src/model/relation/BelongsTo.php create mode 100644 vendor/topthink/think-orm/src/model/relation/BelongsToMany.php create mode 100644 vendor/topthink/think-orm/src/model/relation/HasMany.php create mode 100644 vendor/topthink/think-orm/src/model/relation/HasManyThrough.php create mode 100644 vendor/topthink/think-orm/src/model/relation/HasOne.php create mode 100644 vendor/topthink/think-orm/src/model/relation/HasOneThrough.php create mode 100644 vendor/topthink/think-orm/src/model/relation/MorphMany.php create mode 100644 vendor/topthink/think-orm/src/model/relation/MorphOne.php create mode 100644 vendor/topthink/think-orm/src/model/relation/MorphTo.php create mode 100644 vendor/topthink/think-orm/src/model/relation/MorphToMany.php create mode 100644 vendor/topthink/think-orm/src/model/relation/OneToOne.php create mode 100644 vendor/topthink/think-orm/src/model/type/Date.php create mode 100644 vendor/topthink/think-orm/src/model/type/DateTime.php create mode 100644 vendor/topthink/think-orm/src/model/type/Json.php create mode 100644 vendor/topthink/think-orm/src/paginator/driver/Bootstrap.php create mode 100644 vendor/topthink/think-orm/stubs/Exception.php create mode 100644 vendor/topthink/think-orm/stubs/Facade.php create mode 100644 vendor/topthink/think-orm/stubs/load_stubs.php create mode 100644 vendor/topthink/think-template/LICENSE create mode 100644 vendor/topthink/think-template/README.md create mode 100644 vendor/topthink/think-template/composer.json create mode 100644 vendor/topthink/think-template/phpunit.xml create mode 100644 vendor/topthink/think-template/src/Template.php create mode 100644 vendor/topthink/think-template/src/facade/Template.php create mode 100644 vendor/topthink/think-template/src/template/TagLib.php create mode 100644 vendor/topthink/think-template/src/template/contract/DriverInterface.php create mode 100644 vendor/topthink/think-template/src/template/driver/File.php create mode 100644 vendor/topthink/think-template/src/template/exception/TemplateNotFoundException.php create mode 100644 vendor/topthink/think-template/src/template/taglib/Cx.php create mode 100644 vendor/topthink/think-template/tests/bootstrap.php create mode 100644 vendor/topthink/think-template/tests/tag/Demo.php create mode 100644 vendor/topthink/think-template/tests/template/extend.html create mode 100644 vendor/topthink/think-template/tests/template/fetch.html create mode 100644 vendor/topthink/think-template/tests/template/include.html create mode 100644 vendor/topthink/think-template/tests/template/layout.html create mode 100644 vendor/topthink/think-template/tests/think/TemplateTest.php create mode 100644 vendor/topthink/think-trace/LICENSE create mode 100644 vendor/topthink/think-trace/README.md create mode 100644 vendor/topthink/think-trace/composer.json create mode 100644 vendor/topthink/think-trace/src/Console.php create mode 100644 vendor/topthink/think-trace/src/Html.php create mode 100644 vendor/topthink/think-trace/src/Service.php create mode 100644 vendor/topthink/think-trace/src/TraceDebug.php create mode 100644 vendor/topthink/think-trace/src/config.php create mode 100644 vendor/topthink/think-trace/src/tpl/page_trace.tpl create mode 100644 vendor/topthink/think-validate/LICENSE create mode 100644 vendor/topthink/think-validate/README.md create mode 100644 vendor/topthink/think-validate/composer.json create mode 100644 vendor/topthink/think-validate/src/Validate.php create mode 100644 vendor/topthink/think-validate/src/contract/Enumable.php create mode 100644 vendor/topthink/think-validate/src/exception/ValidateException.php create mode 100644 vendor/topthink/think-validate/src/facade/Validate.php create mode 100644 vendor/topthink/think-validate/src/helper.php create mode 100644 vendor/topthink/think-validate/src/validate/ValidateRule.php create mode 100644 vendor/topthink/think-validate/src/validate/ValidateRuleSet.php create mode 100644 vendor/topthink/think-view/LICENSE create mode 100644 vendor/topthink/think-view/README.md create mode 100644 vendor/topthink/think-view/composer.json create mode 100644 vendor/topthink/think-view/src/Think.php diff --git a/.env b/.env new file mode 100644 index 0000000..e8d696f --- /dev/null +++ b/.env @@ -0,0 +1,12 @@ +APP_DEBUG = true +TCP_LOG_URL="121.40.192.142" +TCP_LOG_PORT=18001 +PROJECT_NAME="miniapi" +DEFAULT_LANG = zh-cn +SITE_DOMAIN = www.evus.cn +SITE_DOMAIN_BJ = www.evus.com.cn + +WECHAT_MINI_APPID = your_jinan_mini_appid +WECHAT_MINI_SECRET = your_jinan_mini_secret +WECHAT_MINI_APPID_BJ = wx72d43069c530ddb7 +WECHAT_MINI_SECRET_BJ = 1369ccf68a82005b3b6e94f5f95c6489 \ No newline at end of file diff --git a/.example.env b/.example.env new file mode 100644 index 0000000..d90c573 --- /dev/null +++ b/.example.env @@ -0,0 +1,17 @@ +APP_DEBUG = true +DB_TYPE = mysql +DB_HOST = 127.0.0.1 +DB_NAME = test +DB_USER = username +DB_PASS = password +DB_PORT = 3306 +DB_CHARSET = utf8 + +DEFAULT_LANG = zh-cn +SITE_DOMAIN = www.evus.cn +SITE_DOMAIN_BJ = www.evus.com.cn + +WECHAT_MINI_APPID = your_jinan_mini_appid +WECHAT_MINI_SECRET = your_jinan_mini_secret +WECHAT_MINI_APPID_BJ = your_beijing_mini_appid +WECHAT_MINI_SECRET_BJ = your_beijing_mini_secret diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d60af4e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/.idea +/doc +/runtime +/data diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..e69de29 diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..36f7b6f --- /dev/null +++ b/.travis.yml @@ -0,0 +1,42 @@ +sudo: false + +language: php + +branches: + only: + - stable + +cache: + directories: + - $HOME/.composer/cache + +before_install: + - composer self-update + +install: + - composer install --no-dev --no-interaction --ignore-platform-reqs + - zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Core.zip . + - composer require --update-no-dev --no-interaction "topthink/think-image:^1.0" + - composer require --update-no-dev --no-interaction "topthink/think-migration:^1.0" + - composer require --update-no-dev --no-interaction "topthink/think-captcha:^1.0" + - composer require --update-no-dev --no-interaction "topthink/think-mongo:^1.0" + - composer require --update-no-dev --no-interaction "topthink/think-worker:^1.0" + - composer require --update-no-dev --no-interaction "topthink/think-helper:^1.0" + - composer require --update-no-dev --no-interaction "topthink/think-queue:^1.0" + - composer require --update-no-dev --no-interaction "topthink/think-angular:^1.0" + - composer require --dev --update-no-dev --no-interaction "topthink/think-testing:^1.0" + - zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Full.zip . + +script: + - php think unit + +deploy: + provider: releases + api_key: + secure: TSF6bnl2JYN72UQOORAJYL+CqIryP2gHVKt6grfveQ7d9rleAEoxlq6PWxbvTI4jZ5nrPpUcBUpWIJHNgVcs+bzLFtyh5THaLqm39uCgBbrW7M8rI26L8sBh/6nsdtGgdeQrO/cLu31QoTzbwuz1WfAVoCdCkOSZeXyT/CclH99qV6RYyQYqaD2wpRjrhA5O4fSsEkiPVuk0GaOogFlrQHx+C+lHnf6pa1KxEoN1A0UxxVfGX6K4y5g4WQDO5zT4bLeubkWOXK0G51XSvACDOZVIyLdjApaOFTwamPcD3S1tfvuxRWWvsCD5ljFvb2kSmx5BIBNwN80MzuBmrGIC27XLGOxyMerwKxB6DskNUO9PflKHDPI61DRq0FTy1fv70SFMSiAtUv9aJRT41NQh9iJJ0vC8dl+xcxrWIjU1GG6+l/ZcRqVx9V1VuGQsLKndGhja7SQ+X1slHl76fRq223sMOql7MFCd0vvvxVQ2V39CcFKao/LB1aPH3VhODDEyxwx6aXoTznvC/QPepgWsHOWQzKj9ftsgDbsNiyFlXL4cu8DWUty6rQy8zT2b4O8b1xjcwSUCsy+auEjBamzQkMJFNlZAIUrukL/NbUhQU37TAbwsFyz7X0E/u/VMle/nBCNAzgkMwAUjiHM6FqrKKBRWFbPrSIixjfjkCnrMEPw= + file: + - ThinkPHP_Core.zip + - ThinkPHP_Full.zip + skip_cleanup: true + on: + tags: true diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..8d94897 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,32 @@ + +ThinkPHP遵循Apache2开源协议发布,并提供免费使用。 +版权所有Copyright © 2006-2025 by ThinkPHP (http://thinkphp.cn) +All rights reserved。 +ThinkPHP® 商标和著作权所有者为上海顶想信息科技有限公司。 + +Apache Licence是著名的非盈利开源组织Apache采用的协议。 +该协议和BSD类似,鼓励代码共享和尊重原作者的著作权, +允许代码修改,再作为开源或商业软件发布。需要满足 +的条件: +1. 需要给代码的用户一份Apache Licence ; +2. 如果你修改了代码,需要在被修改的文件中说明; +3. 在延伸的代码中(修改和有源代码衍生的代码中)需要 +带有原来代码中的协议,商标,专利声明和其他原来作者规 +定需要包含的说明; +4. 如果再发布的产品中包含一个Notice文件,则在Notice文 +件中需要带有本协议内容。你可以在Notice中增加自己的 +许可,但不可以表现为对Apache Licence构成更改。 +具体的协议参考:http://www.apache.org/licenses/LICENSE-2.0 + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..05c7b83 --- /dev/null +++ b/README.md @@ -0,0 +1,77 @@ + + +ThinkPHP 8 +=============== + +## 特性 + +* 基于PHP`8.0+`重构 +* 升级`PSR`依赖 +* 依赖`think-orm`3.0+版本 +* 全新的`think-dumper`服务,支持远程调试 +* 支持`6.0`/`6.1`无缝升级 + +> ThinkPHP8的运行环境要求PHP8.0+ + +现在开始,你可以使用官方提供的[ThinkChat](https://chat.topthink.com/),让你在学习ThinkPHP的旅途中享受私人AI助理服务! + + + +ThinkPHP生态服务由[顶想云](https://www.topthink.com)(TOPThink Cloud)提供,为生态提供专业的开发者服务和价值之选。 + +## 文档 + +[完全开发手册](https://doc.thinkphp.cn) + + +## 赞助 + +全新的[赞助计划](https://www.thinkphp.cn/sponsor)可以让你通过我们的网站、手册、欢迎页及GIT仓库获得巨大曝光,同时提升企业的品牌声誉,也更好保障ThinkPHP的可持续发展。 + +[](https://www.thinkphp.cn/sponsor/special) + +[](https://www.thinkphp.cn/sponsor) + +## 安装 + +~~~ +composer create-project topthink/think tp +~~~ + +启动服务 + +~~~ +cd tp +php think run +~~~ + +然后就可以在浏览器中访问 + +~~~ +http://localhost:8000 +~~~ + +如果需要更新框架使用 +~~~ +composer update topthink/framework +~~~ + +## 命名规范 + +`ThinkPHP`遵循PSR-2命名规范和PSR-4自动加载规范。 + +## 参与开发 + +直接提交PR或者Issue即可 + +## 版权信息 + +ThinkPHP遵循Apache2开源协议发布,并提供免费使用。 + +本项目包含的第三方源码和二进制文件之版权信息另行标注。 + +版权所有Copyright © 2006-2024 by ThinkPHP (http://thinkphp.cn) All rights reserved。 + +ThinkPHP® 商标和著作权所有者为上海顶想信息科技有限公司。 + +更多细节参阅 [LICENSE.txt](LICENSE.txt) diff --git a/app/.htaccess b/app/.htaccess new file mode 100644 index 0000000..3418e55 --- /dev/null +++ b/app/.htaccess @@ -0,0 +1 @@ +deny from all \ No newline at end of file diff --git a/app/AppService.php b/app/AppService.php new file mode 100644 index 0000000..96556e8 --- /dev/null +++ b/app/AppService.php @@ -0,0 +1,22 @@ +app = $app; + $this->request = $this->app->request; + + // 控制器初始化 + $this->initialize(); + } + + // 初始化 + protected function initialize() + {} + + /** + * 验证数据 + * @access protected + * @param array $data 数据 + * @param string|array $validate 验证器名或者验证规则数组 + * @param array $message 提示信息 + * @param bool $batch 是否批量验证 + * @return array|string|true + * @throws ValidateException + */ + protected function validate(array $data, string|array $validate, array $message = [], bool $batch = false) + { + if (is_array($validate)) { + $v = new Validate(); + $v->rule($validate); + } else { + if (strpos($validate, '.')) { + // 支持场景 + [$validate, $scene] = explode('.', $validate); + } + $class = false !== strpos($validate, '\\') ? $validate : $this->app->parseClass('validate', $validate); + $v = new $class(); + if (!empty($scene)) { + $v->scene($scene); + } + } + + $v->message($message); + + // 是否批量验证 + if ($batch || $this->batchValidate) { + $v->batch(true); + } + + return $v->failException(true)->check($data); + } + +} diff --git a/app/ExceptionHandle.php b/app/ExceptionHandle.php new file mode 100644 index 0000000..453d126 --- /dev/null +++ b/app/ExceptionHandle.php @@ -0,0 +1,58 @@ + [ + ], + + 'listen' => [ + 'AppInit' => [], + 'HttpRun' => [], + 'HttpEnd' => [], + 'LogLevel' => [], + 'LogWrite' => [], + ], + + 'subscribe' => [ + ], +]; diff --git a/app/lang/en-us.php b/app/lang/en-us.php new file mode 100644 index 0000000..b291133 --- /dev/null +++ b/app/lang/en-us.php @@ -0,0 +1,1058 @@ + [ + 'title' => 'EVUS Chinese Website_EVUS US Visa Registration_EVUS Registration Steps', + 'description' => 'EVUS,EVUS registration steps,EVUS system registration portal,what is EVUS,EVUS US visa registration,EVUS official website in Chinese', + 'keywords' => 'EVUS Chinese Website provides registration services for the new Electronic Visa Update System (EVUS). Offers EVUS official website queries, updates, EVUS system registration portal, EVUS registration steps and related information.', + 'footer_1' => 'Disclaimer: This website is a professionally registered and ICP-filed service platform dedicated to assisting individuals and businesses with travel authorization applications. Full refund for unsuccessful registrations (service fees non-refundable after approval). Disputes shall be arbitrated in the jurisdiction where our company is registered.', + 'footer_2' => 'ITS INTERNATIONAL TRAVEL SERVICE COMPANY Copyright © 2024-2025 All rights reservedben', + ], + 'menu_home' => 'HOME', + 'menu_apply' => 'ENROLL', + 'menu_search' => 'STATUS', + 'menu_us_apply' => 'VISA', + 'menu_esta_apply' => 'ESTA', + 'menu_help' => 'HELP', + 'menu_news' => 'NEWS', + 'menu_user' => 'ACCOUNT', + 'menu_company' => 'ABOUT', + 'user_my_order' => 'My Orders', + 'user_invoice' => 'Invoice', + 'user_multiple_invoice' => 'Combined Invoice', + 'user_logout' => 'Sign Out', + 'order_paid' => 'Paid', + 'order_unpaid' => 'Unpaid', + + 'index_title' => 'eVUS Registration Service in Chinese', + 'index_desc' => 'Click the registration button to complete the process easily', + 'index_button' => 'eVUS Registration', + 'index_step1' => 'Enter travel information', + 'index_step2' => '3-5 minutes entry', + 'index_step3' => 'Pay service fee', + 'index_step4' => 'Submit for review within 3-15 minutes', + 'index_step5' => 'Check registration status', + 'index_attention_tips' => 'Important Notice', + 'index_attention' => 'This is an independently operated commercial service platform featuring three core services: an intelligent form-filling system that streamlines the application process, precise OCR recognition for quick information extraction, and AI-powered multilingual translation. The website is registered, certified, and compliant with relevant authorities, providing professional paid services and is not affiliated with any government agency.', + 'index_price_1_1' => 'Express eVUS Registration', + 'index_price_1_2' => 'Precise OCR Recognition', + 'index_price_1_3' => 'Smart AI Translation', + 'index_price_1_4' => 'Submit within 6 hours', + 'index_price_2_1' => 'Professional eVUS Registration', + 'index_price_2_2' => 'Precise OCR Recognition', + 'index_price_2_3' => 'Smart AI Translation', + 'index_price_2_4' => 'Submit within 15 minutes', + 'index_service' => 'Our Services', + 'index_advantage' => 'Our Advantages', + 'index_advantage_1_title' => '24/7 Rapid Response', + 'index_advantage_1_content_1' => 'Airport expedited service designed for urgent travel needs', + 'index_advantage_1_content_2' => 'No lengthy queues - submissions processed in just 5-7 minutes upon airport arrival', + 'index_advantage_1_content_3' => 'Simplified procedures for quick clearance, eliminating missed flight risks', + 'index_advantage_2_title' => 'Intelligent Form System', + 'index_advantage_2_content_1' => 'Simplified Chinese form completion in just 5 minutes, significantly reducing language barriers', + 'index_advantage_2_content_2' => 'Dual verification by professionals ensures information accuracy, reducing rejection risks by 8x compared to self-filing (which typically takes 30-40 minutes)', + 'evus_pic' => '/new/assets/images/evus_en.png', + 'evusearch_pic' => '/new/assets/images/evusearch_en.png', + 'esta_pic' => '/new/assets/images/esta_en.png', + 'evus' => [ + 'other_country_acquired_other_required' => 'Please fill in "Others"', + 'other_country_acquired_other_label' => 'other', + 'add' => 'add', + 'delete' => 'delete', + 'title' => 'Travel Document Information', + 'passport_number_label' => 'Passport Number', + 'passport_placeholder' => 'Enter or upload photo', + 'passport_required' => 'Please enter passport number', + 'passport_upload_title' => 'Take photo/upload valid passport image', + 'passport_tooltip' => 'Passport numbers are usually 9 characters starting with G, E, EA, EB, or EC, except for official and diplomatic passports. Please carefully distinguish between number 1 and letter I, and number 0 and letter O.', + 'passport_hint' => 'Enter the passport number from the passport you will use for travel.', + 'passport_country_label' => 'Passport Country', + 'select_country_required' => 'Please select a country', + 'select_country_prompt' => 'Please select a country', + 'china' => 'China', + 'country_tooltip' => '', // Can add tooltip text if needed + 'country_hint' => 'Currently only citizens of the People\'s Republic of China are required to register for EVUS.', + 'pinyin' => 'Pinyin', + 'last_name_label' => 'Last Name', + 'last_name_placeholder' => 'Enter surname in pinyin', + 'last_name_required' => 'Please enter surname in pinyin', + 'last_name_tooltip' => 'Do not enter given name here. For compound surnames, follow passport information. If you have no surname, enter "UNKNOWN"', + 'last_name_hint' => 'Please enter your surname in English letters as shown on your passport', + 'first_name_label' => 'First Name', + 'first_name_placeholder' => 'Enter given name in pinyin', + 'first_name_required' => 'Please enter given name in pinyin', + 'first_name_tooltip' => 'Please enter your given name as shown on your passport. Do not enter surname here', + 'first_name_hint' => 'Enter your name exactly as it appears on your passport', + 'birth_date_label' => 'Date of Birth', + 'birth_date_placeholder' => 'Select date of birth', + 'birth_date_required' => 'Please select date of birth', + 'birth_date_tooltip' => 'Please enter your date of birth exactly as shown on your passport', + 'birth_city_label' => 'City of Birth', + 'birth_city_placeholder' => 'Enter city of birth', + 'birth_city_required' => 'Please enter city of birth', + 'birth_city_tooltip' => 'Please enter your place of birth as shown on your passport. ', + 'birth_country_label' => 'Country of Birth', + 'birth_country_tooltip' => 'Please select your country of birth as shown on your passport', + 'country_required' => 'Please select a country', + 'gender_label' => 'Gender', + 'male' => 'Male', + 'female' => 'Female', + 'passport_issue_date_label' => 'Passport Issue Date', + 'passport_issue_placeholder' => 'Select passport issue date', + 'passport_issue_required' => 'Please select passport issue date', + 'passport_issue_tooltip' => 'Please enter the date exactly as shown on your passport', + 'passport_expiry_label' => 'Passport Expiry Date', + 'passport_expiry_placeholder' => 'Select passport expiry date', + 'passport_expiry_required' => 'Please select passport expiry date', + 'passport_expiry_tooltip' => 'Please enter the date exactly as shown on your passport', + 'ten_year_visa_label' => 'Do you have a 10-year B1/B2/B1-B2 US visitor visa?', + 'ten_year_visa_hint' => 'Please confirm if you hold a 10-year US business/tourist (B1/B2/B1-B2) visa', + 'ten_year_visa_warning' => 'To register for EVUS, you must have a 10-year B1, B2 or B1/B2 US visitor visa. If you wish to travel to the US but don\'t have this type of visa, you must apply at a US embassy', + 'visa_number_label' => 'US B1/B2 Visa Number', + 'visa_number_placeholder' => 'Enter or upload photo', + 'visa_number_required' => 'Please enter visa number', + 'visa_number_tooltip' => 'Please enter the 8-digit red visa number from the bottom right of your US visa sticker', + 'upload_visa_title' => 'Take photo/upload valid passport photo', + 'visa_in_passport_label' => 'Is your US visa in your current passport?', + 'visa_in_passport_hint' => 'If your visa is in an old passport, select "No" and enter old passport information', + 'yes' => 'Yes', + 'no' => 'No', + 'old_passport_number_label' => 'Old Passport Number with US Visa', + 'enter_or_upload' => 'Enter or upload photo', + 'passport_number_required' => 'Please enter passport number', + 'upload_passport_photo' => 'Take photo/upload valid passport photo', + 'old_passport_tooltip' => 'Please enter the old passport number containing the US visa', + 'passport_country_tooltip' => 'Please select the issuing country of the old passport', + 'next_step' => 'Next Step', + 'other_citizenship_title' => 'Other Citizenships, Nationalities, Passports', + 'other_nationality_label' => 'Do you currently have another nationality?', + 'other_nationality_tooltip' => 'Please confirm if you have citizenship in any country other than China', + 'other_citizenship_current_label' => 'Current citizenship in other country', + 'other_citizenship_current_tooltip' => 'Select the country of your other citizenship. If you answered "Yes" above, this country must complete your application', + 'how_acquired_citizenship_label' => 'How did you acquire citizenship from this country?', + 'how_acquired_citizenship_tooltip' => 'Select how you obtained citizenship/nationality from this country', + 'past_nationality_label' => 'Have you ever had another nationality?', + 'past_nationality_tooltip' => 'Answering "Yes" to this question means you no longer have this nationality', + 'past_citizenship_label' => 'Past citizenship in other country', + 'past_citizenship_tooltip' => 'Please select the country name as shown in the birthplace field on your passport', + 'other_passport_label' => 'Have you ever had a passport or resident ID from another country?', + 'other_passport_tooltip' => 'Please confirm if you have a passport from a country other than China. If you have this document but have lost it or don\'t remember the number, you can enter "UNKNOWN"', + 'issuing_country_label' => 'Issuing Country', + 'issuing_country_tooltip' => 'Select the country of citizenship as it appears on your documents. The issuing country\'s documents are required to complete the application.', + 'document_type_label' => 'Document Type', + 'document_type_tooltip' => 'Please select the type of travel document issued by another country', + 'document_number_label' => 'Document Number', + 'document_number_placeholder' => 'Letters and numbers (enter 000000 if unavailable)', + 'document_number_tooltip' => 'Enter the document number as shown on your travel document. Travel documents may contain numbers and/or characters. Please carefully distinguish between the number zero and the letter O.', + 'expiry_year_label' => 'Expiry Year', + 'expiry_year_placeholder' => 'Select expiry year', + 'expiry_year_tooltip' => 'Please indicate the expiry year of your travel document issued by another country, even if it has expired.', + 'social_media_label' => 'Do you have social media accounts?', + 'social_media_tooltip' => 'Please indicate if you have social media accounts', + 'facebook_label' => 'Facebook', + 'facebook_placeholder' => 'Enter Facebook username', + 'facebook_tooltip' => 'If applicable, please enter your Facebook account name', + 'linkedin_label' => 'LinkedIn', + 'linkedin_placeholder' => 'Enter LinkedIn URL', + 'linkedin_tooltip' => 'If applicable, please enter your LinkedIn URL', + 'twitter_label' => 'Twitter', + 'twitter_placeholder' => 'Enter Twitter username', + 'twitter_tooltip' => 'If applicable, please enter your Twitter account name', + 'instagram_label' => 'Instagram', + 'instagram_placeholder' => 'Enter Instagram username', + 'instagram_tooltip' => 'If applicable, please enter your Instagram username', + 'platform_label' => 'Provider/Platform', + 'platform_tooltip' => 'If applicable, please select the provider/platform', + 'identifier_label' => 'Social Media Identifier', + 'identifier_placeholder' => 'Enter social media identifier', + 'identifier_tooltip' => 'If applicable, please enter your social media identifier', + 'alias_label' => 'Do you have any aliases?', + 'alias_tooltip' => 'Do you have any aliases', + 'alias_last_name_label' => 'Alias Last Name', + 'alias_last_name_placeholder' => 'Enter alias last name', + 'alias_last_name_tooltip' => 'Please enter your alias last name', + 'alias_last_name_hint' => 'Please enter your alias last name. Do not enter given name in this field.', + 'alias_first_name_label' => 'Alias First Name', + 'alias_first_name_placeholder' => 'Enter alias first name', + 'alias_first_name_tooltip' => 'Please enter your alias first name', + 'alias_first_name_hint' => 'Please enter your alias first name. Do not enter last name in this field.', + 'select_option_required' => 'Please select', + 'select_option_prompt' => 'Please select', + 'select_document_type_required' => 'Please select document type', + 'select_document_type_prompt' => 'Please select document type', + 'select_platform_required' => 'Please select provider/platform', + 'select_platform_prompt' => 'Please select provider/platform', + 'by_birth' => 'By birth', + 'by_parents' => 'Through parents', + 'naturalization' => 'Naturalization', + 'other' => 'Other', + 'passport_number' => 'Passport Number', + 'permanent_residence_id' => 'Permanent Residence ID (Green Card)', + 'address_contact_title' => 'Address and Contact Information', + 'id_card_instructions' => 'Enter the number or click [Camera] to recognize your valid ID card front photo; Uploading photos can automatically recognize and import your information.', + 'id_number_label' => 'ID Number', + 'id_number_required' => 'Please enter ID number', + 'upload_photo_title' => 'Take photo/upload valid photo', + 'id_number_tooltip' => 'Please enter 18-digit ID number. If you don\'t have an ID number, please enter "UNKNOWN".', + 'email_label' => 'Email (Optional)', + 'email_placeholder' => 'Recommended for receiving EVUS approval letter', + 'email_required' => 'Please enter email', + 'email_tooltip' => 'You will receive your application confirmation via email. Any status updates will also be notified by email.', + 'current_country_label' => 'Current Country', + 'current_country_tooltip' => 'Please select the country where you currently reside', + 'current_province_label' => 'Current Province/State', + 'current_province_placeholder' => 'Enter current province/state', + 'current_province_required' => 'Enter current province/state', + 'current_province_tooltip' => 'Please enter the province or state where you currently reside', + 'current_city_label' => 'Current City', + 'current_city_placeholder' => 'Enter current city', + 'current_city_required' => 'Enter current city', + 'current_city_tooltip' => 'Please enter the city where you currently reside', + 'current_address_label' => 'Current Address', + 'current_address_placeholder' => 'Enter current address', + 'current_address_required' => 'Enter current address', + 'current_address_tooltip' => 'Please enter your current detailed address', + 'phone_label' => 'Phone Number', + 'phone_placeholder' => 'Please enter phone number', + 'phone_tooltip' => 'Please enter a valid phone number', + 'parents_info_title' => 'Parents Information', + 'father_surname_label' => "Father's Surname", + 'father_surname_placeholder' => "Enter father's surname", + 'father_surname_required' => "Please enter father's surname", + 'father_surname_tooltip' => "Please enter the applicant's father's surname", + 'father_name_label' => "Father's Given Name", + 'father_name_placeholder' => "Enter father's given name", + 'father_name_required' => "Please enter father's given name", + 'father_name_tooltip' => "Please enter the applicant's father's given name", + 'mother_surname_label' => "Mother's Surname", + 'mother_surname_placeholder' => "Enter mother's surname", + 'mother_surname_required' => "Please enter mother's surname", + 'mother_surname_tooltip' => "Please enter the applicant's mother's surname", + 'mother_name_label' => "Mother's Given Name", + 'mother_name_placeholder' => "Enter mother's given name", + 'mother_name_required' => "Please enter mother's given name", + 'mother_name_tooltip' => "Please enter the applicant's mother's given name", + 'employment_info_title' => 'Employment Information', + 'has_employer_label' => 'Do you currently or previously have an employer?', + 'has_employer_tooltip' => 'If answering "Yes", please fill in employer information', + 'employer_country_label' => 'Employer Country', + 'employer_country_tooltip' => 'Please select the country where your employer is located from the list', + 'employer_state_label' => 'Employer State/Province', + 'employer_state_placeholder' => 'Enter employer state/province', + 'employer_state_required' => 'Please enter employer state/province', + 'employer_state_tooltip' => 'Recommended to enter in English or Pinyin. If unknown, enter "UNKNOWN"', + 'employer_city_label' => 'Employer City', + 'employer_city_placeholder' => 'Enter employer city', + 'employer_city_required' => 'Please enter employer city (do not include province)', + 'employer_city_tooltip' => 'Recommended to enter in English or Pinyin. If unknown, enter "UNKNOWN"', + 'employer_address_label' => 'Employer Address', + 'employer_address_placeholder' => 'Enter employer address', + 'employer_address_required' => 'Please enter employer address', + 'employer_address_tooltip' => 'Recommended to enter in English or Pinyin. Do not include province or city here. If unknown, enter "UNKNOWN"', + 'employer_name_label' => 'Employer Name', + 'employer_name_placeholder' => 'Enter employer name', + 'employer_name_required' => 'Employer name (max 30 characters)', + 'employer_name_tooltip' => 'Please enter employer name in English or Pinyin. If no employer, you may enter "Self-employed", "Homemaker", etc. to describe your employment status', + 'travel_info_title' => 'Travel Information', + 'transit_purpose_label' => 'Is your purpose for traveling to the US to transit to another country?', + 'transit_purpose_tooltip' => 'Please indicate if your trip to the US is solely for transit without staying. If "No", you may optionally provide US contact information.', + 'us_address_section_title' => 'US Address (Optional)', + 'us_contact_name_label' => 'Hotel name / Business associate / Relative or friend full name in US (Optional)', + 'us_contact_name_placeholder' => 'Should not contain numbers or special characters. Leave blank if unavailable', + 'us_contact_name_required' => 'Should not contain numbers or special characters. Leave blank if unavailable', + 'us_contact_name_tooltip' => 'Your US contact can be a friend, relative or business associate. If you don\'t have a US contact, enter the name, address and phone number of your accommodation (e.g. hotel name). You may also enter "UNKNOWN".', + 'us_state_label' => 'State (Optional)', + 'select_state_required' => 'Please select state', + 'select_state_prompt' => 'Please select state', + 'us_state_tooltip' => 'Please select the state where your US contact is located from the list. If unknown, select "Unknown"', + 'us_city_label' => 'City (Optional)', + 'us_city_placeholder' => 'Enter contact\'s city, do not include state', + 'us_city_required' => 'Enter contact\'s city, do not include state', + 'us_city_tooltip' => 'Please enter the city where your US contact is located. If unknown, enter "UNKNOWN".', + 'us_address_label' => 'Address (Optional)', + 'us_address_placeholder' => 'Enter contact\'s street address and number, do not include state or city', + 'us_address_required' => 'Enter contact\'s street address and number, do not include state or city', + 'us_address_tooltip' => 'Please enter your US contact\'s street address and number. Do not include state or city here. If unknown, enter "UNKNOWN".', + 'us_phone_label' => 'Phone Number (Optional)', + 'select_phone_prefix_prompt' => 'Select phone prefix', + 'us_phone_placeholder' => 'Enter phone number', + 'us_phone_tooltip' => 'Please enter your US contact\'s phone number. If unknown, enter "0".', + + 'emergency_contact_title' => 'Emergency Contact (Optional)', + 'emergency_last_name_label' => 'Last Name (Optional)', + 'emergency_last_name_placeholder' => 'Enter emergency contact last name', + 'emergency_last_name_required' => 'Enter emergency contact last name', + 'emergency_last_name_tooltip' => 'Please enter your emergency contact\'s last name. The emergency contact can be your contact in the US or another country, such as family member, friend or business partner. Leave blank if no emergency contact', + 'emergency_first_name_label' => 'First Name (Optional)', + 'emergency_first_name_placeholder' => 'Enter emergency contact first name', + 'emergency_first_name_required' => 'Enter emergency contact first name', + 'emergency_first_name_tooltip' => 'Please enter your emergency contact\'s first name. The emergency contact can be your contact in the US or another country, such as family member, friend or business partner. Leave blank if no emergency contact', + 'emergency_email_label' => 'Email (Optional)', + 'emergency_email_placeholder' => 'Enter emergency contact email', + 'emergency_email_required' => 'Enter emergency contact email', + 'emergency_email_tooltip' => 'Please enter your emergency contact\'s email. Leave blank if no emergency contact', + 'emergency_phone_label' => 'Phone Number (Optional)', + 'emergency_phone_placeholder' => 'Enter emergency contact phone number', + 'emergency_phone_tooltip' => 'Please enter your emergency contact\'s phone number. Enter 0 if no emergency contact', + + 'eligibility_question' => 'Eligibility Questions', + 'warning_cannot_continue' => 'Are you sure you want to answer "Yes" to this question? If your answer is "Yes", you will not be able to continue the online application.', + 'q_a' => 'Do you currently have any of the following diseases (communicable diseases as defined under Section 361(b) of the Public Health Service Act): cholera, diphtheria, tuberculosis, smallpox, yellow fever, viral hemorrhagic fevers including Ebola, Lassa, Marburg, Crimean-Congo hemorrhagic fever, or severe acute respiratory illnesses capable of spreading to others and likely to cause death?', + 'q_b' => 'Have you ever been arrested or convicted for a crime that caused serious damage to property, serious harm to another person, or serious harm to a government authority?', + 'q_c' => 'Have you ever violated any law related to possessing, using, or distributing illegal drugs?', + 'q_d' => 'Have you ever sought to engage in or have you ever engaged in terrorist activities, espionage, sabotage, or genocide?', + 'q_e' => 'Have you ever committed fraud or misrepresented yourself or others to obtain or assist others in obtaining a visa or entry into the United States?', + 'q_f' => 'Are you currently seeking employment in the United States, or have you ever worked in the United States without authorization?', + 'q_g' => 'Have you ever been denied a U.S. visa, refused admission to the United States, or withdrawn your application for admission at a U.S. port of entry?', + 'q_h' => 'Have you ever overstayed your authorized period of stay in the United States or otherwise violated the terms of a U.S. visa?', + 'q_i' => 'Since March 1, 2011, have you ever traveled to or been present in Iran, Iraq, Libya, North Korea, Somalia, Sudan, Syria, or Yemen?', + 'reject_date' => 'Date of Refusal', + 'reject_address' => 'Place of Refusal', + 'vist_country' => 'Country Visited', + 'vist_from_date' => 'Start Date', + 'vist_end_date' => 'End Date', + 'vist_country_des' => 'Primary Reason for Visit', + 'IRN' => 'Iran', + 'IRQ' => 'Iraq', + 'LBY' => 'Libya', + 'PRK' => 'North Korea', + 'SOM' => 'Somalia', + 'SDN' => 'Sudan', + 'SYR' => 'Syria', + 'YEM' => 'Yemen', + 'reason_1' => 'Tourism', + 'reason_2' => 'Visiting Family', + 'reason_3' => 'Employment', + 'reason_4' => 'Business', + 'reason_5' => 'Study', + 'reason_6' => 'Journalism', + 'reason_7' => 'Conference', + 'reason_8' => 'Cultural Exchange', + 'reason_9' => 'Religious Activities', + 'reason_10' => 'Medical Treatment', + 'reason_11' => 'Transit', + 'reason_12' => 'Diplomatic/Official', + 'reason_13' => 'Other', + 'declaration_title' => 'Applicant Declaration', + 'declaration_check1' => 'I declare that the information provided in this application is true, complete, and correct.', + 'declaration_check2' => 'I have read and understood ', + 'choose_package' => 'Select Package', + 'package_a' => 'Package A: 398 CNY / VIP Fast Registration (Complete information feedback in 15 minutes)', + 'package_b' => 'Package B: 98 CNY / Standard Registration (Complete information feedback in 6 hours)', + 'submit_now' => 'Submit Now', + 'termsCheckbox' => ' +
+ The Electronic Visa Update System (EVUS) cross-references data with law enforcement databases. All travelers holding 10-year validity visitor visas (B1, B2, or B1/B2) must register on EVUS before traveling to the United States if entering as short-term visitors. + An approved EVUS registration indicates permission to travel to the U.S., but does not guarantee entry. Upon arrival at a U.S. port of entry, you will be inspected by a U.S. Customs and Border Protection officer, who will determine your admissibility under U.S. immigration laws. + All information provided by you or your designated third-party agent must be truthful and accurate. If you or your agent knowingly submit false, fictitious, or fraudulent statements during the application process, resulting in EVUS update failure or visa revocation, you will bear full responsibility. + Once submitted, information cannot be modified. Processing timelines depend on your selected service package. +
+By proceeding, you confirm having read and understood the above information.
+ ++ This application respects and protects the privacy of all users. To provide accurate and personalized services, we collect and use your personal information in accordance with this policy. We exercise high diligence in handling such information and will not disclose it to third parties without your prior consent, except as specified herein. This policy may be updated periodically. + Your agreement to our Terms of Service constitutes acceptance of this Privacy Policy, which forms an integral part thereof. + +
(a) Registration information provided when creating an account; + (b) Automatically collected data including IP address, browser type, language preferences, access times/dates, hardware/software characteristics, and visited pages; + (c) User data obtained through legitimate business partnerships. + Exclusions: + (a) Search query keywords; + (b) Public activity/transaction records within the platform; + (c) Information related to policy violations and enforcement actions.
+ +(a) We will not share, sell, or trade your personal data with unrelated third parties without permission, except when collaborating with service providers (who will be prohibited from further use post-service). + (b) We prohibit third parties from collecting/exploiting user information. Violations will result in immediate account termination. + (c) We may use your information to deliver targeted content, including product/service announcements or (with consent) partner communications.
+ +Your information may be disclosed: + (a) With your consent; + (b) When necessary for service fulfillment; + (c) As required by law or governmental/legal authorities; + (d) For investigating policy violations; + (e) To resolve intellectual property disputes; + (f) To facilitate transactions between users; + (g) Other legally permissible circumstances.
+ +Collected information may be stored on servers located domestically or internationally, potentially outside your country of residence.
+ +(a) Cookies may be used to enhance personalized services unless disabled. + (b) You may refuse cookies via browser settings, though this may limit functionality. + (c) Cookie-derived data follows this policy.
+ +(a) Account credentials are encrypted, though no system is completely secure. + (b) Exercise caution when sharing personal data during transactions.
+ +(a) Changes will be published in prominent locations. + (b) We reserve modification rights. Material changes will be notified via platform announcements. + Immediately contact customer service if your login credentials are compromised.
+Our company (ITS INTERNATIONAL TRAVEL SERVICE COMPANY) is a professional institution providing travel-related services, specializing in assisting clients with EVUS registration applications.
+Important Note: Our company only provides form filling guidance, information review, and technical assistance services related to EVUS registration, and is not affiliated with any government agencies. Our services aim to help clients complete the application process more accurately and avoid common errors.
+Our services include: assisting with filling out EVUS application forms, reviewing provided information, submitting applications to the official system, and providing necessary technical support during the application process. Please note that we cannot guarantee that the application will be approved, as the final decision rests entirely with U.S. Customs and Border Protection (CBP).
+Using our EVUS registration service requires payment of corresponding service fees, which do not include official application fees that may be charged by the U.S. government (if applicable).
+Our service fee structure is clear and transparent. Users must pay the service fee according to the prices published on this website. Service fees may be adjusted without notice, but applications already started will be executed according to the fee standards applicable at the time of application initiation.
+Fees include: application guidance services, information review services, technical support services, and subsequent application status inquiry assistance. All fees are clearly informed before the service begins, and users need to complete payment before continuing with the service.
+When using this service, users are responsible for providing true, accurate, complete, and up-to-date personal information. This information includes but is not limited to: name, date of birth, passport information, visa information, and other data required for EVUS application.
+Users should ensure that all provided materials are true and valid. If EVUS application fails, is delayed, or is rejected due to incorrect, incomplete, outdated, or misleading information provided by the user, our company shall not bear any responsibility.
+User declares and guarantees: All provided information is true and accurate; has legal rights to provide this information; this information does not infringe upon any third-party rights; and using this service does not violate any applicable laws and regulations.
+Our company provides EVUS application assistance services, not official application channels. The outcome of EVUS registration is entirely determined by U.S. Customs and Border Protection (CBP), and our company cannot influence or control the approval results.
+Therefore, our company does not assume any guarantees or promises regarding EVUS application results. Regardless of whether the application is successful or not, paid service fees are non-refundable as the service has been completed upon submission of the application.
+Liability limitation: To the maximum extent permitted by law, our company and its employees and agents shall not be liable for any indirect, incidental, special, consequential damages, or loss of profits arising from the use of this service. Our maximum liability is limited to the amount of service fees paid by the user.
+These service terms and any disputes arising from the use of this service shall be governed by the laws of California, USA, without regard to its conflict of law provisions.
+Any disputes related to these service terms should first be resolved through friendly negotiation. If negotiation fails, both parties agree to submit the dispute to the competent court in Los Angeles County, California for resolution.
+User agrees: Regardless of location, using this service indicates acceptance of the exclusive jurisdiction of California courts and waives any objections to the jurisdiction and venue of such courts.
+ITS INTERNATIONAL TRAVEL SERVICE COMPANY (hereinafter referred to as "the company", "we", "our") is firmly committed to regulatory compliance and the privacy and protection of personal data. Therefore, in this privacy policy, users (hereinafter referred to as "user", "you", "your") will find all relevant information to better understand how we process your personal data.
+ +We may update this privacy policy based on new legislation or judicial requirements and/or business needs, etc. Any updates or modifications to this privacy policy will be considered applicable from the date of its publication on the website. Therefore, it is recommended that users regularly review this privacy policy.
+ +Please remember that to access and use our website, you must be an adult and have the legal capacity to enter into contracts according to the national laws and regulations applicable in your country of birth or residence.
+ +Without prejudice to your rights under applicable law, this privacy policy is not a contract or part of your contract with us. This privacy policy will always be available on this website so that data subjects can consult it at any time.
+For the purposes of this privacy policy, "personal data" means all data that identifies a data subject or can be used to identify him/her, such as the data you provide when filling out the application form to obtain or update EVUS registration for travel to the United States. Additionally, we process your personal data when you contact our customer service team, as well as process other information provided during your browsing of this website or from your IP address.
+Our company, as described in our terms and conditions, will be the controller of any personal data collected from you, including but not limited to, when you browse our website, fill out your application form to obtain or update EVUS registration, and/or when you contact our customer service team via email.
+This privacy policy applies to personal data we collect, use, and process from you as users of our website and/or customers.
+ +Our website may contain features or links that may redirect you to third-party websites. In this case, please note that these third-party websites are not operated by us, so we are not responsible for the information and content they provide, nor for the correct provision of functions and/or services offered by these third parties as we cannot control this. These third-party websites are governed by their own cookie and privacy policies.
+Our company may collect your name, passport information, contact details, and payment information, solely for EVUS registration services.
+ +We collect the following categories of personal data:
+ +1. Direct interactions, such as when you complete an application on our website to obtain or update EVUS registration, or when we request additional information from you as required by U.S. consulates or embassies, or when you fill out our contact form, or when you may contact our customer service team directly via email.
+2. Automated technologies, we may automatically collect information such as your IP address, sections you consult on our website, or time spent on our website through the use of our own or third-party cookies. You can consult our Cookie Policy for more information about the use of cookies on our website, their purposes, and other information of interest.
+3. Payment data, we will only request credit or debit card information related to our service fees on the payment page. The captured data will be securely sent to our certified payment service provider to authorize the corresponding transaction. Under no circumstances will we visualize or access the complete data of your credit or debit card. If the customer enters, provides, or sends his/her card information through channels not authorized by our company, the customer is responsible.
+In all cases, we only process personal data necessary to achieve the purposes mentioned above. In this sense, if you provide us with information beyond what is explicitly requested, you consent to the processing of said information for the informed purpose for which you sent it.
+To be able to properly use our services now and at any time thereafter, you must provide us with accurate, true, up-to-date, and complete information about your current personal situation.
+ +If you provide us with personal data of third parties, whether minors or adults, you confirm that you have informed them of the purpose of processing their personal data, and you guarantee that you have obtained their prior explicit consent to communicate their personal data to us. In this sense, if you provide us with personal data of minors, you guarantee that you are the parent and/or legal guardian, and therefore, you agree to the processing of your child/wards personal data.
+Your information is only used for processing EVUS registration and customer service, and will not be sold or shared without authorization.
+ +Please note that you only need to provide the personal data and information necessary to fill out the application form you selected to obtain and/or through our contact form. In this sense, if you provide us with information beyond what is explicitly requested, it means you consent to its processing for the purpose for which you sent the information.
+ +We use your personal data for the following purposes:
+ +We only process your personal data when there is a legal basis. The legal basis will depend on the reason we collect and process your personal data. In almost all cases, the legal basis is:
+ +Information will be stored on secure servers for a period not exceeding 12 months after application completion.
+ +We will only retain your personal data for the time necessary to achieve its processing purposes. Beyond that, your personal data will be retained and appropriately blocked until the company complies with its legal obligations and has satisfied its business needs, objectives, and strategies. In this sense, your personal data will be retained, for example, to address and defend any claims related to the services provided; until your information and/or refund requests are answered; complete investigations of detected fraudulent or illegal activities; if you do not revoke your consent, we will retain cookie data.
+ +Once the necessary retention period ends, your personal data will be securely deleted from our information systems.
+ +Furthermore, if you consent to us processing your personal data for specific purposes, please note that you can withdraw this consent at any time. Upon receiving your withdrawal request, we will proceed to delete your personal data.
+When necessary, we may share your information with payment service providers or the EVUS system.
+ +We may communicate your personal data to the following third parties, including but not limited to:
+ +The headquarters of the aforementioned third parties may be located within the European Economic Area; therefore, your personal data will not be subject to international transfer. In this regard, we inform you that we will only make international transfers of personal data to recipients established in countries that provide an adequate level of data protection; otherwise, we will adopt appropriate safeguards required by current applicable laws and regulations regarding the protection of personal data to ensure that your personal data is properly protected and your personal rights and freedoms are guaranteed.
+Your trust is very important to us. Therefore, your personal data will be stored confidentially and securely in our information systems. We have implemented appropriate technical and organizational measures to protect and safeguard your personal data against illegal or unauthorized access, loss or accidental destruction, damage, use, and illegal or unauthorized disclosure.
+ +Similarly, we have taken reasonable precautions to ensure that all our employees and vendors or collaborators who have access to customers personal data are adequately trained in the processing of collected personal data and that they comply with the aforementioned data protection obligations.
+ +Although we will do our best to guarantee the protection of personal data transmitted through our website and/or that you may provide to us through other means such as email, please remember that you should also take precautions to keep your personal data secure, for example, you must not enter or confirm banking details through false information and/or websites.
+You have the right to request to view, correct, or delete your personal information.
+ +You can exercise your rights through our contact form. You can modify the "privacy settings" of your web browser at any time to set tracking cookies. Additionally, you can install programs or plugins in your browser, known as "Do Not Track" tools, which will allow you to choose which cookies you want to allow.
+ +Generally, we respond to data protection rights requests within one (1) month. Sometimes, this period may be extended by another two (2) months if necessary, considering whether your request is particularly complex or if you have made multiple requests. In this case, we will notify you of this event and explain the reason for the delay.
+ +Finally, we inform you that, where you deem appropriate, you have the right to file a complaint with the corresponding regulatory authority, especially if you believe that your data protection rights have not been adequately addressed.
+Unless you refuse to accept cookies, this application will set or access cookies on your computer to allow you to log in or use this applications platform services or features that rely on cookies. This application uses cookies to provide you with more comprehensive personalized services, including promotional services.
+ +You have the right to choose to accept or refuse cookies. You can refuse to accept cookies by modifying your browser settings. However, if you choose to refuse cookies, you may not be able to log in or use this applications web services or features that rely on cookies.
+ +Information obtained through cookies set by this application will be subject to this policy.
+If we decide to change the privacy policy, we will publish these changes in this policy, on our companys website, and in locations we deem appropriate so that you are aware of how we collect and use your personal information, who can access this information, and under what circumstances we disclose it.
+ +Our company reserves the right to modify this policy at any time, so please check it frequently. If significant changes are made to this policy, our company will inform you through website notifications.
+If you have any questions or concerns about this privacy policy, you can contact our customer service team.
+If you discover that your personal information has been leaked, especially if your application username and password have been compromised, please immediately contact our application customer service so that we can take appropriate measures.
+This website is not an official U.S. government website, nor is it affiliated with U.S. Customs and Border Protection (CBP). We are an independent service provider specializing in assisting applicants with the EVUS registration process.
+ITS INTERNATIONAL TRAVEL SERVICE COMPANY only provides EVUS form filling assistance and related technical support services. We do not make any guarantees or promises regarding the final approval results, as the approval authority rests entirely with relevant U.S. government departments.
+Whether an EVUS application is approved is entirely determined by relevant U.S. government departments. We cannot influence or expedite the approval process. Our services are limited to assisting you in correctly completing and submitting application forms.
+Using this service indicates that you have read, understood, and agreed to the above disclaimer.
+(a) Our company accepts various payment methods including credit cards, debit cards, PayPal, and more
(b) All payment transactions are processed through secure encryption to protect your funds
(a) Before submission, users can request a refund, which will be processed within 7-14 business days
+(b) Once the application is submitted to the EVUS system, fees are non-refundable as the service has been actually provided
+(c) In case of system issues such as duplicate charges, full refund will be issued after verification
+ +(a) If the application fails due to inaccurate or incomplete information provided by the user, our company will not refund
+(b) If the application fails due to U.S. government system issues, partial refund can be applied for with corresponding proof
+(c) If the application fails due to our companys technical issues, full refund will be issued or the application will be resubmitted
+ 签证更新电子系统(EVUS)与执法部门 的数据库进行比对。所有持10年有效期访客签证的旅客(B1, B2 或 B1/B2), + 如果需要以短期访客身份入境美国,都必须在赴美前在EVUS上登记。 + 如果您的EVUS登记获得批准,就意味着您可以前往美国。但这并不意味着您可以入境美国。抵达美国入境口岸时,您将接受United States + Customs and Border Protection官员的检查。 入境口岸的官员会根据美国移民法的规定决定您是否可以入境。 + 由您或指定的第三方代理人所提供的所有信息,必须是真实和正确的。如果您在填写信息时由您或您的代理人有意提交任何虚假、虚构或伪造的声明或陈述,造成EVUS更新失败或者美国签证被注销,责任由您本人承担。 + 信息填写完成后,我们根据你所选择的套餐时效反馈信息,提交后信息将不能再更改。 +
+请表明您已阅读并了解上述所提供的信息
++
+ 本应用尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,本应用会按照本隐私权政策的规定使用和披露您的个人信息。但本应用将以高度的勤勉、审慎义务对待这些信息。除本隐私权政策另有规定外,在未征得您事先许可的情况下,本应用不会将这些信息对外披露或向第三方提供。本应用会不时更新本隐私权政策。 + 您在同意本应用服务使用协议之时,即视为您已经同意本隐私权政策全部内容。本隐私权政策属于本应用服务使用协议不可分割的一部分。 +
(a) 在您注册本应用帐号时,您根据本应用要求提供的个人注册信息; + (b) + 在您使用本应用网络服务,或访问本应用平台网页时,本应用自动接收并记录的您的浏览器和计算机上的信息,包括但不限于您的IP地址、浏览器的类型、使用的语言、访问日期和时间、软硬件特征信息及您需求的网页记录等数据; + (c) 本应用通过合法途径从商业伙伴处取得的用户个人数据。 + 您了解并同意,以下信息不适用本隐私权政策: + (a) 您在使用本应用平台提供的搜索服务时输入的关键字信息; + (b) 本应用收集到的您在本应用发布的有关信息数据,包括但不限于参与活动、成交信息及评价详情; + (c) 违反法律规定或违反本应用规则行为及本应用已对您采取的措施。
+ ++ (a)本应用不会向任何无关第三方提供、出售、出租、分享或交易您的个人信息,除非事先得到您的许可,或该第三方和本应用(含本应用关联公司)单独或共同为您提供服务,且在该服务结束后,其将被禁止访问包括其以前能够访问的所有这些资料。 + (b) + 本应用亦不允许任何第三方以任何手段收集、编辑、出售或者无偿传播您的个人信息。任何本应用平台用户如从事上述活动,一经发现,本应用有权立即终止与该用户的服务协议。 + (c) + 为服务用户的目的,本应用可能通过使用您的个人信息,向您提供您感兴趣的信息,包括但不限于向您发出产品和服务信息,或者与本应用合作伙伴共享信息以便他们向您发送有关其产品和服务的信息(后者需要您的事先同意)
+ +在如下情况下,本应用将依据您的个人意愿或法律的规定全部或部分的披露您的个人信息: + (a) 经您事先同意,向第三方披露; + (b)为提供您所要求的产品和服务,而必须和第三方分享您的个人信息; + (c) 根据法律的有关规定,或者行政或司法机构的要求,向第三方或者行政、司法机构披露; + (d) 如您出现违反中国有关法律、法规或者本应用服务协议或相关规则的情况,需要向第三方披露; + (e) 如您是适格的知识产权投诉人并已提起投诉,应被投诉人要求,向被投诉人披露,以便双方处理可能的权利纠纷; + (f) + 在本应用平台上创建的某一交易中,如交易任何一方履行或部分履行了交易义务并提出信息披露请求的,本应用有权决定向该用户提供其交易对方的联络方式等必要信息,以促成交易的完成或纠纷的解决。 + (g) 其它本应用根据法律、法规或者网站政策认为合适的披露。
+ ++ 本应用收集的有关您的信息和资料将保存在本应用及(或)其关联公司的服务器上,这些信息和资料可能传送至您所在国家、地区或本应用收集信息和资料所在地的境外并在境外被访问、存储和展示。
+ +(a) 在您未拒绝接受cookies的情况下,本应用会在您的计算机上设定或取用cookies + ,以便您能登录或使用依赖于cookies的本应用平台服务或功能。本应用使用cookies可为您提供更加周到的个性化服务,包括推广服务。 + (b) + 您有权选择接受或拒绝接受cookies。您可以通过修改浏览器设置的方式拒绝接受cookies。但如果您选择拒绝接受cookies,则您可能无法登录或使用依赖于cookies的本应用网络服务或功能。 + (c) 通过本应用所设cookies所取得的有关信息,将适用本政策。
+ +(a) + 本应用帐号均有安全保护功能,请妥善保管您的用户名及密码信息。本应用将通过对用户密码进行加密等安全措施确保您的信息不丢失,不被滥用和变造。尽管有前述安全措施,但同时也请您注意在信息网络上不存在“完善的安全措施”。 + (b) 在使用本应用网络服务进行网上交易时,您不可避免的要向交易对方或潜在的交易对
+ ++ (a)如果决定更改隐私政策,我们会在本政策中、本公司网站中以及我们认为适当的位置发布这些更改,以便您了解我们如何收集、使用您的个人信息,哪些人可以访问这些信息,以及在什么情况下我们会透露这些信息。 + (b)本公司保留随时修改本政策的权利,因此请经常查看。如对本政策作出重大更改,本公司会通过网站通知的形式告知。 + 方披露自己的个人信息,如联络方式或者邮政地址。请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄密,尤其是本应用用户名及密码发生泄露,请您立即联络本应用客服,以便本应用采取相应措施。
++ 签证更新电子系统(EVUS)与执法部门 的数据库进行比对。所有持10年有效期访客签证的旅客(B1, B2 或 B1/B2), + 如果需要以短期访客身份入境美国,都必须在赴美前在EVUS上登记。 + 如果您的EVUS登记获得批准,就意味着您可以前往美国。但这并不意味着您可以入境美国。抵达美国入境口岸时,您将接受United States + Customs and Border Protection官员的检查。 入境口岸的官员会根据美国移民法的规定决定您是否可以入境。 + 由您或指定的第三方代理人所提供的所有信息,必须是真实和正确的。如果您在填写信息时由您或您的代理人有意提交任何虚假、虚构或伪造的声明或陈述,造成EVUS更新失败或者美国签证被注销,责任由您本人承担。 + 信息填写完成后,我们根据你所选择的套餐时效反馈信息,提交后信息将不能再更改。 +
+请表明您已阅读并了解上述所提供的信息
+ 本应用尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,本应用会按照本隐私权政策的规定使用和披露您的个人信息。但本应用将以高度的勤勉、审慎义务对待这些信息。除本隐私权政策另有规定外,在未征得您事先许可的情况下,本应用不会将这些信息对外披露或向第三方提供。本应用会不时更新本隐私权政策。 您在同意本应用服务使用协议之时,即视为您已经同意本隐私权政策全部内容。本隐私权政策属于本应用服务使用协议不可分割的一部分。注意:为更好的提供您所要求的产品和服务上文所述对“第三方”的限制不包括本公司的关联公司(母公司,子公司,控股、被控股公司等),“第三方”是指本司及本司关联公司之外的主体,即下文:信息披露款项中(b)款之规定。 +
+(a) 在您注册本应用帐号时,您根据本应用要求提供的个人注册信息; (b) 在您使用本应用网络服务,或访问本应用平台网页时,本应用自动接收并记录的您的浏览器和计算机上的信息,包括但不限于您的IP地址、浏览器的类型、使用的语言、访问日期和时间、软硬件特征信息及您需求的网页记录等数据; (c) 本应用通过合法途径从商业伙伴处取得的用户个人数据。 您了解并同意,以下信息不适用本隐私权政策: (a) 您在使用本应用平台提供的搜索服务时输入的关键字信息; (b) 本应用收集到的您在本应用发布的有关信息数据,包括但不限于参与活动、成交信息及评价详情; (c) 违反法律规定或违反本应用规则行为及本应用已对您采取的措施。 +
+ ++ (a)本应用不会向任何无关第三方提供、出售、出租、分享或交易您的个人信息,除非事先得到您的许可,或该第三方和本应用(含本应用关联公司)单独或共同为您提供服务,且在该服务结束后,其将被禁止访问包括其以前能够访问的所有这些资料。 (b) 本应用亦不允许任何第三方以任何手段收集、编辑、出售或者无偿传播您的个人信息。任何本应用平台用户如从事上述活动,一经发现,本应用有权立即终止与该用户的服务协议。 (c) 为服务用户的目的,本应用可能通过使用您的个人信息,向您提供您感兴趣的信息,包括但不限于向您发出产品和服务信息,或者与本应用合作伙伴共享信息以便他们向您发送有关其产品和服务的信息(后者需要您的事先同意) +
+ +在如下情况下,本应用将依据您的个人意愿或法律的规定全部或部分的披露您的个人信息: (a) 经您事先同意,向第三方披露; (b)为提供您所要求的产品和服务,而必须和第三方分享您的个人信息; (c) 根据法律的有关规定,或者行政或司法机构的要求,向第三方或者行政、司法机构披露; (d) 如您出现违反中国有关法律、法规或者本应用服务协议或相关规则的情况,需要向第三方披露; (e) 如您是适格的知识产权投诉人并已提起投诉,应被投诉人要求,向被投诉人披露,以便双方处理可能的权利纠纷; (f) 在本应用平台上创建的某一交易中,如交易任何一方履行或部分履行了交易义务并提出信息披露请求的,本应用有权决定向该用户提供其交易对方的联络方式等必要信息,以促成交易的完成或纠纷的解决。 (g) 其它本应用根据法律、法规或者网站政策认为合适的披露。 +
+ ++ 本应用收集的有关您的信息和资料将保存在本应用及(或)其关联公司的服务器上,这些信息和资料可能传送至您所在国家、地区或本应用收集信息和资料所在地的境外并在境外被访问、存储和展示。 +
+ +(a) 在您未拒绝接受cookies的情况下,本应用会在您的计算机上设定或取用cookies ,以便您能登录或使用依赖于cookies的本应用平台服务或功能。本应用使用cookies可为您提供更加周到的个性化服务,包括推广服务。 (b) 您有权选择接受或拒绝接受cookies。您可以通过修改浏览器设置的方式拒绝接受cookies。但如果您选择拒绝接受cookies,则您可能无法登录或使用依赖于cookies的本应用网络服务或功能。 (c) 通过本应用所设cookies所取得的有关信息,将适用本政策。 +
+ +(a) 本应用帐号均有安全保护功能,请妥善保管您的用户名及密码信息。本应用将通过对用户密码进行加密等安全措施确保您的信息不丢失,不被滥用和变造。尽管有前述安全措施,但同时也请您注意在信息网络上不存在“完善的安全措施”。 (b) 在使用本应用网络服务进行网上交易时,您不可避免的要向交易对方或潜在的交易 +
+ ++ (a)如果决定更改隐私政策,我们会在本政策中、本公司网站中以及我们认为适当的位置发布这些更改,以便您了解我们如何收集、使用您的个人信息,哪些人可以访问这些信息,以及在什么情况下我们会透露这些信息。 (b)本公司保留随时修改本政策的权利,因此请经常查看。如对本政策作出重大更改,本公司会通过网站通知的形式告知。 方披露自己的个人信息,如联络方式或者邮政地址。请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄密,尤其是本应用用户名及密码发生泄露,请您立即联络本应用客服,以便本应用采取相应措施。 +
+本网站并非美国政府官方网站,也不隶属于美国海关与边境保护局(CBP)。我们是独立的服务提供商,专门协助申请人完成EVUS登记流程。
+ITS INTERNATIONAL TRAVEL SERVICE COMPANY 仅提供 EVUS 表格填写协助和相关技术支持服务。我们不对最终审批结果作出任何保证或承诺,因为审批权完全在于美国政府相关部门。
+EVUS申请是否获批完全由美国政府相关部门决定,我们无法影响或加快审批进程。我们的服务仅限于协助您正确填写和提交申请表格。
+使用本服务即表示您已阅读、理解并同意上述免责声明。
+(a) 本公司接受信用卡、借记卡、PayPal等多种支付方式
(b) 所有支付交易均通过安全加密处理,保障您的资金安全
(a) 在提交前,用户可申请退款,退款将在7-14个工作日内处理
+(b) 一旦申请提交至EVUS系统,费用不予退还,因服务已实际提供
+(c) 如遇重复扣款等系统问题,经核实后将全额退款
+ +(a) 因用户提供的信息不准确或不完整导致申请失败,本公司不退款
+(b) 因美国政府系统问题导致的申请失败,可提供相应证明申请部分退款
+(c) 因本公司技术问题导致申请失败,将全额退款或重新提交申请
>%aJv{?GGXn!NI};-lJ2xvcGb=YQCnq;2CoelQt^ByHRQ?Jf
zC?+Np3yO_}g^i1ag@ua>Sh!Y1*#8p+%gq2gJ)jSqgF!?AC_4nk4q1K%4x4eg1)>L9
ziGa`wXfU JR#yV$1Mj&F-7A!a{!ZIc7Nd2mGY7
zO+!Zp2htdkZo#&Zpa=VH92AEJ&_bYMI2~*1EZrD?W>{4CZzyyaGtfUUlo1*g0%Um1
zo!Q#$IXKYg^@(DISu#QyOdl454iJz_TsY$gGj5uhjbT%)L;UgJ^1q%xB8nO8V(#Gr
zhWg=Lw)20-*hTs?e#4-Bf>|y;{=eb)Xbd37h-FzvTDjQS`i6xCvlVjvME}N&4G3e#
zn+6B^|MV39^yIC6qJboa&hYbz3T6Qi8_i&{{)XM{C;E4GZeM>&Sa29~mU9KC^_yA#
zA^;I+MOY}?*H~6qxP25WlJPSz*fd-)2&8|&^7w|aKtTNio*OK2z@O}#`)&za8N>rB
z%y^6gPv2wg!}@dxPv4(x4hS0s8n)Z^gK7f6Uhtp M%wv$ip#
z7tLN;m2~-v6hKFox3`}w@?^d;y=YNWtf1(_Pi|P~Xa6NXlj($8nUdv6V!i?j8O8YF
zbs6uk{UY_O#P$`N#Ao~~YoDJiwUM4k3@bGvVNu#xtbd05qPY^AY6ApG1b-U-@?51u
zI9V^mW@~8m(5JhlXZ>Gk2XxKdIDR>vM6Alg%4^Jly$ORjxlK=T1vb}GJ`>_uSz_)l
zViS7Dbe&1G#(4f$?Swj&hvBR )SQV!$
{9LS)lvmN@Y{9A@!
zoc|n{HJ&-|HdR?l6I+s{eBL{)d-?XA*`BhKOuB*t+HB~~MAdH8
z6&XK6_Hf3MLlUY(Ws#@v()rphJ|#wfedd~b9N8tg)+jwBkY}G*5~)Wy40#CA#*@
jO78w>-BAw-+~)
zdlz>J_hs(K+@E*^dDM9*JbpZzcn
V?ap?s?fbWXPxVW^u|so5_KvSRsXK3^5z=zfrgr)7y0cqn_u+I*dRTgA#*&QU
zO#aOH%z-TXteQReJ*j)f_O9OBlC7P6WFKx{^uE3vyPUfHvisBbf6Wcdy??;$K*d3c
zgWC^I9P&HVcG%?b$s>|Sb{zSVN6&kZzcjz5K)xWm5K|aa_@c