├── plugin └── install │ ├── .gitignore │ ├── config │ └── exception.php │ └── public │ └── install │ ├── logo.png │ └── ok.png ├── runtime └── .gitignore ├── backup └── database │ └── .gitignore ├── vendor ├── topthink │ ├── think-image │ │ ├── tests │ │ │ ├── images │ │ │ │ ├── test.bmp │ │ │ │ ├── test.gif │ │ │ │ ├── test.jpg │ │ │ │ ├── test.png │ │ │ │ └── test.ttf │ │ │ └── tmp │ │ │ │ └── .gitignore │ │ └── .gitignore │ ├── think-template │ │ ├── .gitignore │ │ └── tests │ │ │ ├── template │ │ │ ├── fetch.html │ │ │ ├── include.html │ │ │ ├── layout.html │ │ │ └── extend.html │ │ │ └── bootstrap.php │ ├── think-validate │ │ └── .gitignore │ ├── think-container │ │ ├── .gitignore │ │ └── tests │ │ │ └── bootstrap.php │ ├── think-helper │ │ ├── .gitignore │ │ └── src │ │ │ └── contract │ │ │ └── Arrayable.php │ └── think-orm │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── src │ │ └── model │ │ └── contract │ │ └── Modelable.php ├── nikic │ └── fast-route │ │ ├── .hhconfig │ │ ├── .gitignore │ │ └── src │ │ └── BadRouteException.php ├── maennchen │ └── zipstream-php │ │ ├── .tool-versions │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── src │ │ └── Exception.php │ │ └── test │ │ └── bootstrap.php ├── veitool │ └── admin │ │ ├── README.md │ │ └── src │ │ └── veitool │ │ └── qrcode │ │ └── phpqrcode │ │ ├── VERSION │ │ ├── tools │ │ ├── merge.bat │ │ └── merge.sh │ │ └── cache │ │ ├── frame_1.dat │ │ ├── frame_1.png │ │ ├── frame_10.dat │ │ ├── frame_10.png │ │ ├── frame_11.dat │ │ ├── frame_11.png │ │ ├── frame_12.dat │ │ ├── frame_12.png │ │ ├── frame_13.dat │ │ ├── frame_13.png │ │ ├── frame_14.dat │ │ ├── frame_14.png │ │ ├── frame_15.dat │ │ ├── frame_15.png │ │ ├── frame_16.dat │ │ ├── frame_16.png │ │ ├── frame_17.dat │ │ ├── frame_17.png │ │ ├── frame_18.dat │ │ ├── frame_18.png │ │ ├── frame_19.dat │ │ ├── frame_19.png │ │ ├── frame_2.dat │ │ ├── frame_2.png │ │ ├── frame_20.dat │ │ ├── frame_20.png │ │ ├── frame_21.dat │ │ ├── frame_21.png │ │ ├── frame_22.dat │ │ ├── frame_22.png │ │ ├── frame_23.dat │ │ ├── frame_23.png │ │ ├── frame_24.dat │ │ ├── frame_24.png │ │ ├── frame_25.dat │ │ ├── frame_25.png │ │ ├── frame_26.dat │ │ ├── frame_26.png │ │ ├── frame_27.dat │ │ ├── frame_27.png │ │ ├── frame_28.dat │ │ ├── frame_28.png │ │ ├── frame_29.dat │ │ ├── frame_29.png │ │ ├── frame_3.dat │ │ ├── frame_3.png │ │ ├── frame_30.dat │ │ ├── frame_30.png │ │ ├── frame_31.dat │ │ ├── frame_31.png │ │ ├── frame_32.dat │ │ ├── frame_32.png │ │ ├── frame_33.dat │ │ ├── frame_33.png │ │ ├── frame_34.dat │ │ ├── frame_34.png │ │ ├── frame_35.dat │ │ ├── frame_35.png │ │ ├── frame_36.dat │ │ ├── frame_36.png │ │ ├── frame_37.dat │ │ ├── frame_37.png │ │ ├── frame_38.dat │ │ ├── frame_38.png │ │ ├── frame_39.dat │ │ ├── frame_39.png │ │ ├── frame_4.dat │ │ ├── frame_4.png │ │ ├── frame_40.dat │ │ ├── frame_40.png │ │ ├── frame_5.dat │ │ ├── frame_5.png │ │ ├── frame_6.dat │ │ ├── frame_6.png │ │ ├── frame_7.dat │ │ ├── frame_7.png │ │ ├── frame_8.dat │ │ ├── frame_8.png │ │ ├── frame_9.dat │ │ ├── frame_9.png │ │ ├── mask_0 │ │ ├── mask_101_0.dat │ │ ├── mask_105_0.dat │ │ ├── mask_109_0.dat │ │ ├── mask_113_0.dat │ │ ├── mask_117_0.dat │ │ ├── mask_121_0.dat │ │ ├── mask_125_0.dat │ │ ├── mask_129_0.dat │ │ ├── mask_133_0.dat │ │ ├── mask_137_0.dat │ │ ├── mask_141_0.dat │ │ ├── mask_145_0.dat │ │ ├── mask_149_0.dat │ │ ├── mask_153_0.dat │ │ ├── mask_157_0.dat │ │ ├── mask_161_0.dat │ │ ├── mask_165_0.dat │ │ ├── mask_169_0.dat │ │ ├── mask_173_0.dat │ │ ├── mask_177_0.dat │ │ ├── mask_21_0.dat │ │ ├── mask_25_0.dat │ │ ├── mask_29_0.dat │ │ ├── mask_33_0.dat │ │ ├── mask_37_0.dat │ │ ├── mask_41_0.dat │ │ ├── mask_45_0.dat │ │ ├── mask_49_0.dat │ │ ├── mask_53_0.dat │ │ ├── mask_57_0.dat │ │ ├── mask_61_0.dat │ │ ├── mask_65_0.dat │ │ ├── mask_69_0.dat │ │ ├── mask_73_0.dat │ │ ├── mask_77_0.dat │ │ ├── mask_81_0.dat │ │ ├── mask_85_0.dat │ │ ├── mask_89_0.dat │ │ ├── mask_93_0.dat │ │ └── mask_97_0.dat │ │ ├── mask_1 │ │ ├── mask_101_1.dat │ │ ├── mask_105_1.dat │ │ ├── mask_109_1.dat │ │ ├── mask_113_1.dat │ │ ├── mask_117_1.dat │ │ ├── mask_121_1.dat │ │ ├── mask_125_1.dat │ │ ├── mask_129_1.dat │ │ ├── mask_133_1.dat │ │ ├── mask_137_1.dat │ │ ├── mask_141_1.dat │ │ ├── mask_145_1.dat │ │ ├── mask_149_1.dat │ │ ├── mask_153_1.dat │ │ ├── mask_157_1.dat │ │ ├── mask_161_1.dat │ │ ├── mask_165_1.dat │ │ ├── mask_169_1.dat │ │ ├── mask_173_1.dat │ │ ├── mask_177_1.dat │ │ ├── mask_21_1.dat │ │ ├── mask_25_1.dat │ │ ├── mask_29_1.dat │ │ ├── mask_33_1.dat │ │ ├── mask_37_1.dat │ │ ├── mask_41_1.dat │ │ ├── mask_45_1.dat │ │ ├── mask_49_1.dat │ │ ├── mask_53_1.dat │ │ ├── mask_57_1.dat │ │ ├── mask_61_1.dat │ │ ├── mask_65_1.dat │ │ ├── mask_69_1.dat │ │ ├── mask_73_1.dat │ │ ├── mask_77_1.dat │ │ ├── mask_81_1.dat │ │ ├── mask_85_1.dat │ │ ├── mask_89_1.dat │ │ ├── mask_93_1.dat │ │ └── mask_97_1.dat │ │ ├── mask_2 │ │ ├── mask_101_2.dat │ │ ├── mask_105_2.dat │ │ ├── mask_109_2.dat │ │ ├── mask_113_2.dat │ │ ├── mask_117_2.dat │ │ ├── mask_121_2.dat │ │ ├── mask_125_2.dat │ │ ├── mask_129_2.dat │ │ ├── mask_133_2.dat │ │ ├── mask_137_2.dat │ │ ├── mask_141_2.dat │ │ ├── mask_145_2.dat │ │ ├── mask_149_2.dat │ │ ├── mask_153_2.dat │ │ ├── mask_157_2.dat │ │ ├── mask_161_2.dat │ │ ├── mask_165_2.dat │ │ ├── mask_169_2.dat │ │ ├── mask_173_2.dat │ │ ├── mask_177_2.dat │ │ ├── mask_21_2.dat │ │ ├── mask_25_2.dat │ │ ├── mask_29_2.dat │ │ ├── mask_33_2.dat │ │ ├── mask_37_2.dat │ │ ├── mask_41_2.dat │ │ ├── mask_45_2.dat │ │ ├── mask_49_2.dat │ │ ├── mask_53_2.dat │ │ ├── mask_57_2.dat │ │ ├── mask_61_2.dat │ │ ├── mask_65_2.dat │ │ ├── mask_69_2.dat │ │ ├── mask_73_2.dat │ │ ├── mask_77_2.dat │ │ ├── mask_81_2.dat │ │ ├── mask_85_2.dat │ │ ├── mask_89_2.dat │ │ ├── mask_93_2.dat │ │ └── mask_97_2.dat │ │ ├── mask_3 │ │ ├── mask_101_3.dat │ │ ├── mask_105_3.dat │ │ ├── mask_109_3.dat │ │ ├── mask_113_3.dat │ │ ├── mask_117_3.dat │ │ ├── mask_121_3.dat │ │ ├── mask_125_3.dat │ │ ├── mask_129_3.dat │ │ ├── mask_133_3.dat │ │ ├── mask_137_3.dat │ │ ├── mask_141_3.dat │ │ ├── mask_145_3.dat │ │ ├── mask_149_3.dat │ │ ├── mask_153_3.dat │ │ ├── mask_157_3.dat │ │ ├── mask_161_3.dat │ │ ├── mask_165_3.dat │ │ ├── mask_169_3.dat │ │ ├── mask_173_3.dat │ │ ├── mask_177_3.dat │ │ ├── mask_21_3.dat │ │ ├── mask_25_3.dat │ │ ├── mask_29_3.dat │ │ ├── mask_33_3.dat │ │ ├── mask_37_3.dat │ │ ├── mask_41_3.dat │ │ ├── mask_45_3.dat │ │ ├── mask_49_3.dat │ │ ├── mask_53_3.dat │ │ ├── mask_57_3.dat │ │ ├── mask_61_3.dat │ │ ├── mask_65_3.dat │ │ ├── mask_69_3.dat │ │ ├── mask_73_3.dat │ │ ├── mask_77_3.dat │ │ ├── mask_81_3.dat │ │ ├── mask_85_3.dat │ │ ├── mask_89_3.dat │ │ ├── mask_93_3.dat │ │ └── mask_97_3.dat │ │ ├── mask_4 │ │ ├── mask_101_4.dat │ │ ├── mask_105_4.dat │ │ ├── mask_109_4.dat │ │ ├── mask_113_4.dat │ │ ├── mask_117_4.dat │ │ ├── mask_121_4.dat │ │ ├── mask_125_4.dat │ │ ├── mask_129_4.dat │ │ ├── mask_133_4.dat │ │ ├── mask_137_4.dat │ │ ├── mask_141_4.dat │ │ ├── mask_145_4.dat │ │ ├── mask_149_4.dat │ │ ├── mask_153_4.dat │ │ ├── mask_157_4.dat │ │ ├── mask_161_4.dat │ │ ├── mask_165_4.dat │ │ ├── mask_169_4.dat │ │ ├── mask_173_4.dat │ │ ├── mask_177_4.dat │ │ ├── mask_21_4.dat │ │ ├── mask_25_4.dat │ │ ├── mask_29_4.dat │ │ ├── mask_33_4.dat │ │ ├── mask_37_4.dat │ │ ├── mask_41_4.dat │ │ ├── mask_45_4.dat │ │ ├── mask_49_4.dat │ │ ├── mask_53_4.dat │ │ ├── mask_57_4.dat │ │ ├── mask_61_4.dat │ │ ├── mask_65_4.dat │ │ ├── mask_69_4.dat │ │ ├── mask_73_4.dat │ │ ├── mask_77_4.dat │ │ ├── mask_81_4.dat │ │ ├── mask_85_4.dat │ │ ├── mask_89_4.dat │ │ ├── mask_93_4.dat │ │ └── mask_97_4.dat │ │ ├── mask_5 │ │ ├── mask_101_5.dat │ │ ├── mask_105_5.dat │ │ ├── mask_109_5.dat │ │ ├── mask_113_5.dat │ │ ├── mask_117_5.dat │ │ ├── mask_121_5.dat │ │ ├── mask_125_5.dat │ │ ├── mask_129_5.dat │ │ ├── mask_133_5.dat │ │ ├── mask_137_5.dat │ │ ├── mask_141_5.dat │ │ ├── mask_145_5.dat │ │ ├── mask_149_5.dat │ │ ├── mask_153_5.dat │ │ ├── mask_157_5.dat │ │ ├── mask_161_5.dat │ │ ├── mask_165_5.dat │ │ ├── mask_169_5.dat │ │ ├── mask_173_5.dat │ │ ├── mask_177_5.dat │ │ ├── mask_21_5.dat │ │ ├── mask_25_5.dat │ │ ├── mask_29_5.dat │ │ ├── mask_33_5.dat │ │ ├── mask_37_5.dat │ │ ├── mask_41_5.dat │ │ ├── mask_45_5.dat │ │ ├── mask_49_5.dat │ │ ├── mask_53_5.dat │ │ ├── mask_57_5.dat │ │ ├── mask_61_5.dat │ │ ├── mask_65_5.dat │ │ ├── mask_69_5.dat │ │ ├── mask_73_5.dat │ │ ├── mask_77_5.dat │ │ ├── mask_81_5.dat │ │ ├── mask_85_5.dat │ │ ├── mask_89_5.dat │ │ ├── mask_93_5.dat │ │ └── mask_97_5.dat │ │ └── mask_6 │ │ ├── mask_101_6.dat │ │ ├── mask_105_6.dat │ │ ├── mask_109_6.dat │ │ ├── mask_113_6.dat │ │ ├── mask_117_6.dat │ │ ├── mask_121_6.dat │ │ ├── mask_125_6.dat │ │ ├── mask_129_6.dat │ │ ├── mask_133_6.dat │ │ ├── mask_137_6.dat │ │ ├── mask_141_6.dat │ │ ├── mask_145_6.dat │ │ ├── mask_149_6.dat │ │ └── mask_153_6.dat ├── webman │ ├── think-orm │ │ └── README.md │ ├── gateway-worker │ │ ├── README.md │ │ └── src │ │ │ └── config │ │ │ └── plugin │ │ │ └── webman │ │ │ └── gateway-worker │ │ │ └── app.php │ ├── captcha │ │ ├── .gitignore │ │ └── src │ │ │ └── Font │ │ │ ├── captcha0.ttf │ │ │ ├── captcha1.ttf │ │ │ ├── captcha2.ttf │ │ │ ├── captcha3.ttf │ │ │ └── captcha4.ttf │ ├── event │ │ ├── README.md │ │ └── src │ │ │ └── config │ │ │ └── plugin │ │ │ └── webman │ │ │ └── event │ │ │ ├── app.php │ │ │ └── command.php │ ├── redis-queue │ │ └── src │ │ │ └── config │ │ │ └── plugin │ │ │ └── webman │ │ │ └── redis-queue │ │ │ ├── app.php │ │ │ └── command.php │ ├── redis │ │ └── README.md │ ├── cache │ │ └── README.md │ └── rate-limiter │ │ ├── README.md │ │ └── src │ │ └── config │ │ └── plugin │ │ └── webman │ │ └── rate-limiter │ │ └── middleware.php ├── psr │ ├── container │ │ └── .gitignore │ └── log │ │ └── src │ │ └── InvalidArgumentException.php ├── qiniu │ └── php-sdk │ │ ├── tests │ │ └── mock-server │ │ │ ├── timeout.php │ │ │ ├── ok.php │ │ │ └── redirect.php │ │ ├── examples │ │ └── php-logo.png │ │ └── test-env.sh ├── voku │ └── portable-ascii │ │ └── .deepsource.toml ├── aliyuncs │ └── oss-sdk-php │ │ ├── index.php │ │ ├── .coveralls.yml │ │ ├── .gitignore │ │ ├── example.jpg │ │ └── src │ │ └── OSS │ │ └── Http │ │ └── RequestCore_Exception.php ├── workerman │ ├── webman-framework │ │ └── .gitignore │ ├── redis │ │ └── .gitignore │ ├── coroutine │ │ ├── .gitignore │ │ ├── README.md │ │ └── src │ │ │ └── Exception │ │ │ └── PoolException.php │ ├── gateway-worker │ │ ├── .gitignore │ │ └── .github │ │ │ └── FUNDING.yml │ ├── workerman │ │ └── SECURITY.md │ └── redis-queue │ │ └── src │ │ └── UnretryableException.php ├── composer │ ├── autoload_static.php │ └── autoload_classmap.php ├── nesbot │ └── carbon │ │ ├── bin │ │ └── carbon.bat │ │ └── extension.neon ├── symfony │ └── cache │ │ └── Traits │ │ └── ValueWrapper.php ├── guzzlehttp │ └── guzzle │ │ ├── package-lock.json │ │ └── src │ │ └── Exception │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php ├── illuminate │ ├── support │ │ └── Testing │ │ │ └── Fakes │ │ │ └── Fake.php │ └── contracts │ │ ├── Console │ │ ├── Isolatable.php │ │ └── PromptsForMissingInput.php │ │ ├── Queue │ │ ├── ShouldQueue.php │ │ ├── ShouldBeUnique.php │ │ ├── ShouldBeEncrypted.php │ │ └── ShouldQueueAfterCommit.php │ │ ├── Debug │ │ └── ShouldntReport.php │ │ ├── Broadcasting │ │ ├── ShouldBeUnique.php │ │ └── ShouldBroadcastNow.php │ │ ├── Container │ │ └── ContextualAttribute.php │ │ ├── Database │ │ ├── Events │ │ │ └── MigrationEvent.php │ │ └── Query │ │ │ └── ConditionExpression.php │ │ ├── Events │ │ ├── ShouldDispatchAfterCommit.php │ │ └── ShouldHandleEventsAfterCommit.php │ │ ├── Auth │ │ └── Middleware │ │ │ └── AuthenticatesRequests.php │ │ └── Session │ │ └── Middleware │ │ └── AuthenticatesSessions.php ├── phpoffice │ ├── math │ │ ├── src │ │ │ └── Math │ │ │ │ ├── Element │ │ │ │ ├── AbstractElement.php │ │ │ │ └── Row.php │ │ │ │ ├── Exception │ │ │ │ ├── SecurityException.php │ │ │ │ ├── InvalidInputException.php │ │ │ │ ├── NotImplementedException.php │ │ │ │ └── MathException.php │ │ │ │ └── Math.php │ │ ├── docs │ │ │ └── credits.md │ │ ├── .gitignore │ │ └── roave-bc-check.yaml │ └── phpword │ │ ├── src │ │ └── PhpWord │ │ │ └── resources │ │ │ ├── doc.png │ │ │ ├── ppt.png │ │ │ └── xls.png │ │ └── .github_changelog_generator └── qcloud │ └── cos-sdk-v5 │ └── src │ └── Exception │ └── CosException.php ├── windows.bat ├── .gitignore ├── public ├── static │ ├── file │ │ └── upload │ │ │ ├── file │ │ │ └── .gitignore │ │ │ ├── image │ │ │ └── .gitignore │ │ │ └── video │ │ │ └── .gitignore │ ├── ueditor │ │ ├── themes │ │ │ ├── iframe.css │ │ │ └── default │ │ │ │ └── images │ │ │ │ ├── arrow.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── lock.gif │ │ │ │ ├── scale.png │ │ │ │ ├── word.gif │ │ │ │ ├── anchor.gif │ │ │ │ ├── charts.png │ │ │ │ ├── loading.gif │ │ │ │ ├── spacer.gif │ │ │ │ ├── upload.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── filescan.png │ │ │ │ ├── icons-all.gif │ │ │ │ ├── loaderror.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── sortable.png │ │ │ │ ├── sparator_v.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── wordpaste.png │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── highlighted.gif │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── table-cell-align.png │ │ │ │ └── tangram-colorpicker.png │ │ ├── lang │ │ │ ├── en │ │ │ │ └── images │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ └── alldeletebtnhoverskin.png │ │ │ └── zh-cn │ │ │ │ └── images │ │ │ │ ├── copy.png │ │ │ │ ├── music.png │ │ │ │ ├── upload.png │ │ │ │ └── localimage.png │ │ ├── dialogs │ │ │ ├── table │ │ │ │ └── dragicon.png │ │ │ ├── emotion │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ ├── yface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ └── neweditor-tab-bg.png │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ ├── success.png │ │ │ │ │ └── alignicon.jpg │ │ │ ├── video │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ ├── success.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ └── center_focus.jpg │ │ │ ├── scrawl │ │ │ │ └── images │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ ├── undoH.png │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ └── scaleH.png │ │ │ ├── template │ │ │ │ └── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ ├── attachment │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ ├── success.png │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ └── file-icons.png │ │ │ │ └── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ ├── icon_xls.gif │ │ │ │ │ └── icon_default.png │ │ │ ├── background │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ └── wordimage │ │ │ │ ├── imageUploader.swf │ │ │ │ └── fClipboard_ueditor.swf │ │ └── third-party │ │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ └── video-js.swf │ │ │ ├── webuploader │ │ │ └── Uploader.swf │ │ │ ├── zeroclipboard │ │ │ └── ZeroClipboard.swf │ │ │ └── snapscreen │ │ │ └── UEditorSnapscreen.exe │ ├── script │ │ └── cityData.js │ ├── fileicon │ │ ├── doc.png │ │ ├── exe.png │ │ ├── htm.png │ │ ├── pdf.png │ │ ├── pic.png │ │ ├── ppt.png │ │ ├── txt.png │ │ ├── xls.png │ │ ├── zip.png │ │ ├── audio.png │ │ ├── file.png │ │ ├── user.png │ │ └── video.png │ ├── admin │ │ ├── img │ │ │ ├── head.jpg │ │ │ ├── head.png │ │ │ ├── logo.png │ │ │ ├── message.png │ │ │ ├── welcome.png │ │ │ ├── bg-screen.jpg │ │ │ ├── homepic1.png │ │ │ ├── homepic2.png │ │ │ ├── homepic3.png │ │ │ ├── homepic4.png │ │ │ ├── homepic5.png │ │ │ ├── homepic6.png │ │ │ ├── icon_date.png │ │ │ ├── img_msg_db.png │ │ │ ├── theme-cyan.png │ │ │ ├── theme-pink.png │ │ │ ├── img_msg_pri.png │ │ │ ├── theme-admin.png │ │ │ └── img_msg_notice.png │ │ ├── login │ │ │ ├── banner_1.jpg │ │ │ ├── form_bg.png │ │ │ └── line_bg.png │ │ └── module │ │ │ └── zTree │ │ │ └── css │ │ │ ├── metroStyle │ │ │ └── img │ │ │ │ ├── loading.gif │ │ │ │ ├── metro.gif │ │ │ │ ├── metro.png │ │ │ │ └── line_conn.png │ │ │ └── zTreeStyle │ │ │ └── img │ │ │ ├── diy │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── 1_close.png │ │ │ └── 1_open.png │ │ │ ├── loading.gif │ │ │ ├── line_conn.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ ├── layui │ │ └── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ ├── cherrymd │ │ └── fonts │ │ │ ├── ch-icon.eot │ │ │ ├── ch-icon.ttf │ │ │ ├── ch-icon.woff │ │ │ └── ch-icon.woff2 │ └── editormd │ │ ├── images │ │ ├── loading.gif │ │ ├── logos │ │ │ ├── vi.png │ │ │ ├── editormd-logo-16x16.png │ │ │ ├── editormd-logo-24x24.png │ │ │ ├── editormd-logo-32x32.png │ │ │ ├── editormd-logo-48x48.png │ │ │ ├── editormd-logo-57x57.png │ │ │ ├── editormd-logo-64x64.png │ │ │ ├── editormd-logo-72x72.png │ │ │ ├── editormd-logo-96x96.png │ │ │ ├── editormd-favicon-16x16.ico │ │ │ ├── editormd-favicon-24x24.ico │ │ │ ├── editormd-favicon-32x32.ico │ │ │ ├── editormd-favicon-48x48.ico │ │ │ ├── editormd-favicon-64x64.ico │ │ │ ├── editormd-logo-114x114.png │ │ │ ├── editormd-logo-120x120.png │ │ │ ├── editormd-logo-144x144.png │ │ │ ├── editormd-logo-180x180.png │ │ │ ├── editormd-logo-240x240.png │ │ │ └── editormd-logo-320x320.png │ │ ├── loading@2x.gif │ │ └── loading@3x.gif │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── editormd-logo.eot │ │ ├── editormd-logo.ttf │ │ ├── editormd-logo.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ └── lib │ │ └── codemirror │ │ ├── theme │ │ └── ambiance-mobile.css │ │ └── addon │ │ └── display │ │ └── fullscreen.css └── favicon.ico ├── .gitattributes ├── config └── plugin │ └── webman │ ├── event │ ├── app.php │ └── command.php │ ├── redis-queue │ ├── app.php │ └── command.php │ ├── gateway-worker │ └── app.php │ └── rate-limiter │ └── middleware.php ├── start.php └── app └── process └── Http.php /plugin/install/.gitignore: -------------------------------------------------------------------------------- 1 | *.lock -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /backup/database/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /vendor/topthink/think-image/tests/images/test.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/topthink/think-template/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/topthink/think-validate/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /windows.bat: -------------------------------------------------------------------------------- 1 | CHCP 65001 2 | php windows.php 3 | pause -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | /nbproject 4 | *.log -------------------------------------------------------------------------------- /public/static/file/upload/file/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /vendor/nikic/fast-route/.hhconfig: -------------------------------------------------------------------------------- 1 | assume_php=false 2 | -------------------------------------------------------------------------------- /public/static/file/upload/image/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/static/file/upload/video/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/static/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.tool-versions: -------------------------------------------------------------------------------- 1 | php 8.4.3 2 | -------------------------------------------------------------------------------- /vendor/topthink/think-template/tests/template/fetch.html: -------------------------------------------------------------------------------- 1 | success -------------------------------------------------------------------------------- /vendor/topthink/think-image/tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /vendor/topthink/think-template/tests/template/include.html: -------------------------------------------------------------------------------- 1 | include -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=php 2 | *.xml linguist-language=php -------------------------------------------------------------------------------- /public/static/script/cityData.js: -------------------------------------------------------------------------------- 1 | var cityData = [{text:"北京",value:"1"}]; -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: maennchen 2 | -------------------------------------------------------------------------------- /vendor/topthink/think-template/tests/template/layout.html: -------------------------------------------------------------------------------- 1 | start{__CONTENT__}end -------------------------------------------------------------------------------- /vendor/veitool/admin/README.md: -------------------------------------------------------------------------------- 1 | # admin 2 | Admin Package for Veitool PHP System -------------------------------------------------------------------------------- /vendor/veitool/admin/src/veitool/qrcode/phpqrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | 2010100721 -------------------------------------------------------------------------------- /vendor/webman/think-orm/README.md: -------------------------------------------------------------------------------- 1 | # think-orm 2 | webman think-orm plugin 3 | -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/topthink/think-container/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /config/plugin/webman/event/app.php: -------------------------------------------------------------------------------- 1 | false, 4 | ]; -------------------------------------------------------------------------------- /config/plugin/webman/redis-queue/app.php: -------------------------------------------------------------------------------- 1 | false, 4 | ]; -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/tests/mock-server/timeout.php: -------------------------------------------------------------------------------- 1 | false, 4 | ]; -------------------------------------------------------------------------------- /vendor/voku/portable-ascii/.deepsource.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | [[analyzers]] 4 | name = "php" -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/index.php: -------------------------------------------------------------------------------- 1 | support\exception\Handler::class, 5 | ]; -------------------------------------------------------------------------------- /vendor/topthink/think-container/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | true, 4 | ]; -------------------------------------------------------------------------------- /public/static/fileicon/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/doc.png -------------------------------------------------------------------------------- /public/static/fileicon/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/exe.png -------------------------------------------------------------------------------- /public/static/fileicon/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/htm.png -------------------------------------------------------------------------------- /public/static/fileicon/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/pdf.png -------------------------------------------------------------------------------- /public/static/fileicon/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/pic.png -------------------------------------------------------------------------------- /public/static/fileicon/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/ppt.png -------------------------------------------------------------------------------- /public/static/fileicon/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/txt.png -------------------------------------------------------------------------------- /public/static/fileicon/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/xls.png -------------------------------------------------------------------------------- /public/static/fileicon/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/zip.png -------------------------------------------------------------------------------- /vendor/topthink/think-orm/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /tests export-ignore 3 | /phpunit.xml export-ignore -------------------------------------------------------------------------------- /public/static/admin/img/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/head.jpg -------------------------------------------------------------------------------- /public/static/admin/img/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/head.png -------------------------------------------------------------------------------- /public/static/admin/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/logo.png -------------------------------------------------------------------------------- /public/static/fileicon/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/audio.png -------------------------------------------------------------------------------- /public/static/fileicon/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/file.png -------------------------------------------------------------------------------- /public/static/fileicon/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/user.png -------------------------------------------------------------------------------- /public/static/fileicon/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/fileicon/video.png -------------------------------------------------------------------------------- /vendor/webman/redis-queue/src/config/plugin/webman/redis-queue/app.php: -------------------------------------------------------------------------------- 1 | true, 4 | ]; -------------------------------------------------------------------------------- /public/static/admin/img/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/message.png -------------------------------------------------------------------------------- /public/static/admin/img/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/welcome.png -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/topthink/think-template/tests/template/extend.html: -------------------------------------------------------------------------------- 1 | {block name="title"}标题{/block} 2 | {block name="main"}主内容{/block} 3 | -------------------------------------------------------------------------------- /vendor/webman/gateway-worker/src/config/plugin/webman/gateway-worker/app.php: -------------------------------------------------------------------------------- 1 | true, 4 | ]; -------------------------------------------------------------------------------- /vendor/webman/redis/README.md: -------------------------------------------------------------------------------- 1 | # Webman redis 2 | This is Webman's redis library, which includes redis client and connection pool. -------------------------------------------------------------------------------- /vendor/workerman/coroutine/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | .idea 4 | tests/.phpunit.result.cache 5 | tests/workerman.log -------------------------------------------------------------------------------- /plugin/install/public/install/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/plugin/install/public/install/logo.png -------------------------------------------------------------------------------- /plugin/install/public/install/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/plugin/install/public/install/ok.png -------------------------------------------------------------------------------- /public/static/admin/img/bg-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/bg-screen.jpg -------------------------------------------------------------------------------- /public/static/admin/img/homepic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/homepic1.png -------------------------------------------------------------------------------- /public/static/admin/img/homepic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/homepic2.png -------------------------------------------------------------------------------- /public/static/admin/img/homepic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/homepic3.png -------------------------------------------------------------------------------- /public/static/admin/img/homepic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/homepic4.png -------------------------------------------------------------------------------- /public/static/admin/img/homepic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/homepic5.png -------------------------------------------------------------------------------- /public/static/admin/img/homepic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/homepic6.png -------------------------------------------------------------------------------- /public/static/admin/img/icon_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/icon_date.png -------------------------------------------------------------------------------- /public/static/admin/img/img_msg_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/img_msg_db.png -------------------------------------------------------------------------------- /public/static/admin/img/theme-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/theme-cyan.png -------------------------------------------------------------------------------- /public/static/admin/img/theme-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/theme-pink.png -------------------------------------------------------------------------------- /public/static/admin/login/banner_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/login/banner_1.jpg -------------------------------------------------------------------------------- /public/static/admin/login/form_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/login/form_bg.png -------------------------------------------------------------------------------- /public/static/admin/login/line_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/login/line_bg.png -------------------------------------------------------------------------------- /public/static/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/layui/font/iconfont.eot -------------------------------------------------------------------------------- /public/static/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /public/static/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/layui/font/iconfont.woff -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/webman/cache/README.md: -------------------------------------------------------------------------------- 1 | # Webman cache 2 | 3 | This is Webman's cache library, which includes cache client and connection pool. -------------------------------------------------------------------------------- /vendor/workerman/gateway-worker/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .project 3 | .settings 4 | .idea 5 | vendor 6 | .vscode 7 | composer.lock -------------------------------------------------------------------------------- /public/static/admin/img/img_msg_pri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/img_msg_pri.png -------------------------------------------------------------------------------- /public/static/admin/img/theme-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/admin/img/theme-admin.png -------------------------------------------------------------------------------- /public/static/cherrymd/fonts/ch-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/cherrymd/fonts/ch-icon.eot -------------------------------------------------------------------------------- /public/static/cherrymd/fonts/ch-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/cherrymd/fonts/ch-icon.ttf -------------------------------------------------------------------------------- /public/static/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veitool/veitoolwebman/HEAD/public/static/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /start.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | [ 6 | Limiter::class 7 | ], 8 | ]; -------------------------------------------------------------------------------- /config/plugin/webman/redis-queue/command.php: -------------------------------------------------------------------------------- 1 | [ 6 | Limiter::class 7 | ], 8 | ]; 9 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/TransferException.php: -------------------------------------------------------------------------------- 1 |