├── .gitattributes ├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── application ├── admin │ ├── controller │ │ ├── Auth.php │ │ ├── Config.php │ │ ├── Index.php │ │ ├── Log.php │ │ ├── Login.php │ │ ├── Menu.php │ │ ├── Node.php │ │ ├── Plugs.php │ │ └── User.php │ └── view │ │ ├── auth.apply.html │ │ ├── auth.form.html │ │ ├── auth.index.html │ │ ├── config.file.html │ │ ├── config.index.html │ │ ├── index.index.html │ │ ├── index.main.html │ │ ├── log.index.html │ │ ├── login.index.html │ │ ├── menu.form.html │ │ ├── menu.index.html │ │ ├── node.index.html │ │ ├── plugs.icon.html │ │ ├── plugs.upfile.html │ │ ├── user.auth.html │ │ ├── user.form.html │ │ ├── user.index.html │ │ └── user.pass.html ├── api │ ├── behavior │ │ ├── ApiAuth.php │ │ ├── ApiPermission.php │ │ ├── BuildResponse.php │ │ └── RequestFilter.php │ ├── controller │ │ ├── Buildtoken.php │ │ ├── Debug.php │ │ ├── Index.php │ │ ├── Miss.php │ │ └── Tool.php │ └── tags.php ├── apiRoute.php ├── common.php ├── config.php ├── database.php.dev ├── demo │ ├── controller │ │ └── Plugs.php │ └── view │ │ ├── plugs.editor.html │ │ ├── plugs.file.html │ │ └── plugs.region.html ├── extra │ ├── api.php │ ├── mail.php │ ├── mines.php │ ├── queue.php │ └── view │ │ ├── admin.content.html │ │ ├── admin.main.html │ │ ├── admin.main.left.html │ │ ├── admin.main.top.html │ │ ├── api.main.html │ │ ├── handler.exception.html │ │ └── handler.jump.html ├── index │ ├── controller │ │ ├── Index.php │ │ └── Wap.php │ └── view │ │ ├── wap.payjs.html │ │ └── wap.payqrc.html ├── model │ ├── ApiApp.php │ ├── ApiAuthGroupAccess.php │ ├── ApiFields.php │ ├── ApiGroup.php │ ├── ApiList.php │ └── Base.php ├── port │ ├── controller │ │ ├── Group.php │ │ ├── Row.php │ │ └── Visit.php │ └── view │ │ ├── group.form.html │ │ ├── group.index.html │ │ ├── group.recycle.html │ │ ├── row.ask.html │ │ ├── row.ask.modal.html │ │ ├── row.form.html │ │ ├── row.index.html │ │ ├── row.param.html │ │ ├── row.paramform.html │ │ ├── row.recycle.html │ │ ├── row.res.html │ │ ├── row.uploadform.html │ │ ├── visit.app.html │ │ ├── visit.appform.html │ │ ├── visit.doc.html │ │ └── visit.docform.html ├── route.php ├── tags.php ├── util │ ├── Agent.php │ ├── ApiLog.php │ ├── DataType.php │ ├── Excel.php │ ├── ReturnCode.php │ ├── Strs.php │ ├── Tools.php │ └── apiRoute.tpl ├── wechat │ ├── controller │ │ ├── Api.php │ │ ├── Config.php │ │ ├── Fans.php │ │ ├── Keys.php │ │ ├── Menu.php │ │ ├── News.php │ │ ├── Notify.php │ │ ├── Review.php │ │ └── Tags.php │ └── view │ │ ├── config.index.html │ │ ├── config.pay.html │ │ ├── fans.back.html │ │ ├── fans.index.html │ │ ├── keys.form.html │ │ ├── keys.index.html │ │ ├── menu.index.html │ │ ├── news.form.html │ │ ├── news.image.html │ │ ├── news.index.html │ │ ├── news.push.html │ │ ├── news.select.html │ │ ├── review.index.html │ │ ├── tags.form.html │ │ └── tags.index.html ├── wiki │ ├── controller │ │ ├── Base.php │ │ ├── Index.php │ │ └── Login.php │ └── view │ │ ├── index.calculation.html │ │ ├── index.detail.html │ │ ├── index.errorcode.html │ │ ├── index.index.html │ │ └── login.index.html ├── wikiRoute.php └── worker │ └── controller │ └── Worker.php ├── composer.json ├── debug.php ├── extend ├── Hashids │ ├── HashGenerator.php │ └── Hashids.php ├── controller │ ├── BasicAdmin.php │ ├── BasicApi.php │ └── BasicWechat.php ├── hook │ ├── AccessAuth.php │ └── FilterView.php └── service │ ├── DataService.php │ ├── FileService.php │ ├── HttpService.php │ ├── LogService.php │ ├── NodeService.php │ ├── PayService.php │ ├── SoapService.php │ ├── ToolsService.php │ └── WechatService.php ├── index.php ├── phpunit.xml ├── server.php ├── static ├── admin │ ├── app.js │ ├── gt.js │ ├── listen.js │ └── plugs.js ├── api │ ├── img │ │ └── api_default.jpg │ └── js │ │ └── login.js ├── plugs │ ├── angular │ │ └── angular.min.js │ ├── aui │ │ ├── aui-iconfont.ttf │ │ └── aui.css │ ├── awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap3-typeahead.min.js │ │ │ ├── debug │ │ │ ├── ie-emulation-modes-warning.js │ │ │ └── ie10-viewport-bug-workaround.js │ │ │ └── npm.js │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ └── zh-cn.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ ├── skins │ │ │ └── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── jquery │ │ ├── base64.min.js │ │ ├── jquery-2.1.3.min.js │ │ ├── jquery-3.2.1.min.js │ │ ├── jquery.PrintArea.js │ │ ├── jquery.cascade.js │ │ ├── jquery.citys.js │ │ ├── jquery.cookie.js │ │ ├── jquery.form.js │ │ ├── jquery.min.js │ │ ├── json2.min.js │ │ ├── masonry.min.js │ │ ├── pace.min.js │ │ └── pcasunzips.js │ ├── jqueryWeui │ │ ├── css │ │ │ ├── jquery-weui.css │ │ │ └── jquery-weui.min.css │ │ ├── js │ │ │ ├── city-picker.js │ │ │ ├── city-picker.min.js │ │ │ ├── jquery-weui.js │ │ │ ├── jquery-weui.min.js │ │ │ ├── swiper.js │ │ │ └── swiper.min.js │ │ └── lib │ │ │ ├── fastclick.js │ │ │ ├── jquery-2.1.4.js │ │ │ ├── weui.css │ │ │ ├── weui.min.css │ │ │ └── zepto.js │ ├── jsonFormater │ │ ├── Collapsed.gif │ │ ├── Expanded.gif │ │ ├── jsonFormater.css │ │ └── jsonFormater.js │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ ├── layer │ │ │ │ └── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ │ └── layim │ │ │ │ ├── html │ │ │ │ ├── chatlog.html │ │ │ │ ├── find.html │ │ │ │ ├── getmsg.json │ │ │ │ └── msgbox.html │ │ │ │ ├── layim.css │ │ │ │ ├── mobile │ │ │ │ └── layim.css │ │ │ │ ├── skin │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── logo.jpg │ │ │ │ └── voice │ │ │ │ └── default.mp3 │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── layim.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ └── layui.js │ ├── require │ │ ├── require.css.js │ │ └── require.js │ ├── semantic │ │ ├── .versions │ │ ├── LICENSE │ │ ├── README.md │ │ ├── components │ │ │ ├── accordion.css │ │ │ ├── accordion.js │ │ │ ├── accordion.min.css │ │ │ ├── accordion.min.js │ │ │ ├── ad.css │ │ │ ├── ad.min.css │ │ │ ├── api.js │ │ │ ├── api.min.js │ │ │ ├── breadcrumb.css │ │ │ ├── breadcrumb.min.css │ │ │ ├── button.css │ │ │ ├── button.min.css │ │ │ ├── card.css │ │ │ ├── card.min.css │ │ │ ├── checkbox.css │ │ │ ├── checkbox.js │ │ │ ├── checkbox.min.css │ │ │ ├── checkbox.min.js │ │ │ ├── colorize.js │ │ │ ├── colorize.min.js │ │ │ ├── comment.css │ │ │ ├── comment.min.css │ │ │ ├── container.css │ │ │ ├── container.min.css │ │ │ ├── dimmer.css │ │ │ ├── dimmer.js │ │ │ ├── dimmer.min.css │ │ │ ├── dimmer.min.js │ │ │ ├── divider.css │ │ │ ├── divider.min.css │ │ │ ├── dropdown.css │ │ │ ├── dropdown.js │ │ │ ├── dropdown.min.css │ │ │ ├── dropdown.min.js │ │ │ ├── embed.css │ │ │ ├── embed.js │ │ │ ├── embed.min.css │ │ │ ├── embed.min.js │ │ │ ├── feed.css │ │ │ ├── feed.min.css │ │ │ ├── flag.css │ │ │ ├── flag.min.css │ │ │ ├── form.css │ │ │ ├── form.js │ │ │ ├── form.min.css │ │ │ ├── form.min.js │ │ │ ├── grid.css │ │ │ ├── grid.min.css │ │ │ ├── header.css │ │ │ ├── header.min.css │ │ │ ├── icon.css │ │ │ ├── icon.min.css │ │ │ ├── image.css │ │ │ ├── image.min.css │ │ │ ├── input.css │ │ │ ├── input.min.css │ │ │ ├── item.css │ │ │ ├── item.min.css │ │ │ ├── label.css │ │ │ ├── label.min.css │ │ │ ├── list.css │ │ │ ├── list.min.css │ │ │ ├── loader.css │ │ │ ├── loader.min.css │ │ │ ├── menu.css │ │ │ ├── menu.min.css │ │ │ ├── message.css │ │ │ ├── message.min.css │ │ │ ├── modal.css │ │ │ ├── modal.js │ │ │ ├── modal.min.css │ │ │ ├── modal.min.js │ │ │ ├── nag.css │ │ │ ├── nag.js │ │ │ ├── nag.min.css │ │ │ ├── nag.min.js │ │ │ ├── popup.css │ │ │ ├── popup.js │ │ │ ├── popup.min.css │ │ │ ├── popup.min.js │ │ │ ├── progress.css │ │ │ ├── progress.js │ │ │ ├── progress.min.css │ │ │ ├── progress.min.js │ │ │ ├── rail.css │ │ │ ├── rail.min.css │ │ │ ├── rating.css │ │ │ ├── rating.js │ │ │ ├── rating.min.css │ │ │ ├── rating.min.js │ │ │ ├── reset.css │ │ │ ├── reset.min.css │ │ │ ├── reveal.css │ │ │ ├── reveal.min.css │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search.min.css │ │ │ ├── search.min.js │ │ │ ├── segment.css │ │ │ ├── segment.min.css │ │ │ ├── shape.css │ │ │ ├── shape.js │ │ │ ├── shape.min.css │ │ │ ├── shape.min.js │ │ │ ├── sidebar.css │ │ │ ├── sidebar.js │ │ │ ├── sidebar.min.css │ │ │ ├── sidebar.min.js │ │ │ ├── site.css │ │ │ ├── site.js │ │ │ ├── site.min.css │ │ │ ├── site.min.js │ │ │ ├── state.js │ │ │ ├── state.min.js │ │ │ ├── statistic.css │ │ │ ├── statistic.min.css │ │ │ ├── step.css │ │ │ ├── step.min.css │ │ │ ├── sticky.css │ │ │ ├── sticky.js │ │ │ ├── sticky.min.css │ │ │ ├── sticky.min.js │ │ │ ├── tab.css │ │ │ ├── tab.js │ │ │ ├── tab.min.css │ │ │ ├── tab.min.js │ │ │ ├── table.css │ │ │ ├── table.min.css │ │ │ ├── transition.css │ │ │ ├── transition.js │ │ │ ├── transition.min.css │ │ │ ├── transition.min.js │ │ │ ├── video.css │ │ │ ├── video.js │ │ │ ├── video.min.css │ │ │ ├── video.min.js │ │ │ ├── visibility.js │ │ │ ├── visibility.min.js │ │ │ ├── visit.js │ │ │ └── visit.min.js │ │ ├── package.js │ │ ├── package.json │ │ ├── semantic.css │ │ ├── semantic.js │ │ ├── semantic.min.css │ │ ├── semantic.min.js │ │ └── themes │ │ │ └── default │ │ │ └── assets │ │ │ ├── fonts │ │ │ ├── icons.eot │ │ │ ├── icons.otf │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ └── icons.woff2 │ │ │ └── images │ │ │ └── flags.png │ ├── socket │ │ ├── WebSocketMain.swf │ │ ├── swfobject.js │ │ └── websocket.js │ ├── template │ │ └── template.js │ ├── uploader │ │ ├── Uploader.swf │ │ ├── theme │ │ │ ├── bg.png │ │ │ ├── expressInstall.swf │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.png │ │ │ ├── upload.js │ │ │ └── uploader.css │ │ ├── webuploader.css │ │ ├── webuploader.js │ │ └── webuploader.min.js │ └── ztree │ │ ├── jquery.ztree.all.min.js │ │ └── zTreeStyle │ │ ├── img │ │ ├── diy │ │ │ ├── 1_close.png │ │ │ ├── 1_open.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── line_conn.gif │ │ ├── loading.gif │ │ ├── zTreeStandard.gif │ │ └── zTreeStandard.png │ │ └── zTreeStyle.css └── theme │ └── default │ ├── css │ ├── animate.css │ ├── console.css │ └── login.css │ └── img │ ├── 404_icon.png │ ├── 505_icon.png │ ├── cuci.png │ ├── cuci_favicon.ico │ ├── head.gif │ ├── icon.png │ ├── image.png │ ├── login │ ├── buttonbg.png │ ├── cloud.png │ ├── cloud_one.png │ ├── cloud_three.png │ ├── cloud_two.png │ ├── hand.png │ ├── left_hand.png │ ├── light.png │ ├── loginbg1.png │ ├── loginbg2.png │ ├── loginbg3.png │ ├── logininfo.png │ ├── loginpassword.png │ ├── loginuser.png │ ├── right_hand.png │ └── tou.png │ ├── paper.jpg │ ├── unsharp.jpg │ └── wechat │ ├── index.png │ ├── mobile_foot.png │ ├── mobile_head.png │ └── qrc_payed.jpg ├── tests ├── ExampleTest.php └── TestCase.php ├── think_api_admin.sql ├── think_api_admin_navicat.sql ├── think_api_admin_phpmyadmin.sql ├── think_api_admin_sqlyog.sql ├── thinkphp ├── .gitignore ├── .htaccess ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── base.php ├── codecov.yml ├── composer.json ├── console.php ├── convention.php ├── helper.php ├── lang │ └── zh-cn.php ├── library │ ├── think │ │ ├── App.php │ │ ├── Build.php │ │ ├── Cache.php │ │ ├── Collection.php │ │ ├── Config.php │ │ ├── Console.php │ │ ├── Controller.php │ │ ├── Cookie.php │ │ ├── Db.php │ │ ├── Debug.php │ │ ├── Env.php │ │ ├── Error.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── Hook.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Paginator.php │ │ ├── Process.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Route.php │ │ ├── Session.php │ │ ├── Template.php │ │ ├── Url.php │ │ ├── Validate.php │ │ ├── View.php │ │ ├── cache │ │ │ ├── Driver.php │ │ │ └── driver │ │ │ │ ├── File.php │ │ │ │ ├── Lite.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Wincache.php │ │ │ │ └── Xcache.php │ │ ├── config │ │ │ └── driver │ │ │ │ ├── Ini.php │ │ │ │ ├── Json.php │ │ │ │ └── Xml.php │ │ ├── console │ │ │ ├── Command.php │ │ │ ├── Input.php │ │ │ ├── LICENSE │ │ │ ├── Output.php │ │ │ ├── bin │ │ │ │ ├── README.md │ │ │ │ └── hiddeninput.exe │ │ │ ├── command │ │ │ │ ├── Build.php │ │ │ │ ├── Clear.php │ │ │ │ ├── Help.php │ │ │ │ ├── Lists.php │ │ │ │ ├── Make.php │ │ │ │ ├── make │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── Model.php │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ │ ├── controller.stub │ │ │ │ │ │ └── model.stub │ │ │ │ └── optimize │ │ │ │ │ ├── Autoload.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Route.php │ │ │ │ │ └── Schema.php │ │ │ ├── input │ │ │ │ ├── Argument.php │ │ │ │ ├── Definition.php │ │ │ │ └── Option.php │ │ │ └── output │ │ │ │ ├── Ask.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Question.php │ │ │ │ ├── descriptor │ │ │ │ └── Console.php │ │ │ │ ├── driver │ │ │ │ ├── Buffer.php │ │ │ │ ├── Console.php │ │ │ │ └── Nothing.php │ │ │ │ ├── formatter │ │ │ │ ├── Stack.php │ │ │ │ └── Style.php │ │ │ │ └── question │ │ │ │ ├── Choice.php │ │ │ │ └── Confirmation.php │ │ ├── controller │ │ │ ├── Rest.php │ │ │ └── Yar.php │ │ ├── db │ │ │ ├── Builder.php │ │ │ ├── Connection.php │ │ │ ├── Expression.php │ │ │ ├── Query.php │ │ │ ├── builder │ │ │ │ ├── Mysql.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ └── Sqlsrv.php │ │ │ ├── connector │ │ │ │ ├── Mysql.php │ │ │ │ ├── Pgsql.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Sqlsrv.php │ │ │ │ └── pgsql.sql │ │ │ └── exception │ │ │ │ ├── BindParamException.php │ │ │ │ ├── DataNotFoundException.php │ │ │ │ └── ModelNotFoundException.php │ │ ├── debug │ │ │ ├── Console.php │ │ │ └── Html.php │ │ ├── exception │ │ │ ├── ClassNotFoundException.php │ │ │ ├── DbException.php │ │ │ ├── ErrorException.php │ │ │ ├── Handle.php │ │ │ ├── HttpException.php │ │ │ ├── HttpResponseException.php │ │ │ ├── PDOException.php │ │ │ ├── RouteNotFoundException.php │ │ │ ├── TemplateNotFoundException.php │ │ │ ├── ThrowableError.php │ │ │ └── ValidateException.php │ │ ├── log │ │ │ └── driver │ │ │ │ ├── File.php │ │ │ │ ├── Socket.php │ │ │ │ └── Test.php │ │ ├── model │ │ │ ├── Collection.php │ │ │ ├── Merge.php │ │ │ ├── Pivot.php │ │ │ ├── Relation.php │ │ │ └── relation │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── MorphMany.php │ │ │ │ ├── MorphOne.php │ │ │ │ ├── MorphTo.php │ │ │ │ └── OneToOne.php │ │ ├── paginator │ │ │ └── driver │ │ │ │ └── Bootstrap.php │ │ ├── process │ │ │ ├── Builder.php │ │ │ ├── Utils.php │ │ │ ├── exception │ │ │ │ ├── Failed.php │ │ │ │ └── Timeout.php │ │ │ └── pipes │ │ │ │ ├── Pipes.php │ │ │ │ ├── Unix.php │ │ │ │ └── Windows.php │ │ ├── response │ │ │ ├── Json.php │ │ │ ├── Jsonp.php │ │ │ ├── Redirect.php │ │ │ ├── View.php │ │ │ └── Xml.php │ │ ├── session │ │ │ └── driver │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Redis.php │ │ ├── template │ │ │ ├── TagLib.php │ │ │ ├── driver │ │ │ │ └── File.php │ │ │ └── taglib │ │ │ │ └── Cx.php │ │ └── view │ │ │ └── driver │ │ │ ├── Php.php │ │ │ └── Think.php │ └── traits │ │ ├── controller │ │ └── Jump.php │ │ ├── model │ │ └── SoftDelete.php │ │ └── think │ │ └── Instance.php ├── logo.png ├── phpunit.xml ├── start.php └── tpl │ ├── default_index.tpl │ ├── dispatch_jump.tpl │ ├── page_trace.tpl │ └── think_exception.tpl └── vendor ├── aliyuncs └── oss-sdk-php │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README-CN.md │ ├── README.md │ ├── autoload.php │ ├── build-phar.sh │ ├── composer.json │ ├── example.jpg │ ├── index.php │ ├── phpunit.xml │ ├── samples │ ├── Bucket.php │ ├── BucketCors.php │ ├── BucketLifecycle.php │ ├── BucketLogging.php │ ├── BucketReferer.php │ ├── BucketWebsite.php │ ├── Callback.php │ ├── Common.php │ ├── Config.php │ ├── Image.php │ ├── LiveChannel.php │ ├── MultipartUpload.php │ ├── Object.php │ ├── RunAll.php │ └── Signature.php │ ├── src │ └── OSS │ │ ├── Core │ │ ├── MimeTypes.php │ │ ├── OssException.php │ │ └── OssUtil.php │ │ ├── Http │ │ ├── LICENSE │ │ ├── RequestCore.php │ │ ├── RequestCore_Exception.php │ │ └── ResponseCore.php │ │ ├── Model │ │ ├── BucketInfo.php │ │ ├── BucketListInfo.php │ │ ├── CnameConfig.php │ │ ├── CorsConfig.php │ │ ├── CorsRule.php │ │ ├── GetLiveChannelHistory.php │ │ ├── GetLiveChannelInfo.php │ │ ├── GetLiveChannelStatus.php │ │ ├── LifecycleAction.php │ │ ├── LifecycleConfig.php │ │ ├── LifecycleRule.php │ │ ├── ListMultipartUploadInfo.php │ │ ├── ListPartsInfo.php │ │ ├── LiveChannelConfig.php │ │ ├── LiveChannelHistory.php │ │ ├── LiveChannelInfo.php │ │ ├── LiveChannelListInfo.php │ │ ├── LoggingConfig.php │ │ ├── ObjectInfo.php │ │ ├── ObjectListInfo.php │ │ ├── PartInfo.php │ │ ├── PrefixInfo.php │ │ ├── RefererConfig.php │ │ ├── StorageCapacityConfig.php │ │ ├── UploadInfo.php │ │ ├── WebsiteConfig.php │ │ └── XmlConfig.php │ │ ├── OssClient.php │ │ └── Result │ │ ├── AclResult.php │ │ ├── AppendResult.php │ │ ├── BodyResult.php │ │ ├── CallbackResult.php │ │ ├── CopyObjectResult.php │ │ ├── DeleteObjectsResult.php │ │ ├── ExistResult.php │ │ ├── GetCnameResult.php │ │ ├── GetCorsResult.php │ │ ├── GetLifecycleResult.php │ │ ├── GetLiveChannelHistoryResult.php │ │ ├── GetLiveChannelInfoResult.php │ │ ├── GetLiveChannelStatusResult.php │ │ ├── GetLocationResult.php │ │ ├── GetLoggingResult.php │ │ ├── GetRefererResult.php │ │ ├── GetStorageCapacityResult.php │ │ ├── GetWebsiteResult.php │ │ ├── HeaderResult.php │ │ ├── InitiateMultipartUploadResult.php │ │ ├── ListBucketsResult.php │ │ ├── ListLiveChannelResult.php │ │ ├── ListMultipartUploadResult.php │ │ ├── ListObjectsResult.php │ │ ├── ListPartsResult.php │ │ ├── PutLiveChannelResult.php │ │ ├── PutSetDeleteResult.php │ │ ├── Result.php │ │ ├── SymlinkResult.php │ │ └── UploadPartResult.php │ └── tests │ └── OSS │ └── Tests │ ├── AclResultTest.php │ ├── BodyResultTest.php │ ├── BucketCnameTest.php │ ├── BucketInfoTest.php │ ├── BucketLiveChannelTest.php │ ├── CallbackTest.php │ ├── CnameConfigTest.php │ ├── Common.php │ ├── ContentTypeTest.php │ ├── CopyObjectResult.php │ ├── CorsConfigTest.php │ ├── ExistResultTest.php │ ├── GetCorsResultTest.php │ ├── GetLifecycleResultTest.php │ ├── GetLoggingResultTest.php │ ├── GetRefererResultTest.php │ ├── GetWebsiteResultTest.php │ ├── HeaderResultTest.php │ ├── HttpTest.php │ ├── InitiateMultipartUploadResultTest.php │ ├── LifecycleConfigTest.php │ ├── ListBucketsResultTest.php │ ├── ListMultipartUploadResultTest.php │ ├── ListObjectsResultTest.php │ ├── ListPartsResultTest.php │ ├── LiveChannelXmlTest.php │ ├── LoggingConfigTest.php │ ├── MimeTypesTest.php │ ├── ObjectAclTest.php │ ├── OssClientBucketCorsTest.php │ ├── OssClientBucketLifecycleTest.php │ ├── OssClientBucketLoggingTest.php │ ├── OssClientBucketRefererTest.php │ ├── OssClientBucketStorageCapacityTest.php │ ├── OssClientBucketTest.php │ ├── OssClientBucketWebsiteTest.php │ ├── OssClientImageTest.php │ ├── OssClientMultipartUploadTest.php │ ├── OssClientObjectTest.php │ ├── OssClientRestoreObjectTest.php │ ├── OssClientSignatureTest.php │ ├── OssClientTest.php │ ├── OssExceptionTest.php │ ├── OssUtilTest.php │ ├── PutSetDeleteResultTest.php │ ├── RefererConfigTest.php │ ├── StorageCapacityTest.php │ ├── SymlinkTest.php │ ├── TestOssClientBase.php │ ├── UploadPartResultTest.php │ └── WebsiteConfigTest.php ├── autoload.php ├── bin ├── phpunit └── phpunit.bat ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── doctrine └── instantiator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Doctrine │ └── Instantiator │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── UnexpectedValueException.php │ ├── Instantiator.php │ └── InstantiatorInterface.php ├── endroid ├── qr-code │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── data │ │ │ ├── qrv10_0.dat │ │ │ ├── qrv10_1.dat │ │ │ ├── qrv10_2.dat │ │ │ ├── qrv10_3.dat │ │ │ ├── qrv11_0.dat │ │ │ ├── qrv11_1.dat │ │ │ ├── qrv11_2.dat │ │ │ ├── qrv11_3.dat │ │ │ ├── qrv12_0.dat │ │ │ ├── qrv12_1.dat │ │ │ ├── qrv12_2.dat │ │ │ ├── qrv12_3.dat │ │ │ ├── qrv13_0.dat │ │ │ ├── qrv13_1.dat │ │ │ ├── qrv13_2.dat │ │ │ ├── qrv13_3.dat │ │ │ ├── qrv14_0.dat │ │ │ ├── qrv14_1.dat │ │ │ ├── qrv14_2.dat │ │ │ ├── qrv14_3.dat │ │ │ ├── qrv15_0.dat │ │ │ ├── qrv15_1.dat │ │ │ ├── qrv15_2.dat │ │ │ ├── qrv15_3.dat │ │ │ ├── qrv16_0.dat │ │ │ ├── qrv16_1.dat │ │ │ ├── qrv16_2.dat │ │ │ ├── qrv16_3.dat │ │ │ ├── qrv17_0.dat │ │ │ ├── qrv17_1.dat │ │ │ ├── qrv17_2.dat │ │ │ ├── qrv17_3.dat │ │ │ ├── qrv18_0.dat │ │ │ ├── qrv18_1.dat │ │ │ ├── qrv18_2.dat │ │ │ ├── qrv18_3.dat │ │ │ ├── qrv19_0.dat │ │ │ ├── qrv19_1.dat │ │ │ ├── qrv19_2.dat │ │ │ ├── qrv19_3.dat │ │ │ ├── qrv1_0.dat │ │ │ ├── qrv1_1.dat │ │ │ ├── qrv1_2.dat │ │ │ ├── qrv1_3.dat │ │ │ ├── qrv20_0.dat │ │ │ ├── qrv20_1.dat │ │ │ ├── qrv20_2.dat │ │ │ ├── qrv20_3.dat │ │ │ ├── qrv21_0.dat │ │ │ ├── qrv21_1.dat │ │ │ ├── qrv21_2.dat │ │ │ ├── qrv21_3.dat │ │ │ ├── qrv22_0.dat │ │ │ ├── qrv22_1.dat │ │ │ ├── qrv22_2.dat │ │ │ ├── qrv22_3.dat │ │ │ ├── qrv23_0.dat │ │ │ ├── qrv23_1.dat │ │ │ ├── qrv23_2.dat │ │ │ ├── qrv23_3.dat │ │ │ ├── qrv24_0.dat │ │ │ ├── qrv24_1.dat │ │ │ ├── qrv24_2.dat │ │ │ ├── qrv24_3.dat │ │ │ ├── qrv25_0.dat │ │ │ ├── qrv25_1.dat │ │ │ ├── qrv25_2.dat │ │ │ ├── qrv25_3.dat │ │ │ ├── qrv26_0.dat │ │ │ ├── qrv26_1.dat │ │ │ ├── qrv26_2.dat │ │ │ ├── qrv26_3.dat │ │ │ ├── qrv27_0.dat │ │ │ ├── qrv27_1.dat │ │ │ ├── qrv27_2.dat │ │ │ ├── qrv27_3.dat │ │ │ ├── qrv28_0.dat │ │ │ ├── qrv28_1.dat │ │ │ ├── qrv28_2.dat │ │ │ ├── qrv28_3.dat │ │ │ ├── qrv29_0.dat │ │ │ ├── qrv29_1.dat │ │ │ ├── qrv29_2.dat │ │ │ ├── qrv29_3.dat │ │ │ ├── qrv2_0.dat │ │ │ ├── qrv2_1.dat │ │ │ ├── qrv2_2.dat │ │ │ ├── qrv2_3.dat │ │ │ ├── qrv30_0.dat │ │ │ ├── qrv30_1.dat │ │ │ ├── qrv30_2.dat │ │ │ ├── qrv30_3.dat │ │ │ ├── qrv31_0.dat │ │ │ ├── qrv31_1.dat │ │ │ ├── qrv31_2.dat │ │ │ ├── qrv31_3.dat │ │ │ ├── qrv32_0.dat │ │ │ ├── qrv32_1.dat │ │ │ ├── qrv32_2.dat │ │ │ ├── qrv32_3.dat │ │ │ ├── qrv33_0.dat │ │ │ ├── qrv33_1.dat │ │ │ ├── qrv33_2.dat │ │ │ ├── qrv33_3.dat │ │ │ ├── qrv34_0.dat │ │ │ ├── qrv34_1.dat │ │ │ ├── qrv34_2.dat │ │ │ ├── qrv34_3.dat │ │ │ ├── qrv35_0.dat │ │ │ ├── qrv35_1.dat │ │ │ ├── qrv35_2.dat │ │ │ ├── qrv35_3.dat │ │ │ ├── qrv36_0.dat │ │ │ ├── qrv36_1.dat │ │ │ ├── qrv36_2.dat │ │ │ ├── qrv36_3.dat │ │ │ ├── qrv37_0.dat │ │ │ ├── qrv37_1.dat │ │ │ ├── qrv37_2.dat │ │ │ ├── qrv37_3.dat │ │ │ ├── qrv38_0.dat │ │ │ ├── qrv38_1.dat │ │ │ ├── qrv38_2.dat │ │ │ ├── qrv38_3.dat │ │ │ ├── qrv39_0.dat │ │ │ ├── qrv39_1.dat │ │ │ ├── qrv39_2.dat │ │ │ ├── qrv39_3.dat │ │ │ ├── qrv3_0.dat │ │ │ ├── qrv3_1.dat │ │ │ ├── qrv3_2.dat │ │ │ ├── qrv3_3.dat │ │ │ ├── qrv40_0.dat │ │ │ ├── qrv40_1.dat │ │ │ ├── qrv40_2.dat │ │ │ ├── qrv40_3.dat │ │ │ ├── qrv4_0.dat │ │ │ ├── qrv4_1.dat │ │ │ ├── qrv4_2.dat │ │ │ ├── qrv4_3.dat │ │ │ ├── qrv5_0.dat │ │ │ ├── qrv5_1.dat │ │ │ ├── qrv5_2.dat │ │ │ ├── qrv5_3.dat │ │ │ ├── qrv6_0.dat │ │ │ ├── qrv6_1.dat │ │ │ ├── qrv6_2.dat │ │ │ ├── qrv6_3.dat │ │ │ ├── qrv7_0.dat │ │ │ ├── qrv7_1.dat │ │ │ ├── qrv7_2.dat │ │ │ ├── qrv7_3.dat │ │ │ ├── qrv8_0.dat │ │ │ ├── qrv8_1.dat │ │ │ ├── qrv8_2.dat │ │ │ ├── qrv8_3.dat │ │ │ ├── qrv9_0.dat │ │ │ ├── qrv9_1.dat │ │ │ ├── qrv9_2.dat │ │ │ ├── qrv9_3.dat │ │ │ ├── qrvfr1.dat │ │ │ ├── qrvfr10.dat │ │ │ ├── qrvfr11.dat │ │ │ ├── qrvfr12.dat │ │ │ ├── qrvfr13.dat │ │ │ ├── qrvfr14.dat │ │ │ ├── qrvfr15.dat │ │ │ ├── qrvfr16.dat │ │ │ ├── qrvfr17.dat │ │ │ ├── qrvfr18.dat │ │ │ ├── qrvfr19.dat │ │ │ ├── qrvfr2.dat │ │ │ ├── qrvfr20.dat │ │ │ ├── qrvfr21.dat │ │ │ ├── qrvfr22.dat │ │ │ ├── qrvfr23.dat │ │ │ ├── qrvfr24.dat │ │ │ ├── qrvfr25.dat │ │ │ ├── qrvfr26.dat │ │ │ ├── qrvfr27.dat │ │ │ ├── qrvfr28.dat │ │ │ ├── qrvfr29.dat │ │ │ ├── qrvfr3.dat │ │ │ ├── qrvfr30.dat │ │ │ ├── qrvfr31.dat │ │ │ ├── qrvfr32.dat │ │ │ ├── qrvfr33.dat │ │ │ ├── qrvfr34.dat │ │ │ ├── qrvfr35.dat │ │ │ ├── qrvfr36.dat │ │ │ ├── qrvfr37.dat │ │ │ ├── qrvfr38.dat │ │ │ ├── qrvfr39.dat │ │ │ ├── qrvfr4.dat │ │ │ ├── qrvfr40.dat │ │ │ ├── qrvfr5.dat │ │ │ ├── qrvfr6.dat │ │ │ ├── qrvfr7.dat │ │ │ ├── qrvfr8.dat │ │ │ ├── qrvfr9.dat │ │ │ ├── rsc10.dat │ │ │ ├── rsc13.dat │ │ │ ├── rsc15.dat │ │ │ ├── rsc16.dat │ │ │ ├── rsc17.dat │ │ │ ├── rsc18.dat │ │ │ ├── rsc20.dat │ │ │ ├── rsc22.dat │ │ │ ├── rsc24.dat │ │ │ ├── rsc26.dat │ │ │ ├── rsc28.dat │ │ │ ├── rsc30.dat │ │ │ ├── rsc32.dat │ │ │ ├── rsc34.dat │ │ │ ├── rsc36.dat │ │ │ ├── rsc40.dat │ │ │ ├── rsc42.dat │ │ │ ├── rsc44.dat │ │ │ ├── rsc46.dat │ │ │ ├── rsc48.dat │ │ │ ├── rsc50.dat │ │ │ ├── rsc52.dat │ │ │ ├── rsc54.dat │ │ │ ├── rsc56.dat │ │ │ ├── rsc58.dat │ │ │ ├── rsc60.dat │ │ │ ├── rsc62.dat │ │ │ ├── rsc64.dat │ │ │ ├── rsc66.dat │ │ │ ├── rsc68.dat │ │ │ └── rsc7.dat │ │ ├── font │ │ │ └── opensans.ttf │ │ └── image │ │ │ ├── b.png │ │ │ ├── d.png │ │ │ ├── logo.png │ │ │ ├── qrv1.png │ │ │ ├── qrv10.png │ │ │ ├── qrv11.png │ │ │ ├── qrv12.png │ │ │ ├── qrv13.png │ │ │ ├── qrv14.png │ │ │ ├── qrv15.png │ │ │ ├── qrv16.png │ │ │ ├── qrv17.png │ │ │ ├── qrv18.png │ │ │ ├── qrv19.png │ │ │ ├── qrv2.png │ │ │ ├── qrv20.png │ │ │ ├── qrv21.png │ │ │ ├── qrv22.png │ │ │ ├── qrv23.png │ │ │ ├── qrv24.png │ │ │ ├── qrv25.png │ │ │ ├── qrv26.png │ │ │ ├── qrv27.png │ │ │ ├── qrv28.png │ │ │ ├── qrv29.png │ │ │ ├── qrv3.png │ │ │ ├── qrv30.png │ │ │ ├── qrv31.png │ │ │ ├── qrv32.png │ │ │ ├── qrv33.png │ │ │ ├── qrv34.png │ │ │ ├── qrv35.png │ │ │ ├── qrv36.png │ │ │ ├── qrv37.png │ │ │ ├── qrv38.png │ │ │ ├── qrv39.png │ │ │ ├── qrv4.png │ │ │ ├── qrv40.png │ │ │ ├── qrv5.png │ │ │ ├── qrv6.png │ │ │ ├── qrv7.png │ │ │ ├── qrv8.png │ │ │ └── qrv9.png │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Bundle │ │ │ ├── Controller │ │ │ │ └── QrCodeController.php │ │ │ ├── DependencyInjection │ │ │ │ ├── Configuration.php │ │ │ │ └── EndroidQrCodeExtension.php │ │ │ ├── EndroidQrCodeBundle.php │ │ │ ├── Resources │ │ │ │ └── config │ │ │ │ │ └── services.yml │ │ │ └── Twig │ │ │ │ └── Extension │ │ │ │ └── QrCodeExtension.php │ │ ├── Exceptions │ │ │ ├── DataDoesntExistsException.php │ │ │ ├── FreeTypeLibraryMissingException.php │ │ │ ├── ImageFunctionFailedException.php │ │ │ ├── ImageFunctionUnknownException.php │ │ │ ├── ImageSizeTooLargeException.php │ │ │ ├── ImageTypeInvalidException.php │ │ │ └── VersionTooLargeException.php │ │ ├── Factory │ │ │ └── QrCodeFactory.php │ │ └── QrCode.php │ └── tests │ │ ├── Bundle │ │ ├── Controller │ │ │ └── QrCodeControllerTest.php │ │ ├── EndroidQrCodeBundleTest.php │ │ └── app │ │ │ ├── .gitignore │ │ │ ├── AppKernel.php │ │ │ ├── bootstrap.php │ │ │ └── config │ │ │ ├── config.yml │ │ │ └── routing.yml │ │ └── QrCodeTest.php └── qrcode │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── assets │ ├── data │ │ ├── qrv10_0.dat │ │ ├── qrv10_1.dat │ │ ├── qrv10_2.dat │ │ ├── qrv10_3.dat │ │ ├── qrv11_0.dat │ │ ├── qrv11_1.dat │ │ ├── qrv11_2.dat │ │ ├── qrv11_3.dat │ │ ├── qrv12_0.dat │ │ ├── qrv12_1.dat │ │ ├── qrv12_2.dat │ │ ├── qrv12_3.dat │ │ ├── qrv13_0.dat │ │ ├── qrv13_1.dat │ │ ├── qrv13_2.dat │ │ ├── qrv13_3.dat │ │ ├── qrv14_0.dat │ │ ├── qrv14_1.dat │ │ ├── qrv14_2.dat │ │ ├── qrv14_3.dat │ │ ├── qrv15_0.dat │ │ ├── qrv15_1.dat │ │ ├── qrv15_2.dat │ │ ├── qrv15_3.dat │ │ ├── qrv16_0.dat │ │ ├── qrv16_1.dat │ │ ├── qrv16_2.dat │ │ ├── qrv16_3.dat │ │ ├── qrv17_0.dat │ │ ├── qrv17_1.dat │ │ ├── qrv17_2.dat │ │ ├── qrv17_3.dat │ │ ├── qrv18_0.dat │ │ ├── qrv18_1.dat │ │ ├── qrv18_2.dat │ │ ├── qrv18_3.dat │ │ ├── qrv19_0.dat │ │ ├── qrv19_1.dat │ │ ├── qrv19_2.dat │ │ ├── qrv19_3.dat │ │ ├── qrv1_0.dat │ │ ├── qrv1_1.dat │ │ ├── qrv1_2.dat │ │ ├── qrv1_3.dat │ │ ├── qrv20_0.dat │ │ ├── qrv20_1.dat │ │ ├── qrv20_2.dat │ │ ├── qrv20_3.dat │ │ ├── qrv21_0.dat │ │ ├── qrv21_1.dat │ │ ├── qrv21_2.dat │ │ ├── qrv21_3.dat │ │ ├── qrv22_0.dat │ │ ├── qrv22_1.dat │ │ ├── qrv22_2.dat │ │ ├── qrv22_3.dat │ │ ├── qrv23_0.dat │ │ ├── qrv23_1.dat │ │ ├── qrv23_2.dat │ │ ├── qrv23_3.dat │ │ ├── qrv24_0.dat │ │ ├── qrv24_1.dat │ │ ├── qrv24_2.dat │ │ ├── qrv24_3.dat │ │ ├── qrv25_0.dat │ │ ├── qrv25_1.dat │ │ ├── qrv25_2.dat │ │ ├── qrv25_3.dat │ │ ├── qrv26_0.dat │ │ ├── qrv26_1.dat │ │ ├── qrv26_2.dat │ │ ├── qrv26_3.dat │ │ ├── qrv27_0.dat │ │ ├── qrv27_1.dat │ │ ├── qrv27_2.dat │ │ ├── qrv27_3.dat │ │ ├── qrv28_0.dat │ │ ├── qrv28_1.dat │ │ ├── qrv28_2.dat │ │ ├── qrv28_3.dat │ │ ├── qrv29_0.dat │ │ ├── qrv29_1.dat │ │ ├── qrv29_2.dat │ │ ├── qrv29_3.dat │ │ ├── qrv2_0.dat │ │ ├── qrv2_1.dat │ │ ├── qrv2_2.dat │ │ ├── qrv2_3.dat │ │ ├── qrv30_0.dat │ │ ├── qrv30_1.dat │ │ ├── qrv30_2.dat │ │ ├── qrv30_3.dat │ │ ├── qrv31_0.dat │ │ ├── qrv31_1.dat │ │ ├── qrv31_2.dat │ │ ├── qrv31_3.dat │ │ ├── qrv32_0.dat │ │ ├── qrv32_1.dat │ │ ├── qrv32_2.dat │ │ ├── qrv32_3.dat │ │ ├── qrv33_0.dat │ │ ├── qrv33_1.dat │ │ ├── qrv33_2.dat │ │ ├── qrv33_3.dat │ │ ├── qrv34_0.dat │ │ ├── qrv34_1.dat │ │ ├── qrv34_2.dat │ │ ├── qrv34_3.dat │ │ ├── qrv35_0.dat │ │ ├── qrv35_1.dat │ │ ├── qrv35_2.dat │ │ ├── qrv35_3.dat │ │ ├── qrv36_0.dat │ │ ├── qrv36_1.dat │ │ ├── qrv36_2.dat │ │ ├── qrv36_3.dat │ │ ├── qrv37_0.dat │ │ ├── qrv37_1.dat │ │ ├── qrv37_2.dat │ │ ├── qrv37_3.dat │ │ ├── qrv38_0.dat │ │ ├── qrv38_1.dat │ │ ├── qrv38_2.dat │ │ ├── qrv38_3.dat │ │ ├── qrv39_0.dat │ │ ├── qrv39_1.dat │ │ ├── qrv39_2.dat │ │ ├── qrv39_3.dat │ │ ├── qrv3_0.dat │ │ ├── qrv3_1.dat │ │ ├── qrv3_2.dat │ │ ├── qrv3_3.dat │ │ ├── qrv40_0.dat │ │ ├── qrv40_1.dat │ │ ├── qrv40_2.dat │ │ ├── qrv40_3.dat │ │ ├── qrv4_0.dat │ │ ├── qrv4_1.dat │ │ ├── qrv4_2.dat │ │ ├── qrv4_3.dat │ │ ├── qrv5_0.dat │ │ ├── qrv5_1.dat │ │ ├── qrv5_2.dat │ │ ├── qrv5_3.dat │ │ ├── qrv6_0.dat │ │ ├── qrv6_1.dat │ │ ├── qrv6_2.dat │ │ ├── qrv6_3.dat │ │ ├── qrv7_0.dat │ │ ├── qrv7_1.dat │ │ ├── qrv7_2.dat │ │ ├── qrv7_3.dat │ │ ├── qrv8_0.dat │ │ ├── qrv8_1.dat │ │ ├── qrv8_2.dat │ │ ├── qrv8_3.dat │ │ ├── qrv9_0.dat │ │ ├── qrv9_1.dat │ │ ├── qrv9_2.dat │ │ ├── qrv9_3.dat │ │ ├── qrvfr1.dat │ │ ├── qrvfr10.dat │ │ ├── qrvfr11.dat │ │ ├── qrvfr12.dat │ │ ├── qrvfr13.dat │ │ ├── qrvfr14.dat │ │ ├── qrvfr15.dat │ │ ├── qrvfr16.dat │ │ ├── qrvfr17.dat │ │ ├── qrvfr18.dat │ │ ├── qrvfr19.dat │ │ ├── qrvfr2.dat │ │ ├── qrvfr20.dat │ │ ├── qrvfr21.dat │ │ ├── qrvfr22.dat │ │ ├── qrvfr23.dat │ │ ├── qrvfr24.dat │ │ ├── qrvfr25.dat │ │ ├── qrvfr26.dat │ │ ├── qrvfr27.dat │ │ ├── qrvfr28.dat │ │ ├── qrvfr29.dat │ │ ├── qrvfr3.dat │ │ ├── qrvfr30.dat │ │ ├── qrvfr31.dat │ │ ├── qrvfr32.dat │ │ ├── qrvfr33.dat │ │ ├── qrvfr34.dat │ │ ├── qrvfr35.dat │ │ ├── qrvfr36.dat │ │ ├── qrvfr37.dat │ │ ├── qrvfr38.dat │ │ ├── qrvfr39.dat │ │ ├── qrvfr4.dat │ │ ├── qrvfr40.dat │ │ ├── qrvfr5.dat │ │ ├── qrvfr6.dat │ │ ├── qrvfr7.dat │ │ ├── qrvfr8.dat │ │ ├── qrvfr9.dat │ │ ├── rsc10.dat │ │ ├── rsc13.dat │ │ ├── rsc15.dat │ │ ├── rsc16.dat │ │ ├── rsc17.dat │ │ ├── rsc18.dat │ │ ├── rsc20.dat │ │ ├── rsc22.dat │ │ ├── rsc24.dat │ │ ├── rsc26.dat │ │ ├── rsc28.dat │ │ ├── rsc30.dat │ │ ├── rsc32.dat │ │ ├── rsc34.dat │ │ ├── rsc36.dat │ │ ├── rsc40.dat │ │ ├── rsc42.dat │ │ ├── rsc44.dat │ │ ├── rsc46.dat │ │ ├── rsc48.dat │ │ ├── rsc50.dat │ │ ├── rsc52.dat │ │ ├── rsc54.dat │ │ ├── rsc56.dat │ │ ├── rsc58.dat │ │ ├── rsc60.dat │ │ ├── rsc62.dat │ │ ├── rsc64.dat │ │ ├── rsc66.dat │ │ ├── rsc68.dat │ │ └── rsc7.dat │ ├── font │ │ └── opensans.ttf │ └── image │ │ ├── b.png │ │ ├── d.png │ │ ├── logo.png │ │ ├── qrv1.png │ │ ├── qrv10.png │ │ ├── qrv11.png │ │ ├── qrv12.png │ │ ├── qrv13.png │ │ ├── qrv14.png │ │ ├── qrv15.png │ │ ├── qrv16.png │ │ ├── qrv17.png │ │ ├── qrv18.png │ │ ├── qrv19.png │ │ ├── qrv2.png │ │ ├── qrv20.png │ │ ├── qrv21.png │ │ ├── qrv22.png │ │ ├── qrv23.png │ │ ├── qrv24.png │ │ ├── qrv25.png │ │ ├── qrv26.png │ │ ├── qrv27.png │ │ ├── qrv28.png │ │ ├── qrv29.png │ │ ├── qrv3.png │ │ ├── qrv30.png │ │ ├── qrv31.png │ │ ├── qrv32.png │ │ ├── qrv33.png │ │ ├── qrv34.png │ │ ├── qrv35.png │ │ ├── qrv36.png │ │ ├── qrv37.png │ │ ├── qrv38.png │ │ ├── qrv39.png │ │ ├── qrv4.png │ │ ├── qrv40.png │ │ ├── qrv5.png │ │ ├── qrv6.png │ │ ├── qrv7.png │ │ ├── qrv8.png │ │ └── qrv9.png │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ ├── Bundle │ │ ├── Controller │ │ │ └── QrCodeController.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── EndroidQrCodeExtension.php │ │ ├── EndroidQrCodeBundle.php │ │ ├── Resources │ │ │ └── config │ │ │ │ └── services.yml │ │ └── Twig │ │ │ └── Extension │ │ │ └── QrCodeExtension.php │ ├── Exceptions │ │ ├── DataDoesntExistsException.php │ │ ├── FreeTypeLibraryMissingException.php │ │ ├── ImageFunctionFailedException.php │ │ ├── ImageFunctionUnknownException.php │ │ ├── ImageSizeTooLargeException.php │ │ ├── ImageTypeInvalidException.php │ │ └── VersionTooLargeException.php │ ├── Factory │ │ └── QrCodeFactory.php │ └── QrCode.php │ └── tests │ ├── Bundle │ ├── Controller │ │ └── QrCodeControllerTest.php │ ├── EndroidQrCodeBundleTest.php │ └── app │ │ ├── .gitignore │ │ ├── AppKernel.php │ │ ├── bootstrap.php │ │ └── config │ │ ├── config.yml │ │ └── routing.yml │ └── QrCodeTest.php ├── flc └── dysms │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ ├── Client.php │ ├── Helper.php │ └── Request │ │ ├── ARequest.php │ │ ├── IRequest.php │ │ └── SendSms.php │ └── tests │ └── index.php ├── monolog └── monolog │ ├── .php_cs │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── 01-usage.md │ ├── 02-handlers-formatters-processors.md │ ├── 03-utilities.md │ ├── 04-extending.md │ └── sockets.md │ ├── phpunit.xml.dist │ ├── src │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SlackbotHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.php │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.php │ ├── FluentdFormatterTest.php │ ├── GelfMessageFormatterTest.php │ ├── JsonFormatterTest.php │ ├── LineFormatterTest.php │ ├── LogglyFormatterTest.php │ ├── LogstashFormatterTest.php │ ├── MongoDBFormatterTest.php │ ├── NormalizerFormatterTest.php │ ├── ScalarFormatterTest.php │ └── WildfireFormatterTest.php │ ├── Handler │ ├── AbstractHandlerTest.php │ ├── AbstractProcessingHandlerTest.php │ ├── AmqpHandlerTest.php │ ├── BrowserConsoleHandlerTest.php │ ├── BufferHandlerTest.php │ ├── ChromePHPHandlerTest.php │ ├── CouchDBHandlerTest.php │ ├── DeduplicationHandlerTest.php │ ├── DoctrineCouchDBHandlerTest.php │ ├── DynamoDbHandlerTest.php │ ├── ElasticSearchHandlerTest.php │ ├── ErrorLogHandlerTest.php │ ├── FilterHandlerTest.php │ ├── FingersCrossedHandlerTest.php │ ├── FirePHPHandlerTest.php │ ├── Fixtures │ │ └── .gitkeep │ ├── FleepHookHandlerTest.php │ ├── FlowdockHandlerTest.php │ ├── GelfHandlerLegacyTest.php │ ├── GelfHandlerTest.php │ ├── GelfMockMessagePublisher.php │ ├── GroupHandlerTest.php │ ├── HandlerWrapperTest.php │ ├── HipChatHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PHPConsoleHandlerTest.php │ ├── PsrHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RollbarHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SamplingHandlerTest.php │ ├── Slack │ │ └── SlackRecordTest.php │ ├── SlackHandlerTest.php │ ├── SlackWebhookHandlerTest.php │ ├── SlackbotHandlerTest.php │ ├── SocketHandlerTest.php │ ├── StreamHandlerTest.php │ ├── SwiftMailerHandlerTest.php │ ├── SyslogHandlerTest.php │ ├── SyslogUdpHandlerTest.php │ ├── TestHandlerTest.php │ ├── UdpSocketTest.php │ ├── WhatFailureGroupHandlerTest.php │ └── ZendMonitorHandlerTest.php │ ├── LoggerTest.php │ ├── Processor │ ├── GitProcessorTest.php │ ├── IntrospectionProcessorTest.php │ ├── MemoryPeakUsageProcessorTest.php │ ├── MemoryUsageProcessorTest.php │ ├── MercurialProcessorTest.php │ ├── ProcessIdProcessorTest.php │ ├── PsrLogMessageProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ ├── RegistryTest.php │ └── TestCase.php ├── phpdocumentor ├── reflection-common │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php ├── reflection-docblock │ ├── .coveralls.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── easy-coding-standard.neon │ └── src │ │ ├── DocBlock.php │ │ ├── DocBlock │ │ ├── Description.php │ │ ├── DescriptionFactory.php │ │ ├── ExampleFinder.php │ │ ├── Serializer.php │ │ ├── StandardTagFactory.php │ │ ├── Tag.php │ │ ├── TagFactory.php │ │ └── Tags │ │ │ ├── Author.php │ │ │ ├── BaseTag.php │ │ │ ├── Covers.php │ │ │ ├── Deprecated.php │ │ │ ├── Example.php │ │ │ ├── Factory │ │ │ ├── StaticMethod.php │ │ │ └── Strategy.php │ │ │ ├── Formatter.php │ │ │ ├── Formatter │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ │ ├── Generic.php │ │ │ ├── Link.php │ │ │ ├── Method.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── PropertyRead.php │ │ │ ├── PropertyWrite.php │ │ │ ├── Reference │ │ │ ├── Fqsen.php │ │ │ ├── Reference.php │ │ │ └── Url.php │ │ │ ├── Return_.php │ │ │ ├── See.php │ │ │ ├── Since.php │ │ │ ├── Source.php │ │ │ ├── Throws.php │ │ │ ├── Uses.php │ │ │ ├── Var_.php │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php └── type-resolver │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ ├── Array_.php │ ├── Boolean.php │ ├── Callable_.php │ ├── Compound.php │ ├── Context.php │ ├── ContextFactory.php │ ├── Float_.php │ ├── Integer.php │ ├── Iterable_.php │ ├── Mixed_.php │ ├── Null_.php │ ├── Nullable.php │ ├── Object_.php │ ├── Parent_.php │ ├── Resource_.php │ ├── Scalar.php │ ├── Self_.php │ ├── Static_.php │ ├── String_.php │ ├── This.php │ └── Void_.php ├── phpoffice ├── phpexcel │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Classes │ │ ├── PHPExcel.php │ │ └── PHPExcel │ │ │ ├── Autoloader.php │ │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ │ ├── CachedObjectStorageFactory.php │ │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ │ ├── Calculation.php │ │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ │ ├── Cell.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── Axis.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ │ ├── Comment.php │ │ │ ├── DocumentProperties.php │ │ │ ├── DocumentSecurity.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── Helper │ │ │ └── HTML.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText.php │ │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ │ ├── Worksheet.php │ │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ │ ├── WorksheetIterator.php │ │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── OpenDocument.php │ │ │ ├── OpenDocument │ │ │ │ ├── Cell │ │ │ │ │ └── Comment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Meta.php │ │ │ │ ├── MetaInf.php │ │ │ │ ├── Mimetype.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Thumbnails.php │ │ │ │ └── WriterPart.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ ├── Examples │ │ ├── .gitignore │ │ ├── 01pharSimple.php │ │ ├── 01simple-download-ods.php │ │ ├── 01simple-download-pdf.php │ │ ├── 01simple-download-xls.php │ │ ├── 01simple-download-xlsx.php │ │ ├── 01simple.php │ │ ├── 01simplePCLZip.php │ │ ├── 02types-xls.php │ │ ├── 02types.php │ │ ├── 03formulas.php │ │ ├── 04printing.php │ │ ├── 05featuredemo.inc.php │ │ ├── 05featuredemo.php │ │ ├── 06largescale-with-cellcaching-sqlite.php │ │ ├── 06largescale-with-cellcaching-sqlite3.php │ │ ├── 06largescale-with-cellcaching.php │ │ ├── 06largescale-xls.php │ │ ├── 06largescale.php │ │ ├── 07reader.php │ │ ├── 07readerPCLZip.php │ │ ├── 08conditionalformatting.php │ │ ├── 08conditionalformatting2.php │ │ ├── 09pagebreaks.php │ │ ├── 10autofilter-selection-1.php │ │ ├── 10autofilter-selection-2.php │ │ ├── 10autofilter-selection-display.php │ │ ├── 10autofilter.php │ │ ├── 11documentsecurity-xls.php │ │ ├── 11documentsecurity.php │ │ ├── 12cellProtection.php │ │ ├── 13calculation.php │ │ ├── 14excel5.php │ │ ├── 15datavalidation-xls.php │ │ ├── 15datavalidation.php │ │ ├── 16csv.php │ │ ├── 17html.php │ │ ├── 18extendedcalculation.php │ │ ├── 19namedrange.php │ │ ├── 20readexcel5.php │ │ ├── 21pdf.php │ │ ├── 22heavilyformatted.php │ │ ├── 23sharedstyles.php │ │ ├── 24readfilter.php │ │ ├── 25inmemoryimage.php │ │ ├── 26utf8.php │ │ ├── 27imagesexcel5.php │ │ ├── 28iterator.php │ │ ├── 29advancedvaluebinder.php │ │ ├── 30template.php │ │ ├── 31docproperties_write-xls.php │ │ ├── 31docproperties_write.php │ │ ├── 32chartreadwrite.php │ │ ├── 33chartcreate-area.php │ │ ├── 33chartcreate-bar-stacked.php │ │ ├── 33chartcreate-bar.php │ │ ├── 33chartcreate-column-2.php │ │ ├── 33chartcreate-column.php │ │ ├── 33chartcreate-composite.php │ │ ├── 33chartcreate-line.php │ │ ├── 33chartcreate-multiple-charts.php │ │ ├── 33chartcreate-pie.php │ │ ├── 33chartcreate-radar.php │ │ ├── 33chartcreate-scatter.php │ │ ├── 33chartcreate-stock.php │ │ ├── 34chartupdate.php │ │ ├── 35chartrender.php │ │ ├── 36chartreadwriteHTML.php │ │ ├── 36chartreadwritePDF.php │ │ ├── 37page_layout_view.php │ │ ├── 38cloneWorksheet.php │ │ ├── 39dropdown.php │ │ ├── 40duplicateStyle.php │ │ ├── 41password.php │ │ ├── 42richText.php │ │ ├── Excel2003XMLReader.php │ │ ├── Excel2003XMLTest.xml │ │ ├── GnumericReader.php │ │ ├── GnumericTest.gnumeric │ │ ├── OOCalcReader.php │ │ ├── OOCalcReaderPCLZip.php │ │ ├── OOCalcTest.ods │ │ ├── Quadratic.php │ │ ├── Quadratic2.php │ │ ├── SylkReader.php │ │ ├── SylkTest.slk │ │ ├── XMLReader.php │ │ ├── XMLTest.xml │ │ ├── data │ │ │ └── continents │ │ │ │ ├── Africa.txt │ │ │ │ ├── Asia.txt │ │ │ │ ├── Europe.txt │ │ │ │ ├── North America.txt │ │ │ │ ├── Oceania.txt │ │ │ │ └── South America.txt │ │ ├── images │ │ │ ├── officelogo.jpg │ │ │ ├── paid.png │ │ │ ├── phpexcel_logo.gif │ │ │ └── termsconditions.jpg │ │ └── runall.php │ ├── changelog.txt │ ├── composer.json │ ├── install.txt │ ├── license.md │ └── unitTests │ │ ├── Classes │ │ └── PHPExcel │ │ │ ├── AutoloaderTest.php │ │ │ ├── Calculation │ │ │ ├── DateTimeTest.php │ │ │ ├── EngineeringTest.php │ │ │ ├── FinancialTest.php │ │ │ ├── FunctionsTest.php │ │ │ ├── LogicalTest.php │ │ │ ├── LookupRefTest.php │ │ │ ├── MathTrigTest.php │ │ │ └── TextDataTest.php │ │ │ ├── CalculationTest.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinderTest.php │ │ │ ├── DataTypeTest.php │ │ │ ├── DefaultValueBinderTest.php │ │ │ └── HyperlinkTest.php │ │ │ ├── CellTest.php │ │ │ ├── Chart │ │ │ ├── DataSeriesValuesTest.php │ │ │ ├── LayoutTest.php │ │ │ └── LegendTest.php │ │ │ ├── Reader │ │ │ └── XEEValidatorTest.php │ │ │ ├── ReferenceHelperTest.php │ │ │ ├── Shared │ │ │ ├── CodePageTest.php │ │ │ ├── DateTest.php │ │ │ ├── FileTest.php │ │ │ ├── FontTest.php │ │ │ ├── PasswordHasherTest.php │ │ │ ├── StringTest.php │ │ │ └── TimeZoneTest.php │ │ │ ├── Style │ │ │ ├── ColorTest.php │ │ │ └── NumberFormatTest.php │ │ │ └── Worksheet │ │ │ ├── AutoFilter │ │ │ ├── Column │ │ │ │ └── RuleTest.php │ │ │ └── ColumnTest.php │ │ │ ├── AutoFilterTest.php │ │ │ ├── CellCollectionTest.php │ │ │ ├── ColumnCellIteratorTest.php │ │ │ ├── ColumnIteratorTest.php │ │ │ ├── RowCellIteratorTest.php │ │ │ ├── RowIteratorTest.php │ │ │ ├── WorksheetColumnTest.php │ │ │ └── WorksheetRowTest.php │ │ ├── bootstrap.php │ │ ├── custom │ │ ├── Complex.php │ │ └── complexAssert.php │ │ ├── phpunit-cc.xml │ │ ├── phpunit.xml │ │ ├── rawTestData │ │ ├── Calculation │ │ │ ├── DateTime │ │ │ │ ├── DATE.data │ │ │ │ ├── DATEDIF.data │ │ │ │ ├── DATEVALUE.data │ │ │ │ ├── DAY.data │ │ │ │ ├── DAYS360.data │ │ │ │ ├── EDATE.data │ │ │ │ ├── EOMONTH.data │ │ │ │ ├── HOUR.data │ │ │ │ ├── MINUTE.data │ │ │ │ ├── MONTH.data │ │ │ │ ├── NETWORKDAYS.data │ │ │ │ ├── SECOND.data │ │ │ │ ├── TIME.data │ │ │ │ ├── TIMEVALUE.data │ │ │ │ ├── WEEKDAY.data │ │ │ │ ├── WEEKNUM.data │ │ │ │ ├── WORKDAY.data │ │ │ │ ├── YEAR.data │ │ │ │ └── YEARFRAC.data │ │ │ ├── Engineering │ │ │ │ ├── BESSELI.data │ │ │ │ ├── BESSELJ.data │ │ │ │ ├── BESSELK.data │ │ │ │ ├── BESSELY.data │ │ │ │ ├── BIN2DEC.data │ │ │ │ ├── BIN2HEX.data │ │ │ │ ├── BIN2OCT.data │ │ │ │ ├── COMPLEX.data │ │ │ │ ├── CONVERTUOM.data │ │ │ │ ├── DEC2BIN.data │ │ │ │ ├── DEC2HEX.data │ │ │ │ ├── DEC2OCT.data │ │ │ │ ├── DELTA.data │ │ │ │ ├── ERF.data │ │ │ │ ├── ERFC.data │ │ │ │ ├── GESTEP.data │ │ │ │ ├── HEX2BIN.data │ │ │ │ ├── HEX2DEC.data │ │ │ │ ├── HEX2OCT.data │ │ │ │ ├── IMABS.data │ │ │ │ ├── IMAGINARY.data │ │ │ │ ├── IMARGUMENT.data │ │ │ │ ├── IMCONJUGATE.data │ │ │ │ ├── IMCOS.data │ │ │ │ ├── IMDIV.data │ │ │ │ ├── IMEXP.data │ │ │ │ ├── IMLN.data │ │ │ │ ├── IMLOG10.data │ │ │ │ ├── IMLOG2.data │ │ │ │ ├── IMPOWER.data │ │ │ │ ├── IMPRODUCT.data │ │ │ │ ├── IMREAL.data │ │ │ │ ├── IMSIN.data │ │ │ │ ├── IMSQRT.data │ │ │ │ ├── IMSUB.data │ │ │ │ ├── IMSUM.data │ │ │ │ ├── OCT2BIN.data │ │ │ │ ├── OCT2DEC.data │ │ │ │ └── OCT2HEX.data │ │ │ ├── Financial │ │ │ │ ├── ACCRINT.data │ │ │ │ ├── ACCRINTM.data │ │ │ │ ├── AMORDEGRC.data │ │ │ │ ├── AMORLINC.data │ │ │ │ ├── COUPDAYBS.data │ │ │ │ ├── COUPDAYS.data │ │ │ │ ├── COUPDAYSNC.data │ │ │ │ ├── COUPNCD.data │ │ │ │ ├── COUPNUM.data │ │ │ │ ├── COUPPCD.data │ │ │ │ ├── CUMIPMT.data │ │ │ │ ├── CUMPRINC.data │ │ │ │ ├── DB.data │ │ │ │ ├── DDB.data │ │ │ │ ├── DISC.data │ │ │ │ ├── DOLLARDE.data │ │ │ │ ├── DOLLARFR.data │ │ │ │ ├── EFFECT.data │ │ │ │ ├── FV.data │ │ │ │ ├── FVSCHEDULE.data │ │ │ │ ├── INTRATE.data │ │ │ │ ├── IPMT.data │ │ │ │ ├── IRR.data │ │ │ │ ├── ISPMT.data │ │ │ │ ├── MIRR.data │ │ │ │ ├── NOMINAL.data │ │ │ │ ├── NPER.data │ │ │ │ ├── NPV.data │ │ │ │ ├── PRICE.data │ │ │ │ ├── RATE.data │ │ │ │ └── XIRR.data │ │ │ ├── Functions │ │ │ │ ├── ERROR_TYPE.data │ │ │ │ ├── IS_BLANK.data │ │ │ │ ├── IS_ERR.data │ │ │ │ ├── IS_ERROR.data │ │ │ │ ├── IS_EVEN.data │ │ │ │ ├── IS_LOGICAL.data │ │ │ │ ├── IS_NA.data │ │ │ │ ├── IS_NONTEXT.data │ │ │ │ ├── IS_NUMBER.data │ │ │ │ ├── IS_ODD.data │ │ │ │ ├── IS_TEXT.data │ │ │ │ ├── N.data │ │ │ │ └── TYPE.data │ │ │ ├── Logical │ │ │ │ ├── AND.data │ │ │ │ ├── IF.data │ │ │ │ ├── IFERROR.data │ │ │ │ ├── NOT.data │ │ │ │ └── OR.data │ │ │ ├── LookupRef │ │ │ │ ├── HLOOKUP.data │ │ │ │ └── VLOOKUP.data │ │ │ ├── MathTrig │ │ │ │ ├── ATAN2.data │ │ │ │ ├── CEILING.data │ │ │ │ ├── COMBIN.data │ │ │ │ ├── EVEN.data │ │ │ │ ├── FACT.data │ │ │ │ ├── FACTDOUBLE.data │ │ │ │ ├── FLOOR.data │ │ │ │ ├── GCD.data │ │ │ │ ├── INT.data │ │ │ │ ├── LCM.data │ │ │ │ ├── LOG.data │ │ │ │ ├── MDETERM.data │ │ │ │ ├── MINVERSE.data │ │ │ │ ├── MMULT.data │ │ │ │ ├── MOD.data │ │ │ │ ├── MROUND.data │ │ │ │ ├── MULTINOMIAL.data │ │ │ │ ├── ODD.data │ │ │ │ ├── POWER.data │ │ │ │ ├── PRODUCT.data │ │ │ │ ├── QUOTIENT.data │ │ │ │ ├── ROMAN.data │ │ │ │ ├── ROUNDDOWN.data │ │ │ │ ├── ROUNDUP.data │ │ │ │ ├── SERIESSUM.data │ │ │ │ ├── SIGN.data │ │ │ │ ├── SQRTPI.data │ │ │ │ ├── SUMSQ.data │ │ │ │ └── TRUNC.data │ │ │ └── TextData │ │ │ │ ├── CHAR.data │ │ │ │ ├── CLEAN.data │ │ │ │ ├── CODE.data │ │ │ │ ├── CONCATENATE.data │ │ │ │ ├── DOLLAR.data │ │ │ │ ├── FIND.data │ │ │ │ ├── FIXED.data │ │ │ │ ├── LEFT.data │ │ │ │ ├── LEN.data │ │ │ │ ├── LOWER.data │ │ │ │ ├── MID.data │ │ │ │ ├── PROPER.data │ │ │ │ ├── REPLACE.data │ │ │ │ ├── RIGHT.data │ │ │ │ ├── SEARCH.data │ │ │ │ ├── SUBSTITUTE.data │ │ │ │ ├── T.data │ │ │ │ ├── TEXT.data │ │ │ │ ├── TRIM.data │ │ │ │ ├── UPPER.data │ │ │ │ └── VALUE.data │ │ ├── CalculationBinaryComparisonOperation.data │ │ ├── Cell │ │ │ └── DefaultValueBinder.data │ │ ├── CellAbsoluteCoordinate.data │ │ ├── CellAbsoluteReference.data │ │ ├── CellBuildRange.data │ │ ├── CellCoordinates.data │ │ ├── CellExtractAllCellReferencesInRange.data │ │ ├── CellGetRangeBoundaries.data │ │ ├── CellRangeBoundaries.data │ │ ├── CellRangeDimension.data │ │ ├── CellSplitRange.data │ │ ├── ColumnIndex.data │ │ ├── ColumnString.data │ │ ├── Reader │ │ │ ├── XEETestInvalidUTF-16.xml │ │ │ ├── XEETestInvalidUTF-16BE.xml │ │ │ ├── XEETestInvalidUTF-16LE.xml │ │ │ ├── XEETestInvalidUTF-8.xml │ │ │ ├── XEETestValidUTF-16.xml │ │ │ ├── XEETestValidUTF-16BE.xml │ │ │ ├── XEETestValidUTF-16LE.xml │ │ │ └── XEETestValidUTF-8.xml │ │ ├── Shared │ │ │ ├── CentimeterSizeToPixels.data │ │ │ ├── CodePage.data │ │ │ ├── DateTimeExcelToPHP1900.data │ │ │ ├── DateTimeExcelToPHP1900Timezone.data │ │ │ ├── DateTimeExcelToPHP1904.data │ │ │ ├── DateTimeFormatCodes.data │ │ │ ├── DateTimeFormattedPHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1904.data │ │ │ ├── FontSizeToPixels.data │ │ │ ├── InchSizeToPixels.data │ │ │ └── PasswordHashes.data │ │ └── Style │ │ │ ├── ColorChangeBrightness.data │ │ │ ├── ColorGetBlue.data │ │ │ ├── ColorGetGreen.data │ │ │ ├── ColorGetRed.data │ │ │ └── NumberFormat.data │ │ └── testDataFileIterator.php └── phpspreadsheet │ ├── .gitattributes │ ├── .github │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── stale.yml │ └── support.yml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .sami.php │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CHANGELOG.PHPExcel.md │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── bin │ ├── migrate-from-phpexcel │ └── pre-commit │ ├── composer.json │ ├── composer.lock │ ├── docs │ ├── assets │ │ ├── ClassDiagrams │ │ │ ├── Architecture.cd │ │ │ ├── Architecture.png │ │ │ ├── ClassDiagrams.csproj │ │ │ ├── ClassDiagrams.csproj.user │ │ │ ├── ClassDiagrams.sln │ │ │ ├── Classes │ │ │ │ ├── IReader.cs │ │ │ │ ├── IWriter.cs │ │ │ │ ├── PHPExcel.cs │ │ │ │ ├── PHPExcel_IOFactory.cs │ │ │ │ ├── PHPExcel_Reader_Excel2007.cs │ │ │ │ ├── PHPExcel_Reader_Excel5.cs │ │ │ │ ├── PHPExcel_Reader_Serialized.cs │ │ │ │ ├── PHPExcel_Writer_Excel2007.cs │ │ │ │ ├── PHPExcel_Writer_Serialized.cs │ │ │ │ └── Worksheet.cs │ │ │ ├── Exports │ │ │ │ ├── Architecture.png │ │ │ │ └── ReaderWriter.png │ │ │ ├── ReaderWriter.cd │ │ │ └── ReaderWriter.png │ │ └── logo.svg │ ├── extra │ │ ├── extra.css │ │ └── extra.js │ ├── faq.md │ ├── index.md │ ├── references │ │ ├── features-cross-reference.md │ │ ├── function-list-by-category.md │ │ └── function-list-by-name.md │ └── topics │ │ ├── accessing-cells.md │ │ ├── architecture.md │ │ ├── autofilters.md │ │ ├── calculation-engine.md │ │ ├── creating-spreadsheet.md │ │ ├── file-formats.md │ │ ├── images │ │ ├── 01-01-autofilter.png │ │ ├── 01-02-autofilter.png │ │ ├── 01-03-filter-icon-1.png │ │ ├── 01-03-filter-icon-2.png │ │ ├── 01-04-autofilter.png │ │ ├── 01-schematic.png │ │ ├── 02-readers-writers.png │ │ ├── 04-01-simple-autofilter.png │ │ ├── 04-02-dategroup-autofilter.png │ │ ├── 04-03-custom-autofilter-1.png │ │ ├── 04-03-custom-autofilter-2.png │ │ ├── 04-04-dynamic-autofilter.png │ │ ├── 04-05-topten-autofilter-1.png │ │ ├── 04-05-topten-autofilter-2.png │ │ ├── 07-simple-example-1.png │ │ ├── 07-simple-example-2.png │ │ ├── 07-simple-example-3.png │ │ ├── 07-simple-example-4.png │ │ ├── 08-cell-comment.png │ │ ├── 08-column-width.png │ │ ├── 08-page-setup-margins.png │ │ ├── 08-page-setup-scaling-options.png │ │ ├── 08-styling-border-options.png │ │ ├── 09-command-line-calculation.png │ │ ├── 09-formula-in-cell-1.png │ │ └── 09-formula-in-cell-2.png │ │ ├── memory_saving.md │ │ ├── migration-from-PHPExcel.md │ │ ├── reading-and-writing-to-file.md │ │ ├── reading-files.md │ │ ├── recipes.md │ │ ├── settings.md │ │ └── worksheets.md │ ├── mkdocs.yml │ ├── phpunit.xml.dist │ ├── samples │ ├── Autofilter │ │ ├── 10_Autofilter.php │ │ ├── 10_Autofilter_selection_1.php │ │ ├── 10_Autofilter_selection_2.php │ │ └── 10_Autofilter_selection_display.php │ ├── Basic │ │ ├── 01_Simple.php │ │ ├── 01_Simple_download_ods.php │ │ ├── 01_Simple_download_pdf.php │ │ ├── 01_Simple_download_xls.php │ │ ├── 01_Simple_download_xlsx.php │ │ ├── 02_Types.php │ │ ├── 03_Formulas.php │ │ ├── 04_Printing.php │ │ ├── 05_Feature_demo.php │ │ ├── 06_Largescale.php │ │ ├── 07_Reader.php │ │ ├── 08_Conditional_formatting.php │ │ ├── 08_Conditional_formatting_2.php │ │ ├── 09_Pagebreaks.php │ │ ├── 11_Documentsecurity.php │ │ ├── 12_CellProtection.php │ │ ├── 13_Calculation.php │ │ ├── 13_CalculationCyclicFormulae.php │ │ ├── 14_Xls.php │ │ ├── 15_Datavalidation.php │ │ ├── 16_Csv.php │ │ ├── 17_Html.php │ │ ├── 18_Extendedcalculation.php │ │ ├── 19_Namedrange.php │ │ ├── 20_Read_Excel2003XML.php │ │ ├── 20_Read_Gnumeric.php │ │ ├── 20_Read_Ods.php │ │ ├── 20_Read_Sylk.php │ │ ├── 20_Read_Xls.php │ │ ├── 22_Heavily_formatted.php │ │ ├── 23_Sharedstyles.php │ │ ├── 24_Readfilter.php │ │ ├── 25_In_memory_image.php │ │ ├── 26_Utf8.php │ │ ├── 27_Images_Xls.php │ │ ├── 28_Iterator.php │ │ ├── 29_Advanced_value_binder.php │ │ ├── 30_Template.php │ │ ├── 31_Document_properties_write.php │ │ ├── 31_Document_properties_write_xls.php │ │ ├── 37_Page_layout_view.php │ │ ├── 38_Clone_worksheet.php │ │ ├── 39_Dropdown.php │ │ ├── 40_Duplicate_style.php │ │ ├── 41_Password.php │ │ ├── 42_RichText.php │ │ ├── 43_Merge_workbooks.php │ │ ├── 44_Worksheet_info.php │ │ ├── 45_Quadratic_equation_solver.php │ │ ├── 46_ReadHtml.php │ │ └── data │ │ │ └── continents │ │ │ ├── Africa.txt │ │ │ ├── Asia.txt │ │ │ ├── Europe.txt │ │ │ ├── North America.txt │ │ │ ├── Oceania.txt │ │ │ └── South America.txt │ ├── Calculations │ │ ├── Database │ │ │ ├── DAVERAGE.php │ │ │ ├── DCOUNT.php │ │ │ ├── DGET.php │ │ │ ├── DMAX.php │ │ │ ├── DMIN.php │ │ │ ├── DPRODUCT.php │ │ │ ├── DSTDEV.php │ │ │ ├── DSTDEVP.php │ │ │ ├── DVAR.php │ │ │ └── DVARP.php │ │ └── DateTime │ │ │ ├── DATE.php │ │ │ ├── DATEVALUE.php │ │ │ ├── TIME.php │ │ │ └── TIMEVALUE.php │ ├── Chart │ │ ├── 32_Chart_read_write.php │ │ ├── 32_Chart_read_write_HTML.php │ │ ├── 32_Chart_read_write_PDF.php │ │ ├── 33_Chart_create_area.php │ │ ├── 33_Chart_create_bar.php │ │ ├── 33_Chart_create_bar_stacked.php │ │ ├── 33_Chart_create_column.php │ │ ├── 33_Chart_create_column_2.php │ │ ├── 33_Chart_create_composite.php │ │ ├── 33_Chart_create_line.php │ │ ├── 33_Chart_create_multiple_charts.php │ │ ├── 33_Chart_create_pie.php │ │ ├── 33_Chart_create_radar.php │ │ ├── 33_Chart_create_scatter.php │ │ ├── 33_Chart_create_stock.php │ │ ├── 34_Chart_update.php │ │ └── 35_Chart_render.php │ ├── Header.php │ ├── Pdf │ │ ├── 21_Pdf_Domdf.php │ │ ├── 21_Pdf_TCPDF.php │ │ └── 21_Pdf_mPDF.php │ ├── Reader │ │ ├── 01_Simple_file_reader_using_IOFactory.php │ │ ├── 02_Simple_file_reader_using_a_specified_reader.php │ │ ├── 03_Simple_file_reader_using_the_IOFactory_to_return_a_reader.php │ │ ├── 04_Simple_file_reader_using_the_IOFactory_to_identify_a_reader_to_use.php │ │ ├── 05_Simple_file_reader_using_the_read_data_only_option.php │ │ ├── 06_Simple_file_reader_loading_all_worksheets.php │ │ ├── 07_Simple_file_reader_loading_a_single_named_worksheet.php │ │ ├── 08_Simple_file_reader_loading_several_named_worksheets.php │ │ ├── 09_Simple_file_reader_using_a_read_filter.php │ │ ├── 10_Simple_file_reader_using_a_configurable_read_filter.php │ │ ├── 11_Reading_a_workbook_in_chunks_using_a_configurable_read_filter_(version_1).php │ │ ├── 12_Reading_a_workbook_in_chunks_using_a_configurable_read_filter_(version_2).php │ │ ├── 13_Simple_file_reader_for_multiple_CSV_files.php │ │ ├── 14_Reading_a_large_CSV_file_in_chunks_to_split_across_multiple_worksheets.php │ │ ├── 15_Simple_file_reader_for_tab_separated_value_file_using_the_Advanced_Value_Binder.php │ │ ├── 16_Handling_loader_exceptions_using_TryCatch.php │ │ ├── 17_Simple_file_reader_loading_several_named_worksheets.php │ │ ├── 18_Reading_list_of_worksheets_without_loading_entire_file.php │ │ ├── 19_Reading_worksheet_information_without_loading_entire_file.php │ │ └── sampleData │ │ │ ├── example1.csv │ │ │ ├── example1.tsv │ │ │ ├── example1.xls │ │ │ ├── example2.csv │ │ │ └── example2.xls │ ├── Reading_workbook_data │ │ ├── Custom_properties.php │ │ ├── Custom_property_names.php │ │ ├── Properties.php │ │ ├── Worksheet_count_and_names.php │ │ └── sampleData │ │ │ ├── example1.xls │ │ │ ├── example1.xlsx │ │ │ └── example2.xls │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ └── phpspreadsheet.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ ├── images │ │ ├── PhpSpreadsheet_logo.png │ │ ├── officelogo.jpg │ │ ├── paid.png │ │ └── termsconditions.jpg │ ├── index.php │ └── templates │ │ ├── 26template.xlsx │ │ ├── 27template.xls │ │ ├── 28iterators.xlsx │ │ ├── 30template.xls │ │ ├── 31docproperties.xls │ │ ├── 31docproperties.xlsx │ │ ├── 32chartreadwrite.xlsx │ │ ├── 32complexChartreadwrite.xlsx │ │ ├── 32readwriteAreaChart1.xlsx │ │ ├── 32readwriteAreaChart2.xlsx │ │ ├── 32readwriteAreaChart3.xlsx │ │ ├── 32readwriteAreaChart3D1.xlsx │ │ ├── 32readwriteAreaPercentageChart1.xlsx │ │ ├── 32readwriteAreaPercentageChart2.xlsx │ │ ├── 32readwriteAreaPercentageChart3D1.xlsx │ │ ├── 32readwriteAreaStackedChart1.xlsx │ │ ├── 32readwriteAreaStackedChart2.xlsx │ │ ├── 32readwriteAreaStackedChart3D1.xlsx │ │ ├── 32readwriteBarChart1.xlsx │ │ ├── 32readwriteBarChart2.xlsx │ │ ├── 32readwriteBarChart3.xlsx │ │ ├── 32readwriteBarChart3D1.xlsx │ │ ├── 32readwriteBarPercentageChart1.xlsx │ │ ├── 32readwriteBarPercentageChart2.xlsx │ │ ├── 32readwriteBarPercentageChart3D1.xlsx │ │ ├── 32readwriteBarStackedChart1.xlsx │ │ ├── 32readwriteBarStackedChart2.xlsx │ │ ├── 32readwriteBarStackedChart3D1.xlsx │ │ ├── 32readwriteBubbleChart1.xlsx │ │ ├── 32readwriteBubbleChart3D1.xlsx │ │ ├── 32readwriteChartWithImages1.xlsx │ │ ├── 32readwriteColumnChart1.xlsx │ │ ├── 32readwriteColumnChart2.xlsx │ │ ├── 32readwriteColumnChart3.xlsx │ │ ├── 32readwriteColumnChart3D1.xlsx │ │ ├── 32readwriteColumnChart4.xlsx │ │ ├── 32readwriteColumnPercentageChart1.xlsx │ │ ├── 32readwriteColumnPercentageChart2.xlsx │ │ ├── 32readwriteColumnPercentageChart3D1.xlsx │ │ ├── 32readwriteColumnStackedChart1.xlsx │ │ ├── 32readwriteColumnStackedChart2.xlsx │ │ ├── 32readwriteColumnStackedChart3D1.xlsx │ │ ├── 32readwriteDonutChart1.xlsx │ │ ├── 32readwriteDonutChart2.xlsx │ │ ├── 32readwriteDonutChart3.xlsx │ │ ├── 32readwriteDonutChart4.xlsx │ │ ├── 32readwriteDonutChartExploded1.xlsx │ │ ├── 32readwriteDonutChartMultiseries1.xlsx │ │ ├── 32readwriteLineChart1.xlsx │ │ ├── 32readwriteLineChart2.xlsx │ │ ├── 32readwriteLineChart3.xlsx │ │ ├── 32readwriteLineChart3D1.xlsx │ │ ├── 32readwriteLineChartNoPointMarkers1.xlsx │ │ ├── 32readwriteLinePercentageChart1.xlsx │ │ ├── 32readwriteLinePercentageChart2.xlsx │ │ ├── 32readwriteLineStackedChart1.xlsx │ │ ├── 32readwriteLineStackedChart2.xlsx │ │ ├── 32readwritePieChart1.xlsx │ │ ├── 32readwritePieChart2.xlsx │ │ ├── 32readwritePieChart3.xlsx │ │ ├── 32readwritePieChart3D1.xlsx │ │ ├── 32readwritePieChart4.xlsx │ │ ├── 32readwritePieChartExploded1.xlsx │ │ ├── 32readwritePieChartExploded3D1.xlsx │ │ ├── 32readwriteRadarChart1.xlsx │ │ ├── 32readwriteRadarChart2.xlsx │ │ ├── 32readwriteRadarChart3.xlsx │ │ ├── 32readwriteScatterChart1.xlsx │ │ ├── 32readwriteScatterChart2.xlsx │ │ ├── 32readwriteScatterChart3.xlsx │ │ ├── 32readwriteScatterChart4.xlsx │ │ ├── 32readwriteScatterChart5.xlsx │ │ ├── 32readwriteStockChart1.xlsx │ │ ├── 32readwriteStockChart2.xlsx │ │ ├── 32readwriteStockChart3.xlsx │ │ ├── 32readwriteStockChart4.xlsx │ │ ├── 32readwriteSurfaceChart1.xlsx │ │ ├── 32readwriteSurfaceChart2.xlsx │ │ ├── 32readwriteSurfaceChart3.xlsx │ │ ├── 32readwriteSurfaceChart4.xlsx │ │ ├── 36writeLineChart1.xlsx │ │ ├── 43mergeBook1.xlsx │ │ ├── 43mergeBook2.xlsx │ │ ├── 46readHtml.html │ │ ├── Excel2003XMLTest.xml │ │ ├── GnumericTest.gnumeric │ │ ├── OOCalcTest.ods │ │ ├── SylkTest.slk │ │ ├── chartSpreadsheet.php │ │ ├── largeSpreadsheet.php │ │ └── sampleSpreadsheet.php │ └── src │ ├── Bootstrap.php │ └── PhpSpreadsheet │ ├── Calculation │ ├── Calculation.php │ ├── Category.php │ ├── Database.php │ ├── DateTime.php │ ├── Engine │ │ ├── CyclicReferenceStack.php │ │ └── Logger.php │ ├── Engineering.php │ ├── Exception.php │ ├── ExceptionHandler.php │ ├── Financial.php │ ├── FormulaParser.php │ ├── FormulaToken.php │ ├── Functions.php │ ├── Logical.php │ ├── LookupRef.php │ ├── MathTrig.php │ ├── Statistical.php │ ├── TextData.php │ ├── Token │ │ └── Stack.php │ ├── functionlist.txt │ └── locale │ │ ├── bg │ │ ├── config │ │ └── functions │ │ ├── cs │ │ ├── config │ │ └── functions │ │ ├── da │ │ ├── config │ │ └── functions │ │ ├── de │ │ ├── config │ │ └── functions │ │ ├── en │ │ └── uk │ │ │ └── config │ │ ├── es │ │ ├── config │ │ └── functions │ │ ├── fi │ │ ├── config │ │ └── functions │ │ ├── fr │ │ ├── config │ │ └── functions │ │ ├── hu │ │ ├── config │ │ └── functions │ │ ├── it │ │ ├── config │ │ └── functions │ │ ├── nl │ │ ├── config │ │ └── functions │ │ ├── no │ │ ├── config │ │ └── functions │ │ ├── pl │ │ ├── config │ │ └── functions │ │ ├── pt │ │ ├── br │ │ │ ├── config │ │ │ └── functions │ │ ├── config │ │ └── functions │ │ ├── ru │ │ ├── config │ │ └── functions │ │ ├── sv │ │ ├── config │ │ └── functions │ │ └── tr │ │ ├── config │ │ └── functions │ ├── Cell │ ├── AdvancedValueBinder.php │ ├── Cell.php │ ├── Coordinate.php │ ├── DataType.php │ ├── DataValidation.php │ ├── DataValidator.php │ ├── DefaultValueBinder.php │ ├── Hyperlink.php │ └── IValueBinder.php │ ├── Chart │ ├── Axis.php │ ├── Chart.php │ ├── DataSeries.php │ ├── DataSeriesValues.php │ ├── Exception.php │ ├── GridLines.php │ ├── Layout.php │ ├── Legend.php │ ├── PlotArea.php │ ├── Properties.php │ ├── Renderer │ │ ├── IRenderer.php │ │ ├── JpGraph.php │ │ ├── PHP Charting Libraries.txt │ │ └── Polyfill.php │ └── Title.php │ ├── Collection │ ├── Cells.php │ ├── CellsFactory.php │ └── Memory.php │ ├── Comment.php │ ├── Document │ ├── Properties.php │ └── Security.php │ ├── Exception.php │ ├── HashTable.php │ ├── Helper │ ├── Html.php │ ├── Migrator.php │ └── Sample.php │ ├── IComparable.php │ ├── IOFactory.php │ ├── NamedRange.php │ ├── Reader │ ├── BaseReader.php │ ├── Csv.php │ ├── DefaultReadFilter.php │ ├── Exception.php │ ├── Gnumeric.php │ ├── Html.php │ ├── IReadFilter.php │ ├── IReader.php │ ├── Ods.php │ ├── Slk.php │ ├── Xls.php │ ├── Xls │ │ ├── Color.php │ │ ├── Color │ │ │ ├── BIFF5.php │ │ │ ├── BIFF8.php │ │ │ └── BuiltIn.php │ │ ├── ErrorCode.php │ │ ├── Escher.php │ │ ├── MD5.php │ │ ├── RC4.php │ │ └── Style │ │ │ ├── Border.php │ │ │ └── FillPattern.php │ ├── Xlsx.php │ ├── Xlsx │ │ ├── Chart.php │ │ └── Theme.php │ └── Xml.php │ ├── ReferenceHelper.php │ ├── RichText │ ├── ITextElement.php │ ├── RichText.php │ ├── Run.php │ └── TextElement.php │ ├── Settings.php │ ├── Shared │ ├── CodePage.php │ ├── Date.php │ ├── Drawing.php │ ├── Escher.php │ ├── Escher │ │ ├── DgContainer.php │ │ ├── DgContainer │ │ │ ├── SpgrContainer.php │ │ │ └── SpgrContainer │ │ │ │ └── SpContainer.php │ │ ├── DggContainer.php │ │ └── DggContainer │ │ │ ├── BstoreContainer.php │ │ │ └── BstoreContainer │ │ │ ├── BSE.php │ │ │ └── BSE │ │ │ └── Blip.php │ ├── File.php │ ├── Font.php │ ├── JAMA │ │ ├── CHANGELOG.TXT │ │ ├── CholeskyDecomposition.php │ │ ├── EigenvalueDecomposition.php │ │ ├── LUDecomposition.php │ │ ├── Matrix.php │ │ ├── QRDecomposition.php │ │ ├── SingularValueDecomposition.php │ │ └── utils │ │ │ └── Maths.php │ ├── OLE.php │ ├── OLE │ │ ├── ChainedBlockStream.php │ │ ├── PPS.php │ │ └── PPS │ │ │ ├── File.php │ │ │ └── Root.php │ ├── OLERead.php │ ├── PasswordHasher.php │ ├── StringHelper.php │ ├── TimeZone.php │ ├── Trend │ │ ├── BestFit.php │ │ ├── ExponentialBestFit.php │ │ ├── LinearBestFit.php │ │ ├── LogarithmicBestFit.php │ │ ├── PolynomialBestFit.php │ │ ├── PowerBestFit.php │ │ └── Trend.php │ ├── XMLWriter.php │ └── Xls.php │ ├── Spreadsheet.php │ ├── Style │ ├── Alignment.php │ ├── Border.php │ ├── Borders.php │ ├── Color.php │ ├── Conditional.php │ ├── Fill.php │ ├── Font.php │ ├── NumberFormat.php │ ├── Protection.php │ ├── Style.php │ └── Supervisor.php │ ├── Worksheet │ ├── AutoFilter.php │ ├── AutoFilter │ │ ├── Column.php │ │ └── Column │ │ │ └── Rule.php │ ├── BaseDrawing.php │ ├── CellIterator.php │ ├── Column.php │ ├── ColumnCellIterator.php │ ├── ColumnDimension.php │ ├── ColumnIterator.php │ ├── Dimension.php │ ├── Drawing.php │ ├── Drawing │ │ └── Shadow.php │ ├── HeaderFooter.php │ ├── HeaderFooterDrawing.php │ ├── Iterator.php │ ├── MemoryDrawing.php │ ├── PageMargins.php │ ├── PageSetup.php │ ├── Protection.php │ ├── Row.php │ ├── RowCellIterator.php │ ├── RowDimension.php │ ├── RowIterator.php │ ├── SheetView.php │ └── Worksheet.php │ └── Writer │ ├── BaseWriter.php │ ├── Csv.php │ ├── Exception.php │ ├── Html.php │ ├── IWriter.php │ ├── Ods.php │ ├── Ods │ ├── Cell │ │ └── Comment.php │ ├── Content.php │ ├── Meta.php │ ├── MetaInf.php │ ├── Mimetype.php │ ├── Settings.php │ ├── Styles.php │ ├── Thumbnails.php │ └── WriterPart.php │ ├── Pdf.php │ ├── Pdf │ ├── Dompdf.php │ ├── Mpdf.php │ └── Tcpdf.php │ ├── Xls.php │ ├── Xls │ ├── BIFFwriter.php │ ├── Escher.php │ ├── Font.php │ ├── Parser.php │ ├── Workbook.php │ ├── Worksheet.php │ └── Xf.php │ ├── Xlsx.php │ └── Xlsx │ ├── Chart.php │ ├── Comments.php │ ├── ContentTypes.php │ ├── DocProps.php │ ├── Drawing.php │ ├── Rels.php │ ├── RelsRibbon.php │ ├── RelsVBA.php │ ├── StringTable.php │ ├── Style.php │ ├── Theme.php │ ├── Workbook.php │ ├── Worksheet.php │ └── WriterPart.php ├── phpspec └── prophecy │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Prophecy │ ├── Argument.php │ ├── Argument │ ├── ArgumentsWildcard.php │ └── Token │ │ ├── AnyValueToken.php │ │ ├── AnyValuesToken.php │ │ ├── ApproximateValueToken.php │ │ ├── ArrayCountToken.php │ │ ├── ArrayEntryToken.php │ │ ├── ArrayEveryEntryToken.php │ │ ├── CallbackToken.php │ │ ├── ExactValueToken.php │ │ ├── IdenticalValueToken.php │ │ ├── LogicalAndToken.php │ │ ├── LogicalNotToken.php │ │ ├── ObjectStateToken.php │ │ ├── StringContainsToken.php │ │ ├── TokenInterface.php │ │ └── TypeToken.php │ ├── Call │ ├── Call.php │ └── CallCenter.php │ ├── Comparator │ ├── ClosureComparator.php │ ├── Factory.php │ └── ProphecyComparator.php │ ├── Doubler │ ├── CachedDoubler.php │ ├── ClassPatch │ │ ├── ClassPatchInterface.php │ │ ├── DisableConstructorPatch.php │ │ ├── HhvmExceptionPatch.php │ │ ├── KeywordPatch.php │ │ ├── MagicCallPatch.php │ │ ├── ProphecySubjectPatch.php │ │ ├── ReflectionClassNewInstancePatch.php │ │ ├── SplFileInfoPatch.php │ │ └── TraversablePatch.php │ ├── DoubleInterface.php │ ├── Doubler.php │ ├── Generator │ │ ├── ClassCodeGenerator.php │ │ ├── ClassCreator.php │ │ ├── ClassMirror.php │ │ ├── Node │ │ │ ├── ArgumentNode.php │ │ │ ├── ClassNode.php │ │ │ └── MethodNode.php │ │ ├── ReflectionInterface.php │ │ └── TypeHintReference.php │ ├── LazyDouble.php │ └── NameGenerator.php │ ├── Exception │ ├── Call │ │ └── UnexpectedCallException.php │ ├── Doubler │ │ ├── ClassCreatorException.php │ │ ├── ClassMirrorException.php │ │ ├── ClassNotFoundException.php │ │ ├── DoubleException.php │ │ ├── DoublerException.php │ │ ├── InterfaceNotFoundException.php │ │ ├── MethodNotExtendableException.php │ │ ├── MethodNotFoundException.php │ │ └── ReturnByReferenceException.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── Prediction │ │ ├── AggregateException.php │ │ ├── FailedPredictionException.php │ │ ├── NoCallsException.php │ │ ├── PredictionException.php │ │ ├── UnexpectedCallsCountException.php │ │ └── UnexpectedCallsException.php │ └── Prophecy │ │ ├── MethodProphecyException.php │ │ ├── ObjectProphecyException.php │ │ └── ProphecyException.php │ ├── PhpDocumentor │ ├── ClassAndInterfaceTagRetriever.php │ ├── ClassTagRetriever.php │ ├── LegacyClassTagRetriever.php │ └── MethodTagRetrieverInterface.php │ ├── Prediction │ ├── CallPrediction.php │ ├── CallTimesPrediction.php │ ├── CallbackPrediction.php │ ├── NoCallsPrediction.php │ └── PredictionInterface.php │ ├── Promise │ ├── CallbackPromise.php │ ├── PromiseInterface.php │ ├── ReturnArgumentPromise.php │ ├── ReturnPromise.php │ └── ThrowPromise.php │ ├── Prophecy │ ├── MethodProphecy.php │ ├── ObjectProphecy.php │ ├── ProphecyInterface.php │ ├── ProphecySubjectInterface.php │ ├── Revealer.php │ └── RevealerInterface.php │ ├── Prophet.php │ └── Util │ ├── ExportUtil.php │ └── StringUtil.php ├── phpunit ├── php-code-coverage │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── ChangeLog-2.2.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── scripts │ │ ├── auto_append.php │ │ └── auto_prepend.php │ ├── src │ │ ├── CodeCoverage.php │ │ └── CodeCoverage │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── HHVM.php │ │ │ ├── PHPDBG.php │ │ │ └── Xdebug.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ └── UnintentionallyCoveredCode.php │ │ │ ├── Filter.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Crap4j.php │ │ │ ├── Factory.php │ │ │ ├── HTML.php │ │ │ ├── HTML │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── respond.min.js │ │ │ │ │ └── method_item.html.dist │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ ├── XML.php │ │ │ └── XML │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ ├── File │ │ │ │ ├── Coverage.php │ │ │ │ ├── Method.php │ │ │ │ ├── Report.php │ │ │ │ └── Unit.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Tests.php │ │ │ │ └── Totals.php │ │ │ ├── Util.php │ │ │ └── Util │ │ │ └── InvalidArgumentHelper.php │ └── tests │ │ ├── PHP │ │ ├── CodeCoverage │ │ │ ├── FilterTest.php │ │ │ ├── Report │ │ │ │ ├── CloverTest.php │ │ │ │ └── FactoryTest.php │ │ │ └── UtilTest.php │ │ └── CodeCoverageTest.php │ │ ├── TestCase.php │ │ └── _files │ │ ├── BankAccount-clover.xml │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── class-with-anonymous-function-clover.xml │ │ ├── ignored-lines-clover.xml │ │ ├── source_with_class_and_anonymous_function.php │ │ ├── source_with_ignore.php │ │ ├── source_with_namespace.php │ │ ├── source_with_oneline_annotations.php │ │ ├── source_without_ignore.php │ │ └── source_without_namespace.php ├── php-file-iterator │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── phpunit.xml │ ├── composer.json │ ├── src │ │ ├── Token.php │ │ └── Token │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ └── CachingFactory.php │ └── tests │ │ ├── Token │ │ ├── ClassTest.php │ │ ├── ClosureTest.php │ │ ├── FunctionTest.php │ │ ├── IncludeTest.php │ │ ├── InterfaceTest.php │ │ └── NamespaceTest.php │ │ ├── TokenTest.php │ │ ├── _fixture │ │ ├── classExtendsNamespacedClass.php │ │ ├── classInNamespace.php │ │ ├── classInScopedNamespace.php │ │ ├── classUsesNamespacedFunction.php │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ ├── closure.php │ │ ├── issue19.php │ │ ├── issue30.php │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ ├── source.php │ │ ├── source2.php │ │ ├── source3.php │ │ ├── source4.php │ │ └── source5.php │ │ └── bootstrap.php ├── phpunit-mock-objects │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Match.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── Namespace.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ ├── mocked_class.tpl.dist │ │ │ ├── mocked_class_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_method.tpl.dist │ │ │ ├── mocked_static_method.tpl.dist │ │ │ ├── proxied_method.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ └── wsdl_method.tpl.dist │ │ │ ├── Invocation.php │ │ │ ├── Invocation │ │ │ ├── Object.php │ │ │ └── Static.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Invokable.php │ │ │ ├── Matcher.php │ │ │ ├── Matcher │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── ConsecutiveParameters.php │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockObject.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── MatcherCollection.php │ │ │ ├── Return.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnSelf.php │ │ │ └── ReturnValueMap.php │ │ │ └── Verifiable.php │ └── tests │ │ ├── GeneratorTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockObject │ │ ├── 232.phpt │ │ ├── Invocation │ │ │ ├── ObjectTest.php │ │ │ └── StaticTest.php │ │ ├── Matcher │ │ │ └── ConsecutiveParametersTest.php │ │ ├── abstract_class.phpt │ │ ├── class.phpt │ │ ├── class_call_parent_clone.phpt │ │ ├── class_call_parent_constructor.phpt │ │ ├── class_dont_call_parent_clone.phpt │ │ ├── class_dont_call_parent_constructor.phpt │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── class_partial.phpt │ │ ├── class_with_method_named_method.phpt │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ ├── interface.phpt │ │ ├── invocation_object_clone_object.phpt │ │ ├── namespaced_class.phpt │ │ ├── namespaced_class_call_parent_clone.phpt │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_partial.phpt │ │ ├── namespaced_interface.phpt │ │ ├── nonexistent_class.phpt │ │ ├── nonexistent_class_with_namespace.phpt │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ ├── proxy.phpt │ │ ├── scalar_type_declarations.phpt │ │ ├── wsdl_class.phpt │ │ ├── wsdl_class_namespace.phpt │ │ └── wsdl_class_partial.phpt │ │ ├── MockObjectTest.php │ │ ├── ProxyObjectTest.php │ │ ├── _fixture │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTrait.php │ │ ├── AnInterface.php │ │ ├── AnotherInterface.php │ │ ├── Bar.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithStaticMethod.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── GoogleSearch.wsdl │ │ ├── InterfaceWithStaticMethod.php │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── MockTestInterface.php │ │ ├── Mockable.php │ │ ├── PartialMockTestClass.php │ │ ├── SingletonClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ └── TraversableMockTestInterface.php │ │ └── bootstrap.php └── phpunit │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ChangeLog-4.0.md │ ├── ChangeLog-4.1.md │ ├── ChangeLog-4.2.md │ ├── ChangeLog-4.3.md │ ├── ChangeLog-4.4.md │ ├── ChangeLog-4.5.md │ ├── ChangeLog-4.6.md │ ├── ChangeLog-4.7.md │ ├── ChangeLog-4.8.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit │ ├── phpunit.xml │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Extensions │ │ ├── GroupTestSuite.php │ │ ├── PhptTestCase.php │ │ ├── PhptTestSuite.php │ │ ├── RepeatedTest.php │ │ ├── TestDecorator.php │ │ └── TicketListener.php │ ├── ForwardCompatibility │ │ ├── Assert.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestListener.php │ │ └── TestSuite.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── CodeCoverageException.php │ │ ├── Constraint.php │ │ ├── Constraint │ │ │ ├── And.php │ │ │ ├── ArrayHasKey.php │ │ │ ├── ArraySubset.php │ │ │ ├── Attribute.php │ │ │ ├── Callback.php │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── Composite.php │ │ │ ├── Count.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessage.php │ │ │ ├── ExceptionMessageRegExp.php │ │ │ ├── FileExists.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsAnything.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsEqual.php │ │ │ ├── IsFalse.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsJson.php │ │ │ ├── IsNull.php │ │ │ ├── IsTrue.php │ │ │ ├── IsType.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProvider.php │ │ │ ├── LessThan.php │ │ │ ├── Not.php │ │ │ ├── ObjectHasAttribute.php │ │ │ ├── Or.php │ │ │ ├── PCREMatch.php │ │ │ ├── SameSize.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringMatches.php │ │ │ ├── StringStartsWith.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsOnly.php │ │ │ └── Xor.php │ │ ├── Error.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── Exception.php │ │ ├── ExceptionWrapper.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidCoversTargetError.php │ │ ├── InvalidCoversTargetException.php │ │ ├── OutputError.php │ │ ├── RiskyTest.php │ │ ├── RiskyTestError.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuite │ │ │ └── DataProvider.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ └── Warning.php │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── Exception.php │ │ ├── Filter │ │ │ ├── Factory.php │ │ │ ├── Group.php │ │ │ ├── Group │ │ │ │ ├── Exclude.php │ │ │ │ └── Include.php │ │ │ └── Test.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.php │ │ └── Version.php │ ├── TextUI │ │ ├── Command.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ └── Util │ │ ├── Blacklist.php │ │ ├── Configuration.php │ │ ├── ErrorHandler.php │ │ ├── Fileloader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── Getopt.php │ │ ├── GlobalState.php │ │ ├── InvalidArgumentHelper.php │ │ ├── Log │ │ ├── JSON.php │ │ ├── JUnit.php │ │ └── TAP.php │ │ ├── PHP.php │ │ ├── PHP │ │ ├── Default.php │ │ ├── Template │ │ │ └── TestCaseMethod.tpl.dist │ │ ├── Windows.php │ │ └── eval-stdin.php │ │ ├── Printer.php │ │ ├── Regex.php │ │ ├── String.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ └── ResultPrinter │ │ │ ├── HTML.php │ │ │ └── Text.php │ │ ├── TestSuiteIterator.php │ │ ├── Type.php │ │ └── XML.php │ └── tests │ ├── Extensions │ ├── PhptTestCaseTest.php │ └── RepeatedTestTest.php │ ├── Fail │ └── fail.phpt │ ├── Framework │ ├── AssertTest.php │ ├── BaseTestListenerTest.php │ ├── Constraint │ │ ├── CountTest.php │ │ ├── ExceptionMessageRegExpTest.php │ │ ├── ExceptionMessageTest.php │ │ ├── JsonMatches │ │ │ └── ErrorMessageProviderTest.php │ │ └── JsonMatchesTest.php │ ├── ConstraintTest.php │ ├── SuiteTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ └── TestListenerTest.php │ ├── Regression │ ├── GitHub │ │ ├── 74 │ │ │ ├── Issue74Test.php │ │ │ └── NewException.php │ │ ├── 244 │ │ │ └── Issue244Test.php │ │ ├── 322 │ │ │ ├── Issue322Test.php │ │ │ └── phpunit322.xml │ │ ├── 433 │ │ │ └── Issue433Test.php │ │ ├── 445 │ │ │ └── Issue445Test.php │ │ ├── 498 │ │ │ └── Issue498Test.php │ │ ├── 503 │ │ │ └── Issue503Test.php │ │ ├── 581 │ │ │ └── Issue581Test.php │ │ ├── 765 │ │ │ └── Issue765Test.php │ │ ├── 797 │ │ │ ├── Issue797Test.php │ │ │ └── bootstrap797.php │ │ ├── 873 │ │ │ └── Issue873Test.php │ │ ├── 1149 │ │ │ └── Issue1149Test.php │ │ ├── 1216 │ │ │ ├── Issue1216Test.php │ │ │ ├── bootstrap1216.php │ │ │ └── phpunit1216.xml │ │ ├── 1265 │ │ │ ├── Issue1265Test.php │ │ │ └── phpunit1265.xml │ │ ├── 1330 │ │ │ ├── Issue1330Test.php │ │ │ └── phpunit1330.xml │ │ ├── 1335 │ │ │ ├── Issue1335Test.php │ │ │ └── bootstrap1335.php │ │ ├── 1337 │ │ │ └── Issue1337Test.php │ │ ├── 1348 │ │ │ └── Issue1348Test.php │ │ ├── 1351 │ │ │ ├── ChildProcessClass1351.php │ │ │ └── Issue1351Test.php │ │ ├── 1374 │ │ │ └── Issue1374Test.php │ │ ├── 1437 │ │ │ └── Issue1437Test.php │ │ ├── 1468 │ │ │ └── Issue1468Test.php │ │ ├── 1471 │ │ │ └── Issue1471Test.php │ │ ├── 1472 │ │ │ └── Issue1472Test.php │ │ ├── 1570 │ │ │ └── Issue1570Test.php │ │ ├── 2158 │ │ │ ├── Issue2158Test.php │ │ │ └── constant.inc │ │ ├── 1149.phpt │ │ ├── 1216.phpt │ │ ├── 1265.phpt │ │ ├── 1330.phpt │ │ ├── 1335.phpt │ │ ├── 1337.phpt │ │ ├── 1348.phpt │ │ ├── 1351.phpt │ │ ├── 1374.phpt │ │ ├── 1437.phpt │ │ ├── 1468.phpt │ │ ├── 1471.phpt │ │ ├── 1472.phpt │ │ ├── 1570.phpt │ │ ├── 2158.phpt │ │ ├── 244.phpt │ │ ├── 322.phpt │ │ ├── 433.phpt │ │ ├── 445.phpt │ │ ├── 498.phpt │ │ ├── 503.phpt │ │ ├── 581.phpt │ │ ├── 74.phpt │ │ ├── 765.phpt │ │ ├── 797.phpt │ │ ├── 863.phpt │ │ ├── 873-php5.phpt │ │ └── 873-php7.phpt │ └── Trac │ │ ├── 523 │ │ └── Issue523Test.php │ │ ├── 578 │ │ └── Issue578Test.php │ │ ├── 684 │ │ └── Issue684Test.php │ │ ├── 783 │ │ ├── ChildSuite.php │ │ ├── OneTest.php │ │ ├── ParentSuite.php │ │ └── TwoTest.php │ │ ├── 1021 │ │ └── Issue1021Test.php │ │ ├── 1021.phpt │ │ ├── 523.phpt │ │ ├── 578.phpt │ │ ├── 684.phpt │ │ └── 783.phpt │ ├── Runner │ └── BaseTestRunnerTest.php │ ├── TextUI │ ├── abstract-test-class.phpt │ ├── colors-always.phpt │ ├── concrete-test-class.phpt │ ├── custom-printer-debug.phpt │ ├── custom-printer-verbose.phpt │ ├── dataprovider-debug.phpt │ ├── dataprovider-log-xml-isolation.phpt │ ├── dataprovider-log-xml.phpt │ ├── dataprovider-testdox.phpt │ ├── debug.phpt │ ├── default-isolation.phpt │ ├── default.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.phpt │ ├── failure-isolation.phpt │ ├── failure.phpt │ ├── fatal-isolation.phpt │ ├── filter-class-isolation.phpt │ ├── filter-class.phpt │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ ├── filter-dataprovider-by-classname-and-range.phpt │ ├── filter-dataprovider-by-number-isolation.phpt │ ├── filter-dataprovider-by-number.phpt │ ├── filter-dataprovider-by-only-range-isolation.phpt │ ├── filter-dataprovider-by-only-range.phpt │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ ├── filter-dataprovider-by-only-regexp.phpt │ ├── filter-dataprovider-by-only-string-isolation.phpt │ ├── filter-dataprovider-by-only-string.phpt │ ├── filter-dataprovider-by-range-isolation.phpt │ ├── filter-dataprovider-by-range.phpt │ ├── filter-dataprovider-by-regexp-isolation.phpt │ ├── filter-dataprovider-by-regexp.phpt │ ├── filter-dataprovider-by-string-isolation.phpt │ ├── filter-dataprovider-by-string.phpt │ ├── filter-method-case-insensitive.phpt │ ├── filter-method-case-sensitive-no-result.phpt │ ├── filter-method-isolation.phpt │ ├── filter-method.phpt │ ├── filter-no-results.phpt │ ├── group-isolation.phpt │ ├── group.phpt │ ├── help.phpt │ ├── help2.phpt │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── log-json-no-pretty-print.phpt │ ├── log-json-post-66021.phpt │ ├── log-json-pre-66021.phpt │ ├── log-junit.phpt │ ├── log-tap.phpt │ ├── options-after-arguments.phpt │ ├── output-isolation.phpt │ ├── repeat.phpt │ ├── report-useless-tests-incomplete.phpt │ ├── report-useless-tests-isolation.phpt │ ├── report-useless-tests.phpt │ ├── tap.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ └── testdox.phpt │ ├── Util │ ├── ConfigurationTest.php │ ├── GetoptTest.php │ ├── GlobalStateTest.php │ ├── RegexTest.php │ ├── TestDox │ │ └── NamePrettifierTest.php │ ├── TestTest.php │ └── XMLTest.php │ ├── _files │ ├── AbstractTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BaseTestListenerSample.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithScalarTypeDeclarations.php │ ├── ClassWithToString.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.php │ ├── CoverageFunctionParenthesesTest.php │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ ├── CoverageFunctionTest.php │ ├── CoverageMethodOneLineAnnotationTest.php │ ├── CoverageMethodParenthesesTest.php │ ├── CoverageMethodParenthesesWhitespaceTest.php │ ├── CoverageMethodTest.php │ ├── CoverageNamespacedFunctionTest.php │ ├── CoverageNoneTest.php │ ├── CoverageNotPrivateTest.php │ ├── CoverageNotProtectedTest.php │ ├── CoverageNotPublicTest.php │ ├── CoverageNothingTest.php │ ├── CoveragePrivateTest.php │ ├── CoverageProtectedTest.php │ ├── CoveragePublicTest.php │ ├── CoverageTwoDefaultClassAnnotations.php │ ├── CoveredClass.php │ ├── CoveredFunction.php │ ├── CustomPrinter.php │ ├── DataProviderDebugTest.php │ ├── DataProviderFilterTest.php │ ├── DataProviderIncompleteTest.php │ ├── DataProviderSkippedTest.php │ ├── DataProviderTest.php │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoubleTestCase.php │ ├── DummyException.php │ ├── EmptyTestCaseTest.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FatalTest.php │ ├── IncompleteTest.php │ ├── Inheritance │ │ ├── InheritanceA.php │ │ └── InheritanceB.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── IsolationTest.php │ ├── JsonData │ │ ├── arrayObject.json │ │ └── simpleObject.json │ ├── MockRunner.php │ ├── MultiDependencyTest.php │ ├── NamespaceCoverageClassExtendedTest.php │ ├── NamespaceCoverageClassTest.php │ ├── NamespaceCoverageCoversClassPublicTest.php │ ├── NamespaceCoverageCoversClassTest.php │ ├── NamespaceCoverageMethodTest.php │ ├── NamespaceCoverageNotPrivateTest.php │ ├── NamespaceCoverageNotProtectedTest.php │ ├── NamespaceCoverageNotPublicTest.php │ ├── NamespaceCoveragePrivateTest.php │ ├── NamespaceCoverageProtectedTest.php │ ├── NamespaceCoveragePublicTest.php │ ├── NamespaceCoveredClass.php │ ├── NamespaceCoveredFunction.php │ ├── NoArgTestCaseTest.php │ ├── NoTestCaseClass.php │ ├── NoTestCases.php │ ├── NonStatic.php │ ├── NotExistingCoveredElementTest.php │ ├── NotPublicTestCase.php │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── RequirementsClassBeforeClassHookTest.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── Singleton.php │ ├── StackTest.php │ ├── StatusTest.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestIncomplete.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── TestSkipped.php │ ├── TestTestError.php │ ├── TestWithTest.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.php │ ├── WasRun.php │ ├── bar.xml │ ├── configuration.colors.empty.xml │ ├── configuration.colors.false.xml │ ├── configuration.colors.invalid.xml │ ├── configuration.colors.true.xml │ ├── configuration.custom-printer.xml │ ├── configuration.xml │ ├── configuration_empty.xml │ ├── configuration_xinclude.xml │ ├── expectedFileFormat.txt │ ├── foo.xml │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ └── bootstrap.php ├── psr ├── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ └── LoggerInterfaceTest.php │ ├── README.md │ └── composer.json └── simple-cache │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php ├── qiniu └── php-sdk │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── composer.json │ ├── docs │ └── rtc │ │ ├── README.md │ │ └── example.php │ ├── examples │ ├── README.md │ ├── cdn_get_bandwidth.php │ ├── cdn_get_flux.php │ ├── cdn_get_log_list.php │ ├── cdn_refresh_urls_dirs.php │ ├── cdn_timestamp_antileech.php │ ├── image_url_builder.php │ ├── persistent_fop_init.php │ ├── persistent_fop_status.php │ ├── pfop_mkzip.php │ ├── pfop_vframe.php │ ├── pfop_video_avthumb.php │ ├── pfop_watermark.php │ ├── php-logo.png │ ├── prefop.php │ ├── qetag.php │ ├── rs_batch_change_mime.php │ ├── rs_batch_change_type.php │ ├── rs_batch_copy.php │ ├── rs_batch_delete.php │ ├── rs_batch_delete_after_days.php │ ├── rs_batch_move.php │ ├── rs_batch_stat.php │ ├── rs_bucket_domains.php │ ├── rs_buckets.php │ ├── rs_change_mime.php │ ├── rs_change_status.php │ ├── rs_change_type.php │ ├── rs_copy.php │ ├── rs_delete.php │ ├── rs_delete_after_days.php │ ├── rs_download_urls.php │ ├── rs_fetch.php │ ├── rs_move.php │ ├── rs_prefetch.php │ ├── rs_stat.php │ ├── rsf_list_bucket.php │ ├── rsf_list_files.php │ ├── saveas.php │ ├── upload_and_callback.php │ ├── upload_and_pfop.php │ ├── upload_mgr_init.php │ ├── upload_multi_demos.php │ ├── upload_simple_file.php │ ├── upload_tokens.php │ └── upload_verify_callback.php │ ├── phpunit.xml.dist │ ├── src │ └── Qiniu │ │ ├── Auth.php │ │ ├── Cdn │ │ └── CdnManager.php │ │ ├── Config.php │ │ ├── Etag.php │ │ ├── Http │ │ ├── Client.php │ │ ├── Error.php │ │ ├── Request.php │ │ └── Response.php │ │ ├── Processing │ │ ├── ImageUrlBuilder.php │ │ ├── Operation.php │ │ └── PersistentFop.php │ │ ├── Rtc │ │ └── AppClient.php │ │ ├── Storage │ │ ├── BucketManager.php │ │ ├── FormUploader.php │ │ ├── ResumeUploader.php │ │ └── UploadManager.php │ │ ├── Zone.php │ │ └── functions.php │ ├── test-env.sh │ └── tests │ ├── Qiniu │ └── Tests │ │ ├── AuthTest.php │ │ ├── Base64Test.php │ │ ├── BucketTest.php │ │ ├── CdnManagerTest.php │ │ ├── Crc32Test.php │ │ ├── DownloadTest.php │ │ ├── EtagTest.php │ │ ├── FopTest.php │ │ ├── FormUpTest.php │ │ ├── HttpTest.php │ │ ├── ImageUrlBuilderTest.php │ │ ├── PfopTest.php │ │ ├── ResumeUpTest.php │ │ └── ZoneTest.php │ └── bootstrap.php ├── sebastian ├── comparator │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── ArrayComparator.php │ │ ├── Comparator.php │ │ ├── ComparisonFailure.php │ │ ├── DOMNodeComparator.php │ │ ├── DateTimeComparator.php │ │ ├── DoubleComparator.php │ │ ├── ExceptionComparator.php │ │ ├── Factory.php │ │ ├── MockObjectComparator.php │ │ ├── NumericComparator.php │ │ ├── ObjectComparator.php │ │ ├── ResourceComparator.php │ │ ├── ScalarComparator.php │ │ ├── SplObjectStorageComparator.php │ │ └── TypeComparator.php │ └── tests │ │ ├── ArrayComparatorTest.php │ │ ├── DOMNodeComparatorTest.php │ │ ├── DateTimeComparatorTest.php │ │ ├── DoubleComparatorTest.php │ │ ├── ExceptionComparatorTest.php │ │ ├── FactoryTest.php │ │ ├── MockObjectComparatorTest.php │ │ ├── NumericComparatorTest.php │ │ ├── ObjectComparatorTest.php │ │ ├── ResourceComparatorTest.php │ │ ├── ScalarComparatorTest.php │ │ ├── SplObjectStorageComparatorTest.php │ │ ├── TypeComparatorTest.php │ │ ├── _files │ │ ├── Author.php │ │ ├── Book.php │ │ ├── ClassWithToString.php │ │ ├── SampleClass.php │ │ ├── Struct.php │ │ ├── TestClass.php │ │ └── TestClassComparator.php │ │ ├── autoload.php │ │ └── bootstrap.php ├── diff │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── LCS │ │ │ ├── LongestCommonSubsequence.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ ├── Line.php │ │ └── Parser.php │ └── tests │ │ ├── ChunkTest.php │ │ ├── DiffTest.php │ │ ├── DifferTest.php │ │ ├── LCS │ │ ├── LongestCommonSubsequenceTest.php │ │ ├── MemoryEfficientImplementationTest.php │ │ └── TimeEfficientImplementationTest.php │ │ ├── LineTest.php │ │ ├── ParserTest.php │ │ └── fixtures │ │ ├── patch.txt │ │ └── patch2.txt ├── environment │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Console.php │ │ └── Runtime.php │ └── tests │ │ ├── ConsoleTest.php │ │ └── RuntimeTest.php ├── exporter │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Exporter.php │ └── tests │ │ └── ExporterTest.php ├── global-state │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Blacklist.php │ │ ├── CodeExporter.php │ │ ├── Exception.php │ │ ├── Restorer.php │ │ ├── RuntimeException.php │ │ └── Snapshot.php │ └── tests │ │ ├── BlacklistTest.php │ │ ├── SnapshotTest.php │ │ └── _fixture │ │ ├── BlacklistedChildClass.php │ │ ├── BlacklistedClass.php │ │ ├── BlacklistedImplementor.php │ │ ├── BlacklistedInterface.php │ │ ├── SnapshotClass.php │ │ ├── SnapshotDomDocument.php │ │ ├── SnapshotFunctions.php │ │ └── SnapshotTrait.php ├── recursion-context │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ └── tests │ │ └── ContextTest.php └── version │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── swiftmailer └── swiftmailer │ ├── .gitattributes │ ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── composer.json │ ├── doc │ ├── headers.rst │ ├── help-resources.rst │ ├── including-the-files.rst │ ├── index.rst │ ├── installing.rst │ ├── introduction.rst │ ├── japanese.rst │ ├── messages.rst │ ├── overview.rst │ ├── plugins.rst │ ├── sending.rst │ └── uml │ │ ├── Encoders.graffle │ │ ├── Mime.graffle │ │ └── Transports.graffle │ ├── lib │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Encoding.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Grammar.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── HeaderFactory.php │ │ │ ├── HeaderSet.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── Message.php │ │ │ ├── MimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SignedMessage.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ ├── OpenDKIMSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── SmtpTransport.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ └── Authenticator.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailInvoker.php │ │ │ ├── MailTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SimpleMailInvoker.php │ │ │ ├── SmtpAgent.php │ │ │ ├── SpoolTransport.php │ │ │ └── StreamBuffer.php │ │ │ ├── TransportException.php │ │ │ └── Validate.php │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ ├── mime_types.php │ ├── preferences.php │ ├── swift_init.php │ ├── swift_required.php │ ├── swift_required_pear.php │ └── swiftmailer_generate_mimes_config.php │ ├── phpunit.xml.dist │ └── tests │ ├── IdenticalBinaryConstraint.php │ ├── StreamCollector.php │ ├── SwiftMailerSmokeTestCase.php │ ├── SwiftMailerTestCase.php │ ├── _samples │ ├── charsets │ │ ├── iso-2022-jp │ │ │ └── one.txt │ │ ├── iso-8859-1 │ │ │ └── one.txt │ │ └── utf-8 │ │ │ ├── one.txt │ │ │ ├── three.txt │ │ │ └── two.txt │ ├── dkim │ │ ├── dkim.test.priv │ │ └── dkim.test.pub │ ├── files │ │ ├── data.txt │ │ ├── swiftmailer.png │ │ └── textfile.zip │ └── smime │ │ ├── CA.srl │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── create-cert.sh │ │ ├── encrypt.crt │ │ ├── encrypt.key │ │ ├── encrypt2.crt │ │ ├── encrypt2.key │ │ ├── intermediate.crt │ │ ├── intermediate.key │ │ ├── sign.crt │ │ ├── sign.key │ │ ├── sign2.crt │ │ └── sign2.key │ ├── acceptance.conf.php.default │ ├── acceptance │ └── Swift │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ByteStream │ │ └── FileByteStreamAcceptanceTest.php │ │ ├── CharacterReaderFactory │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ ├── DependencyContainerAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── Encoder │ │ ├── Base64EncoderAcceptanceTest.php │ │ ├── QpEncoderAcceptanceTest.php │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ ├── EncodingAcceptanceTest.php │ │ ├── KeyCache │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ └── DiskKeyCacheAcceptanceTest.php │ │ ├── MessageAcceptanceTest.php │ │ ├── Mime │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── HeaderEncoder │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── SimpleMessageAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── Transport │ │ └── StreamBuffer │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ ├── BasicSocketAcceptanceTest.php │ │ ├── ProcessAcceptanceTest.php │ │ ├── SocketTimeoutTest.php │ │ ├── SslSocketAcceptanceTest.php │ │ └── TlsSocketAcceptanceTest.php │ ├── bootstrap.php │ ├── bug │ └── Swift │ │ ├── Bug111Test.php │ │ ├── Bug118Test.php │ │ ├── Bug206Test.php │ │ ├── Bug274Test.php │ │ ├── Bug34Test.php │ │ ├── Bug35Test.php │ │ ├── Bug38Test.php │ │ ├── Bug518Test.php │ │ ├── Bug51Test.php │ │ ├── Bug534Test.php │ │ ├── Bug650Test.php │ │ ├── Bug71Test.php │ │ ├── Bug76Test.php │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php │ ├── fixtures │ └── MimeEntityFixture.php │ ├── smoke.conf.php.default │ ├── smoke │ └── Swift │ │ └── Smoke │ │ ├── AttachmentSmokeTest.php │ │ ├── BasicSmokeTest.php │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ └── InternationalSmokeTest.php │ └── unit │ └── Swift │ ├── ByteStream │ └── ArrayByteStreamTest.php │ ├── CharacterReader │ ├── GenericFixedWidthReaderTest.php │ ├── UsAsciiReaderTest.php │ └── Utf8ReaderTest.php │ ├── CharacterStream │ └── ArrayCharacterStreamTest.php │ ├── DependencyContainerTest.php │ ├── Encoder │ ├── Base64EncoderTest.php │ ├── QpEncoderTest.php │ └── Rfc2231EncoderTest.php │ ├── Events │ ├── CommandEventTest.php │ ├── EventObjectTest.php │ ├── ResponseEventTest.php │ ├── SendEventTest.php │ ├── SimpleEventDispatcherTest.php │ ├── TransportChangeEventTest.php │ └── TransportExceptionEventTest.php │ ├── KeyCache │ ├── ArrayKeyCacheTest.php │ └── SimpleKeyCacheInputStreamTest.php │ ├── Mailer │ └── ArrayRecipientIteratorTest.php │ ├── MailerTest.php │ ├── MessageTest.php │ ├── Mime │ ├── AbstractMimeEntityTest.php │ ├── AttachmentTest.php │ ├── ContentEncoder │ │ ├── Base64ContentEncoderTest.php │ │ ├── PlainContentEncoderTest.php │ │ └── QpContentEncoderTest.php │ ├── EmbeddedFileTest.php │ ├── HeaderEncoder │ │ ├── Base64HeaderEncoderTest.php │ │ └── QpHeaderEncoderTest.php │ ├── Headers │ │ ├── DateHeaderTest.php │ │ ├── IdentificationHeaderTest.php │ │ ├── MailboxHeaderTest.php │ │ ├── ParameterizedHeaderTest.php │ │ ├── PathHeaderTest.php │ │ └── UnstructuredHeaderTest.php │ ├── MimePartTest.php │ ├── SimpleHeaderFactoryTest.php │ ├── SimpleHeaderSetTest.php │ ├── SimpleMessageTest.php │ └── SimpleMimeEntityTest.php │ ├── Plugins │ ├── AntiFloodPluginTest.php │ ├── BandwidthMonitorPluginTest.php │ ├── DecoratorPluginTest.php │ ├── LoggerPluginTest.php │ ├── Loggers │ │ ├── ArrayLoggerTest.php │ │ └── EchoLoggerTest.php │ ├── PopBeforeSmtpPluginTest.php │ ├── RedirectingPluginTest.php │ ├── ReporterPluginTest.php │ ├── Reporters │ │ ├── HitReporterTest.php │ │ └── HtmlReporterTest.php │ └── ThrottlerPluginTest.php │ ├── Signers │ ├── DKIMSignerTest.php │ ├── OpenDKIMSignerTest.php │ └── SMimeSignerTest.php │ ├── StreamFilters │ ├── ByteArrayReplacementFilterTest.php │ ├── StringReplacementFilterFactoryTest.php │ └── StringReplacementFilterTest.php │ └── Transport │ ├── AbstractSmtpEventSupportTest.php │ ├── AbstractSmtpTest.php │ ├── Esmtp │ ├── Auth │ │ ├── CramMd5AuthenticatorTest.php │ │ ├── LoginAuthenticatorTest.php │ │ ├── NTLMAuthenticatorTest.php │ │ └── PlainAuthenticatorTest.php │ └── AuthHandlerTest.php │ ├── EsmtpTransport │ └── ExtensionSupportTest.php │ ├── EsmtpTransportTest.php │ ├── FailoverTransportTest.php │ ├── LoadBalancedTransportTest.php │ ├── MailTransportTest.php │ ├── SendmailTransportTest.php │ └── StreamBufferTest.php ├── symfony ├── dom-crawler │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Crawler.php │ ├── Field │ │ ├── ChoiceFormField.php │ │ ├── FileFormField.php │ │ ├── FormField.php │ │ ├── InputFormField.php │ │ └── TextareaFormField.php │ ├── Form.php │ ├── FormFieldRegistry.php │ ├── LICENSE │ ├── Link.php │ ├── README.md │ ├── Tests │ │ ├── CrawlerTest.php │ │ ├── Field │ │ │ ├── ChoiceFormFieldTest.php │ │ │ ├── FileFormFieldTest.php │ │ │ ├── FormFieldTest.php │ │ │ ├── FormFieldTestCase.php │ │ │ ├── InputFormFieldTest.php │ │ │ └── TextareaFormFieldTest.php │ │ ├── Fixtures │ │ │ ├── no-extension │ │ │ └── windows-1250.html │ │ ├── FormTest.php │ │ └── LinkTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── options-resolver │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Debug │ │ └── OptionsResolverIntrospector.php │ ├── Exception │ │ ├── AccessException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionsException.php │ │ ├── MissingOptionsException.php │ │ ├── NoConfigurationException.php │ │ ├── NoSuchOptionException.php │ │ ├── OptionDefinitionException.php │ │ └── UndefinedOptionsException.php │ ├── LICENSE │ ├── Options.php │ ├── OptionsResolver.php │ ├── README.md │ ├── Tests │ │ ├── Debug │ │ │ └── OptionsResolverIntrospectorTest.php │ │ └── OptionsResolverTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── polyfill-ctype │ ├── Ctype.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json └── yaml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Command │ └── LintCommand.php │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── LICENSE │ ├── Parser.php │ ├── README.md │ ├── Tag │ └── TaggedValue.php │ ├── Tests │ ├── Command │ │ └── LintCommandTest.php │ ├── DumperTest.php │ ├── Fixtures │ │ ├── YtsAnchorAlias.yml │ │ ├── YtsBasicTests.yml │ │ ├── YtsBlockMapping.yml │ │ ├── YtsDocumentSeparator.yml │ │ ├── YtsErrorTests.yml │ │ ├── YtsFlowCollections.yml │ │ ├── YtsFoldedScalars.yml │ │ ├── YtsNullsAndEmpties.yml │ │ ├── YtsSpecificationExamples.yml │ │ ├── YtsTypeTransfers.yml │ │ ├── arrow.gif │ │ ├── booleanMappingKeys.yml │ │ ├── embededPhp.yml │ │ ├── escapedCharacters.yml │ │ ├── index.yml │ │ ├── legacyBooleanMappingKeys.yml │ │ ├── legacyNonStringKeys.yml │ │ ├── legacyNullMappingKey.yml │ │ ├── multiple_lines_as_literal_block.yml │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ ├── nonStringKeys.yml │ │ ├── not_readable.yml │ │ ├── nullMappingKey.yml │ │ ├── numericMappingKeys.yml │ │ ├── sfComments.yml │ │ ├── sfCompact.yml │ │ ├── sfMergeKey.yml │ │ ├── sfObjects.yml │ │ ├── sfQuotes.yml │ │ ├── sfTests.yml │ │ └── unindentedCollections.yml │ ├── InlineTest.php │ ├── ParseExceptionTest.php │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist ├── topthink ├── think-captcha │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── bgs │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ └── 8.jpg │ │ ├── ttfs │ │ │ ├── 1.ttf │ │ │ ├── 2.ttf │ │ │ ├── 3.ttf │ │ │ ├── 4.ttf │ │ │ ├── 5.ttf │ │ │ └── 6.ttf │ │ └── zhttfs │ │ │ └── 1.ttf │ ├── composer.json │ └── src │ │ ├── Captcha.php │ │ ├── CaptchaController.php │ │ └── helper.php ├── think-helper │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Arr.php │ │ ├── Hash.php │ │ ├── Str.php │ │ ├── Time.php │ │ ├── hash │ │ ├── Bcrypt.php │ │ └── Md5.php │ │ └── helper.php ├── think-image │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Image.php │ │ └── image │ │ │ ├── Exception.php │ │ │ └── gif │ │ │ ├── Decoder.php │ │ │ ├── Encoder.php │ │ │ └── Gif.php │ └── tests │ │ ├── CropTest.php │ │ ├── FlipTest.php │ │ ├── InfoTest.php │ │ ├── RotateTest.php │ │ ├── TestCase.php │ │ ├── TextTest.php │ │ ├── ThumbTest.php │ │ ├── WaterTest.php │ │ ├── autoload.php │ │ ├── images │ │ ├── test.bmp │ │ ├── test.gif │ │ ├── test.jpg │ │ ├── test.png │ │ └── test.ttf │ │ └── tmp │ │ └── .gitignore ├── think-installer │ ├── .gitignore │ ├── composer.json │ └── src │ │ ├── Plugin.php │ │ ├── ThinkExtend.php │ │ ├── ThinkFramework.php │ │ └── ThinkTesting.php ├── think-mongo │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Builder.php │ │ ├── Connection.php │ │ └── Query.php ├── think-queue │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Queue.php │ │ ├── common.php │ │ ├── config.php │ │ └── queue │ │ ├── CallQueuedHandler.php │ │ ├── Connector.php │ │ ├── Job.php │ │ ├── Listener.php │ │ ├── Queueable.php │ │ ├── ShouldQueue.php │ │ ├── Worker.php │ │ ├── command │ │ ├── Listen.php │ │ ├── Restart.php │ │ ├── Subscribe.php │ │ └── Work.php │ │ ├── connector │ │ ├── Database.php │ │ ├── Redis.php │ │ ├── Sync.php │ │ └── Topthink.php │ │ └── job │ │ ├── Database.php │ │ ├── Redis.php │ │ ├── Sync.php │ │ └── Topthink.php ├── think-testing │ ├── .gitignore │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ApplicationTrait.php │ │ ├── AssertionsTrait.php │ │ ├── CrawlerTrait.php │ │ ├── HttpException.php │ │ ├── InteractsWithPages.php │ │ ├── TestCase.php │ │ ├── command │ │ └── Test.php │ │ └── config.php └── think-worker │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Server.php ├── webmozart └── assert │ ├── .composer-auth.json │ ├── .styleci.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Assert.php ├── workerman └── workerman │ ├── .gitignore │ ├── Autoloader.php │ ├── Connection │ ├── AsyncTcpConnection.php │ ├── AsyncUdpConnection.php │ ├── ConnectionInterface.php │ ├── TcpConnection.php │ └── UdpConnection.php │ ├── Events │ ├── Ev.php │ ├── Event.php │ ├── EventInterface.php │ ├── Libevent.php │ ├── React │ │ ├── Base.php │ │ ├── ExtEventLoop.php │ │ ├── ExtLibEventLoop.php │ │ └── StreamSelectLoop.php │ ├── Select.php │ └── Swoole.php │ ├── Lib │ ├── Constants.php │ └── Timer.php │ ├── MIT-LICENSE.txt │ ├── Protocols │ ├── Frame.php │ ├── Http.php │ ├── Http │ │ └── mime.types │ ├── ProtocolInterface.php │ ├── Text.php │ ├── Websocket.php │ └── Ws.php │ ├── README.md │ ├── WebServer.php │ ├── Worker.php │ └── composer.json ├── yuan1994 └── tp-mailer │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── config.php │ └── src │ ├── autoload.php │ └── mailer │ ├── lib │ ├── BadMethodCallException.php │ ├── Config.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── Log.php │ ├── Mailer.php │ ├── MailerConfig.php │ ├── Transport.php │ └── log │ │ └── File.php │ ├── tp31 │ └── Mailer.php │ ├── tp32 │ └── Mailer.php │ └── tp5 │ └── Mailer.php └── zoujingli ├── ip2region ├── .gitignore ├── Ip2Region.php ├── LICENSE.md ├── README.md ├── composer.json ├── ip2region.db └── test.php ├── pay-php-sdk ├── .gitignore ├── MIT-LICENSE.txt ├── README.md ├── composer.json ├── init.php ├── src │ ├── Contracts │ │ ├── Config.php │ │ ├── GatewayInterface.php │ │ └── HttpService.php │ ├── Exceptions │ │ ├── Exception.php │ │ ├── GatewayException.php │ │ └── InvalidArgumentException.php │ ├── Gateways │ │ ├── Alipay.php │ │ ├── Alipay │ │ │ ├── AppGateway.php │ │ │ ├── BillGateway.php │ │ │ ├── PosGateway.php │ │ │ ├── ScanGateway.php │ │ │ ├── TransferGateway.php │ │ │ ├── WapGateway.php │ │ │ └── WebGateway.php │ │ ├── Wechat.php │ │ └── Wechat │ │ │ ├── AppGateway.php │ │ │ ├── BankGateway.php │ │ │ ├── BillGateway.php │ │ │ ├── MiniappGateway.php │ │ │ ├── MpGateway.php │ │ │ ├── PosGateway.php │ │ │ ├── ScanGateway.php │ │ │ ├── TransferGateway.php │ │ │ └── WapGateway.php │ └── Pay.php └── test │ ├── alipay-app.php │ ├── alipay-bill.php │ ├── alipay-notify.php │ ├── alipay-pos.php │ ├── alipay-refund.php │ ├── alipay-scan.php │ ├── alipay-transfer.php │ ├── alipay-wap.php │ ├── alipay-web.php │ ├── config.php │ ├── notify.txt │ ├── wxpay-app.php │ ├── wxpay-bank.php │ ├── wxpay-bill.php │ ├── wxpay-miniapp.php │ ├── wxpay-mp.php │ ├── wxpay-notify.php │ ├── wxpay-pos.php │ ├── wxpay-refund.php │ ├── wxpay-scan.php │ ├── wxpay-transfer.php │ └── wxpay-wap.php └── wechat-php-sdk ├── .gitignore ├── MIT-LICENSE.txt ├── README.md ├── Wechat ├── Lib │ ├── Cache.php │ ├── Common.php │ ├── Prpcrypt.php │ └── Tools.php ├── Loader.php ├── WechatCard.php ├── WechatCustom.php ├── WechatDevice.php ├── WechatExtends.php ├── WechatHardware.php ├── WechatMedia.php ├── WechatMenu.php ├── WechatMessage.php ├── WechatOauth.php ├── WechatPay.php ├── WechatPoi.php ├── WechatReceive.php ├── WechatScript.php ├── WechatService.php └── WechatUser.php ├── composer.json ├── include.php └── test.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/README.md -------------------------------------------------------------------------------- /application/admin/controller/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Auth.php -------------------------------------------------------------------------------- /application/admin/controller/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Config.php -------------------------------------------------------------------------------- /application/admin/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Index.php -------------------------------------------------------------------------------- /application/admin/controller/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Log.php -------------------------------------------------------------------------------- /application/admin/controller/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Login.php -------------------------------------------------------------------------------- /application/admin/controller/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Menu.php -------------------------------------------------------------------------------- /application/admin/controller/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Node.php -------------------------------------------------------------------------------- /application/admin/controller/Plugs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/Plugs.php -------------------------------------------------------------------------------- /application/admin/controller/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/controller/User.php -------------------------------------------------------------------------------- /application/admin/view/auth.apply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/auth.apply.html -------------------------------------------------------------------------------- /application/admin/view/auth.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/auth.form.html -------------------------------------------------------------------------------- /application/admin/view/auth.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/auth.index.html -------------------------------------------------------------------------------- /application/admin/view/config.file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/config.file.html -------------------------------------------------------------------------------- /application/admin/view/config.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/config.index.html -------------------------------------------------------------------------------- /application/admin/view/index.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/index.index.html -------------------------------------------------------------------------------- /application/admin/view/index.main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/index.main.html -------------------------------------------------------------------------------- /application/admin/view/log.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/log.index.html -------------------------------------------------------------------------------- /application/admin/view/login.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/login.index.html -------------------------------------------------------------------------------- /application/admin/view/menu.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/menu.form.html -------------------------------------------------------------------------------- /application/admin/view/menu.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/menu.index.html -------------------------------------------------------------------------------- /application/admin/view/node.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/node.index.html -------------------------------------------------------------------------------- /application/admin/view/plugs.icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/plugs.icon.html -------------------------------------------------------------------------------- /application/admin/view/plugs.upfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/plugs.upfile.html -------------------------------------------------------------------------------- /application/admin/view/user.auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/user.auth.html -------------------------------------------------------------------------------- /application/admin/view/user.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/user.form.html -------------------------------------------------------------------------------- /application/admin/view/user.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/user.index.html -------------------------------------------------------------------------------- /application/admin/view/user.pass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/admin/view/user.pass.html -------------------------------------------------------------------------------- /application/api/behavior/ApiAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/behavior/ApiAuth.php -------------------------------------------------------------------------------- /application/api/behavior/ApiPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/behavior/ApiPermission.php -------------------------------------------------------------------------------- /application/api/behavior/BuildResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/behavior/BuildResponse.php -------------------------------------------------------------------------------- /application/api/behavior/RequestFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/behavior/RequestFilter.php -------------------------------------------------------------------------------- /application/api/controller/Buildtoken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/controller/Buildtoken.php -------------------------------------------------------------------------------- /application/api/controller/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/controller/Debug.php -------------------------------------------------------------------------------- /application/api/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/controller/Index.php -------------------------------------------------------------------------------- /application/api/controller/Miss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/controller/Miss.php -------------------------------------------------------------------------------- /application/api/controller/Tool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/controller/Tool.php -------------------------------------------------------------------------------- /application/api/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/api/tags.php -------------------------------------------------------------------------------- /application/apiRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/apiRoute.php -------------------------------------------------------------------------------- /application/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/common.php -------------------------------------------------------------------------------- /application/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/config.php -------------------------------------------------------------------------------- /application/database.php.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/database.php.dev -------------------------------------------------------------------------------- /application/demo/controller/Plugs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/demo/controller/Plugs.php -------------------------------------------------------------------------------- /application/demo/view/plugs.editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/demo/view/plugs.editor.html -------------------------------------------------------------------------------- /application/demo/view/plugs.file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/demo/view/plugs.file.html -------------------------------------------------------------------------------- /application/demo/view/plugs.region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/demo/view/plugs.region.html -------------------------------------------------------------------------------- /application/extra/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/api.php -------------------------------------------------------------------------------- /application/extra/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/mail.php -------------------------------------------------------------------------------- /application/extra/mines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/mines.php -------------------------------------------------------------------------------- /application/extra/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/queue.php -------------------------------------------------------------------------------- /application/extra/view/admin.content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/view/admin.content.html -------------------------------------------------------------------------------- /application/extra/view/admin.main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/view/admin.main.html -------------------------------------------------------------------------------- /application/extra/view/admin.main.left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/view/admin.main.left.html -------------------------------------------------------------------------------- /application/extra/view/admin.main.top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/view/admin.main.top.html -------------------------------------------------------------------------------- /application/extra/view/api.main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/view/api.main.html -------------------------------------------------------------------------------- /application/extra/view/handler.jump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/extra/view/handler.jump.html -------------------------------------------------------------------------------- /application/index/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/index/controller/Index.php -------------------------------------------------------------------------------- /application/index/controller/Wap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/index/controller/Wap.php -------------------------------------------------------------------------------- /application/index/view/wap.payjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/index/view/wap.payjs.html -------------------------------------------------------------------------------- /application/index/view/wap.payqrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/index/view/wap.payqrc.html -------------------------------------------------------------------------------- /application/model/ApiApp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/model/ApiApp.php -------------------------------------------------------------------------------- /application/model/ApiAuthGroupAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/model/ApiAuthGroupAccess.php -------------------------------------------------------------------------------- /application/model/ApiFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/model/ApiFields.php -------------------------------------------------------------------------------- /application/model/ApiGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/model/ApiGroup.php -------------------------------------------------------------------------------- /application/model/ApiList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/model/ApiList.php -------------------------------------------------------------------------------- /application/model/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/model/Base.php -------------------------------------------------------------------------------- /application/port/controller/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/controller/Group.php -------------------------------------------------------------------------------- /application/port/controller/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/controller/Row.php -------------------------------------------------------------------------------- /application/port/controller/Visit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/controller/Visit.php -------------------------------------------------------------------------------- /application/port/view/group.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/group.form.html -------------------------------------------------------------------------------- /application/port/view/group.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/group.index.html -------------------------------------------------------------------------------- /application/port/view/group.recycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/group.recycle.html -------------------------------------------------------------------------------- /application/port/view/row.ask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.ask.html -------------------------------------------------------------------------------- /application/port/view/row.ask.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.ask.modal.html -------------------------------------------------------------------------------- /application/port/view/row.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.form.html -------------------------------------------------------------------------------- /application/port/view/row.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.index.html -------------------------------------------------------------------------------- /application/port/view/row.param.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.param.html -------------------------------------------------------------------------------- /application/port/view/row.paramform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.paramform.html -------------------------------------------------------------------------------- /application/port/view/row.recycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.recycle.html -------------------------------------------------------------------------------- /application/port/view/row.res.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.res.html -------------------------------------------------------------------------------- /application/port/view/row.uploadform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/row.uploadform.html -------------------------------------------------------------------------------- /application/port/view/visit.app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/visit.app.html -------------------------------------------------------------------------------- /application/port/view/visit.appform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/visit.appform.html -------------------------------------------------------------------------------- /application/port/view/visit.doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/visit.doc.html -------------------------------------------------------------------------------- /application/port/view/visit.docform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/port/view/visit.docform.html -------------------------------------------------------------------------------- /application/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/route.php -------------------------------------------------------------------------------- /application/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/tags.php -------------------------------------------------------------------------------- /application/util/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/Agent.php -------------------------------------------------------------------------------- /application/util/ApiLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/ApiLog.php -------------------------------------------------------------------------------- /application/util/DataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/DataType.php -------------------------------------------------------------------------------- /application/util/Excel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/Excel.php -------------------------------------------------------------------------------- /application/util/ReturnCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/ReturnCode.php -------------------------------------------------------------------------------- /application/util/Strs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/Strs.php -------------------------------------------------------------------------------- /application/util/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/Tools.php -------------------------------------------------------------------------------- /application/util/apiRoute.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/util/apiRoute.tpl -------------------------------------------------------------------------------- /application/wechat/controller/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Api.php -------------------------------------------------------------------------------- /application/wechat/controller/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Config.php -------------------------------------------------------------------------------- /application/wechat/controller/Fans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Fans.php -------------------------------------------------------------------------------- /application/wechat/controller/Keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Keys.php -------------------------------------------------------------------------------- /application/wechat/controller/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Menu.php -------------------------------------------------------------------------------- /application/wechat/controller/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/News.php -------------------------------------------------------------------------------- /application/wechat/controller/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Notify.php -------------------------------------------------------------------------------- /application/wechat/controller/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Review.php -------------------------------------------------------------------------------- /application/wechat/controller/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/controller/Tags.php -------------------------------------------------------------------------------- /application/wechat/view/config.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/config.index.html -------------------------------------------------------------------------------- /application/wechat/view/config.pay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/config.pay.html -------------------------------------------------------------------------------- /application/wechat/view/fans.back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/fans.back.html -------------------------------------------------------------------------------- /application/wechat/view/fans.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/fans.index.html -------------------------------------------------------------------------------- /application/wechat/view/keys.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/keys.form.html -------------------------------------------------------------------------------- /application/wechat/view/keys.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/keys.index.html -------------------------------------------------------------------------------- /application/wechat/view/menu.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/menu.index.html -------------------------------------------------------------------------------- /application/wechat/view/news.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/news.form.html -------------------------------------------------------------------------------- /application/wechat/view/news.image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/news.image.html -------------------------------------------------------------------------------- /application/wechat/view/news.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/news.index.html -------------------------------------------------------------------------------- /application/wechat/view/news.push.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/news.push.html -------------------------------------------------------------------------------- /application/wechat/view/news.select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/news.select.html -------------------------------------------------------------------------------- /application/wechat/view/review.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/review.index.html -------------------------------------------------------------------------------- /application/wechat/view/tags.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/tags.form.html -------------------------------------------------------------------------------- /application/wechat/view/tags.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wechat/view/tags.index.html -------------------------------------------------------------------------------- /application/wiki/controller/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wiki/controller/Base.php -------------------------------------------------------------------------------- /application/wiki/controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wiki/controller/Index.php -------------------------------------------------------------------------------- /application/wiki/controller/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wiki/controller/Login.php -------------------------------------------------------------------------------- /application/wiki/view/index.detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wiki/view/index.detail.html -------------------------------------------------------------------------------- /application/wiki/view/index.errorcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wiki/view/index.errorcode.html -------------------------------------------------------------------------------- /application/wiki/view/index.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wiki/view/index.index.html -------------------------------------------------------------------------------- /application/wiki/view/login.index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wiki/view/login.index.html -------------------------------------------------------------------------------- /application/wikiRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/wikiRoute.php -------------------------------------------------------------------------------- /application/worker/controller/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/application/worker/controller/Worker.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/composer.json -------------------------------------------------------------------------------- /debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/debug.php -------------------------------------------------------------------------------- /extend/Hashids/HashGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/Hashids/HashGenerator.php -------------------------------------------------------------------------------- /extend/Hashids/Hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/Hashids/Hashids.php -------------------------------------------------------------------------------- /extend/controller/BasicAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/controller/BasicAdmin.php -------------------------------------------------------------------------------- /extend/controller/BasicApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/controller/BasicApi.php -------------------------------------------------------------------------------- /extend/controller/BasicWechat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/controller/BasicWechat.php -------------------------------------------------------------------------------- /extend/hook/AccessAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/hook/AccessAuth.php -------------------------------------------------------------------------------- /extend/hook/FilterView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/hook/FilterView.php -------------------------------------------------------------------------------- /extend/service/DataService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/DataService.php -------------------------------------------------------------------------------- /extend/service/FileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/FileService.php -------------------------------------------------------------------------------- /extend/service/HttpService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/HttpService.php -------------------------------------------------------------------------------- /extend/service/LogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/LogService.php -------------------------------------------------------------------------------- /extend/service/NodeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/NodeService.php -------------------------------------------------------------------------------- /extend/service/PayService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/PayService.php -------------------------------------------------------------------------------- /extend/service/SoapService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/SoapService.php -------------------------------------------------------------------------------- /extend/service/ToolsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/ToolsService.php -------------------------------------------------------------------------------- /extend/service/WechatService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/extend/service/WechatService.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/phpunit.xml -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/server.php -------------------------------------------------------------------------------- /static/admin/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/admin/app.js -------------------------------------------------------------------------------- /static/admin/gt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/admin/gt.js -------------------------------------------------------------------------------- /static/admin/listen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/admin/listen.js -------------------------------------------------------------------------------- /static/admin/plugs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/admin/plugs.js -------------------------------------------------------------------------------- /static/api/img/api_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/api/img/api_default.jpg -------------------------------------------------------------------------------- /static/api/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/api/js/login.js -------------------------------------------------------------------------------- /static/plugs/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/angular/angular.min.js -------------------------------------------------------------------------------- /static/plugs/aui/aui-iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/aui/aui-iconfont.ttf -------------------------------------------------------------------------------- /static/plugs/aui/aui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/aui/aui.css -------------------------------------------------------------------------------- /static/plugs/awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/awesome/css/font-awesome.css -------------------------------------------------------------------------------- /static/plugs/awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/plugs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/plugs/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/plugs/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/plugs/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/bootstrap/js/npm.js -------------------------------------------------------------------------------- /static/plugs/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /static/plugs/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /static/plugs/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/README.md -------------------------------------------------------------------------------- /static/plugs/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /static/plugs/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /static/plugs/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/config.js -------------------------------------------------------------------------------- /static/plugs/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/contents.css -------------------------------------------------------------------------------- /static/plugs/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /static/plugs/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /static/plugs/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /static/plugs/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ckeditor/styles.js -------------------------------------------------------------------------------- /static/plugs/jquery/base64.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/base64.min.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery.PrintArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery.PrintArea.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery.cascade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery.cascade.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery.citys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery.citys.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery.cookie.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery.form.js -------------------------------------------------------------------------------- /static/plugs/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/plugs/jquery/json2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/json2.min.js -------------------------------------------------------------------------------- /static/plugs/jquery/masonry.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/masonry.min.js -------------------------------------------------------------------------------- /static/plugs/jquery/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/pace.min.js -------------------------------------------------------------------------------- /static/plugs/jquery/pcasunzips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jquery/pcasunzips.js -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/css/jquery-weui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/css/jquery-weui.css -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/js/city-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/js/city-picker.js -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/js/jquery-weui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/js/jquery-weui.js -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/js/swiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/js/swiper.js -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/js/swiper.min.js -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/lib/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/lib/fastclick.js -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/lib/jquery-2.1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/lib/jquery-2.1.4.js -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/lib/weui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/lib/weui.css -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/lib/weui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/lib/weui.min.css -------------------------------------------------------------------------------- /static/plugs/jqueryWeui/lib/zepto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jqueryWeui/lib/zepto.js -------------------------------------------------------------------------------- /static/plugs/jsonFormater/Collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jsonFormater/Collapsed.gif -------------------------------------------------------------------------------- /static/plugs/jsonFormater/Expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jsonFormater/Expanded.gif -------------------------------------------------------------------------------- /static/plugs/jsonFormater/jsonFormater.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jsonFormater/jsonFormater.css -------------------------------------------------------------------------------- /static/plugs/jsonFormater/jsonFormater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/jsonFormater/jsonFormater.js -------------------------------------------------------------------------------- /static/plugs/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/css/layui.css -------------------------------------------------------------------------------- /static/plugs/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /static/plugs/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/css/modules/code.css -------------------------------------------------------------------------------- /static/plugs/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/font/iconfont.eot -------------------------------------------------------------------------------- /static/plugs/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/font/iconfont.svg -------------------------------------------------------------------------------- /static/plugs/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /static/plugs/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/font/iconfont.woff -------------------------------------------------------------------------------- /static/plugs/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/0.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/1.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/10.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/11.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/12.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/13.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/14.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/15.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/16.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/17.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/18.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/19.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/2.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/20.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/21.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/22.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/23.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/24.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/25.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/26.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/27.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/28.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/29.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/3.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/30.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/31.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/32.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/33.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/34.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/35.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/36.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/37.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/38.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/39.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/4.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/40.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/41.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/42.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/43.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/44.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/45.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/46.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/47.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/48.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/49.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/5.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/50.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/51.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/52.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/53.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/54.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/55.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/56.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/57.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/58.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/59.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/6.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/60.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/61.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/62.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/63.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/64.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/65.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/66.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/67.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/68.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/69.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/7.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/70.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/71.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/8.gif -------------------------------------------------------------------------------- /static/plugs/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/images/face/9.gif -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/code.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/element.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/form.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/layim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/layim.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/table.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /static/plugs/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/lay/modules/util.js -------------------------------------------------------------------------------- /static/plugs/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/layui.all.js -------------------------------------------------------------------------------- /static/plugs/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/layui/layui.js -------------------------------------------------------------------------------- /static/plugs/require/require.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/require/require.css.js -------------------------------------------------------------------------------- /static/plugs/require/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/require/require.js -------------------------------------------------------------------------------- /static/plugs/semantic/.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/.versions -------------------------------------------------------------------------------- /static/plugs/semantic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/LICENSE -------------------------------------------------------------------------------- /static/plugs/semantic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/README.md -------------------------------------------------------------------------------- /static/plugs/semantic/components/ad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/ad.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/ad.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/ad.min.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/api.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/api.min.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/button.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/card.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/dimmer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/dimmer.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/dimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/dimmer.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/embed.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/embed.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/feed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/feed.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/flag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/flag.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/form.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/form.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/grid.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/header.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/icon.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/image.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/input.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/item.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/label.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/list.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/loader.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/menu.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/modal.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/modal.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/nag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/nag.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/nag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/nag.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/nag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/nag.min.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/popup.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/popup.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/rail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/rail.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/rating.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/rating.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/rating.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/reset.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/reveal.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/search.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/search.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/shape.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/shape.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/shape.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/sidebar.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/site.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/site.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/state.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/step.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/sticky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/sticky.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/sticky.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/tab.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/tab.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/tab.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/tab.min.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/table.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/video.css -------------------------------------------------------------------------------- /static/plugs/semantic/components/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/video.js -------------------------------------------------------------------------------- /static/plugs/semantic/components/visit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/components/visit.js -------------------------------------------------------------------------------- /static/plugs/semantic/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/package.js -------------------------------------------------------------------------------- /static/plugs/semantic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/package.json -------------------------------------------------------------------------------- /static/plugs/semantic/semantic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/semantic.css -------------------------------------------------------------------------------- /static/plugs/semantic/semantic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/semantic.js -------------------------------------------------------------------------------- /static/plugs/semantic/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/semantic.min.css -------------------------------------------------------------------------------- /static/plugs/semantic/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/semantic/semantic.min.js -------------------------------------------------------------------------------- /static/plugs/socket/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/socket/WebSocketMain.swf -------------------------------------------------------------------------------- /static/plugs/socket/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/socket/swfobject.js -------------------------------------------------------------------------------- /static/plugs/socket/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/socket/websocket.js -------------------------------------------------------------------------------- /static/plugs/template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/template/template.js -------------------------------------------------------------------------------- /static/plugs/uploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/Uploader.swf -------------------------------------------------------------------------------- /static/plugs/uploader/theme/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/theme/bg.png -------------------------------------------------------------------------------- /static/plugs/uploader/theme/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/theme/icons.png -------------------------------------------------------------------------------- /static/plugs/uploader/theme/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/theme/image.png -------------------------------------------------------------------------------- /static/plugs/uploader/theme/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/theme/progress.png -------------------------------------------------------------------------------- /static/plugs/uploader/theme/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/theme/success.png -------------------------------------------------------------------------------- /static/plugs/uploader/theme/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/theme/upload.js -------------------------------------------------------------------------------- /static/plugs/uploader/theme/uploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/theme/uploader.css -------------------------------------------------------------------------------- /static/plugs/uploader/webuploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/webuploader.css -------------------------------------------------------------------------------- /static/plugs/uploader/webuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/webuploader.js -------------------------------------------------------------------------------- /static/plugs/uploader/webuploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/uploader/webuploader.min.js -------------------------------------------------------------------------------- /static/plugs/ztree/jquery.ztree.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/jquery.ztree.all.min.js -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /static/plugs/ztree/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/plugs/ztree/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /static/theme/default/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/css/animate.css -------------------------------------------------------------------------------- /static/theme/default/css/console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/css/console.css -------------------------------------------------------------------------------- /static/theme/default/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/css/login.css -------------------------------------------------------------------------------- /static/theme/default/img/404_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/404_icon.png -------------------------------------------------------------------------------- /static/theme/default/img/505_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/505_icon.png -------------------------------------------------------------------------------- /static/theme/default/img/cuci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/cuci.png -------------------------------------------------------------------------------- /static/theme/default/img/cuci_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/cuci_favicon.ico -------------------------------------------------------------------------------- /static/theme/default/img/head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/head.gif -------------------------------------------------------------------------------- /static/theme/default/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/icon.png -------------------------------------------------------------------------------- /static/theme/default/img/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/image.png -------------------------------------------------------------------------------- /static/theme/default/img/login/buttonbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/buttonbg.png -------------------------------------------------------------------------------- /static/theme/default/img/login/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/cloud.png -------------------------------------------------------------------------------- /static/theme/default/img/login/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/hand.png -------------------------------------------------------------------------------- /static/theme/default/img/login/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/light.png -------------------------------------------------------------------------------- /static/theme/default/img/login/loginbg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/loginbg1.png -------------------------------------------------------------------------------- /static/theme/default/img/login/loginbg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/loginbg2.png -------------------------------------------------------------------------------- /static/theme/default/img/login/loginbg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/loginbg3.png -------------------------------------------------------------------------------- /static/theme/default/img/login/tou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/login/tou.png -------------------------------------------------------------------------------- /static/theme/default/img/paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/paper.jpg -------------------------------------------------------------------------------- /static/theme/default/img/unsharp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/unsharp.jpg -------------------------------------------------------------------------------- /static/theme/default/img/wechat/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/static/theme/default/img/wechat/index.png -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /think_api_admin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/think_api_admin.sql -------------------------------------------------------------------------------- /think_api_admin_navicat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/think_api_admin_navicat.sql -------------------------------------------------------------------------------- /think_api_admin_phpmyadmin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/think_api_admin_phpmyadmin.sql -------------------------------------------------------------------------------- /think_api_admin_sqlyog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/think_api_admin_sqlyog.sql -------------------------------------------------------------------------------- /thinkphp/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | .idea 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /thinkphp/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /thinkphp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/.travis.yml -------------------------------------------------------------------------------- /thinkphp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/CONTRIBUTING.md -------------------------------------------------------------------------------- /thinkphp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/LICENSE.txt -------------------------------------------------------------------------------- /thinkphp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/README.md -------------------------------------------------------------------------------- /thinkphp/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/base.php -------------------------------------------------------------------------------- /thinkphp/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/codecov.yml -------------------------------------------------------------------------------- /thinkphp/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/composer.json -------------------------------------------------------------------------------- /thinkphp/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/console.php -------------------------------------------------------------------------------- /thinkphp/convention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/convention.php -------------------------------------------------------------------------------- /thinkphp/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/helper.php -------------------------------------------------------------------------------- /thinkphp/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/lang/zh-cn.php -------------------------------------------------------------------------------- /thinkphp/library/think/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/App.php -------------------------------------------------------------------------------- /thinkphp/library/think/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Build.php -------------------------------------------------------------------------------- /thinkphp/library/think/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Cache.php -------------------------------------------------------------------------------- /thinkphp/library/think/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Collection.php -------------------------------------------------------------------------------- /thinkphp/library/think/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Config.php -------------------------------------------------------------------------------- /thinkphp/library/think/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Console.php -------------------------------------------------------------------------------- /thinkphp/library/think/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Controller.php -------------------------------------------------------------------------------- /thinkphp/library/think/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Cookie.php -------------------------------------------------------------------------------- /thinkphp/library/think/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Db.php -------------------------------------------------------------------------------- /thinkphp/library/think/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Debug.php -------------------------------------------------------------------------------- /thinkphp/library/think/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Env.php -------------------------------------------------------------------------------- /thinkphp/library/think/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Error.php -------------------------------------------------------------------------------- /thinkphp/library/think/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Exception.php -------------------------------------------------------------------------------- /thinkphp/library/think/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/File.php -------------------------------------------------------------------------------- /thinkphp/library/think/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Hook.php -------------------------------------------------------------------------------- /thinkphp/library/think/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Lang.php -------------------------------------------------------------------------------- /thinkphp/library/think/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Loader.php -------------------------------------------------------------------------------- /thinkphp/library/think/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Log.php -------------------------------------------------------------------------------- /thinkphp/library/think/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Model.php -------------------------------------------------------------------------------- /thinkphp/library/think/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Paginator.php -------------------------------------------------------------------------------- /thinkphp/library/think/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Process.php -------------------------------------------------------------------------------- /thinkphp/library/think/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Request.php -------------------------------------------------------------------------------- /thinkphp/library/think/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Response.php -------------------------------------------------------------------------------- /thinkphp/library/think/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Route.php -------------------------------------------------------------------------------- /thinkphp/library/think/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Session.php -------------------------------------------------------------------------------- /thinkphp/library/think/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Template.php -------------------------------------------------------------------------------- /thinkphp/library/think/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Url.php -------------------------------------------------------------------------------- /thinkphp/library/think/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/Validate.php -------------------------------------------------------------------------------- /thinkphp/library/think/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/View.php -------------------------------------------------------------------------------- /thinkphp/library/think/cache/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/cache/Driver.php -------------------------------------------------------------------------------- /thinkphp/library/think/console/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/console/Command.php -------------------------------------------------------------------------------- /thinkphp/library/think/console/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/console/Input.php -------------------------------------------------------------------------------- /thinkphp/library/think/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/console/LICENSE -------------------------------------------------------------------------------- /thinkphp/library/think/console/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/console/Output.php -------------------------------------------------------------------------------- /thinkphp/library/think/controller/Rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/controller/Rest.php -------------------------------------------------------------------------------- /thinkphp/library/think/controller/Yar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/controller/Yar.php -------------------------------------------------------------------------------- /thinkphp/library/think/db/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/db/Builder.php -------------------------------------------------------------------------------- /thinkphp/library/think/db/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/db/Connection.php -------------------------------------------------------------------------------- /thinkphp/library/think/db/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/db/Expression.php -------------------------------------------------------------------------------- /thinkphp/library/think/db/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/db/Query.php -------------------------------------------------------------------------------- /thinkphp/library/think/db/builder/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/db/builder/Mysql.php -------------------------------------------------------------------------------- /thinkphp/library/think/db/builder/Pgsql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/db/builder/Pgsql.php -------------------------------------------------------------------------------- /thinkphp/library/think/debug/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/debug/Console.php -------------------------------------------------------------------------------- /thinkphp/library/think/debug/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/debug/Html.php -------------------------------------------------------------------------------- /thinkphp/library/think/exception/Handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/exception/Handle.php -------------------------------------------------------------------------------- /thinkphp/library/think/log/driver/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/log/driver/File.php -------------------------------------------------------------------------------- /thinkphp/library/think/log/driver/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/log/driver/Test.php -------------------------------------------------------------------------------- /thinkphp/library/think/model/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/model/Collection.php -------------------------------------------------------------------------------- /thinkphp/library/think/model/Merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/model/Merge.php -------------------------------------------------------------------------------- /thinkphp/library/think/model/Pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/model/Pivot.php -------------------------------------------------------------------------------- /thinkphp/library/think/model/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/model/Relation.php -------------------------------------------------------------------------------- /thinkphp/library/think/process/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/process/Builder.php -------------------------------------------------------------------------------- /thinkphp/library/think/process/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/process/Utils.php -------------------------------------------------------------------------------- /thinkphp/library/think/response/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/response/Json.php -------------------------------------------------------------------------------- /thinkphp/library/think/response/Jsonp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/response/Jsonp.php -------------------------------------------------------------------------------- /thinkphp/library/think/response/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/response/View.php -------------------------------------------------------------------------------- /thinkphp/library/think/response/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/response/Xml.php -------------------------------------------------------------------------------- /thinkphp/library/think/template/TagLib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/template/TagLib.php -------------------------------------------------------------------------------- /thinkphp/library/think/view/driver/Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/think/view/driver/Php.php -------------------------------------------------------------------------------- /thinkphp/library/traits/controller/Jump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/traits/controller/Jump.php -------------------------------------------------------------------------------- /thinkphp/library/traits/think/Instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/library/traits/think/Instance.php -------------------------------------------------------------------------------- /thinkphp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/logo.png -------------------------------------------------------------------------------- /thinkphp/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/phpunit.xml -------------------------------------------------------------------------------- /thinkphp/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/start.php -------------------------------------------------------------------------------- /thinkphp/tpl/default_index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/tpl/default_index.tpl -------------------------------------------------------------------------------- /thinkphp/tpl/dispatch_jump.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/tpl/dispatch_jump.tpl -------------------------------------------------------------------------------- /thinkphp/tpl/page_trace.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/tpl/page_trace.tpl -------------------------------------------------------------------------------- /thinkphp/tpl/think_exception.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/thinkphp/tpl/think_exception.tpl -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/.coveralls.yml -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/.gitignore -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/.travis.yml -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/LICENSE.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/README-CN.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/README.md -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/autoload.php -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/build-phar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/build-phar.sh -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/composer.json -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/aliyuncs/oss-sdk-php/example.jpg -------------------------------------------------------------------------------- /vendor/aliyuncs/oss-sdk-php/index.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://stdin')); 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/phpunit/phpunit/src/Util/Regex.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/phpunit/phpunit/src/Util/Test.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/phpunit/phpunit/src/Util/Type.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/phpunit/phpunit/src/Util/XML.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1351/ChildProcessClass1351.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/log/Psr/Log/AbstractLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/.gitignore -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/.travis.yml -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/LICENSE -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/README.md -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/autoload.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/composer.json -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/docs/rtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/docs/rtc/README.md -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/docs/rtc/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/docs/rtc/example.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/examples/README.md -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/examples/prefop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/examples/prefop.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/examples/qetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/examples/qetag.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/examples/rs_copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/examples/rs_copy.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/examples/rs_move.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/examples/rs_move.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/examples/rs_stat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/examples/rs_stat.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/examples/saveas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/examples/saveas.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/src/Qiniu/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/src/Qiniu/Auth.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/src/Qiniu/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/src/Qiniu/Config.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/src/Qiniu/Etag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/src/Qiniu/Etag.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/src/Qiniu/Zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/src/Qiniu/Zone.php -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/test-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/test-env.sh -------------------------------------------------------------------------------- /vendor/qiniu/php-sdk/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/qiniu/php-sdk/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/comparator/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/comparator/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/comparator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/comparator/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/comparator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/comparator/README.md -------------------------------------------------------------------------------- /vendor/sebastian/comparator/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/comparator/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/comparator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/comparator/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /vendor/sebastian/diff/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/.php_cs -------------------------------------------------------------------------------- /vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/diff/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/src/Chunk.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/src/Diff.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Differ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/src/Differ.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/src/Line.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/src/Parser.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/ChunkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/tests/ChunkTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/DiffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/tests/DiffTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/LineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/diff/tests/LineTest.php -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/environment/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/environment/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/environment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/environment/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/environment/README.md -------------------------------------------------------------------------------- /vendor/sebastian/environment/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/environment/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/environment/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/environment/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/exporter/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/exporter/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/exporter/README.md -------------------------------------------------------------------------------- /vendor/sebastian/exporter/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/exporter/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/exporter/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/global-state/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/global-state/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/global-state/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/global-state/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/global-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/global-state/README.md -------------------------------------------------------------------------------- /vendor/sebastian/global-state/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/global-state/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/version/README.md -------------------------------------------------------------------------------- /vendor/sebastian/version/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/version/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/version/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/sebastian/version/src/Version.php -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/swiftmailer/swiftmailer/.gitignore -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/swiftmailer/swiftmailer/CHANGES -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/swiftmailer/swiftmailer/LICENSE -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/swiftmailer/swiftmailer/README -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.4.12 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/dom-crawler/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Crawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/dom-crawler/Crawler.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/dom-crawler/Form.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/dom-crawler/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/dom-crawler/Link.php -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/dom-crawler/README.md -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/dom-crawler/composer.json -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/options-resolver/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/options-resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/options-resolver/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/Ctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/polyfill-ctype/Ctype.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/polyfill-ctype/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/polyfill-ctype/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tag/TaggedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Tag/TaggedValue.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/DumperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Tests/DumperTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/InlineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Tests/InlineTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Tests/ParserTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/YamlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Tests/YamlTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /vendor/symfony/yaml/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/symfony/yaml/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | .idea -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-captcha/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-captcha/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-helper/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea/ -------------------------------------------------------------------------------- /vendor/topthink/think-helper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-helper/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-helper/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-helper/src/Arr.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-helper/src/Hash.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-helper/src/Str.php -------------------------------------------------------------------------------- /vendor/topthink/think-helper/src/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-helper/src/Time.php -------------------------------------------------------------------------------- /vendor/topthink/think-image/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /thinkphp/ 3 | /composer.lock 4 | /.idea/ -------------------------------------------------------------------------------- /vendor/topthink/think-image/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-image/.travis.yml -------------------------------------------------------------------------------- /vendor/topthink/think-image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-image/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-image/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-image/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-image/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-image/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-image/phpunit.xml -------------------------------------------------------------------------------- /vendor/topthink/think-image/src/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-image/src/Image.php -------------------------------------------------------------------------------- /vendor/topthink/think-image/tests/images/test.bmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/topthink/think-image/tests/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /vendor/topthink/think-installer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | composer.lock 3 | /vendor -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-mongo/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-mongo/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-mongo/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-mongo/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-mongo/src/Query.php -------------------------------------------------------------------------------- /vendor/topthink/think-queue/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea/ 3 | /composer.lock 4 | /thinkphp/ 5 | -------------------------------------------------------------------------------- /vendor/topthink/think-queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-queue/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-queue/README.md -------------------------------------------------------------------------------- /vendor/topthink/think-queue/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-queue/composer.json -------------------------------------------------------------------------------- /vendor/topthink/think-queue/src/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-queue/src/Queue.php -------------------------------------------------------------------------------- /vendor/topthink/think-testing/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /vendor/topthink/think-testing/README.md: -------------------------------------------------------------------------------- 1 | # think-testing 2 | ThinkPHP 5 应用单元测试组件 3 | -------------------------------------------------------------------------------- /vendor/topthink/think-worker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-worker/LICENSE -------------------------------------------------------------------------------- /vendor/topthink/think-worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/topthink/think-worker/README.md -------------------------------------------------------------------------------- /vendor/webmozart/assert/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/webmozart/assert/.styleci.yml -------------------------------------------------------------------------------- /vendor/webmozart/assert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/webmozart/assert/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/webmozart/assert/src/Assert.php -------------------------------------------------------------------------------- /vendor/workerman/workerman/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | .buildpath 3 | .project 4 | .settings 5 | .idea 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /vendor/workerman/workerman/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/workerman/workerman/Autoloader.php -------------------------------------------------------------------------------- /vendor/workerman/workerman/Events/Ev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/workerman/workerman/Events/Ev.php -------------------------------------------------------------------------------- /vendor/workerman/workerman/Lib/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/workerman/workerman/Lib/Timer.php -------------------------------------------------------------------------------- /vendor/workerman/workerman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/workerman/workerman/README.md -------------------------------------------------------------------------------- /vendor/workerman/workerman/WebServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/workerman/workerman/WebServer.php -------------------------------------------------------------------------------- /vendor/workerman/workerman/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/workerman/workerman/Worker.php -------------------------------------------------------------------------------- /vendor/workerman/workerman/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/workerman/workerman/composer.json -------------------------------------------------------------------------------- /vendor/yuan1994/tp-mailer/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /vendor 3 | /log -------------------------------------------------------------------------------- /vendor/yuan1994/tp-mailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/yuan1994/tp-mailer/LICENSE -------------------------------------------------------------------------------- /vendor/yuan1994/tp-mailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/yuan1994/tp-mailer/README.md -------------------------------------------------------------------------------- /vendor/yuan1994/tp-mailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/yuan1994/tp-mailer/composer.json -------------------------------------------------------------------------------- /vendor/yuan1994/tp-mailer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/yuan1994/tp-mailer/composer.lock -------------------------------------------------------------------------------- /vendor/yuan1994/tp-mailer/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/yuan1994/tp-mailer/config.php -------------------------------------------------------------------------------- /vendor/zoujingli/ip2region/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | /.idea 3 | -------------------------------------------------------------------------------- /vendor/zoujingli/ip2region/Ip2Region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/ip2region/Ip2Region.php -------------------------------------------------------------------------------- /vendor/zoujingli/ip2region/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/ip2region/LICENSE.md -------------------------------------------------------------------------------- /vendor/zoujingli/ip2region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/ip2region/README.md -------------------------------------------------------------------------------- /vendor/zoujingli/ip2region/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/ip2region/composer.json -------------------------------------------------------------------------------- /vendor/zoujingli/ip2region/ip2region.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/ip2region/ip2region.db -------------------------------------------------------------------------------- /vendor/zoujingli/ip2region/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/ip2region/test.php -------------------------------------------------------------------------------- /vendor/zoujingli/pay-php-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.git 3 | /src/Cache 4 | -------------------------------------------------------------------------------- /vendor/zoujingli/pay-php-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/pay-php-sdk/README.md -------------------------------------------------------------------------------- /vendor/zoujingli/pay-php-sdk/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/pay-php-sdk/init.php -------------------------------------------------------------------------------- /vendor/zoujingli/pay-php-sdk/src/Pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/pay-php-sdk/src/Pay.php -------------------------------------------------------------------------------- /vendor/zoujingli/pay-php-sdk/test/notify.txt: -------------------------------------------------------------------------------- 1 | 收到异步通知 2 | -------------------------------------------------------------------------------- /vendor/zoujingli/wechat-php-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/zoujingli/wechat-php-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/wechat-php-sdk/README.md -------------------------------------------------------------------------------- /vendor/zoujingli/wechat-php-sdk/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitzwt/ThinkApiAdmin/HEAD/vendor/zoujingli/wechat-php-sdk/test.php --------------------------------------------------------------------------------