├── public ├── .keep ├── image │ ├── swoft-logo-mdl.png │ └── start-http-server.jpg └── xadmin │ ├── admin │ ├── images │ │ ├── bg.png │ │ └── aiwrap.png │ ├── fonts │ │ ├── iconfont.eot │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── lib │ │ └── layui │ │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ ├── 9.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 70.gif │ │ │ │ └── 71.gif │ │ │ └── css │ │ │ └── modules │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon.png │ │ │ ├── icon-ext.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ └── js │ │ ├── config.js │ │ └── global.js │ └── index.html ├── resource └── language │ └── .keep ├── runtime └── swoft.pid ├── vendor ├── psr │ ├── log │ │ ├── .gitignore │ │ └── Psr │ │ │ └── Log │ │ │ └── InvalidArgumentException.php │ ├── container │ │ ├── .gitignore │ │ └── README.md │ ├── cache │ │ ├── src │ │ │ └── CacheException.php │ │ └── README.md │ ├── http-server-handler │ │ └── README.md │ └── http-server-middleware │ │ └── README.md ├── swoft │ ├── annotation │ │ ├── test │ │ │ └── config │ │ │ │ └── .keep │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── src │ │ │ ├── Exception │ │ │ └── AnnotationException.php │ │ │ └── Resource │ │ │ └── Resource.php │ ├── devtool │ │ ├── web │ │ │ ├── static │ │ │ │ ├── .gitkeep │ │ │ │ └── img │ │ │ │ │ └── swoft-favicon-48.ico │ │ │ ├── .eslintignore │ │ │ ├── config │ │ │ │ ├── prod.env.js │ │ │ │ └── dev.env.js │ │ │ ├── build │ │ │ │ └── logo.png │ │ │ ├── src │ │ │ │ ├── assets │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── swoft-logo-md.png │ │ │ │ │ ├── swoft-logo-sm.png │ │ │ │ │ ├── swoft-favicon-48.ico │ │ │ │ │ ├── swoft-favicon-64.ico │ │ │ │ │ ├── swoft-logo-text.png │ │ │ │ │ └── style │ │ │ │ │ │ └── common.styl │ │ │ │ ├── locale │ │ │ │ │ └── index.js │ │ │ │ ├── libs │ │ │ │ │ └── constants.js │ │ │ │ └── config.js │ │ │ ├── dist │ │ │ │ └── devtool │ │ │ │ │ └── static │ │ │ │ │ └── img │ │ │ │ │ ├── swoft-favicon-48.ico │ │ │ │ │ └── swoft-logo-text.0617d26.png │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ └── .postcssrc.js │ │ ├── test │ │ │ └── config │ │ │ │ └── define.php │ │ ├── resource │ │ │ ├── image │ │ │ │ └── devtool.jpg │ │ │ └── template │ │ │ │ ├── phpstorm.stub │ │ │ │ ├── property.stub │ │ │ │ ├── getter.stub │ │ │ │ ├── file-header.stub │ │ │ │ ├── setter.stub │ │ │ │ └── override.stub │ │ ├── .gitignore │ │ ├── commands.inc │ │ ├── src │ │ │ ├── Migration │ │ │ │ └── Exception │ │ │ │ │ └── MigrationException.php │ │ │ └── Common │ │ │ │ └── DevTcpClient.php │ │ └── .travis.yml │ ├── db │ │ ├── test │ │ │ └── config │ │ │ │ └── db.php │ │ ├── src │ │ │ ├── Helper │ │ │ │ └── Functions.php │ │ │ └── Exception │ │ │ │ └── DbException.php │ │ └── .gitignore │ ├── log │ │ ├── src │ │ │ └── Helper │ │ │ │ └── Functions.php │ │ ├── .gitignore │ │ └── .travis.yml │ ├── redis │ │ ├── test │ │ │ └── config │ │ │ │ └── redis.php │ │ ├── .gitignore │ │ └── src │ │ │ ├── Exception │ │ │ └── RedisException.php │ │ │ └── Connection │ │ │ └── PhpRedisClusterConnection.php │ ├── view │ │ ├── test │ │ │ └── fixture │ │ │ │ └── layout.php │ │ └── .gitignore │ ├── http-message │ │ ├── src │ │ │ └── Helper │ │ │ │ └── Functions.php │ │ ├── test │ │ │ └── bean.php │ │ ├── .gitignore │ │ └── .travis.yml │ ├── http-server │ │ ├── src │ │ │ ├── Helper │ │ │ │ └── Functions.php │ │ │ └── Exception │ │ │ │ ├── NotFoundRouteException.php │ │ │ │ ├── HttpServerException.php │ │ │ │ ├── Handler │ │ │ │ └── HttpErrorHandler.php │ │ │ │ └── MethodNotAllowedException.php │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ └── .gitignore │ ├── i18n │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ ├── resource │ │ │ │ └── language │ │ │ │ │ ├── en │ │ │ │ │ ├── default.php │ │ │ │ │ └── msg.php │ │ │ │ │ └── zh-CN │ │ │ │ │ ├── default.php │ │ │ │ │ └── msg.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception │ │ │ └── I18nException.php │ ├── task │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception │ │ │ └── TaskException.php │ ├── breaker │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── src │ │ │ └── Exception │ │ │ └── BreakerException.php │ ├── console │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Advanced │ │ │ │ ├── AutoCompDumper.php │ │ │ │ ├── InteractMessage.php │ │ │ │ ├── Progress │ │ │ │ │ ├── Bar.php │ │ │ │ │ ├── TextBar.php │ │ │ │ │ ├── Pending.php │ │ │ │ │ └── Spinner.php │ │ │ │ ├── Formatter │ │ │ │ │ ├── Alert.php │ │ │ │ │ └── Block.php │ │ │ │ └── Interact │ │ │ │ │ └── Terminal.php │ │ │ ├── Exception │ │ │ │ ├── CommandFlagException.php │ │ │ │ ├── ConsoleException.php │ │ │ │ └── ConsoleArgumentException.php │ │ │ └── Contract │ │ │ │ ├── RouterInterface.php │ │ │ │ └── ConsoleInterface.php │ │ └── .travis.yml │ ├── consul │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ ├── bean.php │ │ │ │ └── TestBean.php │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── src │ │ │ └── Exception │ │ │ ├── ClientException.php │ │ │ ├── ServerException.php │ │ │ └── ConsulException.php │ ├── crontab │ │ ├── test │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception │ │ │ └── CrontabException.php │ ├── error │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ └── src │ │ │ └── Contract │ │ │ └── ErrorHandlerInterface.php │ ├── framework │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── src │ │ │ ├── Context │ │ │ │ └── ApplicationContext.php │ │ │ ├── Exception │ │ │ │ ├── SwoftException.php │ │ │ │ ├── ContextException.php │ │ │ │ └── SessionException.php │ │ │ └── Contract │ │ │ │ └── ApplicationInterface.php │ │ └── .gitignore │ ├── limiter │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── src │ │ │ └── Exception │ │ │ └── RateLImiterException.php │ ├── tcp │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── src │ │ │ ├── Exception │ │ │ └── ProtocolException.php │ │ │ ├── Contract │ │ │ └── ResponseInterface.php │ │ │ └── ErrCode.php │ ├── validator │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ └── src │ │ │ ├── Annotation │ │ │ └── Mapping │ │ │ │ └── Type.php │ │ │ ├── Concern │ │ │ └── ValidateItemTrait.php │ │ │ └── Exception │ │ │ └── ValidatorException.php │ ├── aop │ │ ├── src │ │ │ ├── Helper │ │ │ │ └── Functions.php │ │ │ ├── Exception │ │ │ │ └── AopException.php │ │ │ └── Annotation │ │ │ │ └── Mapping │ │ │ │ ├── After.php │ │ │ │ ├── Around.php │ │ │ │ └── Before.php │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── test │ │ │ └── case │ │ │ └── DemoTest.php │ ├── apollo │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ └── src │ │ │ └── Exception │ │ │ └── ApolloException.php │ ├── rpc-client │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ ├── testing │ │ │ │ └── bean.php │ │ │ └── unit │ │ │ │ ├── TestCase.php │ │ │ │ └── RpcTest.php │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception │ │ │ ├── RpcClientException.php │ │ │ └── RpcResponseException.php │ ├── rpc-server │ │ ├── test │ │ │ └── config │ │ │ │ └── base.php │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception │ │ │ ├── RpcServerException.php │ │ │ └── Handler │ │ │ └── RpcErrorHandler.php │ ├── server │ │ ├── src │ │ │ ├── Helper │ │ │ │ └── Functions.php │ │ │ └── Exception │ │ │ │ └── ServerException.php │ │ ├── .gitignore │ │ └── .travis.yml │ ├── tcp-server │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ ├── bean.php │ │ │ │ └── MockTcpResponse.php │ │ ├── .gitignore │ │ └── src │ │ │ ├── MiddlewareChain.php │ │ │ ├── Contract │ │ │ ├── RequestInterface.php │ │ │ └── ResponseInterface.php │ │ │ └── Exception │ │ │ ├── TcpUnpackingException.php │ │ │ ├── CommandNotFoundException.php │ │ │ ├── TcpResponseException.php │ │ │ ├── TcpServerRouteException.php │ │ │ └── TcpServerException.php │ ├── config │ │ ├── src │ │ │ ├── Helper │ │ │ │ └── Functions.php │ │ │ ├── Parser │ │ │ │ └── Parser.php │ │ │ └── Exception │ │ │ │ └── ConfigException.php │ │ ├── test │ │ │ ├── config-yaml │ │ │ │ ├── pre │ │ │ │ │ ├── data.yaml │ │ │ │ │ └── base.yaml │ │ │ │ ├── data.yaml │ │ │ │ └── base.yaml │ │ │ └── config-php │ │ │ │ ├── pro │ │ │ │ ├── data.php │ │ │ │ └── base.php │ │ │ │ ├── data.php │ │ │ │ └── base.php │ │ ├── .gitignore │ │ └── .travis.yml │ ├── swoole-ide-helper │ │ ├── .gitignore │ │ ├── config │ │ │ └── zh-CN.meta.php │ │ ├── dump.php │ │ └── composer.json │ ├── websocket-server │ │ ├── test │ │ │ ├── config │ │ │ │ └── base.php │ │ │ └── testing │ │ │ │ └── bean.php │ │ ├── .gitignore │ │ └── src │ │ │ ├── Storage │ │ │ └── RedisStorage.php │ │ │ ├── Message │ │ │ └── Extension │ │ │ │ └── NullExtension.php │ │ │ ├── Exception │ │ │ ├── WsContextException.php │ │ │ ├── WsMessageException.php │ │ │ ├── WsConnectionException.php │ │ │ ├── WsMessageParseException.php │ │ │ ├── WsMessageRouteException.php │ │ │ ├── WsModuleRouteException.php │ │ │ └── WsHandshakeException.php │ │ │ └── Annotation │ │ │ └── Mapping │ │ │ ├── OnOpen.php │ │ │ └── OnMessage.php │ ├── proxy │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── src │ │ │ ├── Exception │ │ │ └── ProxyException.php │ │ │ └── Ast │ │ │ └── Visitor │ │ │ └── Visitor.php │ ├── rpc │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception │ │ │ └── RpcException.php │ ├── connection-pool │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── src │ │ │ └── Exception │ │ │ └── ConnectionPoolException.php │ ├── event │ │ ├── .gitignore │ │ └── .travis.yml │ ├── process │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception │ │ │ └── ProcessException.php │ ├── stdlib │ │ ├── .gitignore │ │ ├── src │ │ │ ├── Helper │ │ │ │ ├── Sys.php │ │ │ │ ├── DirHelper.php │ │ │ │ ├── Arr.php │ │ │ │ ├── Str.php │ │ │ │ └── Dir.php │ │ │ └── Contract │ │ │ │ └── Arrayable.php │ │ ├── README.md │ │ └── .travis.yml │ └── bean │ │ ├── .gitignore │ │ ├── src │ │ ├── BF.php │ │ ├── Exception │ │ │ ├── BeanException.php │ │ │ └── PrototypeException.php │ │ ├── Contract │ │ │ └── ContainerInterface.php │ │ └── Annotation │ │ │ └── Mapping │ │ │ └── Primary.php │ │ ├── .travis.yml │ │ └── test │ │ └── testing │ │ ├── Definition │ │ └── ManyInstance.php │ │ └── Contract │ │ └── TestInterface.php ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── diff │ │ ├── tests │ │ │ └── fixtures │ │ │ │ ├── .editorconfig │ │ │ │ ├── out │ │ │ │ ├── .editorconfig │ │ │ │ └── .gitignore │ │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest │ │ │ │ ├── 1_a.txt │ │ │ │ ├── 1_b.txt │ │ │ │ ├── 2_b.txt │ │ │ │ └── 2_a.txt │ │ │ │ └── patch.txt │ │ └── .gitignore │ ├── exporter │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── .gitignore │ ├── recursion-context │ │ └── .gitignore │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ └── ChangeLog.md │ ├── comparator │ │ └── .gitignore │ ├── global-state │ │ └── .gitignore │ ├── object-reflector │ │ └── .gitignore │ ├── environment │ │ └── .gitignore │ ├── resource-operations │ │ └── .gitignore │ └── object-enumerator │ │ └── .gitignore ├── text │ └── template │ │ ├── README.md │ │ ├── docs │ │ ├── CNAME │ │ ├── index.md │ │ └── _config.yml │ │ ├── .gitignore │ │ ├── test │ │ ├── php.ini │ │ └── unit │ │ │ └── tpls │ │ │ ├── 01_basic_text_replace │ │ │ ├── _in.txt │ │ │ ├── out.txt │ │ │ └── _in.php │ │ │ ├── 10_logic │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 07_if_else │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 08_if_elseif │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 11_objectAccess │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 14_remove_comments │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 09_if_elseif_complex │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 12_bigger_lower_unequal_null │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 06_debug_vars │ │ │ ├── _in.txt │ │ │ └── _in.php │ │ │ ├── 03_nested_if │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 00_LineBreaks │ │ │ └── _in.php │ │ │ ├── 04_simple_for │ │ │ ├── out.txt │ │ │ ├── _in.txt │ │ │ └── _in.php │ │ │ ├── 15_print │ │ │ ├── _in.php │ │ │ └── out.txt │ │ │ ├── 13_loop_break_continue │ │ │ ├── out.txt │ │ │ ├── _in.php │ │ │ └── _in.txt │ │ │ ├── 05_nested_for │ │ │ ├── _in.txt │ │ │ ├── _in.php │ │ │ └── out.txt │ │ │ └── 02_basic_if │ │ │ ├── _in.php │ │ │ └── out.txt │ │ ├── .coveralls.yml │ │ └── src │ │ ├── __BreakLoopException.php │ │ ├── TemplateParsingException.php │ │ ├── __ContinueLoopException.php │ │ └── TextTemplatePlugin.php ├── phpdocumentor │ ├── reflection-common │ │ ├── phpstan.neon │ │ └── phive.xml │ ├── reflection-docblock │ │ └── .coveralls.yml │ └── type-resolver │ │ └── phive.xml ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── .gitignore │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── configuration.columns.default.xml │ │ │ │ ├── configuration_stop_on_defect.xml │ │ │ │ ├── configuration_stop_on_error.xml │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── configuration_stop_on_incomplete.xml │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── configuration.one-file-suite.xml │ │ │ │ ├── phpt-unsupported-section.phpt │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ └── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ └── phpunit-example-extension-3.0.3.phar │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── configuration_whitelist.xml │ │ │ │ └── DataProviderIssue2859 │ │ │ │ │ └── phpunit.xml │ │ │ ├── end-to-end │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── regression │ │ │ │ │ └── GitHub │ │ │ │ │ │ ├── 322 │ │ │ │ │ │ └── phpunit322.xml │ │ │ │ │ │ ├── 1216 │ │ │ │ │ │ └── phpunit1216.xml │ │ │ │ │ │ ├── 1265 │ │ │ │ │ │ └── phpunit1265.xml │ │ │ │ │ │ ├── 1330 │ │ │ │ │ │ └── phpunit1330.xml │ │ │ │ │ │ ├── 2085 │ │ │ │ │ │ └── configuration_enforce_time_limit_options.xml │ │ │ │ │ │ ├── 2158 │ │ │ │ │ │ └── constant.inc │ │ │ │ │ │ └── 2972 │ │ │ │ │ │ └── issue-2972-test.phpt │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ ├── phpt-env.phpt │ │ │ │ └── phpt-stderr.phpt │ │ │ └── fail │ │ │ │ └── fail.phpt │ │ ├── .gitattributes │ │ ├── src │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ └── Generator │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── wsdl_method.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ └── mocked_class_method.tpl.dist │ │ └── .editorconfig │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── src │ │ │ └── Report │ │ │ │ └── Html │ │ │ │ └── Renderer │ │ │ │ └── Template │ │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ └── octicons.css │ │ │ │ └── icons │ │ │ │ └── file-directory.svg │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── Crash.php │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── BankAccount-text.txt │ │ │ │ └── source_without_namespace.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ └── .github │ │ │ └── CONTRIBUTING.md │ ├── php-file-iterator │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-text-template │ │ ├── .gitattributes │ │ └── .gitignore │ └── php-token-stream │ │ ├── .gitattributes │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── .gitignore │ │ └── tests │ │ └── _fixture │ │ ├── issue19.php │ │ ├── classInNamespace.php │ │ ├── classUsesNamespacedFunction.php │ │ ├── issue30.php │ │ ├── classInScopedNamespace.php │ │ ├── source2.php │ │ ├── class_with_method_named_empty.php │ │ ├── classExtendsNamespacedClass.php │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ ├── closure.php │ │ ├── source5.php │ │ └── php-code-coverage-issue-424.php ├── symfony │ ├── cache │ │ └── .gitignore │ ├── yaml │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ ├── embededPhp.yml │ │ │ ├── nonStringKeys.yml │ │ │ ├── arrow.gif │ │ │ ├── nullMappingKey.yml │ │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ │ └── booleanMappingKeys.yml │ ├── var-exporter │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── bool.php │ │ │ │ ├── external-references.php │ │ │ │ ├── simple-array.php │ │ │ │ ├── partially-indexed-array.php │ │ │ │ ├── multiline-string.php │ │ │ │ ├── incomplete-class.php │ │ │ │ └── hard-references-recursive.php │ │ ├── .gitignore │ │ └── CHANGELOG.md │ ├── cache-contracts │ │ └── .gitignore │ ├── expression-language │ │ └── .gitignore │ └── service-contracts │ │ └── .gitignore ├── phpoption │ └── phpoption │ │ ├── .gitignore │ │ ├── tests │ │ └── bootstrap.php │ │ └── .travis.yml ├── doctrine │ ├── instantiator │ │ ├── docs │ │ │ └── en │ │ │ │ └── sidebar.rst │ │ ├── phpbench.json │ │ └── src │ │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ └── Exception │ │ │ └── ExceptionInterface.php │ ├── annotations │ │ ├── docs │ │ │ └── en │ │ │ │ └── sidebar.rst │ │ └── phpbench.json.dist │ └── lexer │ │ └── README.md ├── php-di │ └── phpdoc-reader │ │ ├── .gitignore │ │ ├── .gitattributes │ │ └── src │ │ └── PhpDocReader │ │ └── AnnotationException.php ├── webmozart │ └── assert │ │ ├── ci │ │ └── composer.json │ │ └── .editorconfig ├── phar-io │ ├── manifest │ │ ├── .gitignore │ │ ├── tests │ │ │ └── _fixture │ │ │ │ └── test.phar │ │ ├── src │ │ │ └── exceptions │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ ├── ManifestElementException.php │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ └── ManifestDocumentMapperException.php │ │ └── phive.xml │ └── version │ │ ├── .gitignore │ │ ├── src │ │ └── exceptions │ │ │ ├── InvalidVersionException.php │ │ │ └── InvalidPreReleaseSuffixException.php │ │ └── phive.xml ├── myclabs │ └── deep-copy │ │ ├── doc │ │ ├── clone.png │ │ ├── graph.png │ │ ├── deep-copy.png │ │ └── deep-clone.png │ │ └── src │ │ └── DeepCopy │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── TypeFilter │ │ ├── Spl │ │ │ └── SplDoublyLinkedList.php │ │ └── TypeFilter.php │ │ └── Matcher │ │ └── Matcher.php ├── nikic │ └── php-parser │ │ ├── test │ │ ├── code │ │ │ ├── prettyPrinter │ │ │ │ ├── stmt │ │ │ │ │ ├── throw.test │ │ │ │ │ ├── goto.test │ │ │ │ │ ├── while.test │ │ │ │ │ ├── do_while.test │ │ │ │ │ ├── break_continue.test │ │ │ │ │ ├── if.test │ │ │ │ │ ├── const.test │ │ │ │ │ ├── nullable_types.test │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ ├── declare.test │ │ │ │ │ └── multiCatch.test │ │ │ │ ├── expr │ │ │ │ │ ├── include.test │ │ │ │ │ ├── arraySpread.test │ │ │ │ │ ├── call.test │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ └── constant_deref.test │ │ │ │ ├── nestedInlineHTML.test │ │ │ │ ├── onlyPHP.file-test │ │ │ │ └── onlyInlineHTML.file-test │ │ │ ├── parser │ │ │ │ ├── stmt │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ └── loop │ │ │ │ │ │ └── do.test │ │ │ │ ├── expr │ │ │ │ │ ├── print.test │ │ │ │ │ ├── clone.test │ │ │ │ │ └── errorSuppress.test │ │ │ │ └── nopPositions.test │ │ │ └── formatPreservation │ │ │ │ ├── nopCommentAtEnd.test │ │ │ │ ├── traitAlias.test │ │ │ │ └── removingPropertyType.test │ │ └── PhpParser │ │ │ └── Parser │ │ │ ├── Php5Test.php │ │ │ └── Php7Test.php │ │ ├── .gitignore │ │ ├── lib │ │ └── PhpParser │ │ │ ├── ConstExprEvaluationException.php │ │ │ ├── Node │ │ │ ├── Scalar.php │ │ │ ├── Expr.php │ │ │ ├── Stmt.php │ │ │ └── Expr │ │ │ │ ├── Cast │ │ │ │ ├── Bool_.php │ │ │ │ ├── Int_.php │ │ │ │ ├── Array_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ └── Unset_.php │ │ │ │ └── AssignOp │ │ │ │ ├── Div.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Pow.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── Comment │ │ │ └── Doc.php │ │ │ └── Builder.php │ │ └── test_old │ │ └── run-php-src.sh ├── theseer │ └── tokenizer │ │ ├── tests │ │ └── _files │ │ │ └── empty.xml │ │ ├── .gitignore │ │ ├── src │ │ ├── Exception.php │ │ ├── NamespaceUriException.php │ │ └── TokenCollectionException.php │ │ └── phive.xml ├── toolkit │ └── cli-utils │ │ ├── example │ │ ├── all-color-style.jpg │ │ └── cli-php-file-highlight.jpg │ │ └── .gitignore ├── firebase │ └── php-jwt │ │ └── src │ │ ├── ExpiredException.php │ │ ├── BeforeValidException.php │ │ └── SignatureInvalidException.php ├── autoload.php ├── vlucas │ └── phpdotenv │ │ └── src │ │ └── Exception │ │ ├── ExceptionInterface.php │ │ ├── ValidationException.php │ │ ├── InvalidFileException.php │ │ └── InvalidPathException.php └── composer │ └── autoload_namespaces.php ├── config ├── dev │ └── db.php ├── user │ └── info.php ├── db.php ├── configtitle.php ├── module.php ├── base.php ├── version │ └── v1.php └── properties │ └── app.php ├── .idea ├── php.xml └── modules.xml ├── bin ├── swoft └── bootstrap.php ├── .gitignore └── test └── bootstrap.php /public/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/language/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/swoft.pid: -------------------------------------------------------------------------------- 1 | 1838,1840 -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/swoft/annotation/test/config/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/swoft/db/test/config/db.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/swoft/db/src/Helper/Functions.php: -------------------------------------------------------------------------------- 1 | 'http://127.0.0.1' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/phpoption/phpoption/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | phpunit.xml 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/Crash.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/text/template/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /test/output 4 | /build/logs/* -------------------------------------------------------------------------------- /vendor/swoft/config/test/config-yaml/pre/data.yaml: -------------------------------------------------------------------------------- 1 | key: "value2Pro" 2 | key2: "value2ProKey2" -------------------------------------------------------------------------------- /vendor/symfony/expression-language/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/service-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/text/template/test/php.ini: -------------------------------------------------------------------------------- 1 | [PHP] 2 | extension=json.so 3 | zend_extension=xdebug.so -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/01_basic_text_replace/_in.txt: -------------------------------------------------------------------------------- 1 | {= value1 } and goes 2 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/01_basic_text_replace/out.txt: -------------------------------------------------------------------------------- 1 | Some Value and goes 2 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/10_logic/out.txt: -------------------------------------------------------------------------------- 1 | 1: IN = 4 2 | 2: IN 3 | 4: IN 4 | 8: IN -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/09_if_elseif_complex/out.txt: -------------------------------------------------------------------------------- 1 | 1: IN = 4 2 | 2: IN 3 | 4: IN 4 | 8: IN -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.false.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/php-di/phpdoc-reader/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/* 3 | vendor/* 4 | composer.phar 5 | composer.lock 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/07_if_else/_in.php: -------------------------------------------------------------------------------- 1 | true 5 | ]; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/08_if_elseif/_in.php: -------------------------------------------------------------------------------- 1 | true 5 | ]; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/12_bigger_lower_unequal_null/out.txt: -------------------------------------------------------------------------------- 1 | 1: IN = 4 , t1: 10.4 2 | 3: IN 3 | 7: IN -------------------------------------------------------------------------------- /public/image/swoft-logo-mdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/image/swoft-logo-mdl.png -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.columns.default.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/swoft/config/test/config-yaml/data.yaml: -------------------------------------------------------------------------------- 1 | key: "baseDataKey" 2 | key3: 3 | key1: 4 | key: "dataChildKey1" -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/06_debug_vars/_in.txt: -------------------------------------------------------------------------------- 1 | 1: Start 2 | {= __CONTEXT__ | raw } 3 | 5: Some other text -------------------------------------------------------------------------------- /vendor/webmozart/assert/ci/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "vimeo/psalm": "^3.4" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /public/image/start-http-server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/image/start-http-server.jpg -------------------------------------------------------------------------------- /public/xadmin/admin/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/images/bg.png -------------------------------------------------------------------------------- /public/xadmin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.gitignore: -------------------------------------------------------------------------------- 1 | # reset all ignore rules to create sandbox for integration test 2 | !/** -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/swoft/config/test/config-yaml/pre/base.yaml: -------------------------------------------------------------------------------- 1 | key: 2 | key2: "value2Pro" 3 | key2: "value2" 4 | key3: "value3Pro" -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /vendor/swoft/i18n/test/resource/language/en/default.php: -------------------------------------------------------------------------------- 1 | 'Hello {name}' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/swoft/i18n/test/resource/language/zh-CN/default.php: -------------------------------------------------------------------------------- 1 | '你好 {name}' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/nonStringKeys.yml: -------------------------------------------------------------------------------- 1 | - booleanMappingKeys 2 | - numericMappingKeys 3 | - nullMappingKey 4 | -------------------------------------------------------------------------------- /vendor/text/template/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | coverage_clover: build/logs/clover.xml 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/12_bigger_lower_unequal_null/_in.php: -------------------------------------------------------------------------------- 1 | 10.4 5 | ]; -------------------------------------------------------------------------------- /public/xadmin/admin/images/aiwrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/images/aiwrap.png -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /src/autoload.php 4 | /tools 5 | /vendor 6 | 7 | /build 8 | -------------------------------------------------------------------------------- /vendor/swoft/breaker/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'timeout' => 3, 5 | ] 6 | ]; -------------------------------------------------------------------------------- /vendor/swoft/i18n/test/resource/language/zh-CN/msg.php: -------------------------------------------------------------------------------- 1 | '{name}框架协程框架,基于{base}', 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/symfony/var-exporter/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 4.2.0 5 | ----- 6 | 7 | * added the component 8 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/10_logic/_in.php: -------------------------------------------------------------------------------- 1 | true, 5 | "t2" => true 6 | ]; -------------------------------------------------------------------------------- /public/xadmin/admin/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/fonts/iconfont.eot -------------------------------------------------------------------------------- /public/xadmin/admin/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/fonts/iconfont.ttf -------------------------------------------------------------------------------- /public/xadmin/admin/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/fonts/iconfont.woff -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/stmt/throw.test: -------------------------------------------------------------------------------- 1 | throw 2 | ----- 3 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/docs/en/sidebar.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :depth: 3 3 | 4 | index 5 | annotations 6 | custom 7 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | grammar/kmyacc.exe 4 | grammar/y.output 5 | .phpunit.result.cache 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache 5 | /.phpunit.result.cache 6 | /from.txt.orig -------------------------------------------------------------------------------- /vendor/swoft/config/test/config-php/pro/data.php: -------------------------------------------------------------------------------- 1 | 'value2Pro', 4 | 'key2' => 'value2ProKey2', 5 | ]; -------------------------------------------------------------------------------- /vendor/swoft/consul/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'host' => '192.168.4.11' 5 | ] 6 | ]; -------------------------------------------------------------------------------- /vendor/swoft/i18n/test/resource/language/en/msg.php: -------------------------------------------------------------------------------- 1 | '{name} framework,base on {base}', 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/09_if_elseif_complex/_in.php: -------------------------------------------------------------------------------- 1 | true, 5 | "t2" => true 6 | ]; -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/swoft/devtool/web/src/assets/logo.png -------------------------------------------------------------------------------- /vendor/swoft/task/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'path' => __DIR__ . '/../config', 5 | ], 6 | ]; -------------------------------------------------------------------------------- /vendor/symfony/var-exporter/Tests/Fixtures/external-references.php: -------------------------------------------------------------------------------- 1 | true, 5 | "textVal" => "text" 6 | ]; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/04_simple_for/out.txt: -------------------------------------------------------------------------------- 1 | 1: Start 2 | 2: curVal = a 3 | 2: curVal = b 4 | 2: curVal = c 5 | 5: Some other text -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/11_objectAccess/_in.php: -------------------------------------------------------------------------------- 1 | t1 = true; 5 | 6 | return $obj; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/15_print/_in.php: -------------------------------------------------------------------------------- 1 | [ 5 | "a", "b", "c" 6 | ] 7 | ]; -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/font/iconfont.eot -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/0.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/1.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/2.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/3.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/4.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/5.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/6.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/7.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/8.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/images/face/9.gif -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | coverage_clover: coverage.xml 3 | json_path: coverage.json 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/_files/tmp 2 | /vendor 3 | /composer.lock 4 | /.idea 5 | /.php_cs 6 | /.php_cs.cache 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_defect.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_error.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_warning.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /build/FunctionSignatureMap.php 4 | /composer.lock 5 | /vendor 6 | -------------------------------------------------------------------------------- /vendor/swoft/devtool/resource/image/devtool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/swoft/devtool/resource/image/devtool.jpg -------------------------------------------------------------------------------- /vendor/swoft/framework/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'path' => __DIR__ . '/../config', 5 | ], 6 | ]; -------------------------------------------------------------------------------- /vendor/swoft/i18n/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'path' => __DIR__ . '/../config', 5 | ], 6 | ]; 7 | -------------------------------------------------------------------------------- /vendor/swoft/validator/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'path' => __DIR__ . '/../config', 5 | ], 6 | ]; -------------------------------------------------------------------------------- /vendor/symfony/var-exporter/Tests/Fixtures/simple-array.php: -------------------------------------------------------------------------------- 1 | [ 5 | "a", "b", "c" 6 | ] 7 | ]; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/14_remove_comments/_in.txt: -------------------------------------------------------------------------------- 1 | 1: xxx 2 | {# Some Comment #} 3 | 2: curVal{# some 4 | multiline 5 | comment #} 6 | 5: xxx -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_incomplete.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/swoft/rpc-client/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'path' => __DIR__ . '/../config', 5 | ], 6 | ]; 7 | -------------------------------------------------------------------------------- /vendor/text/template/docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: php5/7 template rendering library 4 | --- 5 | 6 | {% include_relative README.md %} 7 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/11_objectAccess/_in.txt: -------------------------------------------------------------------------------- 1 | 1: IN = 4 2 | {if t2 == NULL} 3 | 2: IN 4 | {/if} 5 | {if t1 == true} 6 | 3: IN 7 | {/if} 8 | 4: IN -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/13_loop_break_continue/_in.php: -------------------------------------------------------------------------------- 1 | [ 5 | "a", "b", "c" 6 | ] 7 | ]; -------------------------------------------------------------------------------- /vendor/toolkit/cli-utils/example/all-color-style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/toolkit/cli-utils/example/all-color-style.jpg -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpbench.json: -------------------------------------------------------------------------------- 1 | { 2 | "bootstrap": "vendor/autoload.php", 3 | "path": "tests/DoctrineTest/InstantiatorPerformance" 4 | } 5 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/stmt/goto.test: -------------------------------------------------------------------------------- 1 | goto 2 | ----- 3 | [ 5 | 'desc' => '向客户端发送数据', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /config/configtitle.php: -------------------------------------------------------------------------------- 1 | 'base', 5 | '系统'=>'system', 6 | '上传'=>'upload', 7 | '数据库'=>'databases' 8 | ]; 9 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/stmt/while.test: -------------------------------------------------------------------------------- 1 | while 2 | ----- 3 | [ 4 | 'host' => '192.168.2.102', 5 | 'timeout' => -1 6 | ] 7 | ]; -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/src/assets/swoft-favicon-48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/swoft/devtool/web/src/assets/swoft-favicon-48.ico -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/src/assets/swoft-favicon-64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/swoft/devtool/web/src/assets/swoft-favicon-64.ico -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/src/assets/swoft-logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/swoft/devtool/web/src/assets/swoft-logo-text.png -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/static/img/swoft-favicon-48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/vendor/swoft/devtool/web/static/img/swoft-favicon-48.ico -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/01_basic_text_replace/_in.php: -------------------------------------------------------------------------------- 1 | "Some Value", 5 | "value2" => "Some other value" 6 | ]; -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | /build 8 | /.phpunit.result.cache 9 | -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/ExpiredException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/15_print/out.txt: -------------------------------------------------------------------------------- 1 | 1: 2 | 2: 3 | 3: 4 | 4: 5 | 6 | AAA 7 | 5: 8 | 9 | BBB 10 | BBB 11 | 6: 12 | 13 | CCC 14 | 7: -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/BeforeValidException.php: -------------------------------------------------------------------------------- 1 | true, 5 | 1 => true, 6 | 2 => true, 7 | true, 8 | ]; 9 | -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/03_nested_if/_in.php: -------------------------------------------------------------------------------- 1 | true, 5 | "boolVal2" => true, 6 | "value1" => "Some Value", 7 | ]; -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/phpunit1330.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/swoft/devtool/web/src/locale/index.js: -------------------------------------------------------------------------------- 1 | 2 | let locale = { 3 | zh: require('./lang/zh-CN.js'), 4 | en: require('./lang/en-US.js') 5 | } 6 | 7 | export default locale 8 | -------------------------------------------------------------------------------- /vendor/swoft/tcp/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'path' => dirname(__DIR__) . '/config', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/swoft/view/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | vendor/ 8 | *.cache 9 | *.lock 10 | .phpintel/ 11 | .DS_Store 12 | -------------------------------------------------------------------------------- /vendor/firebase/php-jwt/src/SignatureInvalidException.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'path' => dirname(__DIR__) . '/config', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/swoft/error/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/error/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'path' => dirname(__DIR__) . '/config', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/swoft/i18n/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/proxy/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/redis/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/rpc/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/server/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/task/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/symfony/var-exporter/Tests/Fixtures/multiline-string.php: -------------------------------------------------------------------------------- 1 | 'B'."\r" 6 | .'C'."\n" 7 | ."\n", 8 | ]; 9 | -------------------------------------------------------------------------------- /vendor/toolkit/cli-utils/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .phpintel/ 3 | !README.md 4 | !.gitkeep 5 | composer.lock 6 | *.swp 7 | *.log 8 | *.pid 9 | *.patch 10 | .DS_Store 11 | *.bz2 12 | -------------------------------------------------------------------------------- /config/module.php: -------------------------------------------------------------------------------- 1 | 'system', 10 | ]; -------------------------------------------------------------------------------- /public/xadmin/admin/js/config.js: -------------------------------------------------------------------------------- 1 | var port = '18306'; 2 | var website = '121.36.11.159'; 3 | var http = 'http://'; 4 | var requestUri = http+website+':'+port; 5 | var requesturi = http+website; -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /public/xadmin/admin/lib/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a3333w/swoft-SRPHP/HEAD/public/xadmin/admin/lib/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css: -------------------------------------------------------------------------------- 1 | .octicon { 2 | display: inline-block; 3 | vertical-align: text-top; 4 | fill: currentColor; 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source2.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'path' => dirname(__DIR__) . '/config', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/NamespaceUriException.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'key2' => 'value2Pro' 5 | ], 6 | 'key2' => 'value2', 7 | 'key3' => 'value3Pro', 8 | ]; -------------------------------------------------------------------------------- /vendor/swoft/connection-pool/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/http-message/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/log/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .env 13 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/websocket-server/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | .phpintel/ 12 | .DS_Store -------------------------------------------------------------------------------- /vendor/swoft/websocket-server/test/testing/bean.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'path' => dirname(__DIR__) . '/config', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/nullMappingKey.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | null: ~ 6 | php: | 7 | [ 8 | 'null' => null, 9 | ] 10 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/TokenCollectionException.php: -------------------------------------------------------------------------------- 1 | true, 5 | "arrVal1" => [ 6 | "a", "b", "c" 7 | ], 8 | "value1" => "Some Value", 9 | ]; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/05_nested_for/_in.txt: -------------------------------------------------------------------------------- 1 | 1: Start 2 | {for curVal in arrVal1} 3 | {for curVal2 in arrVal2} 4 | 2: curVal = {=curVal}: {=curVal2} 5 | {/for} 6 | {/for} 7 | 5: Some other text -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/swoft/config/test/config-php/data.php: -------------------------------------------------------------------------------- 1 | 'baseDataKey', 4 | 'key3' => [ 5 | 'key1' => [ 6 | 'key' => 'dataChildKey1' 7 | ] 8 | ] 9 | ]; -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerInvalidSyntax.test: -------------------------------------------------------------------------------- 1 | Invalid __halt_compiler() syntax 2 | ----- 3 | [ 4 | 'key2' => 'value2', 5 | 'key3' => 'value2' 6 | ], 7 | 'key2' => 'value2', 8 | 'key3' => 'value3', 9 | ]; -------------------------------------------------------------------------------- /vendor/swoft/tcp/.gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .settings/ 3 | .project 4 | *.patch 5 | .idea/ 6 | .git/ 7 | runtime/ 8 | vendor/ 9 | temp/ 10 | *.lock 11 | *.cache 12 | .phpintel/ 13 | .env 14 | .DS_Store 15 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/swoft/bean/src/BF.php: -------------------------------------------------------------------------------- 1 | true, 5 | "falseVal" => false, 6 | "value1" => "Some Value", 7 | "floatVal" => 1.234, 8 | "emptyVal" => null 9 | ]; -------------------------------------------------------------------------------- /config/base.php: -------------------------------------------------------------------------------- 1 | 'Swoft framework 2.0', 4 | 'debug' => env('SWOFT_DEBUG', 1), 5 | 'role'=>[ 6 | 'Administration'=>'admin', 7 | 'ordinary'=>'user' 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/swoft/devtool/resource/template/property.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * {= comment | raw} 3 | {= id} 4 | * @Column({= columnDetail | raw}) 5 | * 6 | * @var {= type} 7 | */ 8 | private {= propertyName}; 9 | -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | {= property}; 8 | } 9 | -------------------------------------------------------------------------------- /vendor/swoft/stdlib/src/Helper/Sys.php: -------------------------------------------------------------------------------- 1 | true, 10 | 'false' => false, 11 | ] 12 | -------------------------------------------------------------------------------- /config/version/v1.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'list' => [ 5 | 'get' => 'V1' // 订单列表 6 | ], 7 | 'agreement' => [ 8 | 'post' => 'V1' // 协议 9 | ], 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/expr/shortArraySyntax.test: -------------------------------------------------------------------------------- 1 | Short array syntax 2 | ----- 3 | 'b', 'c' => 'd']; 8 | ----- 9 | []; 10 | array(1, 2, 3); 11 | ['a' => 'b', 'c' => 'd']; -------------------------------------------------------------------------------- /vendor/php-di/phpdoc-reader/src/PhpDocReader/AnnotationException.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class AnnotationException extends \Exception 9 | { 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-for-coverage.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT for testing coverage 3 | --FILE-- 4 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/swoft/validator/src/Annotation/Mapping/Type.php: -------------------------------------------------------------------------------- 1 | 300000, 9 | ]); 10 | 11 | // Run application 12 | (new \App\Application())->run(); 13 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/stmt/if.test: -------------------------------------------------------------------------------- 1 | if/elseif/else 2 | ----- 3 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/swoft/stdlib/src/Helper/DirHelper.php: -------------------------------------------------------------------------------- 1 | 0 && $argv[1] == 'help') { 8 | print 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/psr/http-server-handler/README.md: -------------------------------------------------------------------------------- 1 | HTTP Server Handler 2 | =================== 3 | 4 | Provides the `RequestHandlerInterface` of [PSR-15][psr-15]. 5 | 6 | [psr-15]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-15-request-handlers.md 7 | -------------------------------------------------------------------------------- /vendor/swoft/event/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - 7.3 7 | before_script: 8 | - composer config -g process-timeout 9000 && composer update 9 | - phpenv config-rm xdebug.ini 10 | 11 | script: 12 | - composer test -------------------------------------------------------------------------------- /vendor/swoft/tcp-server/test/testing/MockTcpResponse.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../../tests/end-to-end/debug.phpt 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-unsupported-section.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner handles unsupported --SECTION-- gracefully 3 | --FILE-- 4 | 7 | --GET-- 8 | Gerste, Hopfen und Wasser 9 | --EXPECT-- 10 | Hello world 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-stdin.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports STDIN section 3 | --STDIN-- 4 | Hello World 5 | --FILE-- 6 | 10 | --EXPECT-- 11 | Hello World 12 | -------------------------------------------------------------------------------- /vendor/swoft/annotation/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - 7.3 7 | 8 | before_script: 9 | - composer config -g process-timeout 900 && composer update 10 | - phpenv config-rm xdebug.ini 11 | 12 | script: 13 | - composer test -------------------------------------------------------------------------------- /vendor/swoft/console/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 7.1 5 | - 7.2 6 | - 7.3 7 | 8 | before_script: 9 | - composer config -g process-timeout 9000 && composer update 10 | - phpenv config-rm xdebug.ini 11 | 12 | script: 13 | - composer test -------------------------------------------------------------------------------- /vendor/swoft/console/src/Advanced/InteractMessage.php: -------------------------------------------------------------------------------- 1 | true, 5 | "arrVal1" => [ 6 | "a", "b", "c" 7 | ], 8 | "arrVal2" => [ 9 | "AA", "BB", "CC" 10 | ], 11 | "value1" => "Some Value", 12 | ]; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/06_debug_vars/_in.php: -------------------------------------------------------------------------------- 1 | true, 5 | "arrVal1" => [ 6 | "a", "b", "c" 7 | ], 8 | "arrVal2" => [ 9 | "AA", "BB", "CC" 10 | ], 11 | "value1" => "Some Value", 12 | ]; -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/08_if_elseif/_in.txt: -------------------------------------------------------------------------------- 1 | 1: IN = 4 2 | {if boolVal == TRUE} 3 | 2: IN 4 | {elseif boolVal == TRUE} 5 | 3: OUT 6 | {/if} 7 | {if boolVal == FALSE} 8 | 4: OUT 9 | {elseif boolVal == TRUE} 10 | 5: IN 11 | {else} 12 | 6: OUT 13 | {/if} 14 | 7: IN -------------------------------------------------------------------------------- /vendor/text/template/test/unit/tpls/10_logic/_in.txt: -------------------------------------------------------------------------------- 1 | 1: IN = 4 2 | {if t1 == TRUE} 3 | 2: IN 4 | {if t2 == FALSE} 5 | 3: OUT 6 | {elseif t2 == TRUE} 7 | 4: IN 8 | {else} 9 | 5: OUT 10 | {/if} 11 | {elseif t1 == TRUE} 12 | 6: OUT 13 | {else} 14 | 7: OUT 15 | {/if} 16 | 8: IN -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- 1 | # Doctrine Lexer 2 | 3 | Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers. 4 | 5 | This lexer is used in Doctrine Annotations and in Doctrine ORM (DQL). 6 | 7 | https://www.doctrine-project.org/projects/lexer.html 8 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/nestedInlineHTML.test: -------------------------------------------------------------------------------- 1 | InlineHTML node nested inside other code 2 | ----- 3 | 7 | Test 8 | 14 | Test 15 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /vendor/swoft/aop/src/Exception/AopException.php: -------------------------------------------------------------------------------- 1 | [ 7 | 'class' => RedisDb::class, 8 | 'host' => '127.0.0.1', 9 | 'port' => 6379, 10 | 'database' => 0, 11 | ], 12 | ]; -------------------------------------------------------------------------------- /vendor/swoft/rpc-client/test/unit/TestCase.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2972/issue-2972-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Just a sample test for issue 2972, does not actually test anything 3 | --FILE-- 4 | 7 | ===DONE=== 8 | --EXPECT-- 9 | Hello world 10 | ===DONE=== 11 | -------------------------------------------------------------------------------- /vendor/swoft/bean/src/Exception/BeanException.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 13 | } 14 | } -------------------------------------------------------------------------------- /vendor/swoft/devtool/resource/template/setter.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * @param {= paramType} {= paramName} 3 | * 4 | * @return void 5 | */ 6 | public function {= methodName}({= type} {= paramName}): void 7 | { 8 | $this->{= property} = {= paramName}; 9 | } 10 | -------------------------------------------------------------------------------- /vendor/swoft/proxy/src/Exception/ProxyException.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpoption/phpoption/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/expr/clone.test: -------------------------------------------------------------------------------- 1 | Clone 2 | ----- 3 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/swoft/config/src/Exception/ConfigException.php: -------------------------------------------------------------------------------- 1 | [ 5 | // if has args. 6 | [ 7 | // arg0, arg1 8 | ], 9 | 'srcDir' => '@vendor/swoft/devtool/web/dist/devtool', 10 | 'dstDir' => '@base/public', 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /vendor/swoft/server/src/Exception/ServerException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- 1 | [new Comment('//Some comment here')]]); 8 | ----- 9 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | indent_style = space 7 | indent_size = 4 8 | charset = utf-8 9 | 10 | [*.yml] 11 | indent_size = 2 12 | 13 | [tests/_files/*_result_cache.txt] 14 | insert_final_newline = false 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/phpt-env.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner should support ENV section 3 | --ENV-- 4 | FOO=bar 5 | --FILE-- 6 | 11 | --EXPECTF_EXTERNAL-- 12 | _files/phpt-env.expected.txt 13 | -------------------------------------------------------------------------------- /vendor/swoft/apollo/src/Exception/ApolloException.php: -------------------------------------------------------------------------------- 1 | browser language -> default 6 | export const LANG = cache.get('site.lang') || navigator.language || 'zh-CN' 7 | 8 | export const ACCESS_TOKEN = 'test' 9 | -------------------------------------------------------------------------------- /vendor/swoft/tcp-server/src/Exception/TcpServerRouteException.php: -------------------------------------------------------------------------------- 1 | 10.4} 9 | 4: out 10 | {/if} 11 | {if t1 != 10.4} 12 | 5: OUT 13 | {/if} 14 | {if t1 == NULL} 15 | 6: OUT 16 | {/if} 17 | 7: IN -------------------------------------------------------------------------------- /config/properties/app.php: -------------------------------------------------------------------------------- 1 | [ 11 | 'jwt' => [ 12 | 'algorithm' => 'HS256', 13 | 'secret' => '16775657568' 14 | ], 15 | ], 16 | ]; -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/expr/errorSuppress.test: -------------------------------------------------------------------------------- 1 | Error suppression 2 | ----- 3 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psr/container/README.md: -------------------------------------------------------------------------------- 1 | # PSR Container 2 | 3 | This repository holds all interfaces/classes/traits related to [PSR-11](https://github.com/container-interop/fig-standards/blob/master/proposed/container.md). 4 | 5 | Note that this is not a container implementation of its own. See the specification for more details. 6 | -------------------------------------------------------------------------------- /vendor/swoft/annotation/src/Exception/AnnotationException.php: -------------------------------------------------------------------------------- 1 | export(); 10 | -------------------------------------------------------------------------------- /vendor/swoft/websocket-server/src/Exception/WsMessageParseException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'path' => __DIR__ . '/../config', 5 | ], 6 | 7 | 'httpDispatcher' => [ 8 | 'afterMiddlewares' => [ 9 | \Swoft\Http\Server\Middleware\ValidatorMiddleware::class 10 | ] 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /vendor/swoft/proxy/src/Ast/Visitor/Visitor.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 16 | } 17 | } -------------------------------------------------------------------------------- /vendor/swoft/swoole-ide-helper/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "swoft/swoole-ide-helper", 3 | "type": "library", 4 | "keywords": [ 5 | "php", 6 | "swoole", 7 | "swoft", 8 | "ide-helper" 9 | ], 10 | "description": "IDE helper for Swoft and Swoole", 11 | "license": "Apache-2.0", 12 | "require-dev": {} 13 | } 14 | -------------------------------------------------------------------------------- /vendor/swoft/websocket-server/src/Exception/WsHandshakeException.php: -------------------------------------------------------------------------------- 1 | stmts[0]->type = null; 14 | ----- 15 | expects($any); 6 | 7 | return call_user_func_array([$expects, 'method'], func_get_args()); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_whitelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | AbstractTest.php 8 | 9 | Foo.php 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/swoft/console/src/Advanced/Formatter/Block.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | ./tests/*/ 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt_external.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | print 'Hello World'; 11 | -------------------------------------------------------------------------------- /vendor/swoft/aop/src/Annotation/Mapping/Around.php: -------------------------------------------------------------------------------- 1 |