├── .bowerrc ├── .gitignore ├── LICENSE.md ├── README.md ├── actions └── Hello.php ├── assets └── AppAsset.php ├── callback └── Response.php ├── commands ├── HelloController.php └── TaskController.php ├── composer.json ├── composer.lock ├── config ├── console.php ├── db.php ├── params.php └── web.php ├── controllers ├── BaseController.php ├── SiteController.php ├── TaskController.php ├── UserController.php ├── WechatTemplateController.php └── test │ └── TestController.php ├── data └── .gitignore ├── libs ├── Client │ ├── TaskClient.php │ └── TaskFileException.php ├── Network │ ├── AbstractRequestCommand.php │ ├── AbstractResponseCommand.php │ ├── BooleanCommand.php │ ├── CommandException.php │ ├── EncodeCommand.php │ ├── HttpStatus.php │ ├── PushCommand.php │ ├── SendCommand.php │ ├── SetTableCommand.php │ ├── WechatCodecFactory.php │ ├── WechatDecoder.php │ ├── WechatEncoder.php │ └── WechatProtocol.php └── Swoole │ ├── Command │ ├── BooleanAckCommand.php │ ├── CommandFactory.php │ ├── CommandHeader.php │ ├── ICommand.php │ ├── RequestCommand.php │ ├── ResponseCommand.php │ └── ResponseStatus.php │ ├── Core │ ├── CodecFactory.php │ ├── Connection.php │ ├── Decoder.php │ ├── Encoder.php │ └── Implement │ │ ├── BaseConnection.php │ │ └── ClientConnection.php │ ├── Exception │ ├── ConnectionException.php │ └── ErrorException.php │ ├── Util │ ├── ByteBuffer.php │ ├── Config.php │ ├── Console.php │ ├── Log.php │ └── MessagePacker.php │ └── classes.php ├── mail └── layouts │ └── html.php ├── mega-db.sql ├── models ├── ContactForm.php ├── LoginForm.php ├── Model.php ├── Task.php ├── TaskForm.php ├── TaskQuery.php ├── User.php ├── UserQuery.php ├── WechatTemplate.php ├── WechatTemplateQuery.php └── searches │ ├── TaskSearch.php │ ├── UserSearch.php │ └── WechatTemplateSearch.php ├── requirements.php ├── runtime └── .gitignore ├── swoole-ide-helper-english ├── .gitignore ├── README.md ├── demo_img │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ └── 05.png ├── docs │ ├── .htaccess │ ├── classes │ │ ├── swoole_atomic.html │ │ ├── swoole_buffer.html │ │ ├── swoole_client.html │ │ ├── swoole_http_request.html │ │ ├── swoole_http_response.html │ │ ├── swoole_http_server.html │ │ ├── swoole_lock.html │ │ ├── swoole_process.html │ │ ├── swoole_server.html │ │ ├── swoole_table.html │ │ └── swoole_websocket_server.html │ ├── css │ │ ├── bootstrap-combined.no-icons.min.css │ │ ├── font-awesome.min.css │ │ ├── jquery.iviewer.css │ │ ├── phpdocumentor-clean-icons │ │ │ ├── Read Me.txt │ │ │ ├── fonts │ │ │ │ ├── phpdocumentor-clean-icons.dev.svg │ │ │ │ ├── phpdocumentor-clean-icons.eot │ │ │ │ ├── phpdocumentor-clean-icons.svg │ │ │ │ ├── phpdocumentor-clean-icons.ttf │ │ │ │ └── phpdocumentor-clean-icons.woff │ │ │ ├── lte-ie7.js │ │ │ └── style.css │ │ ├── prism.css │ │ └── template.css │ ├── files │ │ ├── swoole.html │ │ ├── swoole.php.txt │ │ ├── swoole_atomic.html │ │ ├── swoole_atomic.php.txt │ │ ├── swoole_buffer.html │ │ ├── swoole_buffer.php.txt │ │ ├── swoole_client.html │ │ ├── swoole_client.php.txt │ │ ├── swoole_http_request.html │ │ ├── swoole_http_request.php.txt │ │ ├── swoole_http_response.html │ │ ├── swoole_http_response.php.txt │ │ ├── swoole_http_server.html │ │ ├── swoole_http_server.php.txt │ │ ├── swoole_lock.html │ │ ├── swoole_lock.php.txt │ │ ├── swoole_process.html │ │ ├── swoole_process.php.txt │ │ ├── swoole_server.html │ │ ├── swoole_server.php.txt │ │ ├── swoole_table.html │ │ ├── swoole_table.php.txt │ │ ├── swoole_websocket_server.html │ │ └── swoole_websocket_server.php.txt │ ├── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── graphs │ │ ├── class.html │ │ └── classes.svg │ ├── images │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon.png │ │ ├── custom-icons.svg │ │ ├── favicon.ico │ │ ├── hierarchy-item.png │ │ ├── icon-class-13x13.png │ │ ├── icon-class.svg │ │ ├── icon-interface-13x13.png │ │ ├── icon-interface.svg │ │ ├── icon-trait-13x13.png │ │ ├── icon-trait.svg │ │ └── iviewer │ │ │ ├── grab.cur │ │ │ ├── hand.cur │ │ │ ├── iviewer.rotate_left.png │ │ │ ├── iviewer.rotate_right.png │ │ │ ├── iviewer.zoom_fit.png │ │ │ ├── iviewer.zoom_in.png │ │ │ ├── iviewer.zoom_out.png │ │ │ └── iviewer.zoom_zero.png │ ├── index.html │ ├── js │ │ ├── bootstrap.min.js │ │ ├── html5.js │ │ ├── jquery-1.11.0.min.js │ │ ├── jquery.dotdotdot-1.5.9.js │ │ ├── jquery.dotdotdot-1.5.9.min.js │ │ ├── jquery.iviewer.js │ │ ├── jquery.iviewer.min.js │ │ ├── jquery.mousewheel.js │ │ ├── jquery.smooth-scroll.js │ │ ├── prism.min.js │ │ └── ui │ │ │ └── 1.10.4 │ │ │ └── jquery-ui.min.js │ ├── namespaces │ │ └── default.html │ └── reports │ │ ├── deprecated.html │ │ ├── errors.html │ │ └── markers.html ├── phpdoc.xml └── src │ ├── swoole.php │ ├── swoole_atomic.php │ ├── swoole_buffer.php │ ├── swoole_client.php │ ├── swoole_http_request.php │ ├── swoole_http_response.php │ ├── swoole_http_server.php │ ├── swoole_lock.php │ ├── swoole_process.php │ ├── swoole_server.php │ ├── swoole_table.php │ └── swoole_websocket_server.php ├── tests ├── README.md ├── codeception.yml └── codeception │ ├── .gitignore │ ├── _bootstrap.php │ ├── _output │ └── .gitignore │ ├── _pages │ ├── AboutPage.php │ ├── ContactPage.php │ └── LoginPage.php │ ├── acceptance.suite.yml │ ├── acceptance │ ├── AboutCept.php │ ├── ContactCept.php │ ├── HomeCept.php │ ├── LoginCept.php │ └── _bootstrap.php │ ├── bin │ ├── _bootstrap.php │ ├── yii │ └── yii.bat │ ├── config │ ├── acceptance.php │ ├── config.php │ ├── functional.php │ └── unit.php │ ├── fixtures │ └── .gitignore │ ├── functional.suite.yml │ ├── functional │ ├── AboutCept.php │ ├── ContactCept.php │ ├── HomeCept.php │ ├── LoginCept.php │ └── _bootstrap.php │ ├── templates │ └── .gitignore │ ├── unit.suite.yml │ └── unit │ ├── _bootstrap.php │ ├── fixtures │ ├── .gitkeep │ └── data │ │ └── .gitkeep │ ├── models │ ├── ContactFormTest.php │ ├── LoginFormTest.php │ └── UserTest.php │ └── templates │ └── fixtures │ └── .gitkeep ├── views ├── layouts │ └── main.php ├── site │ ├── about.php │ ├── contact.php │ ├── error.php │ ├── index.php │ └── login.php ├── task │ ├── _form.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── index~.php │ └── view.php ├── user │ ├── _form.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php └── wechat-template │ ├── _form.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php ├── web ├── assets │ └── .gitignore ├── css │ ├── jquery-confirm.css │ └── site.css ├── favicon.ico ├── index-test.php ├── index.php ├── js │ ├── jquery-confirm.js │ ├── jsoneditor │ │ └── dist │ │ │ ├── img │ │ │ └── jsoneditor-icons.svg │ │ │ ├── jsoneditor-minimalist.js │ │ │ ├── jsoneditor-minimalist.map │ │ │ ├── jsoneditor-minimalist.min.js │ │ │ ├── jsoneditor.css │ │ │ ├── jsoneditor.js │ │ │ ├── jsoneditor.map │ │ │ ├── jsoneditor.min.css │ │ │ ├── jsoneditor.min.js │ │ │ └── which files do I need.md │ ├── vue.js │ └── vue.min.js ├── robots.txt └── tmpl │ ├── openid_template.xlsx │ └── user_template.xlsx ├── widgets └── Alert.php ├── yii └── yii.bat /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/README.md -------------------------------------------------------------------------------- /actions/Hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/actions/Hello.php -------------------------------------------------------------------------------- /assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/assets/AppAsset.php -------------------------------------------------------------------------------- /callback/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/callback/Response.php -------------------------------------------------------------------------------- /commands/HelloController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/commands/HelloController.php -------------------------------------------------------------------------------- /commands/TaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/commands/TaskController.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/composer.lock -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/config/console.php -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/config/db.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/config/params.php -------------------------------------------------------------------------------- /config/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/config/web.php -------------------------------------------------------------------------------- /controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/controllers/BaseController.php -------------------------------------------------------------------------------- /controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/controllers/SiteController.php -------------------------------------------------------------------------------- /controllers/TaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/controllers/TaskController.php -------------------------------------------------------------------------------- /controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/controllers/UserController.php -------------------------------------------------------------------------------- /controllers/WechatTemplateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/controllers/WechatTemplateController.php -------------------------------------------------------------------------------- /controllers/test/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/controllers/test/TestController.php -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /libs/Client/TaskClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Client/TaskClient.php -------------------------------------------------------------------------------- /libs/Client/TaskFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Client/TaskFileException.php -------------------------------------------------------------------------------- /libs/Network/AbstractRequestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/AbstractRequestCommand.php -------------------------------------------------------------------------------- /libs/Network/AbstractResponseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/AbstractResponseCommand.php -------------------------------------------------------------------------------- /libs/Network/BooleanCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/BooleanCommand.php -------------------------------------------------------------------------------- /libs/Network/CommandException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/CommandException.php -------------------------------------------------------------------------------- /libs/Network/EncodeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/EncodeCommand.php -------------------------------------------------------------------------------- /libs/Network/HttpStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/HttpStatus.php -------------------------------------------------------------------------------- /libs/Network/PushCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/PushCommand.php -------------------------------------------------------------------------------- /libs/Network/SendCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/SendCommand.php -------------------------------------------------------------------------------- /libs/Network/SetTableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/SetTableCommand.php -------------------------------------------------------------------------------- /libs/Network/WechatCodecFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/WechatCodecFactory.php -------------------------------------------------------------------------------- /libs/Network/WechatDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/WechatDecoder.php -------------------------------------------------------------------------------- /libs/Network/WechatEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/WechatEncoder.php -------------------------------------------------------------------------------- /libs/Network/WechatProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Network/WechatProtocol.php -------------------------------------------------------------------------------- /libs/Swoole/Command/BooleanAckCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Command/BooleanAckCommand.php -------------------------------------------------------------------------------- /libs/Swoole/Command/CommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Command/CommandFactory.php -------------------------------------------------------------------------------- /libs/Swoole/Command/CommandHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Command/CommandHeader.php -------------------------------------------------------------------------------- /libs/Swoole/Command/ICommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Command/ICommand.php -------------------------------------------------------------------------------- /libs/Swoole/Command/RequestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Command/RequestCommand.php -------------------------------------------------------------------------------- /libs/Swoole/Command/ResponseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Command/ResponseCommand.php -------------------------------------------------------------------------------- /libs/Swoole/Command/ResponseStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Command/ResponseStatus.php -------------------------------------------------------------------------------- /libs/Swoole/Core/CodecFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Core/CodecFactory.php -------------------------------------------------------------------------------- /libs/Swoole/Core/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Core/Connection.php -------------------------------------------------------------------------------- /libs/Swoole/Core/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Core/Decoder.php -------------------------------------------------------------------------------- /libs/Swoole/Core/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Core/Encoder.php -------------------------------------------------------------------------------- /libs/Swoole/Core/Implement/BaseConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Core/Implement/BaseConnection.php -------------------------------------------------------------------------------- /libs/Swoole/Core/Implement/ClientConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Core/Implement/ClientConnection.php -------------------------------------------------------------------------------- /libs/Swoole/Exception/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Exception/ConnectionException.php -------------------------------------------------------------------------------- /libs/Swoole/Exception/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Exception/ErrorException.php -------------------------------------------------------------------------------- /libs/Swoole/Util/ByteBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Util/ByteBuffer.php -------------------------------------------------------------------------------- /libs/Swoole/Util/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Util/Config.php -------------------------------------------------------------------------------- /libs/Swoole/Util/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Util/Console.php -------------------------------------------------------------------------------- /libs/Swoole/Util/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Util/Log.php -------------------------------------------------------------------------------- /libs/Swoole/Util/MessagePacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/Util/MessagePacker.php -------------------------------------------------------------------------------- /libs/Swoole/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/libs/Swoole/classes.php -------------------------------------------------------------------------------- /mail/layouts/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/mail/layouts/html.php -------------------------------------------------------------------------------- /mega-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/mega-db.sql -------------------------------------------------------------------------------- /models/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/ContactForm.php -------------------------------------------------------------------------------- /models/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/LoginForm.php -------------------------------------------------------------------------------- /models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/Model.php -------------------------------------------------------------------------------- /models/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/Task.php -------------------------------------------------------------------------------- /models/TaskForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/TaskForm.php -------------------------------------------------------------------------------- /models/TaskQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/TaskQuery.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/User.php -------------------------------------------------------------------------------- /models/UserQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/UserQuery.php -------------------------------------------------------------------------------- /models/WechatTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/WechatTemplate.php -------------------------------------------------------------------------------- /models/WechatTemplateQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/WechatTemplateQuery.php -------------------------------------------------------------------------------- /models/searches/TaskSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/searches/TaskSearch.php -------------------------------------------------------------------------------- /models/searches/UserSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/searches/UserSearch.php -------------------------------------------------------------------------------- /models/searches/WechatTemplateSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/models/searches/WechatTemplateSearch.php -------------------------------------------------------------------------------- /requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/requirements.php -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /swoole-ide-helper-english/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /docs/phpdoc-cache-** 3 | -------------------------------------------------------------------------------- /swoole-ide-helper-english/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/README.md -------------------------------------------------------------------------------- /swoole-ide-helper-english/demo_img/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/demo_img/01.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/demo_img/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/demo_img/02.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/demo_img/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/demo_img/03.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/demo_img/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/demo_img/04.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/demo_img/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/demo_img/05.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/.htaccess -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_atomic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_atomic.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_buffer.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_client.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_http_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_http_request.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_http_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_http_response.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_http_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_http_server.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_lock.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_process.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_server.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_table.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/classes/swoole_websocket_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/classes/swoole_websocket_server.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/bootstrap-combined.no-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/bootstrap-combined.no-icons.min.css -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/font-awesome.min.css -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/jquery.iviewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/jquery.iviewer.css -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/Read Me.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.dev.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.eot -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.ttf -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.woff -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/lte-ie7.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/phpdocumentor-clean-icons/style.css -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/prism.css -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/css/template.css -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_atomic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_atomic.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_atomic.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_atomic.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_buffer.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_buffer.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_buffer.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_client.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_client.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_client.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_http_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_http_request.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_http_request.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_http_request.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_http_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_http_response.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_http_response.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_http_response.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_http_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_http_server.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_http_server.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_http_server.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_lock.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_lock.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_lock.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_process.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_process.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_process.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_server.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_server.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_server.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_table.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_table.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_table.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_websocket_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_websocket_server.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/files/swoole_websocket_server.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/files/swoole_websocket_server.php.txt -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/font/FontAwesome.otf -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/graphs/class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/graphs/class.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/graphs/classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/graphs/classes.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/apple-touch-icon.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/custom-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/custom-icons.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/favicon.ico -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/hierarchy-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/hierarchy-item.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/icon-class-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/icon-class-13x13.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/icon-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/icon-class.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/icon-interface-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/icon-interface-13x13.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/icon-interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/icon-interface.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/icon-trait-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/icon-trait-13x13.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/icon-trait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/icon-trait.svg -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/grab.cur -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/hand.cur -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/iviewer.rotate_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/iviewer.rotate_left.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/iviewer.rotate_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/iviewer.rotate_right.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_fit.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_in.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_out.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/images/iviewer/iviewer.zoom_zero.png -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/index.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/html5.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/jquery.dotdotdot-1.5.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/jquery.dotdotdot-1.5.9.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/jquery.dotdotdot-1.5.9.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/jquery.dotdotdot-1.5.9.min.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/jquery.iviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/jquery.iviewer.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/jquery.iviewer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/jquery.iviewer.min.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/jquery.mousewheel.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/jquery.smooth-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/jquery.smooth-scroll.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/prism.min.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/js/ui/1.10.4/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/js/ui/1.10.4/jquery-ui.min.js -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/namespaces/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/namespaces/default.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/reports/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/reports/deprecated.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/reports/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/reports/errors.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/docs/reports/markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/docs/reports/markers.html -------------------------------------------------------------------------------- /swoole-ide-helper-english/phpdoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/phpdoc.xml -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_atomic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_atomic.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_buffer.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_client.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_http_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_http_request.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_http_response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_http_response.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_http_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_http_server.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_lock.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_process.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_server.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_table.php -------------------------------------------------------------------------------- /swoole-ide-helper-english/src/swoole_websocket_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/swoole-ide-helper-english/src/swoole_websocket_server.php -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception.yml -------------------------------------------------------------------------------- /tests/codeception/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/.gitignore -------------------------------------------------------------------------------- /tests/codeception/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/_bootstrap.php -------------------------------------------------------------------------------- /tests/codeception/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/codeception/_pages/AboutPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/_pages/AboutPage.php -------------------------------------------------------------------------------- /tests/codeception/_pages/ContactPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/_pages/ContactPage.php -------------------------------------------------------------------------------- /tests/codeception/_pages/LoginPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/_pages/LoginPage.php -------------------------------------------------------------------------------- /tests/codeception/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/codeception/acceptance/AboutCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/acceptance/AboutCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/ContactCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/acceptance/ContactCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/HomeCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/acceptance/HomeCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/LoginCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imRainChen/Mega-WeChat-Client/HEAD/tests/codeception/acceptance/LoginCept.php -------------------------------------------------------------------------------- /tests/codeception/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 |