├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── app ├── .htaccess ├── AppService.php ├── BaseController.php ├── ExceptionHandle.php ├── Request.php ├── common.php ├── controller │ ├── Account.php │ ├── Api.php │ ├── Images.php │ ├── Index.php │ ├── Member.php │ ├── Role.php │ ├── Setup.php │ ├── Storage.php │ ├── Updade.php │ └── User.php ├── event.php ├── middleware.php ├── middleware │ ├── AllowCrossDomain.php │ ├── AuthVerify.php │ └── TokenVerify.php ├── model │ ├── Code.php │ ├── Images.php │ ├── Log.php │ ├── Role.php │ ├── Storage.php │ ├── System.php │ └── User.php ├── provider.php ├── service.php ├── services │ ├── AttachClass.php │ ├── AuthToken.php │ ├── EmailClass.php │ ├── UpdateClass.php │ └── UploadCLass.php ├── sql │ └── update.sql └── validate │ ├── Page.php │ ├── Register.php │ ├── ResetPwd.php │ └── User.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── cache.php ├── console.php ├── cookie.php ├── database.php ├── filesystem.php ├── lang.php ├── log.php ├── middleware.php ├── route.php ├── session.php ├── table.php ├── trace.php └── view.php ├── extend └── .gitignore ├── public ├── .htaccess ├── error.html ├── favicon.ico ├── index.html ├── index.php ├── install │ ├── .env │ ├── css │ │ └── install.css │ ├── images │ │ └── install │ │ │ ├── bg.png │ │ │ ├── btn.png │ │ │ ├── complete.png │ │ │ ├── icon.png │ │ │ ├── ignore.png │ │ │ ├── loading.gif │ │ │ ├── logo.png │ │ │ ├── pop_loading.gif │ │ │ ├── step.png │ │ │ ├── tab.png │ │ │ └── tips_system.png │ ├── index.php │ ├── lp.sql │ └── templates │ │ ├── footer.php │ │ ├── header.php │ │ ├── step2.php │ │ ├── step3.php │ │ └── step4.php ├── nginx.htaccess ├── robots.txt ├── router.php └── static │ ├── css │ ├── app.d41ab047.css │ ├── chunk-17b02b82.2d6d8fdf.css │ ├── chunk-27d98d00.6ded1efb.css │ ├── chunk-2cfe5f7f.9babaa2d.css │ ├── chunk-32672719.4b43ddcb.css │ ├── chunk-34423ed3.be85b93f.css │ ├── chunk-53841c76.d5daab07.css │ ├── chunk-548fbbb9.ddee94a4.css │ ├── chunk-64a740af.c51239a3.css │ ├── chunk-6f31df29.6707e604.css │ ├── chunk-782a13ac.e4bd9a47.css │ ├── chunk-79938c20.967c2873.css │ ├── chunk-b05c690e.e71584fb.css │ ├── chunk-b8669f6c.96f4f9f8.css │ └── chunk-vendors.f3a277b0.css │ ├── fonts │ ├── ionicons.143146fa.woff2 │ ├── ionicons.99ac3308.woff │ └── ionicons.d535a25a.ttf │ ├── img │ ├── 404.fa07fdd7.png │ ├── empty.b1b787d2.png │ ├── error.7c88c8a2.png │ ├── ionicons.a2c4a261.svg │ ├── load.4236ddfd.gif │ └── logo.cf036a4d.jpg │ └── js │ ├── app.3c31207a.js │ ├── app.3c31207a.js.map │ ├── chunk-17b02b82.5e0ca05b.js │ ├── chunk-17b02b82.5e0ca05b.js.map │ ├── chunk-27d98d00.a968ce7a.js │ ├── chunk-27d98d00.a968ce7a.js.map │ ├── chunk-2cfe5f7f.d4fa391d.js │ ├── chunk-2cfe5f7f.d4fa391d.js.map │ ├── chunk-2d217c1d.17c98d3c.js │ ├── chunk-2d217c1d.17c98d3c.js.map │ ├── chunk-32672719.221eb9c9.js │ ├── chunk-32672719.221eb9c9.js.map │ ├── chunk-34423ed3.a68408fc.js │ ├── chunk-34423ed3.a68408fc.js.map │ ├── chunk-53841c76.d2a15cf2.js │ ├── chunk-53841c76.d2a15cf2.js.map │ ├── chunk-548fbbb9.e6eb7dcc.js │ ├── chunk-548fbbb9.e6eb7dcc.js.map │ ├── chunk-64a740af.1bcfbaf7.js │ ├── chunk-64a740af.1bcfbaf7.js.map │ ├── chunk-6f31df29.a6577855.js │ ├── chunk-6f31df29.a6577855.js.map │ ├── chunk-782a13ac.6259f087.js │ ├── chunk-782a13ac.6259f087.js.map │ ├── chunk-79938c20.f4250b0d.js │ ├── chunk-79938c20.f4250b0d.js.map │ ├── chunk-b05c690e.a3d1ec6a.js │ ├── chunk-b05c690e.a3d1ec6a.js.map │ ├── chunk-b8669f6c.8516012d.js │ ├── chunk-b8669f6c.8516012d.js.map │ ├── chunk-vendors.f75149ed.js │ └── chunk-vendors.f75149ed.js.map ├── route └── app.php ├── runtime └── .gitignore ├── think └── vendor ├── .gitignore ├── aliyuncs └── oss-sdk-php │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README-CN.md │ ├── README.md │ ├── autoload.php │ ├── build-phar.sh │ ├── composer.json │ ├── example.jpg │ ├── index.php │ ├── phpunit.xml │ ├── samples │ ├── Bucket.php │ ├── BucketCors.php │ ├── BucketLifecycle.php │ ├── BucketLogging.php │ ├── BucketReferer.php │ ├── BucketWebsite.php │ ├── Callback.php │ ├── Common.php │ ├── Config.php │ ├── Image.php │ ├── LiveChannel.php │ ├── MultipartUpload.php │ ├── Object.php │ ├── RunAll.php │ └── Signature.php │ ├── src │ └── OSS │ │ ├── Core │ │ ├── MimeTypes.php │ │ ├── OssException.php │ │ └── OssUtil.php │ │ ├── Http │ │ ├── LICENSE │ │ ├── RequestCore.php │ │ ├── RequestCore_Exception.php │ │ └── ResponseCore.php │ │ ├── Model │ │ ├── BucketInfo.php │ │ ├── BucketListInfo.php │ │ ├── BucketStat.php │ │ ├── CnameConfig.php │ │ ├── CorsConfig.php │ │ ├── CorsRule.php │ │ ├── DeleteMarkerInfo.php │ │ ├── DeleteObjectInfo.php │ │ ├── DeletedObjectInfo.php │ │ ├── ExtendWormConfig.php │ │ ├── GetLiveChannelHistory.php │ │ ├── GetLiveChannelInfo.php │ │ ├── GetLiveChannelStatus.php │ │ ├── InitiateWormConfig.php │ │ ├── LifecycleAction.php │ │ ├── LifecycleConfig.php │ │ ├── LifecycleRule.php │ │ ├── ListMultipartUploadInfo.php │ │ ├── ListPartsInfo.php │ │ ├── LiveChannelConfig.php │ │ ├── LiveChannelHistory.php │ │ ├── LiveChannelInfo.php │ │ ├── LiveChannelListInfo.php │ │ ├── LoggingConfig.php │ │ ├── ObjectInfo.php │ │ ├── ObjectListInfo.php │ │ ├── ObjectVersionInfo.php │ │ ├── ObjectVersionListInfo.php │ │ ├── PartInfo.php │ │ ├── PrefixInfo.php │ │ ├── RefererConfig.php │ │ ├── RequestPaymentConfig.php │ │ ├── RestoreConfig.php │ │ ├── ServerSideEncryptionConfig.php │ │ ├── StorageCapacityConfig.php │ │ ├── Tag.php │ │ ├── TaggingConfig.php │ │ ├── UploadInfo.php │ │ ├── VersioningConfig.php │ │ ├── WebsiteConfig.php │ │ ├── WormConfig.php │ │ └── XmlConfig.php │ │ ├── OssClient.php │ │ └── Result │ │ ├── AclResult.php │ │ ├── AppendResult.php │ │ ├── BodyResult.php │ │ ├── CallbackResult.php │ │ ├── CopyObjectResult.php │ │ ├── DeleteObjectVersionsResult.php │ │ ├── DeleteObjectsResult.php │ │ ├── ExistResult.php │ │ ├── GetBucketEncryptionResult.php │ │ ├── GetBucketInfoResult.php │ │ ├── GetBucketRequestPaymentResult.php │ │ ├── GetBucketStatResult.php │ │ ├── GetBucketTagsResult.php │ │ ├── GetBucketVersioningResult.php │ │ ├── GetBucketWormResult.php │ │ ├── GetCnameResult.php │ │ ├── GetCorsResult.php │ │ ├── GetLifecycleResult.php │ │ ├── GetLiveChannelHistoryResult.php │ │ ├── GetLiveChannelInfoResult.php │ │ ├── GetLiveChannelStatusResult.php │ │ ├── GetLocationResult.php │ │ ├── GetLoggingResult.php │ │ ├── GetRefererResult.php │ │ ├── GetStorageCapacityResult.php │ │ ├── GetWebsiteResult.php │ │ ├── HeaderResult.php │ │ ├── InitiateBucketWormResult.php │ │ ├── InitiateMultipartUploadResult.php │ │ ├── ListBucketsResult.php │ │ ├── ListLiveChannelResult.php │ │ ├── ListMultipartUploadResult.php │ │ ├── ListObjectVersionsResult.php │ │ ├── ListObjectsResult.php │ │ ├── ListPartsResult.php │ │ ├── PutLiveChannelResult.php │ │ ├── PutSetDeleteResult.php │ │ ├── Result.php │ │ ├── SymlinkResult.php │ │ └── UploadPartResult.php │ └── tests │ └── OSS │ └── Tests │ ├── AclResultTest.php │ ├── BodyResultTest.php │ ├── BucketCnameTest.php │ ├── BucketInfoTest.php │ ├── BucketLiveChannelTest.php │ ├── CallbackTest.php │ ├── CnameConfigTest.php │ ├── Common.php │ ├── ContentTypeTest.php │ ├── CopyObjectResult.php │ ├── CorsConfigTest.php │ ├── DeleteObjectVersionsResultTest.php │ ├── ExistResultTest.php │ ├── GetBucketEncryptionResultTest.php │ ├── GetBucketRequestPaymentResultTest.php │ ├── GetBucketStatResultTest.php │ ├── GetBucketTagsResultTest.php │ ├── GetBucketWormResultTest.php │ ├── GetCorsResultTest.php │ ├── GetLifecycleResultTest.php │ ├── GetLoggingResultTest.php │ ├── GetRefererResultTest.php │ ├── GetWebsiteResultTest.php │ ├── HeaderResultTest.php │ ├── HttpTest.php │ ├── InitiateMultipartUploadResultTest.php │ ├── LifecycleConfigTest.php │ ├── ListBucketsResultTest.php │ ├── ListMultipartUploadResultTest.php │ ├── ListObjectVersionsResultTest.php │ ├── ListObjectsResultTest.php │ ├── ListPartsResultTest.php │ ├── LiveChannelXmlTest.php │ ├── LoggingConfigTest.php │ ├── MimeTypesTest.php │ ├── ObjectAclTest.php │ ├── OssClientBucketCorsTest.php │ ├── OssClientBucketEncryptionTest.php │ ├── OssClientBucketInfoTest.php │ ├── OssClientBucketLifecycleTest.php │ ├── OssClientBucketLoggingTest.php │ ├── OssClientBucketPolicyTest.php │ ├── OssClientBucketRefererTest.php │ ├── OssClientBucketRequestPaymentTest.php │ ├── OssClientBucketStatTestTest.php │ ├── OssClientBucketStorageCapacityTest.php │ ├── OssClientBucketTagsTest.php │ ├── OssClientBucketTest.php │ ├── OssClientBucketVersioningTest.php │ ├── OssClientBucketWebsiteTest.php │ ├── OssClientBucketWormTest.php │ ├── OssClientImageTest.php │ ├── OssClientListObjectsTest.php │ ├── OssClientMultipartUploadTest.php │ ├── OssClientObjectRequestPaymentTest.php │ ├── OssClientObjectTaggingTest.php │ ├── OssClientObjectTest.php │ ├── OssClientObjectVersioningTest.php │ ├── OssClientRestoreObjectTest.php │ ├── OssClientSignatureTest.php │ ├── OssClientTest.php │ ├── OssExceptionTest.php │ ├── OssTrafficLimitTest.php │ ├── OssUtilTest.php │ ├── PutSetDeleteResultTest.php │ ├── RefererConfigTest.php │ ├── StorageCapacityConfigTest.php │ ├── StorageCapacityTest.php │ ├── SymlinkTest.php │ ├── TestOssClientBase.php │ ├── UploadPartResultTest.php │ └── WebsiteConfigTest.php ├── autoload.php ├── bin ├── var-dump-server └── var-dump-server.bat ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php ├── firebase └── php-jwt │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── BeforeValidException.php │ ├── ExpiredException.php │ ├── JWK.php │ ├── JWT.php │ ├── Key.php │ └── SignatureInvalidException.php ├── guzzlehttp ├── command │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ └── src │ │ ├── Command.php │ │ ├── CommandInterface.php │ │ ├── Exception │ │ ├── CommandClientException.php │ │ ├── CommandException.php │ │ └── CommandServerException.php │ │ ├── HasDataTrait.php │ │ ├── Result.php │ │ ├── ResultInterface.php │ │ ├── ServiceClient.php │ │ ├── ServiceClientInterface.php │ │ └── ToArrayInterface.php ├── guzzle-services │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Description.php │ │ ├── DescriptionInterface.php │ │ ├── Deserializer.php │ │ ├── GuzzleClient.php │ │ ├── Handler │ │ │ └── ValidatedDescriptionHandler.php │ │ ├── Operation.php │ │ ├── Parameter.php │ │ ├── QuerySerializer │ │ │ ├── QuerySerializerInterface.php │ │ │ └── Rfc3986Serializer.php │ │ ├── RequestLocation │ │ │ ├── AbstractLocation.php │ │ │ ├── BodyLocation.php │ │ │ ├── FormParamLocation.php │ │ │ ├── HeaderLocation.php │ │ │ ├── JsonLocation.php │ │ │ ├── MultiPartLocation.php │ │ │ ├── QueryLocation.php │ │ │ ├── RequestLocationInterface.php │ │ │ └── XmlLocation.php │ │ ├── ResponseLocation │ │ │ ├── AbstractLocation.php │ │ │ ├── BodyLocation.php │ │ │ ├── HeaderLocation.php │ │ │ ├── JsonLocation.php │ │ │ ├── ReasonPhraseLocation.php │ │ │ ├── ResponseLocationInterface.php │ │ │ ├── StatusCodeLocation.php │ │ │ └── XmlLocation.php │ │ ├── SchemaFormatter.php │ │ ├── SchemaValidator.php │ │ └── Serializer.php │ └── tests │ │ ├── Asset │ │ ├── Exception │ │ │ ├── CustomCommandException.php │ │ │ └── OtherCustomCommandException.php │ │ └── test.html │ │ ├── DescriptionTest.php │ │ ├── DeserializerTest.php │ │ ├── GuzzleClientTest.php │ │ ├── Handler │ │ └── ValidatedDescriptionHandlerTest.php │ │ ├── OperationTest.php │ │ ├── ParameterTest.php │ │ ├── QuerySerializer │ │ └── Rfc3986SerializerTest.php │ │ ├── RequestLocation │ │ ├── BodyLocationTest.php │ │ ├── FormParamLocationTest.php │ │ ├── HeaderLocationTest.php │ │ ├── JsonLocationTest.php │ │ ├── MultiPartLocationTest.php │ │ ├── QueryLocationTest.php │ │ └── XmlLocationTest.php │ │ ├── ResponseLocation │ │ ├── BodyLocationTest.php │ │ ├── HeaderLocationTest.php │ │ ├── JsonLocationTest.php │ │ ├── ReasonPhraseLocationTest.php │ │ ├── StatusCodeLocationTest.php │ │ └── XmlLocationTest.php │ │ ├── SchemaFormatterTest.php │ │ ├── SchemaValidatorTest.php │ │ └── SerializerTest.php ├── guzzle │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── composer.json │ └── src │ │ ├── BodySummarizer.php │ │ ├── BodySummarizerInterface.php │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── ClientTrait.php │ │ ├── Cookie │ │ ├── CookieJar.php │ │ ├── CookieJarInterface.php │ │ ├── FileCookieJar.php │ │ ├── SessionCookieJar.php │ │ └── SetCookie.php │ │ ├── Exception │ │ ├── BadResponseException.php │ │ ├── ClientException.php │ │ ├── ConnectException.php │ │ ├── GuzzleException.php │ │ ├── InvalidArgumentException.php │ │ ├── RequestException.php │ │ ├── SeekException.php │ │ ├── ServerException.php │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php │ │ ├── Handler │ │ ├── CurlFactory.php │ │ ├── CurlFactoryInterface.php │ │ ├── CurlHandler.php │ │ ├── CurlMultiHandler.php │ │ ├── EasyHandle.php │ │ ├── HeaderProcessor.php │ │ ├── MockHandler.php │ │ ├── Proxy.php │ │ └── StreamHandler.php │ │ ├── HandlerStack.php │ │ ├── MessageFormatter.php │ │ ├── MessageFormatterInterface.php │ │ ├── Middleware.php │ │ ├── Pool.php │ │ ├── PrepareBodyMiddleware.php │ │ ├── RedirectMiddleware.php │ │ ├── RequestOptions.php │ │ ├── RetryMiddleware.php │ │ ├── TransferStats.php │ │ ├── UriTemplate.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── promises │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AggregateException.php │ │ ├── CancellationException.php │ │ ├── Coroutine.php │ │ ├── Create.php │ │ ├── Each.php │ │ ├── EachPromise.php │ │ ├── FulfilledPromise.php │ │ ├── Is.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ ├── TaskQueueInterface.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── psr7 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── Exception │ │ │ └── MalformedUriException.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── HttpFactory.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php │ └── vendor-bin │ │ ├── php-cs-fixer │ │ └── composer.json │ │ ├── phpstan │ │ └── composer.json │ │ └── psalm │ │ └── composer.json └── uri-template │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── UriTemplate.php ├── league ├── flysystem-cached-adapter │ ├── .editorconfig │ ├── .gitignore │ ├── .php_cs │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── clover │ │ └── .gitignore │ ├── composer.json │ ├── phpspec.yml │ ├── phpunit.php │ ├── phpunit.xml │ ├── readme.md │ ├── spec │ │ └── CachedAdapterSpec.php │ ├── src │ │ ├── CacheInterface.php │ │ ├── CachedAdapter.php │ │ └── Storage │ │ │ ├── AbstractCache.php │ │ │ ├── Adapter.php │ │ │ ├── Memcached.php │ │ │ ├── Memory.php │ │ │ ├── Noop.php │ │ │ ├── PhpRedis.php │ │ │ ├── Predis.php │ │ │ ├── Psr6Cache.php │ │ │ └── Stash.php │ └── tests │ │ ├── AdapterCacheTests.php │ │ ├── InspectionTests.php │ │ ├── MemcachedTests.php │ │ ├── MemoryCacheTests.php │ │ ├── NoopCacheTests.php │ │ ├── PhpRedisTests.php │ │ ├── PredisTests.php │ │ ├── Psr6CacheTest.php │ │ └── StashTest.php ├── flysystem │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── SECURITY.md │ ├── composer.json │ ├── deprecations.md │ └── src │ │ ├── Adapter │ │ ├── AbstractAdapter.php │ │ ├── AbstractFtpAdapter.php │ │ ├── CanOverwriteFiles.php │ │ ├── Ftp.php │ │ ├── Ftpd.php │ │ ├── Local.php │ │ ├── NullAdapter.php │ │ ├── Polyfill │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ ├── StreamedCopyTrait.php │ │ │ ├── StreamedReadingTrait.php │ │ │ ├── StreamedTrait.php │ │ │ └── StreamedWritingTrait.php │ │ └── SynologyFtp.php │ │ ├── AdapterInterface.php │ │ ├── Config.php │ │ ├── ConfigAwareTrait.php │ │ ├── ConnectionErrorException.php │ │ ├── ConnectionRuntimeException.php │ │ ├── CorruptedPathDetected.php │ │ ├── Directory.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── FileExistsException.php │ │ ├── FileNotFoundException.php │ │ ├── Filesystem.php │ │ ├── FilesystemException.php │ │ ├── FilesystemInterface.php │ │ ├── FilesystemNotFoundException.php │ │ ├── Handler.php │ │ ├── InvalidRootException.php │ │ ├── MountManager.php │ │ ├── NotSupportedException.php │ │ ├── Plugin │ │ ├── AbstractPlugin.php │ │ ├── EmptyDir.php │ │ ├── ForcedCopy.php │ │ ├── ForcedRename.php │ │ ├── GetWithMetadata.php │ │ ├── ListFiles.php │ │ ├── ListPaths.php │ │ ├── ListWith.php │ │ ├── PluggableTrait.php │ │ └── PluginNotFoundException.php │ │ ├── PluginInterface.php │ │ ├── ReadInterface.php │ │ ├── RootViolationException.php │ │ ├── SafeStorage.php │ │ ├── UnreadableFileException.php │ │ ├── Util.php │ │ └── Util │ │ ├── ContentListingFormatter.php │ │ ├── MimeType.php │ │ └── StreamHasher.php └── mime-type-detection │ ├── CHANGELOG.md │ ├── LICENSE │ ├── composer.json │ └── src │ ├── EmptyExtensionToMimeTypeMap.php │ ├── ExtensionMimeTypeDetector.php │ ├── ExtensionToMimeTypeMap.php │ ├── FinfoMimeTypeDetector.php │ ├── GeneratedExtensionToMimeTypeMap.php │ ├── MimeTypeDetector.php │ └── OverridingExtensionToMimeTypeMap.php ├── monolog └── monolog │ ├── .php_cs │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── 01-usage.md │ ├── 02-handlers-formatters-processors.md │ ├── 03-utilities.md │ ├── 04-extending.md │ └── sockets.md │ ├── phpunit.xml.dist │ ├── src │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SlackbotHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.php │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.php │ ├── FluentdFormatterTest.php │ ├── GelfMessageFormatterTest.php │ ├── JsonFormatterTest.php │ ├── LineFormatterTest.php │ ├── LogglyFormatterTest.php │ ├── LogstashFormatterTest.php │ ├── MongoDBFormatterTest.php │ ├── NormalizerFormatterTest.php │ ├── ScalarFormatterTest.php │ └── WildfireFormatterTest.php │ ├── Handler │ ├── AbstractHandlerTest.php │ ├── AbstractProcessingHandlerTest.php │ ├── AmqpHandlerTest.php │ ├── BrowserConsoleHandlerTest.php │ ├── BufferHandlerTest.php │ ├── ChromePHPHandlerTest.php │ ├── CouchDBHandlerTest.php │ ├── DeduplicationHandlerTest.php │ ├── DoctrineCouchDBHandlerTest.php │ ├── DynamoDbHandlerTest.php │ ├── ElasticSearchHandlerTest.php │ ├── ErrorLogHandlerTest.php │ ├── FilterHandlerTest.php │ ├── FingersCrossedHandlerTest.php │ ├── FirePHPHandlerTest.php │ ├── Fixtures │ │ └── .gitkeep │ ├── FleepHookHandlerTest.php │ ├── FlowdockHandlerTest.php │ ├── GelfHandlerLegacyTest.php │ ├── GelfHandlerTest.php │ ├── GelfMockMessagePublisher.php │ ├── GroupHandlerTest.php │ ├── HandlerWrapperTest.php │ ├── HipChatHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PHPConsoleHandlerTest.php │ ├── PsrHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RollbarHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SamplingHandlerTest.php │ ├── Slack │ │ └── SlackRecordTest.php │ ├── SlackHandlerTest.php │ ├── SlackWebhookHandlerTest.php │ ├── SlackbotHandlerTest.php │ ├── SocketHandlerTest.php │ ├── StreamHandlerTest.php │ ├── SwiftMailerHandlerTest.php │ ├── SyslogHandlerTest.php │ ├── SyslogUdpHandlerTest.php │ ├── TestHandlerTest.php │ ├── UdpSocketTest.php │ ├── WhatFailureGroupHandlerTest.php │ └── ZendMonitorHandlerTest.php │ ├── LoggerTest.php │ ├── Processor │ ├── GitProcessorTest.php │ ├── IntrospectionProcessorTest.php │ ├── MemoryPeakUsageProcessorTest.php │ ├── MemoryUsageProcessorTest.php │ ├── MercurialProcessorTest.php │ ├── ProcessIdProcessorTest.php │ ├── PsrLogMessageProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ ├── RegistryTest.php │ └── TestCase.php ├── obs └── esdk-obs-php │ ├── Help on License │ ├── LICENSE │ ├── Notice.MD │ ├── Obs │ ├── Internal │ │ ├── Common │ │ │ ├── CheckoutStream.php │ │ │ ├── ITransform.php │ │ │ ├── Model.php │ │ │ ├── ObsTransform.php │ │ │ ├── SchemaFormatter.php │ │ │ ├── SdkCurlFactory.php │ │ │ ├── SdkStreamHandler.php │ │ │ ├── ToArrayInterface.php │ │ │ └── V2Transform.php │ │ ├── GetResponseTrait.php │ │ ├── Resource │ │ │ ├── Constants.php │ │ │ ├── OBSConstants.php │ │ │ ├── OBSRequestResource.php │ │ │ ├── V2Constants.php │ │ │ └── V2RequestResource.php │ │ ├── SendRequestTrait.php │ │ └── Signature │ │ │ ├── AbstractSignature.php │ │ │ ├── DefaultSignature.php │ │ │ ├── SignatureInterface.php │ │ │ └── V4Signature.php │ ├── Log │ │ ├── ObsConfig.php │ │ └── ObsLog.php │ ├── ObsClient.php │ └── ObsException.php │ ├── README.md │ ├── composer.json │ ├── examples │ ├── BucketOperationsSample.php │ ├── ConcurrentCopyPartSample.php │ ├── ConcurrentDownloadObjectSample.php │ ├── ConcurrentUploadPartSample.php │ ├── CreateFolderSample.php │ ├── DeleteObjectsSample.php │ ├── DownloadSample.php │ ├── ListObjectsInFolderSample.php │ ├── ListObjectsSample.php │ ├── ListVersionsSample.php │ ├── ObjectMetaSample.php │ ├── ObjectOperationsSample.php │ ├── ObsPhpDemo.php │ ├── PostObjectSample.php │ ├── RestoreObjectSample.php │ ├── SimpleMultipartUploadSample.php │ └── TemporarySignatureSample.php │ ├── obs-autoloader.php │ └── release │ ├── huaweicloud-sdk-php-obs-3.1.3.zip │ ├── huaweicloud-sdk-php-obs-3.19.9.zip │ └── huaweicloud-sdk-php-obs-3.21.6.zip ├── phpmailer └── phpmailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sr_latn.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── Exception.php │ ├── OAuth.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── psr ├── cache │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CacheException.php │ │ ├── CacheItemInterface.php │ │ ├── CacheItemPoolInterface.php │ │ └── InvalidArgumentException.php ├── container │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── http-client │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ClientExceptionInterface.php │ │ ├── ClientInterface.php │ │ ├── NetworkExceptionInterface.php │ │ └── RequestExceptionInterface.php ├── http-factory │ ├── .gitignore │ ├── .pullapprove.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── RequestFactoryInterface.php │ │ ├── ResponseFactoryInterface.php │ │ ├── ServerRequestFactoryInterface.php │ │ ├── StreamFactoryInterface.php │ │ ├── UploadedFileFactoryInterface.php │ │ └── UriFactoryInterface.php ├── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php ├── log │ ├── LICENSE │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ ├── DummyTest.php │ │ │ ├── LoggerInterfaceTest.php │ │ │ └── TestLogger.php │ ├── README.md │ └── composer.json └── simple-cache │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php ├── qcloud └── cos-sdk-v5 │ ├── .github │ └── workflows │ │ ├── format.yml │ │ └── install.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── sample │ ├── abortMultipartUpload.php │ ├── appendObject.php │ ├── blindWatermark.php │ ├── catchException.php │ ├── ciTransformation.php │ ├── completeMultipartUpload.php │ ├── copy.php │ ├── copyObject.php │ ├── cosClient.php │ ├── createBucket.php │ ├── createDocProcessJobs.php │ ├── createFolder.php │ ├── createMediaConcatJobs.php │ ├── createMediaSnapshotJobs.php │ ├── createMediaTranscodeJobs.php │ ├── createMediaVoiceSeparateJobs.php │ ├── createMultipartUpload.php │ ├── deleteBucket.php │ ├── deleteBucketCors.php │ ├── deleteBucketDomain.php │ ├── deleteBucketGuetzli.php │ ├── deleteBucketImageStyle.php │ ├── deleteBucketLifecycle.php │ ├── deleteBucketTagging.php │ ├── deleteBucketWebsite.php │ ├── deleteBuckets.php │ ├── deleteFolder.php │ ├── deleteObject.php │ ├── deleteObjectTagging.php │ ├── detectAudio.php │ ├── detectDocument.php │ ├── detectImage.php │ ├── detectImages.php │ ├── detectLable.php │ ├── detectText.php │ ├── detectVideo.php │ ├── detectVirus.php │ ├── detectWebpage.php │ ├── doesBucketExist.php │ ├── doesObjectExist.php │ ├── download.php │ ├── downloadFolder.php │ ├── getBlindWatermark.php │ ├── getBucketAccelerate.php │ ├── getBucketAcl.php │ ├── getBucketCors.php │ ├── getBucketDomain.php │ ├── getBucketGuetzli.php │ ├── getBucketImageStyle.php │ ├── getBucketInventory.php │ ├── getBucketLifecycle.php │ ├── getBucketLogging.php │ ├── getBucketReferer.php │ ├── getBucketTagging.php │ ├── getBucketWebsite.php │ ├── getDescribeDocProcessJob.php │ ├── getDescribeDocProcessJobs.php │ ├── getDescribeDocProcessQueues.php │ ├── getDescribeMediaVoiceSeparateJob.php │ ├── getDetectAudioResult.php │ ├── getDetectDocumentResult.php │ ├── getDetectImageResult.php │ ├── getDetectTextResult.php │ ├── getDetectVideoResult.php │ ├── getDetectVirusResult.php │ ├── getDetectWebpageResult.php │ ├── getMediaInfo.php │ ├── getObject.php │ ├── getObjectSensitiveContentRecognition.php │ ├── getObjectTagging.php │ ├── getObjectUrl.php │ ├── getObjectWithoutSign.php │ ├── getPresignedUrl.php │ ├── getSnapshot.php │ ├── headBucket.php │ ├── headObject.php │ ├── imageAve.php │ ├── imageExif.php │ ├── imageInfo.php │ ├── imageMogr.php │ ├── imageProcess.php │ ├── imageView.php │ ├── imageWatermark.php │ ├── listBuckets.php │ ├── listMultipartUploads.php │ ├── listObjects.php │ ├── listParts.php │ ├── picOperations.php │ ├── putBlindWatermark.php │ ├── putBucketAccelerate.php │ ├── putBucketAcl.php │ ├── putBucketCors.php │ ├── putBucketDomain.php │ ├── putBucketGuetzli.php │ ├── putBucketImageStyle.php │ ├── putBucketInventory.php │ ├── putBucketLifecycle.php │ ├── putBucketLogging.php │ ├── putBucketReferer.php │ ├── putBucketTagging.php │ ├── putBucketWebsite.php │ ├── putImageStyle.php │ ├── putObject.php │ ├── putObjectTagging.php │ ├── putQrcode.php │ ├── qrcode.php │ ├── qrcodeGenerate.php │ ├── restoreObject.php │ ├── selectObjectContent.php │ ├── textWatermark.php │ ├── trafficLimit.php │ ├── upload.php │ ├── uploadFolder.php │ └── uploadPart.php │ └── src │ ├── Client.php │ ├── CommandToRequestTransformer.php │ ├── Common.php │ ├── Copy.php │ ├── Descriptions.php │ ├── Exception │ ├── CosException.php │ └── ServiceResponseException.php │ ├── ExceptionMiddleware.php │ ├── ExceptionParser.php │ ├── ImageParamTemplate │ ├── BlindWatermarkTemplate.php │ ├── CIParamTransformation.php │ ├── ImageMogrTemplate.php │ ├── ImageQrcodeTemplate.php │ ├── ImageStyleTemplate.php │ ├── ImageTemplate.php │ ├── ImageViewTemplate.php │ ├── ImageWatermarkTemplate.php │ ├── PicOperationsTransformation.php │ └── TextWatermarkTemplate.php │ ├── MultipartUpload.php │ ├── RangeDownload.php │ ├── Request │ └── BodyLocation.php │ ├── ResultTransformer.php │ ├── Serializer.php │ ├── Service.php │ ├── Signature.php │ └── SignatureMiddleware.php ├── qiniu └── php-sdk │ ├── .github │ └── workflows │ │ └── test-ci.yml │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── composer.json │ ├── examples │ ├── README.md │ ├── bucket_lifecycleRule.php │ ├── cdn_get_bandwidth.php │ ├── cdn_get_flux.php │ ├── cdn_get_log_list.php │ ├── cdn_get_prefetch_list.php │ ├── cdn_get_refresh_list.php │ ├── cdn_refresh_urls_dirs.php │ ├── cdn_timestamp_antileech.php │ ├── censor_image.php │ ├── censor_video.php │ ├── delete_bucket.php │ ├── delete_bucketEvent.php │ ├── delete_bucketLifecycleRule.php │ ├── get_bucketEvents.php │ ├── get_bucketLifecycleRules.php │ ├── get_bucketList.php │ ├── get_bucketQuota.php │ ├── get_bucketinfo.php │ ├── get_bucketinfos.php │ ├── get_corsRules.php │ ├── image_url_builder.php │ ├── persistent_fop_init.php │ ├── persistent_fop_status.php │ ├── pfop_mkzip.php │ ├── pfop_vframe.php │ ├── pfop_video_avthumb.php │ ├── pfop_watermark.php │ ├── php-logo.png │ ├── prefop.php │ ├── put_bucketAccessMode.php │ ├── put_bucketAccessStyleMode.php │ ├── put_bucketEvent.php │ ├── put_bucketMaxAge.php │ ├── put_bucketQuota.php │ ├── put_referAntiLeech.php │ ├── qetag.php │ ├── rs_asynch_fetch.php │ ├── rs_batch_change_mime.php │ ├── rs_batch_change_type.php │ ├── rs_batch_copy.php │ ├── rs_batch_delete.php │ ├── rs_batch_delete_after_days.php │ ├── rs_batch_move.php │ ├── rs_batch_stat.php │ ├── rs_bucket_domains.php │ ├── rs_buckets.php │ ├── rs_change_mime.php │ ├── rs_change_status.php │ ├── rs_change_type.php │ ├── rs_copy.php │ ├── rs_delete.php │ ├── rs_delete_after_days.php │ ├── rs_download_urls.php │ ├── rs_fetch.php │ ├── rs_move.php │ ├── rs_prefetch.php │ ├── rs_stat.php │ ├── rsf_list_bucket.php │ ├── rsf_list_files.php │ ├── rsf_v2list_bucket.php │ ├── rtc │ │ ├── README.md │ │ ├── rtc_createApp.php │ │ ├── rtc_create_roomToken.php │ │ ├── rtc_deleteApp.php │ │ ├── rtc_getApp.php │ │ ├── rtc_rooms_kickUser.php │ │ ├── rtc_rooms_listActiveRooms.php │ │ ├── rtc_rooms_listUser.php │ │ ├── rtc_rooms_stopMerge.php │ │ └── rtc_updateApp.php │ ├── saveas.php │ ├── sms │ │ ├── README.md │ │ ├── sms_create_signature.php │ │ ├── sms_create_template.php │ │ ├── sms_delete_signature.php │ │ ├── sms_delete_template.php │ │ ├── sms_edit_signature.php │ │ ├── sms_edit_template.php │ │ ├── sms_query_send_sms.php │ │ ├── sms_query_signature.php │ │ ├── sms_query_single_signature.php │ │ ├── sms_query_single_template.php │ │ ├── sms_query_template.php │ │ └── sms_send_message.php │ ├── update_bucketEvent.php │ ├── update_bucketLifecycleRule.php │ ├── upload_and_callback.php │ ├── upload_and_pfop.php │ ├── upload_mgr_init.php │ ├── upload_multi_demos.php │ ├── upload_simple_file.php │ ├── upload_tokens.php │ ├── upload_verify_callback.php │ ├── upload_with_qvmzone.php │ └── upload_with_zone.php │ ├── phpunit.xml.dist │ ├── src │ └── Qiniu │ │ ├── Auth.php │ │ ├── Cdn │ │ └── CdnManager.php │ │ ├── Config.php │ │ ├── Etag.php │ │ ├── Http │ │ ├── Client.php │ │ ├── Error.php │ │ ├── Request.php │ │ └── Response.php │ │ ├── Processing │ │ ├── ImageUrlBuilder.php │ │ ├── Operation.php │ │ └── PersistentFop.php │ │ ├── Region.php │ │ ├── Rtc │ │ └── AppClient.php │ │ ├── Sms │ │ └── Sms.php │ │ ├── Storage │ │ ├── ArgusManager.php │ │ ├── BucketManager.php │ │ ├── FormUploader.php │ │ ├── ResumeUploader.php │ │ └── UploadManager.php │ │ ├── Zone.php │ │ └── functions.php │ ├── test-env.sh │ └── tests │ ├── Qiniu │ └── Tests │ │ ├── AuthTest.php │ │ ├── Base64Test.php │ │ ├── BucketTest.php │ │ ├── CdnManagerTest.php │ │ ├── Crc32Test.php │ │ ├── DownloadTest.php │ │ ├── EtagTest.php │ │ ├── FopTest.php │ │ ├── FormUpTest.php │ │ ├── HttpTest.php │ │ ├── ImageUrlBuilderTest.php │ │ ├── PfopTest.php │ │ ├── ResumeUpTest.php │ │ └── ZoneTest.php │ └── bootstrap.php ├── ralouphie └── getallheaders │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── getallheaders.php ├── services.php ├── symfony ├── deprecation-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── function.php ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-php72 │ ├── LICENSE │ ├── Php72.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-php80 │ ├── LICENSE │ ├── Php80.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ ├── Attribute.php │ │ │ ├── Stringable.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── ValueError.php │ ├── bootstrap.php │ └── composer.json └── var-dumper │ ├── CHANGELOG.md │ ├── Caster │ ├── AmqpCaster.php │ ├── ArgsStub.php │ ├── Caster.php │ ├── ClassStub.php │ ├── ConstStub.php │ ├── CutArrayStub.php │ ├── CutStub.php │ ├── DOMCaster.php │ ├── DateCaster.php │ ├── DoctrineCaster.php │ ├── DsCaster.php │ ├── DsPairStub.php │ ├── EnumStub.php │ ├── ExceptionCaster.php │ ├── FrameStub.php │ ├── GmpCaster.php │ ├── ImagineCaster.php │ ├── ImgStub.php │ ├── IntlCaster.php │ ├── LinkStub.php │ ├── MemcachedCaster.php │ ├── PdoCaster.php │ ├── PgSqlCaster.php │ ├── ProxyManagerCaster.php │ ├── RedisCaster.php │ ├── ReflectionCaster.php │ ├── ResourceCaster.php │ ├── SplCaster.php │ ├── StubCaster.php │ ├── SymfonyCaster.php │ ├── TraceStub.php │ ├── UuidCaster.php │ ├── XmlReaderCaster.php │ └── XmlResourceCaster.php │ ├── Cloner │ ├── AbstractCloner.php │ ├── ClonerInterface.php │ ├── Cursor.php │ ├── Data.php │ ├── DumperInterface.php │ ├── Stub.php │ └── VarCloner.php │ ├── Command │ ├── Descriptor │ │ ├── CliDescriptor.php │ │ ├── DumpDescriptorInterface.php │ │ └── HtmlDescriptor.php │ └── ServerDumpCommand.php │ ├── Dumper │ ├── AbstractDumper.php │ ├── CliDumper.php │ ├── ContextProvider │ │ ├── CliContextProvider.php │ │ ├── ContextProviderInterface.php │ │ ├── RequestContextProvider.php │ │ └── SourceContextProvider.php │ ├── ContextualizedDumper.php │ ├── DataDumperInterface.php │ ├── HtmlDumper.php │ └── ServerDumper.php │ ├── Exception │ └── ThrowingCasterException.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ ├── bin │ │ └── var-dump-server │ ├── css │ │ └── htmlDescriptor.css │ ├── functions │ │ └── dump.php │ └── js │ │ └── htmlDescriptor.js │ ├── Server │ ├── Connection.php │ └── DumpServer.php │ ├── Test │ └── VarDumperTestTrait.php │ ├── VarDumper.php │ └── composer.json ├── topthink ├── framework │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ ├── logo.png │ ├── phpunit.xml.dist │ ├── src │ │ ├── helper.php │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── think │ │ │ ├── App.php │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Console.php │ │ │ ├── Container.php │ │ │ ├── Cookie.php │ │ │ ├── Db.php │ │ │ ├── Env.php │ │ │ ├── Event.php │ │ │ ├── Exception.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Filesystem.php │ │ │ ├── Http.php │ │ │ ├── Lang.php │ │ │ ├── Log.php │ │ │ ├── Manager.php │ │ │ ├── Middleware.php │ │ │ ├── Pipeline.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ ├── Service.php │ │ │ ├── Session.php │ │ │ ├── Validate.php │ │ │ ├── View.php │ │ │ ├── cache │ │ │ │ ├── Driver.php │ │ │ │ ├── TagSet.php │ │ │ │ └── driver │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Memcache.php │ │ │ │ │ ├── Memcached.php │ │ │ │ │ ├── Redis.php │ │ │ │ │ └── Wincache.php │ │ │ ├── console │ │ │ │ ├── Command.php │ │ │ │ ├── Input.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Output.php │ │ │ │ ├── Table.php │ │ │ │ ├── bin │ │ │ │ │ ├── README.md │ │ │ │ │ └── hiddeninput.exe │ │ │ │ ├── command │ │ │ │ │ ├── Clear.php │ │ │ │ │ ├── Help.php │ │ │ │ │ ├── Lists.php │ │ │ │ │ ├── Make.php │ │ │ │ │ ├── RouteList.php │ │ │ │ │ ├── RunServer.php │ │ │ │ │ ├── ServiceDiscover.php │ │ │ │ │ ├── VendorPublish.php │ │ │ │ │ ├── Version.php │ │ │ │ │ ├── make │ │ │ │ │ │ ├── Command.php │ │ │ │ │ │ ├── Controller.php │ │ │ │ │ │ ├── Event.php │ │ │ │ │ │ ├── Listener.php │ │ │ │ │ │ ├── Middleware.php │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ ├── Subscribe.php │ │ │ │ │ │ ├── Validate.php │ │ │ │ │ │ └── stubs │ │ │ │ │ │ │ ├── command.stub │ │ │ │ │ │ │ ├── controller.api.stub │ │ │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ │ │ ├── controller.stub │ │ │ │ │ │ │ ├── event.stub │ │ │ │ │ │ │ ├── listener.stub │ │ │ │ │ │ │ ├── middleware.stub │ │ │ │ │ │ │ ├── model.stub │ │ │ │ │ │ │ ├── service.stub │ │ │ │ │ │ │ ├── subscribe.stub │ │ │ │ │ │ │ └── validate.stub │ │ │ │ │ └── optimize │ │ │ │ │ │ ├── Route.php │ │ │ │ │ │ └── Schema.php │ │ │ │ ├── input │ │ │ │ │ ├── Argument.php │ │ │ │ │ ├── Definition.php │ │ │ │ │ └── Option.php │ │ │ │ └── output │ │ │ │ │ ├── Ask.php │ │ │ │ │ ├── Descriptor.php │ │ │ │ │ ├── Formatter.php │ │ │ │ │ ├── Question.php │ │ │ │ │ ├── descriptor │ │ │ │ │ └── Console.php │ │ │ │ │ ├── driver │ │ │ │ │ ├── Buffer.php │ │ │ │ │ ├── Console.php │ │ │ │ │ └── Nothing.php │ │ │ │ │ ├── formatter │ │ │ │ │ ├── Stack.php │ │ │ │ │ └── Style.php │ │ │ │ │ └── question │ │ │ │ │ ├── Choice.php │ │ │ │ │ └── Confirmation.php │ │ │ ├── contract │ │ │ │ ├── CacheHandlerInterface.php │ │ │ │ ├── LogHandlerInterface.php │ │ │ │ ├── ModelRelationInterface.php │ │ │ │ ├── SessionHandlerInterface.php │ │ │ │ └── TemplateHandlerInterface.php │ │ │ ├── event │ │ │ │ ├── AppInit.php │ │ │ │ ├── HttpEnd.php │ │ │ │ ├── HttpRun.php │ │ │ │ ├── LogRecord.php │ │ │ │ ├── LogWrite.php │ │ │ │ └── RouteLoaded.php │ │ │ ├── exception │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ErrorException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FuncNotFoundException.php │ │ │ │ ├── Handle.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpResponseException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── RouteNotFoundException.php │ │ │ │ └── ValidateException.php │ │ │ ├── facade │ │ │ │ ├── App.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Console.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Env.php │ │ │ │ ├── Event.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Log.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Request.php │ │ │ │ ├── Route.php │ │ │ │ ├── Session.php │ │ │ │ ├── Validate.php │ │ │ │ └── View.php │ │ │ ├── file │ │ │ │ └── UploadedFile.php │ │ │ ├── filesystem │ │ │ │ ├── CacheStore.php │ │ │ │ ├── Driver.php │ │ │ │ └── driver │ │ │ │ │ └── Local.php │ │ │ ├── initializer │ │ │ │ ├── BootService.php │ │ │ │ ├── Error.php │ │ │ │ └── RegisterService.php │ │ │ ├── log │ │ │ │ ├── Channel.php │ │ │ │ ├── ChannelSet.php │ │ │ │ └── driver │ │ │ │ │ ├── File.php │ │ │ │ │ └── Socket.php │ │ │ ├── middleware │ │ │ │ ├── AllowCrossDomain.php │ │ │ │ ├── CheckRequestCache.php │ │ │ │ ├── FormTokenCheck.php │ │ │ │ ├── LoadLangPack.php │ │ │ │ └── SessionInit.php │ │ │ ├── response │ │ │ │ ├── File.php │ │ │ │ ├── Html.php │ │ │ │ ├── Json.php │ │ │ │ ├── Jsonp.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── View.php │ │ │ │ └── Xml.php │ │ │ ├── route │ │ │ │ ├── Dispatch.php │ │ │ │ ├── Domain.php │ │ │ │ ├── Resource.php │ │ │ │ ├── Rule.php │ │ │ │ ├── RuleGroup.php │ │ │ │ ├── RuleItem.php │ │ │ │ ├── RuleName.php │ │ │ │ ├── Url.php │ │ │ │ └── dispatch │ │ │ │ │ ├── Callback.php │ │ │ │ │ ├── Controller.php │ │ │ │ │ └── Url.php │ │ │ ├── service │ │ │ │ ├── ModelService.php │ │ │ │ ├── PaginatorService.php │ │ │ │ └── ValidateService.php │ │ │ ├── session │ │ │ │ ├── Store.php │ │ │ │ └── driver │ │ │ │ │ ├── Cache.php │ │ │ │ │ └── File.php │ │ │ ├── validate │ │ │ │ └── ValidateRule.php │ │ │ └── view │ │ │ │ └── driver │ │ │ │ └── Php.php │ │ └── tpl │ │ │ └── think_exception.tpl │ └── tests │ │ ├── AppTest.php │ │ ├── CacheTest.php │ │ ├── ConfigTest.php │ │ ├── ContainerTest.php │ │ ├── DbTest.php │ │ ├── DispatchTest.php │ │ ├── EnvTest.php │ │ ├── EventTest.php │ │ ├── FilesystemTest.php │ │ ├── HttpTest.php │ │ ├── InteractsWithApp.php │ │ ├── LogTest.php │ │ ├── MiddlewareTest.php │ │ ├── RouteTest.php │ │ ├── SessionTest.php │ │ ├── ViewTest.php │ │ └── bootstrap.php ├── think-helper │ ├── .github │ │ └── workflows │ │ │ ├── ci.yml │ │ │ └── php.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Collection.php │ │ ├── contract │ │ │ ├── Arrayable.php │ │ │ └── Jsonable.php │ │ ├── helper.php │ │ └── helper │ │ │ ├── Arr.php │ │ │ └── Str.php │ └── tests │ │ ├── ArrTest.php │ │ ├── CollectionTest.php │ │ ├── StrTest.php │ │ └── TestCase.php ├── think-orm │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ │ ├── DbManager.php │ │ ├── Model.php │ │ ├── Paginator.php │ │ ├── db │ │ │ ├── BaseQuery.php │ │ │ ├── Builder.php │ │ │ ├── CacheItem.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── Fetch.php │ │ │ ├── Mongo.php │ │ │ ├── PDOConnection.php │ │ │ ├── Query.php │ │ │ ├── Raw.php │ │ │ ├── Where.php │ │ │ ├── builder │ │ │ │ ├── Mongo.php │ │ │ │ ├── Mysql.php │ │ │ │ ├── Oracle.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ └── Sqlsrv.php │ │ │ ├── concern │ │ │ │ ├── AggregateQuery.php │ │ │ │ ├── JoinAndViewQuery.php │ │ │ │ ├── ModelRelationQuery.php │ │ │ │ ├── ParamsBind.php │ │ │ │ ├── ResultOperation.php │ │ │ │ ├── TableFieldInfo.php │ │ │ │ ├── TimeFieldQuery.php │ │ │ │ ├── Transaction.php │ │ │ │ └── WhereQuery.php │ │ │ ├── connector │ │ │ │ ├── Mongo.php │ │ │ │ ├── Mysql.php │ │ │ │ ├── Oracle.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Sqlsrv.php │ │ │ │ └── pgsql.sql │ │ │ └── exception │ │ │ │ ├── BindParamException.php │ │ │ │ ├── DataNotFoundException.php │ │ │ │ ├── DbEventException.php │ │ │ │ ├── DbException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── ModelEventException.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ └── PDOException.php │ │ ├── facade │ │ │ └── Db.php │ │ ├── model │ │ │ ├── Collection.php │ │ │ ├── Pivot.php │ │ │ ├── Relation.php │ │ │ ├── concern │ │ │ │ ├── Attribute.php │ │ │ │ ├── Conversion.php │ │ │ │ ├── ModelEvent.php │ │ │ │ ├── OptimLock.php │ │ │ │ ├── RelationShip.php │ │ │ │ ├── SoftDelete.php │ │ │ │ ├── TimeStamp.php │ │ │ │ └── Virtual.php │ │ │ └── relation │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── HasOneThrough.php │ │ │ │ ├── MorphMany.php │ │ │ │ ├── MorphOne.php │ │ │ │ ├── MorphTo.php │ │ │ │ ├── MorphToMany.php │ │ │ │ └── OneToOne.php │ │ └── paginator │ │ │ └── driver │ │ │ └── Bootstrap.php │ └── stubs │ │ ├── Exception.php │ │ ├── Facade.php │ │ └── load_stubs.php └── think-trace │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Console.php │ ├── Html.php │ ├── Service.php │ ├── TraceDebug.php │ ├── config.php │ └── tpl │ └── page_trace.tpl └── upyun └── sdk ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .scrutinizer.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RoboFile.php ├── composer.json └── src └── Upyun ├── Api ├── Form.php ├── Pretreat.php ├── Rest.php └── SyncVideo.php ├── Config.php ├── Signature.php ├── Uploader.php ├── Upyun.php └── Util.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | *.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/AppService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/AppService.php -------------------------------------------------------------------------------- /app/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/BaseController.php -------------------------------------------------------------------------------- /app/ExceptionHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/ExceptionHandle.php -------------------------------------------------------------------------------- /app/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/Request.php -------------------------------------------------------------------------------- /app/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/common.php -------------------------------------------------------------------------------- /app/controller/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Account.php -------------------------------------------------------------------------------- /app/controller/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Api.php -------------------------------------------------------------------------------- /app/controller/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Images.php -------------------------------------------------------------------------------- /app/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Index.php -------------------------------------------------------------------------------- /app/controller/Member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Member.php -------------------------------------------------------------------------------- /app/controller/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Role.php -------------------------------------------------------------------------------- /app/controller/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Setup.php -------------------------------------------------------------------------------- /app/controller/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Storage.php -------------------------------------------------------------------------------- /app/controller/Updade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/Updade.php -------------------------------------------------------------------------------- /app/controller/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/controller/User.php -------------------------------------------------------------------------------- /app/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/event.php -------------------------------------------------------------------------------- /app/middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/middleware.php -------------------------------------------------------------------------------- /app/middleware/AllowCrossDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/middleware/AllowCrossDomain.php -------------------------------------------------------------------------------- /app/middleware/AuthVerify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/middleware/AuthVerify.php -------------------------------------------------------------------------------- /app/middleware/TokenVerify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/middleware/TokenVerify.php -------------------------------------------------------------------------------- /app/model/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/model/Code.php -------------------------------------------------------------------------------- /app/model/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/model/Images.php -------------------------------------------------------------------------------- /app/model/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/model/Log.php -------------------------------------------------------------------------------- /app/model/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/model/Role.php -------------------------------------------------------------------------------- /app/model/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/model/Storage.php -------------------------------------------------------------------------------- /app/model/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/model/System.php -------------------------------------------------------------------------------- /app/model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/model/User.php -------------------------------------------------------------------------------- /app/provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/provider.php -------------------------------------------------------------------------------- /app/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/service.php -------------------------------------------------------------------------------- /app/services/AttachClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/services/AttachClass.php -------------------------------------------------------------------------------- /app/services/AuthToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/services/AuthToken.php -------------------------------------------------------------------------------- /app/services/EmailClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/services/EmailClass.php -------------------------------------------------------------------------------- /app/services/UpdateClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/services/UpdateClass.php -------------------------------------------------------------------------------- /app/services/UploadCLass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/services/UploadCLass.php -------------------------------------------------------------------------------- /app/sql/update.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Sql更新文件 3 | -- 4 | 5 | -- v1.1 6 | -- 添加字段索引 7 | ALTER TABLE osuu_system ADD UNIQUE (`key`); -------------------------------------------------------------------------------- /app/validate/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/validate/Page.php -------------------------------------------------------------------------------- /app/validate/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/validate/Register.php -------------------------------------------------------------------------------- /app/validate/ResetPwd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/validate/ResetPwd.php -------------------------------------------------------------------------------- /app/validate/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/app/validate/User.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/app.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/console.php -------------------------------------------------------------------------------- /config/cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/cookie.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/filesystem.php -------------------------------------------------------------------------------- /config/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/lang.php -------------------------------------------------------------------------------- /config/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/log.php -------------------------------------------------------------------------------- /config/middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/middleware.php -------------------------------------------------------------------------------- /config/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/route.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osuuu/LightPicture/HEAD/config/session.php -------------------------------------------------------------------------------- /config/table.php: -------------------------------------------------------------------------------- 1 |