实例介绍
电影网站源码Msvod(魅思)V10影视全能开源版,后台和前台介面都漂亮
【实例截图】
【核心代码】
5472c177-557c-4674-b39b-139c9600c49b
└── Msvod(魅思)V10全能开源版
└── Msvod(魅思)V10全能开源版
├── application
│ ├── behavior
│ │ └── CheckSiteStatus.php
│ ├── command.php
│ ├── common
│ │ ├── taglib
│ │ │ └── Demo.php
│ │ ├── 安装教程.url
│ │ ├── 安装说明.txt
│ │ └── 更多源码请点击.url
│ ├── common.php
│ ├── config.php
│ ├── controller
│ │ ├── Agent.php
│ │ ├── Api.php
│ │ ├── BaseController.php
│ │ ├── Error.php
│ │ ├── Images.php
│ │ ├── Index.php
│ │ ├── Member.php
│ │ ├── Novel.php
│ │ ├── Open.php
│ │ ├── PayNotify.php
│ │ ├── Poster.php
│ │ ├── Search.php
│ │ ├── Share.php
│ │ ├── SystemPay.php
│ │ ├── Test.php
│ │ ├── Uploader.php
│ │ └── Video.php
│ ├── database.php
│ ├── db
│ │ ├── client_msvodx.sql
│ │ └── install.lock
│ ├── extra
│ │ └── queue.php
│ ├── model
│ │ ├── Atlas.php
│ │ ├── Image.php
│ │ ├── Member.php
│ │ ├── Novel.php
│ │ ├── Order.php
│ │ ├── RechargePackage.php
│ │ ├── Video.php
│ │ └── VideoWatchLog.php
│ ├── route.php
│ ├── tags.php
│ ├── validate
│ │ └── Member.php
│ ├── 安装教程.url
│ ├── 安装说明.txt
│ └── 更多源码请点击.url
├── build.php
├── composer.json
├── composer.lock
├── extend
│ ├── phpmailer
│ │ ├── class.phpmailer.php
│ │ ├── class.smtp.php
│ │ └── SendEmail.php
│ ├── sms
│ │ ├── class.SmsApi.php
│ │ └── Sms.php
│ ├── systemPay
│ │ ├── aliPay.php
│ │ ├── BasePay.php
│ │ ├── codePay
│ │ │ └── lib
│ │ │ ├── codepay_core.function.php
│ │ │ └── codepay_notify.class.php
│ │ ├── codePay.php
│ │ ├── testPay.php
│ │ └── wxPay.php
│ └── UploadUtils
│ ├── AliyunOssPostObject.php
│ ├── QiniuPostObject.php
│ └── Uploader.php
├── houtai
│ ├── admin.php
│ ├── app
│ │ ├── admin
│ │ │ ├── common.php
│ │ │ ├── controller
│ │ │ │ ├── Admin.php
│ │ │ │ ├── Annex.php
│ │ │ │ ├── Banner.php
│ │ │ │ ├── CardPassword.php
│ │ │ │ ├── Comment.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Database.php
│ │ │ │ ├── Dbconfig.php
│ │ │ │ ├── Develop.php
│ │ │ │ ├── Drawmoney.php
│ │ │ │ ├── Error.php
│ │ │ │ ├── Gratuity.php
│ │ │ │ ├── Hook.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Index.php
│ │ │ │ ├── Language.php
│ │ │ │ ├── Log.php
│ │ │ │ ├── Member.php
│ │ │ │ ├── Menu.php
│ │ │ │ ├── Menus.php
│ │ │ │ ├── Module.php
│ │ │ │ ├── Notice.php
│ │ │ │ ├── Novel.php
│ │ │ │ ├── PaySetting.php
│ │ │ │ ├── Plugins.php
│ │ │ │ ├── Poster.php
│ │ │ │ ├── Publics.php
│ │ │ │ ├── Recharge.php
│ │ │ │ ├── System.php
│ │ │ │ ├── Upgrade.php
│ │ │ │ ├── Uploader.php
│ │ │ │ ├── User.php
│ │ │ │ ├── Video.php
│ │ │ │ └── Websitegroup.php
│ │ │ ├── lang
│ │ │ │ └── zh-cn.php
│ │ │ ├── model
│ │ │ │ ├── AdminConfig.php
│ │ │ │ ├── AdminHook.php
│ │ │ │ ├── AdminHookPlugins.php
│ │ │ │ ├── AdminLog.php
│ │ │ │ ├── AdminMenuLang.php
│ │ │ │ ├── AdminMenu.php
│ │ │ │ ├── AdminModule.php
│ │ │ │ ├── AdminPlugins.php
│ │ │ │ ├── AdminRole.php
│ │ │ │ ├── AdminUser.php
│ │ │ │ └── CardPassword.php
│ │ │ ├── validate
│ │ │ │ ├── AdminConfig.php
│ │ │ │ ├── AdminMenu.php
│ │ │ │ ├── AdminRole.php
│ │ │ │ ├── AdminUser.php
│ │ │ │ ├── Gift.php
│ │ │ │ ├── Hook.php
│ │ │ │ ├── Member.php
│ │ │ │ ├── Plugins.php
│ │ │ │ └── RechargePackage.php
│ │ │ └── view
│ │ │ ├── annex
│ │ │ │ └── index.php
│ │ │ ├── banner
│ │ │ │ ├── add.php
│ │ │ │ ├── edit.php
│ │ │ │ └── index.php
│ │ │ ├── block
│ │ │ │ ├── dispatch_jump.tpl
│ │ │ │ ├── footer.php
│ │ │ │ ├── header.php
│ │ │ │ └── layout.php
│ │ │ ├── card_password
│ │ │ │ ├── add.php
│ │ │ │ └── index.php
│ │ │ ├── comment
│ │ │ │ └── index.php
│ │ │ ├── config
│ │ │ │ ├── form.php
│ │ │ │ └── index.php
│ │ │ ├── database
│ │ │ │ ├── export.php
│ │ │ │ └── import.php
│ │ │ ├── dbconfig
│ │ │ │ └── index.php
│ │ │ ├── develop
│ │ │ │ ├── edit.php
│ │ │ │ ├── func.php
│ │ │ │ └── lists.php
│ │ │ ├── drawmoney
│ │ │ │ └── draw_money_list.php
│ │ │ ├── gratuity
│ │ │ │ ├── addgift.php
│ │ │ │ ├── editgift.php
│ │ │ │ ├── gift.php
│ │ │ │ └── index.php
│ │ │ ├── hook
│ │ │ │ ├── form.php
│ │ │ │ └── index.php
│ │ │ ├── image
│ │ │ │ ├── addimages.php
│ │ │ │ ├── add.php
│ │ │ │ ├── batch_edit.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── imageedit.php
│ │ │ │ ├── imagelists.php
│ │ │ │ ├── imgcheck.php
│ │ │ │ ├── lists.php
│ │ │ │ └── randclick.php
│ │ │ ├── index
│ │ │ │ ├── classadd.php
│ │ │ │ ├── classedit.php
│ │ │ │ ├── classlist.php
│ │ │ │ ├── iframe.php
│ │ │ │ ├── index.php
│ │ │ │ ├── tagedit.php
│ │ │ │ ├── tagform.php
│ │ │ │ └── taglist.php
│ │ │ ├── language
│ │ │ │ ├── form.php
│ │ │ │ └── index.php
│ │ │ ├── layout.php
│ │ │ ├── log
│ │ │ │ └── index.php
│ │ │ ├── login_setting
│ │ │ │ └── index.php
│ │ │ ├── member
│ │ │ │ ├── addgroup.php
│ │ │ │ ├── agentapply.php
│ │ │ │ ├── domainname.php
│ │ │ │ ├── editgroup.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── form.php
│ │ │ │ ├── group.php
│ │ │ │ ├── index.php
│ │ │ │ ├── levelform.php
│ │ │ │ ├── level.php
│ │ │ │ └── pop.php
│ │ │ ├── menu
│ │ │ │ ├── form.php
│ │ │ │ └── index.php
│ │ │ ├── menus
│ │ │ │ ├── add.php
│ │ │ │ ├── edit.php
│ │ │ │ └── manager.php
│ │ │ ├── module
│ │ │ │ ├── design.php
│ │ │ │ ├── import.php
│ │ │ │ ├── index.php
│ │ │ │ ├── install.php
│ │ │ │ ├── market.php
│ │ │ │ ├── setting.php
│ │ │ │ ├── theme.php
│ │ │ │ └── uninstall.php
│ │ │ ├── notice
│ │ │ │ ├── add.php
│ │ │ │ ├── edit.php
│ │ │ │ └── index.php
│ │ │ ├── novel
│ │ │ │ ├── add.php
│ │ │ │ ├── batch_edit.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── lists.php
│ │ │ │ ├── novelcheck.php
│ │ │ │ └── randclick.php
│ │ │ ├── pay_setting
│ │ │ │ ├── index.php
│ │ │ │ ├── paymentlist.php
│ │ │ │ └── setting.php
│ │ │ ├── plugins
│ │ │ │ ├── design.php
│ │ │ │ ├── index.php
│ │ │ │ ├── market.php
│ │ │ │ └── setting.php
│ │ │ ├── poster
│ │ │ │ ├── add.php
│ │ │ │ ├── add_poster.php
│ │ │ │ ├── alimama.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── edit_poster.php
│ │ │ │ ├── lists.php
│ │ │ │ ├── showcode.php
│ │ │ │ └── testdisplay.php
│ │ │ ├── publics
│ │ │ │ ├── icon.php
│ │ │ │ └── index.php
│ │ │ ├── recharge
│ │ │ │ ├── addgoldpackage.php
│ │ │ │ ├── addpackage.php
│ │ │ │ ├── consume.php
│ │ │ │ ├── editgoldpackage.php
│ │ │ │ ├── editpackage.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── goldpackage.php
│ │ │ │ ├── index.php
│ │ │ │ └── package.php
│ │ │ ├── system
│ │ │ │ ├── attachment.php
│ │ │ │ ├── commission.php
│ │ │ │ ├── email.php
│ │ │ │ ├── friendlink.php
│ │ │ │ ├── index.php
│ │ │ │ ├── sms.php
│ │ │ │ ├── syncaddvideo.php
│ │ │ │ ├── themesetting.php
│ │ │ │ ├── tools.php
│ │ │ │ └── video.php
│ │ │ ├── upgrade
│ │ │ │ ├── index.php
│ │ │ │ └── lists.php
│ │ │ ├── user
│ │ │ │ ├── index.php
│ │ │ │ ├── info.php
│ │ │ │ ├── roleform.php
│ │ │ │ ├── role.php
│ │ │ │ └── userform.php
│ │ │ ├── video
│ │ │ │ ├── batch_edit.php
│ │ │ │ ├── edit.php
│ │ │ │ ├── gather_edit.php
│ │ │ │ ├── gather_lists.php
│ │ │ │ ├── gather_upload.php
│ │ │ │ ├── lists.php
│ │ │ │ ├── play.php
│ │ │ │ ├── randclick.php
│ │ │ │ ├── upload.php
│ │ │ │ ├── videocheck.php
│ │ │ │ ├── video_gather_lists.php
│ │ │ │ └── video_gather.php
│ │ │ └── websitegroup
│ │ │ ├── add_website.php
│ │ │ ├── edit_website.php
│ │ │ └── netlist.php
│ │ ├── command.php
│ │ ├── common
│ │ │ ├── behavior
│ │ │ │ ├── Base.php
│ │ │ │ ├── Hook.php
│ │ │ │ └── Init.php
│ │ │ ├── controller
│ │ │ │ ├── Common-cm.php
│ │ │ │ ├── Common.php
│ │ │ │ └── Plugins.php
│ │ │ ├── lang
│ │ │ │ └── zh-cn.php
│ │ │ ├── model
│ │ │ │ ├── AdminAnnexGroup.php
│ │ │ │ ├── AdminAnnex.php
│ │ │ │ ├── AdminLanguage.php
│ │ │ │ ├── AdminMemberLevel.php
│ │ │ │ └── AdminMember.php
│ │ │ ├── util
│ │ │ │ ├── Cloud.php
│ │ │ │ ├── Database.php
│ │ │ │ ├── Databases.php
│ │ │ │ ├── Dir.php
│ │ │ │ ├── Download.php
│ │ │ │ ├── Http.php
│ │ │ │ ├── PclZip.php
│ │ │ │ └── Xml.php
│ │ │ └── validate
│ │ │ ├── AdminLanguage.php
│ │ │ ├── AdminMemberLevel.php
│ │ │ └── AdminMember.php
│ │ ├── common.php
│ │ ├── config.php
│ │ ├── database.php
│ │ ├── extra
│ │ │ ├── hs_auth.php
│ │ │ ├── hs_system.php
│ │ │ └── queue.php
│ │ ├── function.php
│ │ ├── index
│ │ │ └── controller
│ │ │ ├── Error.php
│ │ │ ├── Home.php
│ │ │ ├── Index.php
│ │ │ ├── Plugins.php
│ │ │ └── Push.php
│ │ ├── install
│ │ │ ├── controller
│ │ │ │ └── Error.php
│ │ │ ├── install.lock
│ │ │ └── view
│ │ │ └── index
│ │ │ ├── foot.php
│ │ │ ├── head.php
│ │ │ ├── index.php
│ │ │ ├── step2.php
│ │ │ └── step3.php
│ │ ├── route.php
│ │ └── tags.php
│ ├── backup
│ │ └── database
│ │ └── README.md
│ ├── error
│ │ ├── higger_vip.png
│ │ ├── index.html
│ │ └── social-qq.png
│ ├── extend
│ │ └── UploadUtils
│ │ ├── AliyunOssPostObject.php
│ │ ├── QiniuPostObject.php
│ │ └── Uploader.php
│ ├── index.php
│ ├── plugins
│ │ └── README.md
│ ├── plugins.php
│ ├── qrcode
│ │ ├── phpqrcode.php
│ │ ├── qrcode.php
│ │ ├── test2.php
│ │ └── test.php
│ ├── runtime
│ │ ├── cache
│ │ │ ├── 25
│ │ │ │ └── 7db18afc149338c33567afcd869c4c.php
│ │ │ ├── 4b
│ │ │ │ └── 34b77fcc825c62ced0a505aa4a28a3.php
│ │ │ ├── 51
│ │ │ │ └── 195b5aaadb5f0c49d4399787ac5518.php
│ │ │ ├── 5a
│ │ │ │ └── 1d8a8c9b12a65203d302b2b670f8fc.php
│ │ │ ├── 94
│ │ │ │ └── 9b5b1d087c0c75e99b8bd0b05c4c4c.php
│ │ │ ├── dd
│ │ │ │ └── b2fb5c71ee07f0ab996a1194b4f966.php
│ │ │ └── ec
│ │ │ └── 63a42b1e02d5312efd98561f16c29a.php
│ │ └── temp
│ │ └── 700dc02d909a0988e4d01cfe92d92c19.php
│ ├── static
│ │ ├── admin
│ │ │ ├── css
│ │ │ │ ├── install.css
│ │ │ │ └── style.css
│ │ │ ├── iconfont
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── image
│ │ │ │ ├── 1517371243.jpg
│ │ │ │ ├── app.png
│ │ │ │ ├── avatar.png
│ │ │ │ ├── if0.png
│ │ │ │ ├── if1.png
│ │ │ │ ├── login_bg2.jpg
│ │ │ │ ├── login_bg3.jpg
│ │ │ │ ├── login_bg4.jpg
│ │ │ │ ├── login_bg.jpg
│ │ │ │ ├── newyear_bg.webp
│ │ │ │ ├── QQиTиaиbз▐20180131123150.jpg
│ │ │ │ ├── QQиTиaиbз▐20180131123953.jpg
│ │ │ │ └── theme.png
│ │ │ └── js
│ │ │ ├── footer.js
│ │ │ ├── global.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
│ │ │ ├── font
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── images
│ │ │ │ └── face
│ │ │ │ ├── 0.gif
│ │ │ │ ├── 10.gif
│ │ │ │ ├── 11.gif
│ │ │ │ ├── 12.gif
│ │ │ │ ├── 13.gif
│ │ │ │ ├── 14.gif
│ │ │ │ ├── 15.gif
│ │ │ │ ├── 16.gif
│ │ │ │ ├── 17.gif
│ │ │ │ ├── 18.gif
│ │ │ │ ├── 19.gif
│ │ │ │ ├── 1.gif
│ │ │ │ ├── 20.gif
│ │ │ │ ├── 21.gif
│ │ │ │ ├── 22.gif
│ │ │ │ ├── 23.gif
│ │ │ │ ├── 24.gif
│ │ │ │ ├── 25.gif
│ │ │ │ ├── 26.gif
│ │ │ │ ├── 27.gif
│ │ │ │ ├── 28.gif
│ │ │ │ ├── 29.gif
│ │ │ │ ├── 2.gif
│ │ │ │ ├── 30.gif
│ │ │ │ ├── 31.gif
│ │ │ │ ├── 32.gif
│ │ │ │ ├── 33.gif
│ │ │ │ ├── 34.gif
│ │ │ │ ├── 35.gif
│ │ │ │ ├── 36.gif
│ │ │ │ ├── 37.gif
│ │ │ │ ├── 38.gif
│ │ │ │ ├── 39.gif
│ │ │ │ ├── 3.gif
│ │ │ │ ├── 40.gif
│ │ │ │ ├── 41.gif
│ │ │ │ ├── 42.gif
│ │ │ │ ├── 43.gif
│ │ │ │ ├── 44.gif
│ │ │ │ ├── 45.gif
│ │ │ │ ├── 46.gif
│ │ │ │ ├── 47.gif
│ │ │ │ ├── 48.gif
│ │ │ │ ├── 49.gif
│ │ │ │ ├── 4.gif
│ │ │ │ ├── 50.gif
│ │ │ │ ├── 51.gif
│ │ │ │ ├── 52.gif
│ │ │ │ ├── 53.gif
│ │ │ │ ├── 54.gif
│ │ │ │ ├── 55.gif
│ │ │ │ ├── 56.gif
│ │ │ │ ├── 57.gif
│ │ │ │ ├── 58.gif
│ │ │ │ ├── 59.gif
│ │ │ │ ├── 5.gif
│ │ │ │ ├── 60.gif
│ │ │ │ ├── 61.gif
│ │ │ │ ├── 62.gif
│ │ │ │ ├── 63.gif
│ │ │ │ ├── 64.gif
│ │ │ │ ├── 65.gif
│ │ │ │ ├── 66.gif
│ │ │ │ ├── 67.gif
│ │ │ │ ├── 68.gif
│ │ │ │ ├── 69.gif
│ │ │ │ ├── 6.gif
│ │ │ │ ├── 70.gif
│ │ │ │ ├── 71.gif
│ │ │ │ ├── 7.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
│ │ │ │ ├── laypage.js
│ │ │ │ ├── laytpl.js
│ │ │ │ ├── mobile.js
│ │ │ │ ├── table.js
│ │ │ │ ├── tree.js
│ │ │ │ ├── upload.js
│ │ │ │ └── util.js
│ │ │ ├── layui.js
│ │ │ └── layui.txt
│ │ ├── ckplayer
│ │ │ ├── ckplayer.js
│ │ │ ├── ckplayer.swf
│ │ │ ├── ckplayer.xml
│ │ │ ├── language.xml
│ │ │ └── style.xml
│ │ ├── fonts
│ │ │ ├── font-awesome
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ └── min.css
│ │ │ └── typicons
│ │ │ ├── min.css
│ │ │ ├── typicons.eot
│ │ │ ├── typicons.svg
│ │ │ ├── typicons.ttf
│ │ │ └── typicons.woff
│ │ ├── images
│ │ │ ├── images_default.png
│ │ │ └── user_dafault_headimg.jpg
│ │ ├── js
│ │ │ ├── editor
│ │ │ │ ├── ckeditor
│ │ │ │ │ ├── adapters
│ │ │ │ │ │ └── jquery.js
│ │ │ │ │ ├── build-config.js
│ │ │ │ │ ├── ckeditor.js
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── contents.css
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ ├── a11yhelp
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ │ │ └── lang
│ │ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ │ ├── about
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ ├── clipboard
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ └── paste.js
│ │ │ │ │ │ ├── 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_hidpi.png
│ │ │ │ │ │ ├── icons.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.png
│ │ │ │ │ │ │ │ └── icon-rtl.png
│ │ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ │ └── icon-rtl.png
│ │ │ │ │ │ ├── pagebreak
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ └── pagebreak.gif
│ │ │ │ │ │ ├── pastefromword
│ │ │ │ │ │ │ └── filter
│ │ │ │ │ │ │ └── default.js
│ │ │ │ │ │ ├── preview
│ │ │ │ │ │ │ └── preview.html
│ │ │ │ │ │ ├── scayt
│ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ │ │ └── specialchar.js
│ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ └── table.js
│ │ │ │ │ │ ├── tabletools
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ └── tableCell.js
│ │ │ │ │ │ ├── templates
│ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ ├── templates.css
│ │ │ │ │ │ │ │ └── templates.js
│ │ │ │ │ │ │ └── templates
│ │ │ │ │ │ │ ├── default.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── template1.gif
│ │ │ │ │ │ │ ├── template2.gif
│ │ │ │ │ │ │ └── template3.gif
│ │ │ │ │ │ └── wsc
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ ├── ciframe.html
│ │ │ │ │ │ │ ├── tmpFrameset.html
│ │ │ │ │ │ │ ├── wsc.css
│ │ │ │ │ │ │ ├── wsc_ie.js
│ │ │ │ │ │ │ └── wsc.js
│ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ └── skins
│ │ │ │ │ │ └── moono-lisa
│ │ │ │ │ │ └── wsc.css
│ │ │ │ │ ├── skins
│ │ │ │ │ │ └── moono-lisa
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── dialog_ie8.css
│ │ │ │ │ │ ├── dialog_ie.css
│ │ │ │ │ │ ├── dialog_iequirks.css
│ │ │ │ │ │ ├── editor.css
│ │ │ │ │ │ ├── editor_gecko.css
│ │ │ │ │ │ ├── editor_ie8.css
│ │ │ │ │ │ ├── editor_ie.css
│ │ │ │ │ │ ├── editor_iequirks.css
│ │ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ │ ├── icons.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
│ │ │ │ ├── kindeditor
│ │ │ │ │ ├── kindeditor-min.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh_CN.js
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ ├── anchor
│ │ │ │ │ │ │ └── anchor.js
│ │ │ │ │ │ ├── autoheight
│ │ │ │ │ │ │ └── autoheight.js
│ │ │ │ │ │ ├── baidumap
│ │ │ │ │ │ │ ├── baidumap.js
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ └── map.html
│ │ │ │ │ │ ├── clearhtml
│ │ │ │ │ │ │ └── clearhtml.js
│ │ │ │ │ │ ├── code
│ │ │ │ │ │ │ ├── code.js
│ │ │ │ │ │ │ ├── prettify.css
│ │ │ │ │ │ │ └── prettify.js
│ │ │ │ │ │ ├── emoticons
│ │ │ │ │ │ │ ├── emoticons.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ │ ├── 100.gif
│ │ │ │ │ │ │ ├── 101.gif
│ │ │ │ │ │ │ ├── 102.gif
│ │ │ │ │ │ │ ├── 103.gif
│ │ │ │ │ │ │ ├── 104.gif
│ │ │ │ │ │ │ ├── 105.gif
│ │ │ │ │ │ │ ├── 106.gif
│ │ │ │ │ │ │ ├── 107.gif
│ │ │ │ │ │ │ ├── 108.gif
│ │ │ │ │ │ │ ├── 109.gif
│ │ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ │ ├── 110.gif
│ │ │ │ │ │ │ ├── 111.gif
│ │ │ │ │ │ │ ├── 112.gif
│ │ │ │ │ │ │ ├── 113.gif
│ │ │ │ │ │ │ ├── 114.gif
│ │ │ │ │ │ │ ├── 115.gif
│ │ │ │ │ │ │ ├── 116.gif
│ │ │ │ │ │ │ ├── 117.gif
│ │ │ │ │ │ │ ├── 118.gif
│ │ │ │ │ │ │ ├── 119.gif
│ │ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ │ ├── 120.gif
│ │ │ │ │ │ │ ├── 121.gif
│ │ │ │ │ │ │ ├── 122.gif
│ │ │ │ │ │ │ ├── 123.gif
│ │ │ │ │ │ │ ├── 124.gif
│ │ │ │ │ │ │ ├── 125.gif
│ │ │ │ │ │ │ ├── 126.gif
│ │ │ │ │ │ │ ├── 127.gif
│ │ │ │ │ │ │ ├── 128.gif
│ │ │ │ │ │ │ ├── 129.gif
│ │ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ │ ├── 130.gif
│ │ │ │ │ │ │ ├── 131.gif
│ │ │ │ │ │ │ ├── 132.gif
│ │ │ │ │ │ │ ├── 133.gif
│ │ │ │ │ │ │ ├── 134.gif
│ │ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ │ ├── 17.gif
│ │ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ │ ├── 72.gif
│ │ │ │ │ │ │ ├── 73.gif
│ │ │ │ │ │ │ ├── 74.gif
│ │ │ │ │ │ │ ├── 75.gif
│ │ │ │ │ │ │ ├── 76.gif
│ │ │ │ │ │ │ ├── 77.gif
│ │ │ │ │ │ │ ├── 78.gif
│ │ │ │ │ │ │ ├── 79.gif
│ │ │ │ │ │ │ ├── 7.gif
│ │ │ │ │ │ │ ├── 80.gif
│ │ │ │ │ │ │ ├── 81.gif
│ │ │ │ │ │ │ ├── 82.gif
│ │ │ │ │ │ │ ├── 83.gif
│ │ │ │ │ │ │ ├── 84.gif
│ │ │ │ │ │ │ ├── 85.gif
│ │ │ │ │ │ │ ├── 86.gif
│ │ │ │ │ │ │ ├── 87.gif
│ │ │ │ │ │ │ ├── 88.gif
│ │ │ │ │ │ │ ├── 89.gif
│ │ │ │ │ │ │ ├── 8.gif
│ │ │ │ │ │ │ ├── 90.gif
│ │ │ │ │ │ │ ├── 91.gif
│ │ │ │ │ │ │ ├── 92.gif
│ │ │ │ │ │ │ ├── 93.gif
│ │ │ │ │ │ │ ├── 94.gif
│ │ │ │ │ │ │ ├── 95.gif
│ │ │ │ │ │ │ ├── 96.gif
│ │ │ │ │ │ │ ├── 97.gif
│ │ │ │ │ │ │ ├── 98.gif
│ │ │ │ │ │ │ ├── 99.gif
│ │ │ │ │ │ │ ├── 9.gif
│ │ │ │ │ │ │ └── static.gif
│ │ │ │ │ │ ├── filemanager
│ │ │ │ │ │ │ ├── filemanager.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── file-16.gif
│ │ │ │ │ │ │ ├── file-64.gif
│ │ │ │ │ │ │ ├── folder-16.gif
│ │ │ │ │ │ │ ├── folder-64.gif
│ │ │ │ │ │ │ └── go-up.gif
│ │ │ │ │ │ ├── flash
│ │ │ │ │ │ │ └── flash.js
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── align_left.gif
│ │ │ │ │ │ │ ├── align_right.gif
│ │ │ │ │ │ │ ├── align_top.gif
│ │ │ │ │ │ │ └── refresh.png
│ │ │ │ │ │ ├── insertfile
│ │ │ │ │ │ │ └── insertfile.js
│ │ │ │ │ │ ├── lineheight
│ │ │ │ │ │ │ └── lineheight.js
│ │ │ │ │ │ ├── link
│ │ │ │ │ │ │ └── link.js
│ │ │ │ │ │ ├── map
│ │ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ │ └── map.js
│ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ └── media.js
│ │ │ │ │ │ ├── multiimage
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ │ ├── select-files-en.png
│ │ │ │ │ │ │ │ ├── select-files-zh_CN.png
│ │ │ │ │ │ │ │ └── swfupload.swf
│ │ │ │ │ │ │ └── multiimage.js
│ │ │ │ │ │ ├── pagebreak
│ │ │ │ │ │ │ └── pagebreak.js
│ │ │ │ │ │ ├── plainpaste
│ │ │ │ │ │ │ └── plainpaste.js
│ │ │ │ │ │ ├── preview
│ │ │ │ │ │ │ └── preview.js
│ │ │ │ │ │ ├── quickformat
│ │ │ │ │ │ │ └── quickformat.js
│ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ └── table.js
│ │ │ │ │ │ ├── template
│ │ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ │ ├── 1.html
│ │ │ │ │ │ │ │ ├── 2.html
│ │ │ │ │ │ │ │ └── 3.html
│ │ │ │ │ │ │ └── template.js
│ │ │ │ │ │ └── wordpaste
│ │ │ │ │ │ └── wordpaste.js
│ │ │ │ │ └── themes
│ │ │ │ │ ├── common
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── flash.gif
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── media.gif
│ │ │ │ │ │ └── rm.gif
│ │ │ │ │ └── default
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── default.css
│ │ │ │ │ └── default.png
│ │ │ │ ├── ueditor
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── anchor
│ │ │ │ │ │ │ └── anchor.html
│ │ │ │ │ │ ├── attachment
│ │ │ │ │ │ │ ├── attachment.css
│ │ │ │ │ │ │ ├── attachment.html
│ │ │ │ │ │ │ ├── attachment.js
│ │ │ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ │ │ ├── alignicon.png
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── background
│ │ │ │ │ │ │ ├── background.css
│ │ │ │ │ │ │ ├── background.html
│ │ │ │ │ │ │ ├── background.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── charts
│ │ │ │ │ │ │ ├── chart.config.js
│ │ │ │ │ │ │ ├── charts.css
│ │ │ │ │ │ │ ├── charts.html
│ │ │ │ │ │ │ ├── charts.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── charts0.png
│ │ │ │ │ │ │ ├── charts1.png
│ │ │ │ │ │ │ ├── charts2.png
│ │ │ │ │ │ │ ├── charts3.png
│ │ │ │ │ │ │ ├── charts4.png
│ │ │ │ │ │ │ └── charts5.png
│ │ │ │ │ │ ├── emotion
│ │ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ │ ├── emotion.html
│ │ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ │ └── yface.gif
│ │ │ │ │ │ ├── gmap
│ │ │ │ │ │ │ └── gmap.html
│ │ │ │ │ │ ├── help
│ │ │ │ │ │ │ ├── help.css
│ │ │ │ │ │ │ ├── help.html
│ │ │ │ │ │ │ └── help.js
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── insertframe
│ │ │ │ │ │ │ └── insertframe.html
│ │ │ │ │ │ ├── internal.js
│ │ │ │ │ │ ├── link
│ │ │ │ │ │ │ └── link.html
│ │ │ │ │ │ ├── map
│ │ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ │ └── show.html
│ │ │ │ │ │ ├── music
│ │ │ │ │ │ │ ├── music.css
│ │ │ │ │ │ │ ├── music.html
│ │ │ │ │ │ │ └── music.js
│ │ │ │ │ │ ├── preview
│ │ │ │ │ │ │ └── preview.html
│ │ │ │ │ │ ├── scrawl
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ │ │ ├── undoH.png
│ │ │ │ │ │ │ │ └── undo.png
│ │ │ │ │ │ │ ├── scrawl.css
│ │ │ │ │ │ │ ├── scrawl.html
│ │ │ │ │ │ │ └── scrawl.js
│ │ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ │ └── snapscreen.html
│ │ │ │ │ │ ├── spechars
│ │ │ │ │ │ │ ├── spechars.html
│ │ │ │ │ │ │ └── spechars.js
│ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ ├── dragicon.png
│ │ │ │ │ │ │ ├── edittable.css
│ │ │ │ │ │ │ ├── edittable.html
│ │ │ │ │ │ │ ├── edittable.js
│ │ │ │ │ │ │ ├── edittd.html
│ │ │ │ │ │ │ └── edittip.html
│ │ │ │ │ │ ├── template
│ │ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ │ │ └── pre4.png
│ │ │ │ │ │ │ ├── template.css
│ │ │ │ │ │ │ ├── template.html
│ │ │ │ │ │ │ └── template.js
│ │ │ │ │ │ ├── video
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ │ ├── video.css
│ │ │ │ │ │ │ ├── video.html
│ │ │ │ │ │ │ └── video.js
│ │ │ │ │ │ ├── webapp
│ │ │ │ │ │ │ └── webapp.html
│ │ │ │ │ │ └── wordimage
│ │ │ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ │ │ ├── imageUploader.swf
│ │ │ │ │ │ ├── tangram.js
│ │ │ │ │ │ ├── wordimage.html
│ │ │ │ │ │ └── wordimage.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ └── zh-cn
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ │ └── upload.png
│ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ ├── themes
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ │ └── iframe.css
│ │ │ │ │ ├── third-party
│ │ │ │ │ │ ├── codemirror
│ │ │ │ │ │ │ ├── codemirror.css
│ │ │ │ │ │ │ └── codemirror.js
│ │ │ │ │ │ ├── highcharts
│ │ │ │ │ │ │ ├── adapters
│ │ │ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ │ │ └── standalone-framework.js
│ │ │ │ │ │ │ ├── highcharts.js
│ │ │ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ │ │ ├── modules
│ │ │ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ │ │ └── no-data-to-display.js
│ │ │ │ │ │ │ └── themes
│ │ │ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ │ │ ├── dark-green.js
│ │ │ │ │ │ │ ├── gray.js
│ │ │ │ │ │ │ ├── grid.js
│ │ │ │ │ │ │ └── skies.js
│ │ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ │ │ └── shCore.js
│ │ │ │ │ │ ├── video-js
│ │ │ │ │ │ │ ├── font
│ │ │ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ │ │ ├── video.js
│ │ │ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ │ │ └── video-js.swf
│ │ │ │ │ │ ├── webuploader
│ │ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ │ ├── xss.min.js
│ │ │ │ │ │ └── zeroclipboard
│ │ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ │ ├── ueditor.all.min.js
│ │ │ │ │ └── ueditor.config.js
│ │ │ │ └── umeditor
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── emotion
│ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ └── yface.gif
│ │ │ │ │ ├── formula
│ │ │ │ │ │ ├── formula.css
│ │ │ │ │ │ ├── formula.html
│ │ │ │ │ │ ├── formula.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── formula.png
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── upload1.png
│ │ │ │ │ │ └── upload2.png
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.js
│ │ │ │ │ ├── map
│ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ └── map.js
│ │ │ │ │ └── video
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ └── right_focus.jpg
│ │ │ │ │ ├── video.css
│ │ │ │ │ └── video.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ ├── imglabel.png
│ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── imglabel.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── themes
│ │ │ │ │ └── default
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── umeditor.css
│ │ │ │ │ │ └── umeditor.min.css
│ │ │ │ │ └── images
│ │ │ │ │ ├── caret.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── ok.gif
│ │ │ │ │ ├── pop-bg.png
│ │ │ │ │ ├── spacer.gif
│ │ │ │ │ └── videologo.gif
│ │ │ │ ├── third-party
│ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ └── template.min.js
│ │ │ │ ├── umeditor.config.js
│ │ │ │ └── umeditor.min.js
│ │ │ ├── fileupload
│ │ │ │ ├── jquery.fileupload.js
│ │ │ │ ├── jquery.iframe-transport.js
│ │ │ │ └── vendor
│ │ │ │ └── jquery.ui.widget.js
│ │ │ ├── jquery.2.1.4.min.js
│ │ │ ├── jquery.qrcode.min.js
│ │ │ ├── jquery.SuperSlide.2.1.1.js
│ │ │ ├── layer
│ │ │ │ ├── layer.js
│ │ │ │ └── skin
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ └── XCommon.js
│ │ ├── plupload-2.3.6
│ │ │ ├── bower.json
│ │ │ ├── examples
│ │ │ │ ├── custom.html
│ │ │ │ ├── dump.php
│ │ │ │ ├── events.html
│ │ │ │ ├── jquery
│ │ │ │ │ ├── all_runtimes.html
│ │ │ │ │ ├── jquery_ui_widget.html
│ │ │ │ │ ├── queue_widget.html
│ │ │ │ │ └── s3.php
│ │ │ │ └── upload.php
│ │ │ ├── js
│ │ │ │ ├── i18n
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── az.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── bs.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── hy.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ka.js
│ │ │ │ │ ├── kk.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku_IQ.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt_BR.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th_TH.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── uk_UA.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh_CN.js
│ │ │ │ │ └── zh_TW.js
│ │ │ │ ├── jquery.plupload.queue
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── jquery.plupload.queue.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── backgrounds.gif
│ │ │ │ │ │ ├── buttons-disabled.png
│ │ │ │ │ │ ├── buttons.png
│ │ │ │ │ │ ├── delete.gif
│ │ │ │ │ │ ├── done.gif
│ │ │ │ │ │ ├── error.gif
│ │ │ │ │ │ ├── throbber.gif
│ │ │ │ │ │ └── transp50.png
│ │ │ │ │ ├── jquery.plupload.queue.js
│ │ │ │ │ └── jquery.plupload.queue.min.js
│ │ │ │ ├── jquery.ui.plupload
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── jquery.ui.plupload.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ └── plupload.png
│ │ │ │ │ ├── jquery.ui.plupload.js
│ │ │ │ │ └── jquery.ui.plupload.min.js
│ │ │ │ ├── moxie.js
│ │ │ │ ├── moxie.min.js
│ │ │ │ ├── Moxie.swf
│ │ │ │ ├── Moxie.xap
│ │ │ │ ├── plupload.dev.js
│ │ │ │ ├── plupload.full.min.js
│ │ │ │ └── plupload.min.js
│ │ │ ├── license.txt
│ │ │ └── readme.md
│ │ ├── xuploader
│ │ │ ├── aliyunOssNotify.php
│ │ │ ├── webServerUploader-cm.js
│ │ │ ├── webServerUploader.js
│ │ │ └── Xuploader.php
│ │ └── zmup
│ │ ├── css
│ │ │ ├── css.css
│ │ │ ├── sc.png
│ │ │ ├── up.css
│ │ │ ├── upload.css
│ │ │ ├── user-uploading.gif
│ │ │ └── webuploader.css
│ │ └── js
│ │ ├── 9ku.js
│ │ ├── adminup.js
│ │ ├── discuzgbk.js
│ │ ├── ecms.js
│ │ ├── ecmsuser.js
│ │ ├── espcms.js
│ │ ├── expressInstall.swf
│ │ ├── haiyang.js
│ │ ├── jquery-1.11.2.min.js
│ │ ├── jquery.js
│ │ ├── jquery.xdomainrequest.min.js
│ │ ├── maccms.js
│ │ ├── md5.js
│ │ ├── Uploader.swf
│ │ ├── upload.js
│ │ └── webuploader.js
│ ├── theme
│ │ └── README.md
│ ├── thinkphp
│ │ ├── base.php
│ │ ├── codecov.yml
│ │ ├── composer.json
│ │ ├── console.php
│ │ ├── CONTRIBUTING.md
│ │ ├── convention.php
│ │ ├── helper.php
│ │ ├── lang
│ │ │ └── zh-cn.php
│ │ ├── library
│ │ │ ├── think
│ │ │ │ ├── App.php
│ │ │ │ ├── Build.php
│ │ │ │ ├── cache
│ │ │ │ │ ├── driver
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ ├── Lite.php
│ │ │ │ │ │ ├── Memcached.php
│ │ │ │ │ │ ├── Memcache.php
│ │ │ │ │ │ ├── Redis.php
│ │ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ │ ├── Wincache.php
│ │ │ │ │ │ └── Xcache.php
│ │ │ │ │ └── Driver.php
│ │ │ │ ├── Cache.php
│ │ │ │ ├── Collection.php
│ │ │ │ ├── config
│ │ │ │ │ └── driver
│ │ │ │ │ ├── Ini.php
│ │ │ │ │ ├── Json.php
│ │ │ │ │ └── Xml.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── console
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── hiddeninput.exe
│ │ │ │ │ │ └── README.md
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── Build.php
│ │ │ │ │ │ ├── Clear.php
│ │ │ │ │ │ ├── Help.php
│ │ │ │ │ │ ├── Lists.php
│ │ │ │ │ │ ├── make
│ │ │ │ │ │ │ ├── Controller.php
│ │ │ │ │ │ │ ├── Model.php
│ │ │ │ │ │ │ └── stubs
│ │ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ │ ├── controller.stub
│ │ │ │ │ │ │ └── model.stub
│ │ │ │ │ │ ├── Make.php
│ │ │ │ │ │ └── optimize
│ │ │ │ │ │ ├── Autoload.php
│ │ │ │ │ │ ├── Config.php
│ │ │ │ │ │ ├── Route.php
│ │ │ │ │ │ └── Schema.php
│ │ │ │ │ ├── Command.php
│ │ │ │ │ ├── input
│ │ │ │ │ │ ├── Argument.php
│ │ │ │ │ │ ├── Definition.php
│ │ │ │ │ │ └── Option.php
│ │ │ │ │ ├── Input.php
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── output
│ │ │ │ │ │ ├── Ask.php
│ │ │ │ │ │ ├── descriptor
│ │ │ │ │ │ │ └── Console.php
│ │ │ │ │ │ ├── Descriptor.php
│ │ │ │ │ │ ├── driver
│ │ │ │ │ │ │ ├── Buffer.php
│ │ │ │ │ │ │ ├── Console.php
│ │ │ │ │ │ │ └── Nothing.php
│ │ │ │ │ │ ├── formatter
│ │ │ │ │ │ │ ├── Stack.php
│ │ │ │ │ │ │ └── Style.php
│ │ │ │ │ │ ├── Formatter.php
│ │ │ │ │ │ ├── question
│ │ │ │ │ │ │ ├── Choice.php
│ │ │ │ │ │ │ └── Confirmation.php
│ │ │ │ │ │ └── Question.php
│ │ │ │ │ └── Output.php
│ │ │ │ ├── Console.php
│ │ │ │ ├── controller
│ │ │ │ │ ├── Rest.php
│ │ │ │ │ └── Yar.php
│ │ │ │ ├── Controller.php
│ │ │ │ ├── Cookie.php
│ │ │ │ ├── db
│ │ │ │ │ ├── builder
│ │ │ │ │ │ ├── Mysql.php
│ │ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ │ └── Sqlsrv.php
│ │ │ │ │ ├── Builder.php
│ │ │ │ │ ├── Connection.php
│ │ │ │ │ ├── connector
│ │ │ │ │ │ ├── Mysql.php
│ │ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ │ ├── pgsql.sql
│ │ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ │ └── Sqlsrv.php
│ │ │ │ │ ├── exception
│ │ │ │ │ │ ├── BindParamException.php
│ │ │ │ │ │ ├── DataNotFoundException.php
│ │ │ │ │ │ └── ModelNotFoundException.php
│ │ │ │ │ └── Query.php
│ │ │ │ ├── Db.php
│ │ │ │ ├── debug
│ │ │ │ │ ├── Console.php
│ │ │ │ │ └── Html.php
│ │ │ │ ├── Debug.php
│ │ │ │ ├── Env.php
│ │ │ │ ├── Error.php
│ │ │ │ ├── exception
│ │ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ │ ├── DbException.php
│ │ │ │ │ ├── ErrorException.php
│ │ │ │ │ ├── Handle.php
│ │ │ │ │ ├── HttpException.php
│ │ │ │ │ ├── HttpResponseException.php
│ │ │ │ │ ├── PDOException.php
│ │ │ │ │ ├── RouteNotFoundException.php
│ │ │ │ │ ├── TemplateNotFoundException.php
│ │ │ │ │ ├── ThrowableError.php
│ │ │ │ │ └── ValidateException.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Hook.php
│ │ │ │ ├── Lang.php
│ │ │ │ ├── Loader.php
│ │ │ │ ├── log
│ │ │ │ │ └── driver
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Socket.php
│ │ │ │ │ └── Test.php
│ │ │ │ ├── Log.php
│ │ │ │ ├── model
│ │ │ │ │ ├── Collection.php
│ │ │ │ │ ├── Merge.php
│ │ │ │ │ ├── Pivot.php
│ │ │ │ │ ├── relation
│ │ │ │ │ │ ├── BelongsToMany.php
│ │ │ │ │ │ ├── BelongsTo.php
│ │ │ │ │ │ ├── HasMany.php
│ │ │ │ │ │ ├── HasManyThrough.php
│ │ │ │ │ │ ├── HasOne.php
│ │ │ │ │ │ ├── MorphMany.php
│ │ │ │ │ │ ├── MorphOne.php
│ │ │ │ │ │ ├── MorphTo.php
│ │ │ │ │ │ └── OneToOne.php
│ │ │ │ │ └── Relation.php
│ │ │ │ ├── Model.php
│ │ │ │ ├── paginator
│ │ │ │ │ └── driver
│ │ │ │ │ └── Bootstrap.php
│ │ │ │ ├── Paginator.php
│ │ │ │ ├── process
│ │ │ │ │ ├── Builder.php
│ │ │ │ │ ├── exception
│ │ │ │ │ │ ├── Failed.php
│ │ │ │ │ │ └── Timeout.php
│ │ │ │ │ ├── pipes
│ │ │ │ │ │ ├── Pipes.php
│ │ │ │ │ │ ├── Unix.php
│ │ │ │ │ │ └── Windows.php
│ │ │ │ │ └── Utils.php
│ │ │ │ ├── Process.php
│ │ │ │ ├── Request.php
│ │ │ │ ├── response
│ │ │ │ │ ├── Json.php
│ │ │ │ │ ├── Jsonp.php
│ │ │ │ │ ├── Redirect.php
│ │ │ │ │ ├── View.php
│ │ │ │ │ └── Xml.php
│ │ │ │ ├── Response.php
│ │ │ │ ├── Route.php
│ │ │ │ ├── session
│ │ │ │ │ └── driver
│ │ │ │ │ ├── Memcached.php
│ │ │ │ │ ├── Memcache.php
│ │ │ │ │ └── Redis.php
│ │ │ │ ├── Session.php
│ │ │ │ ├── template
│ │ │ │ │ ├── driver
│ │ │ │ │ │ └── File.php
│ │ │ │ │ ├── taglib
│ │ │ │ │ │ └── Cx.php
│ │ │ │ │ └── TagLib.php
│ │ │ │ ├── Template.php
│ │ │ │ ├── Url.php
│ │ │ │ ├── Validate.php
│ │ │ │ ├── view
│ │ │ │ │ └── driver
│ │ │ │ │ ├── Php.php
│ │ │ │ │ └── Think.php
│ │ │ │ └── View.php
│ │ │ └── traits
│ │ │ ├── controller
│ │ │ │ └── Jump.php
│ │ │ ├── model
│ │ │ │ └── SoftDelete.php
│ │ │ └── think
│ │ │ └── Instance.php
│ │ ├── LICENSE.txt
│ │ ├── logo.png
│ │ ├── phpunit.xml
│ │ ├── README.md
│ │ ├── start.php
│ │ └── tpl
│ │ ├── default_index.tpl
│ │ ├── dispatch_jump.tpl
│ │ ├── page_trace.tpl
│ │ └── think_exception.tpl
│ ├── vendor
│ │ ├── autoload.php
│ │ ├── bin
│ │ │ ├── phpunit
│ │ │ └── phpunit.bat
│ │ ├── composer
│ │ │ ├── autoload_classmap.php
│ │ │ ├── autoload_files.php
│ │ │ ├── autoload_namespaces.php
│ │ │ ├── autoload_psr4.php
│ │ │ ├── autoload_real.php
│ │ │ ├── autoload_static.php
│ │ │ ├── ClassLoader.php
│ │ │ ├── installed.json
│ │ │ └── LICENSE
│ │ ├── doctrine
│ │ │ └── instantiator
│ │ │ ├── composer.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── phpmd.xml.dist
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ └── Doctrine
│ │ │ │ └── Instantiator
│ │ │ │ ├── Exception
│ │ │ │ │ ├── ExceptionInterface.php
│ │ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ │ └── UnexpectedValueException.php
│ │ │ │ ├── InstantiatorInterface.php
│ │ │ │ └── Instantiator.php
│ │ │ └── tests
│ │ │ └── DoctrineTest
│ │ │ ├── InstantiatorPerformance
│ │ │ │ └── InstantiatorPerformanceEvent.php
│ │ │ ├── InstantiatorTest
│ │ │ │ ├── Exception
│ │ │ │ │ ├── InvalidArgumentExceptionTest.php
│ │ │ │ │ └── UnexpectedValueExceptionTest.php
│ │ │ │ └── InstantiatorTest.php
│ │ │ └── InstantiatorTestAsset
│ │ │ ├── AbstractClassAsset.php
│ │ │ ├── ArrayObjectAsset.php
│ │ │ ├── ExceptionAsset.php
│ │ │ ├── FinalExceptionAsset.php
│ │ │ ├── PharAsset.php
│ │ │ ├── PharExceptionAsset.php
│ │ │ ├── SerializableArrayObjectAsset.php
│ │ │ ├── SimpleSerializableAsset.php
│ │ │ ├── SimpleTraitAsset.php
│ │ │ ├── UnCloneableAsset.php
│ │ │ ├── UnserializeExceptionArrayObjectAsset.php
│ │ │ ├── WakeUpNoticesAsset.php
│ │ │ └── XMLReaderAsset.php
│ │ ├── johnlui
│ │ │ └── aliyun-oss
│ │ │ ├── composer.json
│ │ │ ├── example
│ │ │ │ └── OSS.php
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── AliyunOSS.php
│ │ │ └── oss
│ │ │ ├── aliyun.php
│ │ │ ├── libs
│ │ │ │ ├── guzzle
│ │ │ │ │ ├── common
│ │ │ │ │ │ └── Guzzle
│ │ │ │ │ │ └── Common
│ │ │ │ │ │ ├── AbstractHasDispatcher.php
│ │ │ │ │ │ ├── Collection.php
│ │ │ │ │ │ ├── Event.php
│ │ │ │ │ │ ├── Exception
│ │ │ │ │ │ │ ├── BadMethodCallException.php
│ │ │ │ │ │ │ ├── ExceptionCollection.php
│ │ │ │ │ │ │ ├── GuzzleException.php
│ │ │ │ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ │ │ │ ├── RuntimeException.php
│ │ │ │ │ │ │ └── UnexpectedValueException.php
│ │ │ │ │ │ ├── FromConfigInterface.php
│ │ │ │ │ │ ├── HasDispatcherInterface.php
│ │ │ │ │ │ ├── ToArrayInterface.php
│ │ │ │ │ │ └── Version.php
│ │ │ │ │ ├── http
│ │ │ │ │ │ └── Guzzle
│ │ │ │ │ │ └── Http
│ │ │ │ │ │ ├── AbstractEntityBodyDecorator.php
│ │ │ │ │ │ ├── CachingEntityBody.php
│ │ │ │ │ │ ├── ClientInterface.php
│ │ │ │ │ │ ├── Client.php
│ │ │ │ │ │ ├── Curl
│ │ │ │ │ │ │ ├── CurlHandle.php
│ │ │ │ │ │ │ ├── CurlMultiInterface.php
│ │ │ │ │ │ │ ├── CurlMulti.php
│ │ │ │ │ │ │ ├── CurlMultiProxy.php
│ │ │ │ │ │ │ ├── CurlVersion.php
│ │ │ │ │ │ │ └── RequestMediator.php
│ │ │ │ │ │ ├── EntityBodyInterface.php
│ │ │ │ │ │ ├── EntityBody.php
│ │ │ │ │ │ ├── Exception
│ │ │ │ │ │ │ ├── BadResponseException.php
│ │ │ │ │ │ │ ├── ClientErrorResponseException.php
│ │ │ │ │ │ │ ├── CouldNotRewindStreamException.php
│ │ │ │ │ │ │ ├── CurlException.php
│ │ │ │ │ │ │ ├── HttpException.php
│ │ │ │ │ │ │ ├── MultiTransferException.php
│ │ │ │ │ │ │ ├── RequestException.php
│ │ │ │ │ │ │ ├── ServerErrorResponseException.php
│ │ │ │ │ │ │ └── TooManyRedirectsException.php
│ │ │ │ │ │ ├── IoEmittingEntityBody.php
│ │ │ │ │ │ ├── Message
│ │ │ │ │ │ │ ├── AbstractMessage.php
│ │ │ │ │ │ │ ├── EntityEnclosingRequestInterface.php
│ │ │ │ │ │ │ ├── EntityEnclosingRequest.php
│ │ │ │ │ │ │ ├── Header
│ │ │ │ │ │ │ │ ├── CacheControl.php
│ │ │ │ │ │ │ │ ├── HeaderCollection.php
│ │ │ │ │ │ │ │ ├── HeaderFactoryInterface.php
│ │ │ │ │ │ │ │ ├── HeaderFactory.php
│ │ │ │ │ │ │ │ ├── HeaderInterface.php
│ │ │ │ │ │ │ │ └── Link.php
│ │ │ │ │ │ │ ├── Header.php
│ │ │ │ │ │ │ ├── MessageInterface.php
│ │ │ │ │ │ │ ├── PostFileInterface.php
│ │ │ │ │ │ │ ├── PostFile.php
│ │ │ │ │ │ │ ├── RequestFactoryInterface.php
│ │ │ │ │ │ │ ├── RequestFactory.php
│ │ │ │ │ │ │ ├── RequestInterface.php
│ │ │ │ │ │ │ ├── Request.php
│ │ │ │ │ │ │ └── Response.php
│ │ │ │ │ │ ├── Mimetypes.php
│ │ │ │ │ │ ├── QueryAggregator
│ │ │ │ │ │ │ ├── CommaAggregator.php
│ │ │ │ │ │ │ ├── DuplicateAggregator.php
│ │ │ │ │ │ │ ├── PhpAggregator.php
│ │ │ │ │ │ │ └── QueryAggregatorInterface.php
│ │ │ │ │ │ ├── QueryString.php
│ │ │ │ │ │ ├── ReadLimitEntityBody.php
│ │ │ │ │ │ ├── RedirectPlugin.php
│ │ │ │ │ │ ├── StaticClient.php
│ │ │ │ │ │ └── Url.php
│ │ │ │ │ ├── parser
│ │ │ │ │ │ └── Guzzle
│ │ │ │ │ │ └── Parser
│ │ │ │ │ │ ├── Cookie
│ │ │ │ │ │ │ ├── CookieParserInterface.php
│ │ │ │ │ │ │ └── CookieParser.php
│ │ │ │ │ │ ├── Message
│ │ │ │ │ │ │ ├── AbstractMessageParser.php
│ │ │ │ │ │ │ ├── MessageParserInterface.php
│ │ │ │ │ │ │ ├── MessageParser.php
│ │ │ │ │ │ │ └── PeclHttpMessageParser.php
│ │ │ │ │ │ ├── ParserRegistry.php
│ │ │ │ │ │ ├── UriTemplate
│ │ │ │ │ │ │ ├── PeclUriTemplate.php
│ │ │ │ │ │ │ ├── UriTemplateInterface.php
│ │ │ │ │ │ │ └── UriTemplate.php
│ │ │ │ │ │ └── Url
│ │ │ │ │ │ ├── UrlParserInterface.php
│ │ │ │ │ │ └── UrlParser.php
│ │ │ │ │ ├── plugin
│ │ │ │ │ │ └── Guzzle
│ │ │ │ │ │ └── Plugin
│ │ │ │ │ │ ├── Async
│ │ │ │ │ │ │ └── AsyncPlugin.php
│ │ │ │ │ │ ├── Backoff
│ │ │ │ │ │ │ ├── AbstractBackoffStrategy.php
│ │ │ │ │ │ │ ├── AbstractErrorCodeBackoffStrategy.php
│ │ │ │ │ │ │ ├── BackoffLogger.php
│ │ │ │ │ │ │ ├── BackoffPlugin.php
│ │ │ │ │ │ │ ├── BackoffStrategyInterface.php
│ │ │ │ │ │ │ ├── CallbackBackoffStrategy.php
│ │ │ │ │ │ │ ├── ConstantBackoffStrategy.php
│ │ │ │ │ │ │ ├── CurlBackoffStrategy.php
│ │ │ │ │ │ │ ├── ExponentialBackoffStrategy.php
│ │ │ │ │ │ │ ├── HttpBackoffStrategy.php
│ │ │ │ │ │ │ ├── LinearBackoffStrategy.php
│ │ │ │ │ │ │ ├── ReasonPhraseBackoffStrategy.php
│ │ │ │ │ │ │ └── TruncatedBackoffStrategy.php
│ │ │ │ │ │ ├── Cache
│ │ │ │ │ │ │ ├── CacheKeyProviderInterface.php
│ │ │ │ │ │ │ ├── CachePlugin.php
│ │ │ │ │ │ │ ├── CacheStorageInterface.php
│ │ │ │ │ │ │ ├── CallbackCanCacheStrategy.php
│ │ │ │ │ │ │ ├── CanCacheStrategyInterface.php
│ │ │ │ │ │ │ ├── DefaultCacheKeyProvider.php
│ │ │ │ │ │ │ ├── DefaultCacheStorage.php
│ │ │ │ │ │ │ ├── DefaultCanCacheStrategy.php
│ │ │ │ │ │ │ ├── DefaultRevalidation.php
│ │ │ │ │ │ │ ├── DenyRevalidation.php
│ │ │ │ │ │ │ ├── RevalidationInterface.php
│ │ │ │ │ │ │ └── SkipRevalidation.php
│ │ │ │ │ │ ├── Cookie
│ │ │ │ │ │ │ ├── CookieJar
│ │ │ │ │ │ │ │ ├── ArrayCookieJar.php
│ │ │ │ │ │ │ │ ├── CookieJarInterface.php
│ │ │ │ │ │ │ │ └── FileCookieJar.php
│ │ │ │ │ │ │ ├── Cookie.php
│ │ │ │ │ │ │ ├── CookiePlugin.php
│ │ │ │ │ │ │ └── Exception
│ │ │ │ │ │ │ └── InvalidCookieException.php
│ │ │ │ │ │ ├── CurlAuth
│ │ │ │ │ │ │ └── CurlAuthPlugin.php
│ │ │ │ │ │ ├── ErrorResponse
│ │ │ │ │ │ │ ├── ErrorResponseExceptionInterface.php
│ │ │ │ │ │ │ ├── ErrorResponsePlugin.php
│ │ │ │ │ │ │ └── Exception
│ │ │ │ │ │ │ └── ErrorResponseException.php
│ │ │ │ │ │ ├── History
│ │ │ │ │ │ │ └── HistoryPlugin.php
│ │ │ │ │ │ ├── Log
│ │ │ │ │ │ │ └── LogPlugin.php
│ │ │ │ │ │ ├── Md5
│ │ │ │ │ │ │ ├── CommandContentMd5Plugin.php
│ │ │ │ │ │ │ └── Md5ValidatorPlugin.php
│ │ │ │ │ │ ├── Mock
│ │ │ │ │ │ │ └── MockPlugin.php
│ │ │ │ │ │ └── Oauth
│ │ │ │ │ │ └── OauthPlugin.php
│ │ │ │ │ └── stream
│ │ │ │ │ └── Guzzle
│ │ │ │ │ └── Stream
│ │ │ │ │ ├── PhpStreamRequestFactory.php
│ │ │ │ │ ├── StreamInterface.php
│ │ │ │ │ ├── Stream.php
│ │ │ │ │ └── StreamRequestFactoryInterface.php
│ │ │ │ └── symfony
│ │ │ │ ├── class-loader
│ │ │ │ │ └── Symfony
│ │ │ │ │ └── Component
│ │ │ │ │ └── ClassLoader
│ │ │ │ │ ├── ApcClassLoader.php
│ │ │ │ │ ├── ApcUniversalClassLoader.php
│ │ │ │ │ ├── ClassCollectionLoader.php
│ │ │ │ │ ├── ClassLoader.php
│ │ │ │ │ ├── ClassMapGenerator.php
│ │ │ │ │ ├── DebugClassLoader.php
│ │ │ │ │ ├── DebugUniversalClassLoader.php
│ │ │ │ │ ├── MapClassLoader.php
│ │ │ │ │ ├── Tests
│ │ │ │ │ │ ├── ApcUniversalClassLoaderTest.php
│ │ │ │ │ │ ├── ClassCollectionLoaderTest.php
│ │ │ │ │ │ ├── ClassLoaderTest.php
│ │ │ │ │ │ ├── ClassMapGeneratorTest.php
│ │ │ │ │ │ ├── DebugClassLoaderTest.php
│ │ │ │ │ │ ├── Fixtures
│ │ │ │ │ │ │ ├── alpha
│ │ │ │ │ │ │ │ ├── NamespaceCollision
│ │ │ │ │ │ │ │ │ ├── A
│ │ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ │ └── C
│ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ └── PrefixCollision
│ │ │ │ │ │ │ │ ├── A
│ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ └── C
│ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ ├── Apc
│ │ │ │ │ │ │ │ ├── alpha
│ │ │ │ │ │ │ │ │ └── Apc
│ │ │ │ │ │ │ │ │ ├── ApcPrefixCollision
│ │ │ │ │ │ │ │ │ │ └── A
│ │ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ │ └── NamespaceCollision
│ │ │ │ │ │ │ │ │ └── A
│ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ ├── beta
│ │ │ │ │ │ │ │ │ └── Apc
│ │ │ │ │ │ │ │ │ ├── ApcPrefixCollision
│ │ │ │ │ │ │ │ │ │ └── A
│ │ │ │ │ │ │ │ │ │ └── B
│ │ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ │ └── NamespaceCollision
│ │ │ │ │ │ │ │ │ └── A
│ │ │ │ │ │ │ │ │ └── B
│ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ ├── fallback
│ │ │ │ │ │ │ │ │ ├── Apc
│ │ │ │ │ │ │ │ │ │ └── Pearlike
│ │ │ │ │ │ │ │ │ │ └── FooBar.php
│ │ │ │ │ │ │ │ │ └── Namespaced
│ │ │ │ │ │ │ │ │ └── FooBar.php
│ │ │ │ │ │ │ │ ├── Namespaced
│ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ ├── Baz.php
│ │ │ │ │ │ │ │ │ ├── FooBar.php
│ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ └── Pearlike
│ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ ├── Baz.php
│ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ ├── beta
│ │ │ │ │ │ │ │ ├── NamespaceCollision
│ │ │ │ │ │ │ │ │ ├── A
│ │ │ │ │ │ │ │ │ │ └── B
│ │ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ │ └── C
│ │ │ │ │ │ │ │ │ └── B
│ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ └── PrefixCollision
│ │ │ │ │ │ │ │ ├── A
│ │ │ │ │ │ │ │ │ └── B
│ │ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ │ └── C
│ │ │ │ │ │ │ │ └── B
│ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ ├── ClassesWithParents
│ │ │ │ │ │ │ │ ├── A.php
│ │ │ │ │ │ │ │ ├── ATrait.php
│ │ │ │ │ │ │ │ ├── B.php
│ │ │ │ │ │ │ │ ├── BTrait.php
│ │ │ │ │ │ │ │ ├── CInterface.php
│ │ │ │ │ │ │ │ ├── CTrait.php
│ │ │ │ │ │ │ │ ├── D.php
│ │ │ │ │ │ │ │ ├── E.php
│ │ │ │ │ │ │ │ └── GInterface.php
│ │ │ │ │ │ │ ├── classmap
│ │ │ │ │ │ │ │ ├── multipleNs.php
│ │ │ │ │ │ │ │ ├── notAClass.php
│ │ │ │ │ │ │ │ ├── sameNsMultipleClasses.php
│ │ │ │ │ │ │ │ ├── SomeClass.php
│ │ │ │ │ │ │ │ ├── SomeInterface.php
│ │ │ │ │ │ │ │ └── SomeParent.php
│ │ │ │ │ │ │ ├── deps
│ │ │ │ │ │ │ │ └── traits.php
│ │ │ │ │ │ │ ├── fallback
│ │ │ │ │ │ │ │ ├── Namespaced
│ │ │ │ │ │ │ │ │ └── FooBar.php
│ │ │ │ │ │ │ │ ├── Namespaced2
│ │ │ │ │ │ │ │ │ └── FooBar.php
│ │ │ │ │ │ │ │ ├── Pearlike
│ │ │ │ │ │ │ │ │ └── FooBar.php
│ │ │ │ │ │ │ │ └── Pearlike2
│ │ │ │ │ │ │ │ └── FooBar.php
│ │ │ │ │ │ │ ├── includepath
│ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ ├── Namespaced
│ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ ├── Baz.php
│ │ │ │ │ │ │ │ ├── Foo.php
│ │ │ │ │ │ │ │ └── WithComments.php
│ │ │ │ │ │ │ ├── Namespaced2
│ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ ├── Baz.php
│ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ ├── Pearlike
│ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ ├── Baz.php
│ │ │ │ │ │ │ │ ├── Foo.php
│ │ │ │ │ │ │ │ └── WithComments.php
│ │ │ │ │ │ │ ├── Pearlike2
│ │ │ │ │ │ │ │ ├── Bar.php
│ │ │ │ │ │ │ │ ├── Baz.php
│ │ │ │ │ │ │ │ └── Foo.php
│ │ │ │ │ │ │ └── php5.4
│ │ │ │ │ │ │ └── traits.php
│ │ │ │ │ │ └── UniversalClassLoaderTest.php
│ │ │ │ │ ├── UniversalClassLoader.php
│ │ │ │ │ ├── WinCacheClassLoader.php
│ │ │ │ │ └── XcacheClassLoader.php
│ │ │ │ ├── event-dispatcher
│ │ │ │ │ └── Symfony
│ │ │ │ │ └── Component
│ │ │ │ │ └── EventDispatcher
│ │ │ │ │ ├── ContainerAwareEventDispatcher.php
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ └── TraceableEventDispatcherInterface.php
│ │ │ │ │ ├── EventDispatcherInterface.php
│ │ │ │ │ ├── EventDispatcher.php
│ │ │ │ │ ├── Event.php
│ │ │ │ │ ├── EventSubscriberInterface.php
│ │ │ │ │ ├── GenericEvent.php
│ │ │ │ │ ├── ImmutableEventDispatcher.php
│ │ │ │ │ └── Tests
│ │ │ │ │ ├── ContainerAwareEventDispatcherTest.php
│ │ │ │ │ ├── EventDispatcherTest.php
│ │ │ │ │ ├── EventTest.php
│ │ │ │ │ ├── GenericEventTest.php
│ │ │ │ │ └── ImmutableEventDispatcherTest.php
│ │ │ │ └── yaml
│ │ │ │ └── Symfony
│ │ │ │ └── Component
│ │ │ │ └── Yaml
│ │ │ │ ├── Dumper.php
│ │ │ │ ├── Escaper.php
│ │ │ │ ├── Exception
│ │ │ │ │ ├── DumpException.php
│ │ │ │ │ ├── ExceptionInterface.php
│ │ │ │ │ ├── ParseException.php
│ │ │ │ │ └── RuntimeException.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── Parser.php
│ │ │ │ ├── Tests
│ │ │ │ │ ├── DumperTest.php
│ │ │ │ │ ├── InlineTest.php
│ │ │ │ │ ├── ParserTest.php
│ │ │ │ │ └── YamlTest.php
│ │ │ │ ├── Unescaper.php
│ │ │ │ └── Yaml.php
│ │ │ └── src
│ │ │ └── Aliyun
│ │ │ ├── Common
│ │ │ │ ├── Auth
│ │ │ │ │ ├── HmacSHA1Signature.php
│ │ │ │ │ ├── ServiceSignature.php
│ │ │ │ │ └── SignerInterface.php
│ │ │ │ ├── Communication
│ │ │ │ │ ├── Command.php
│ │ │ │ │ ├── ExecutionContext.php
│ │ │ │ │ ├── HttpMessage.php
│ │ │ │ │ ├── HttpRequest.php
│ │ │ │ │ ├── HttpResponse.php
│ │ │ │ │ ├── HttpServiceClient.php
│ │ │ │ │ ├── OpenServiceClient.php
│ │ │ │ │ ├── ResponseHandlerInterface.php
│ │ │ │ │ ├── ResponseParserInterface.php
│ │ │ │ │ ├── RetryableServiceClient.php
│ │ │ │ │ ├── ServiceClientFactory.php
│ │ │ │ │ └── ServiceClientInterface.php
│ │ │ │ ├── Exceptions
│ │ │ │ │ ├── ClientException.php
│ │ │ │ │ └── ServiceException.php
│ │ │ │ ├── Models
│ │ │ │ │ └── ServiceOptions.php
│ │ │ │ ├── Resources
│ │ │ │ │ ├── default.options.php
│ │ │ │ │ ├── ResourceManager.php
│ │ │ │ │ └── strings.php
│ │ │ │ └── Utilities
│ │ │ │ ├── AssertUtils.php
│ │ │ │ ├── DateUtils.php
│ │ │ │ ├── HttpHeaders.php
│ │ │ │ ├── HttpMethods.php
│ │ │ │ └── ServiceConstants.php
│ │ │ └── OSS
│ │ │ ├── Auth
│ │ │ │ └── OSSRequestSigner.php
│ │ │ ├── Commands
│ │ │ │ ├── AbortMultipartUploadCommand.php
│ │ │ │ ├── CompleteMultipartUploadCommand.php
│ │ │ │ ├── CopyObjectCommand.php
│ │ │ │ ├── CreateBucketCommand.php
│ │ │ │ ├── DeleteBucketCommand.php
│ │ │ │ ├── DeleteObjectCommand.php
│ │ │ │ ├── GeneratePresignedUrlCommand.php
│ │ │ │ ├── GetBucketAclCommand.php
│ │ │ │ ├── GetObjectCommand.php
│ │ │ │ ├── InitiateMultipartUploadCommand.php
│ │ │ │ ├── ListBucketsCommand.php
│ │ │ │ ├── ListMultipartUploadsCommand.php
│ │ │ │ ├── ListObjectsCommand.php
│ │ │ │ ├── ListPartsCommand.php
│ │ │ │ ├── OSSCommand.php
│ │ │ │ ├── PutObjectCommand.php
│ │ │ │ ├── SetBucketAclCommand.php
│ │ │ │ └── UploadPartCommand.php
│ │ │ ├── Exceptions
│ │ │ │ └── OSSException.php
│ │ │ ├── Models
│ │ │ │ ├── AccessControlPolicy.php
│ │ │ │ ├── Bucket.php
│ │ │ │ ├── CompleteMultipartUploadResult.php
│ │ │ │ ├── CopyObjectResult.php
│ │ │ │ ├── InitiateMultipartUploadResult.php
│ │ │ │ ├── MultipartUpload.php
│ │ │ │ ├── MultipartUploadsListing.php
│ │ │ │ ├── ObjectListing.php
│ │ │ │ ├── OSSErrorCode.php
│ │ │ │ ├── OSSError.php
│ │ │ │ ├── OSSObject.php
│ │ │ │ ├── OSSObjectSummary.php
│ │ │ │ ├── OSSOptions.php
│ │ │ │ ├── Owner.php
│ │ │ │ ├── PartListing.php
│ │ │ │ ├── PartSummary.php
│ │ │ │ ├── PutObjectResult.php
│ │ │ │ └── UploadPartResult.php
│ │ │ ├── OSSClient.php
│ │ │ ├── Parsers
│ │ │ │ └── SXParser
│ │ │ │ ├── SXCompleteMultipartUploadParser.php
│ │ │ │ ├── SXCopyObjectParser.php
│ │ │ │ ├── SXCreateBucketParser.php
│ │ │ │ ├── SXEmptyParser.php
│ │ │ │ ├── SXGetBucketAclParser.php
│ │ │ │ ├── SXGetObjectParser.php
│ │ │ │ ├── SXInitiateMultipartUploadParser.php
│ │ │ │ ├── SXListBucketsParser.php
│ │ │ │ ├── SXListMultipartUploadsParser.php
│ │ │ │ ├── SXListObjectsParser.php
│ │ │ │ ├── SXListPartsParser.php
│ │ │ │ ├── SXOSSErrorParser.php
│ │ │ │ ├── SXParser.php
│ │ │ │ ├── SXPutObjectParser.php
│ │ │ │ └── SXUploadPartParser.php
│ │ │ ├── Resources
│ │ │ │ └── default.options.php
│ │ │ ├── ResponseHandlers
│ │ │ │ └── OSSErrorResponseHandler.php
│ │ │ └── Utilities
│ │ │ ├── OSSExceptionFactory.php
│ │ │ ├── OSSHeaders.php
│ │ │ ├── OSSRequestBuilder.php
│ │ │ ├── OSSResponseParserFactory.php
│ │ │ ├── OSSSXParserFactory.php
│ │ │ ├── OSSUtils.php
│ │ │ ├── ResponseHeaderOverrides.php
│ │ │ └── SignUtils.php
│ │ ├── phpdocumentor
│ │ │ ├── reflection-common
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ ├── Element.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Fqsen.php
│ │ │ │ ├── Location.php
│ │ │ │ ├── ProjectFactory.php
│ │ │ │ └── Project.php
│ │ │ ├── reflection-docblock
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ ├── DocBlock
│ │ │ │ │ ├── DescriptionFactory.php
│ │ │ │ │ ├── Description.php
│ │ │ │ │ ├── ExampleFinder.php
│ │ │ │ │ ├── Serializer.php
│ │ │ │ │ ├── StandardTagFactory.php
│ │ │ │ │ ├── TagFactory.php
│ │ │ │ │ ├── Tag.php
│ │ │ │ │ └── Tags
│ │ │ │ │ ├── Author.php
│ │ │ │ │ ├── BaseTag.php
│ │ │ │ │ ├── Covers.php
│ │ │ │ │ ├── Deprecated.php
│ │ │ │ │ ├── Example.php
│ │ │ │ │ ├── Factory
│ │ │ │ │ │ ├── StaticMethod.php
│ │ │ │ │ │ └── Strategy.php
│ │ │ │ │ ├── Formatter
│ │ │ │ │ │ ├── AlignFormatter.php
│ │ │ │ │ │ └── PassthroughFormatter.php
│ │ │ │ │ ├── Formatter.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
│ │ │ │ ├── DocBlockFactoryInterface.php
│ │ │ │ ├── DocBlockFactory.php
│ │ │ │ └── DocBlock.php
│ │ │ └── type-resolver
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── FqsenResolver.php
│ │ │ ├── Type.php
│ │ │ ├── TypeResolver.php
│ │ │ └── Types
│ │ │ ├── Array_.php
│ │ │ ├── Boolean.php
│ │ │ ├── Callable_.php
│ │ │ ├── Compound.php
│ │ │ ├── ContextFactory.php
│ │ │ ├── Context.php
│ │ │ ├── Float_.php
│ │ │ ├── Integer.php
│ │ │ ├── Iterable_.php
│ │ │ ├── Mixed_.php
│ │ │ ├── Nullable.php
│ │ │ ├── Null_.php
│ │ │ ├── Object_.php
│ │ │ ├── Parent_.php
│ │ │ ├── Resource_.php
│ │ │ ├── Scalar.php
│ │ │ ├── Self_.php
│ │ │ ├── Static_.php
│ │ │ ├── String_.php
│ │ │ ├── This.php
│ │ │ └── Void_.php
│ │ ├── phpoffice
│ │ │ └── phpexcel
│ │ │ ├── changelog.txt
│ │ │ ├── Classes
│ │ │ │ ├── PHPExcel
│ │ │ │ │ ├── Autoloader.php
│ │ │ │ │ ├── CachedObjectStorage
│ │ │ │ │ │ ├── APC.php
│ │ │ │ │ │ ├── CacheBase.php
│ │ │ │ │ │ ├── DiscISAM.php
│ │ │ │ │ │ ├── ICache.php
│ │ │ │ │ │ ├── Igbinary.php
│ │ │ │ │ │ ├── Memcache.php
│ │ │ │ │ │ ├── MemoryGZip.php
│ │ │ │ │ │ ├── Memory.php
│ │ │ │ │ │ ├── MemorySerialized.php
│ │ │ │ │ │ ├── PHPTemp.php
│ │ │ │ │ │ ├── SQLite3.php
│ │ │ │ │ │ ├── SQLite.php
│ │ │ │ │ │ └── Wincache.php
│ │ │ │ │ ├── CachedObjectStorageFactory.php
│ │ │ │ │ ├── CalcEngine
│ │ │ │ │ │ ├── CyclicReferenceStack.php
│ │ │ │ │ │ └── Logger.php
│ │ │ │ │ ├── Calculation
│ │ │ │ │ │ ├── Database.php
│ │ │ │ │ │ ├── DateTime.php
│ │ │ │ │ │ ├── Engineering.php
│ │ │ │ │ │ ├── ExceptionHandler.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── Financial.php
│ │ │ │ │ │ ├── FormulaParser.php
│ │ │ │ │ │ ├── FormulaToken.php
│ │ │ │ │ │ ├── functionlist.txt
│ │ │ │ │ │ ├── Function.php
│ │ │ │ │ │ ├── Functions.php
│ │ │ │ │ │ ├── Logical.php
│ │ │ │ │ │ ├── LookupRef.php
│ │ │ │ │ │ ├── MathTrig.php
│ │ │ │ │ │ ├── Statistical.php
│ │ │ │ │ │ ├── TextData.php
│ │ │ │ │ │ └── Token
│ │ │ │ │ │ └── Stack.php
│ │ │ │ │ ├── Calculation.php
│ │ │ │ │ ├── Cell
│ │ │ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ │ │ ├── DataType.php
│ │ │ │ │ │ ├── DataValidation.php
│ │ │ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ │ │ ├── Hyperlink.php
│ │ │ │ │ │ └── IValueBinder.php
│ │ │ │ │ ├── Cell.php
│ │ │ │ │ ├── Chart
│ │ │ │ │ │ ├── Axis.php
│ │ │ │ │ │ ├── DataSeries.php
│ │ │ │ │ │ ├── DataSeriesValues.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── GridLines.php
│ │ │ │ │ │ ├── Layout.php
│ │ │ │ │ │ ├── Legend.php
│ │ │ │ │ │ ├── PlotArea.php
│ │ │ │ │ │ ├── Properties.php
│ │ │ │ │ │ ├── Renderer
│ │ │ │ │ │ │ ├── jpgraph.php
│ │ │ │ │ │ │ └── PHP Charting Libraries.txt
│ │ │ │ │ │ └── Title.php
│ │ │ │ │ ├── Chart.php
│ │ │ │ │ ├── Comment.php
│ │ │ │ │ ├── DocumentProperties.php
│ │ │ │ │ ├── DocumentSecurity.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── HashTable.php
│ │ │ │ │ ├── Helper
│ │ │ │ │ │ └── HTML.php
│ │ │ │ │ ├── IComparable.php
│ │ │ │ │ ├── IOFactory.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
│ │ │ │ │ ├── NamedRange.php
│ │ │ │ │ ├── Reader
│ │ │ │ │ │ ├── Abstract.php
│ │ │ │ │ │ ├── CSV.php
│ │ │ │ │ │ ├── DefaultReadFilter.php
│ │ │ │ │ │ ├── Excel2003XML.php
│ │ │ │ │ │ ├── Excel2007
│ │ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ │ └── Theme.php
│ │ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ │ ├── Excel5
│ │ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ │ ├── MD5.php
│ │ │ │ │ │ │ └── RC4.php
│ │ │ │ │ │ ├── Excel5.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── Gnumeric.php
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ ├── IReader.php
│ │ │ │ │ │ ├── IReadFilter.php
│ │ │ │ │ │ ├── OOCalc.php
│ │ │ │ │ │ └── SYLK.php
│ │ │ │ │ ├── ReferenceHelper.php
│ │ │ │ │ ├── RichText
│ │ │ │ │ │ ├── ITextElement.php
│ │ │ │ │ │ ├── Run.php
│ │ │ │ │ │ └── TextElement.php
│ │ │ │ │ ├── RichText.php
│ │ │ │ │ ├── Settings.php
│ │ │ │ │ ├── Shared
│ │ │ │ │ │ ├── CodePage.php
│ │ │ │ │ │ ├── Date.php
│ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ ├── Escher
│ │ │ │ │ │ │ ├── DgContainer
│ │ │ │ │ │ │ │ ├── SpgrContainer
│ │ │ │ │ │ │ │ │ └── SpContainer.php
│ │ │ │ │ │ │ │ └── SpgrContainer.php
│ │ │ │ │ │ │ ├── DgContainer.php
│ │ │ │ │ │ │ ├── DggContainer
│ │ │ │ │ │ │ │ ├── BstoreContainer
│ │ │ │ │ │ │ │ │ ├── BSE
│ │ │ │ │ │ │ │ │ │ └── Blip.php
│ │ │ │ │ │ │ │ │ └── BSE.php
│ │ │ │ │ │ │ │ └── BstoreContainer.php
│ │ │ │ │ │ │ └── DggContainer.php
│ │ │ │ │ │ ├── Escher.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
│ │ │ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ │ │ ├── PPS
│ │ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ │ └── Root.php
│ │ │ │ │ │ │ └── PPS.php
│ │ │ │ │ │ ├── OLE.php
│ │ │ │ │ │ ├── OLERead.php
│ │ │ │ │ │ ├── PasswordHasher.php
│ │ │ │ │ │ ├── PCLZip
│ │ │ │ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ │ │ │ ├── pclzip.lib.php
│ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ ├── String.php
│ │ │ │ │ │ ├── TimeZone.php
│ │ │ │ │ │ ├── trend
│ │ │ │ │ │ │ ├── bestFitClass.php
│ │ │ │ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ │ │ │ ├── linearBestFitClass.php
│ │ │ │ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ │ │ │ ├── powerBestFitClass.php
│ │ │ │ │ │ │ └── trendClass.php
│ │ │ │ │ │ ├── XMLWriter.php
│ │ │ │ │ │ ├── ZipArchive.php
│ │ │ │ │ │ └── ZipStreamWrapper.php
│ │ │ │ │ ├── Style
│ │ │ │ │ │ ├── Alignment.php
│ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ ├── Borders.php
│ │ │ │ │ │ ├── Color.php
│ │ │ │ │ │ ├── Conditional.php
│ │ │ │ │ │ ├── Fill.php
│ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ ├── NumberFormat.php
│ │ │ │ │ │ ├── Protection.php
│ │ │ │ │ │ └── Supervisor.php
│ │ │ │ │ ├── Style.php
│ │ │ │ │ ├── Worksheet
│ │ │ │ │ │ ├── AutoFilter
│ │ │ │ │ │ │ ├── Column
│ │ │ │ │ │ │ │ └── Rule.php
│ │ │ │ │ │ │ └── Column.php
│ │ │ │ │ │ ├── AutoFilter.php
│ │ │ │ │ │ ├── BaseDrawing.php
│ │ │ │ │ │ ├── CellIterator.php
│ │ │ │ │ │ ├── ColumnCellIterator.php
│ │ │ │ │ │ ├── ColumnDimension.php
│ │ │ │ │ │ ├── ColumnIterator.php
│ │ │ │ │ │ ├── Column.php
│ │ │ │ │ │ ├── Drawing
│ │ │ │ │ │ │ └── Shadow.php
│ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ │ │ ├── HeaderFooter.php
│ │ │ │ │ │ ├── MemoryDrawing.php
│ │ │ │ │ │ ├── PageMargins.php
│ │ │ │ │ │ ├── PageSetup.php
│ │ │ │ │ │ ├── Protection.php
│ │ │ │ │ │ ├── RowCellIterator.php
│ │ │ │ │ │ ├── RowDimension.php
│ │ │ │ │ │ ├── RowIterator.php
│ │ │ │ │ │ ├── Row.php
│ │ │ │ │ │ └── SheetView.php
│ │ │ │ │ ├── WorksheetIterator.php
│ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ └── Writer
│ │ │ │ │ ├── Abstract.php
│ │ │ │ │ ├── CSV.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
│ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ ├── Excel5
│ │ │ │ │ │ ├── BIFFwriter.php
│ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ ├── Parser.php
│ │ │ │ │ │ ├── Workbook.php
│ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ └── Xf.php
│ │ │ │ │ ├── Excel5.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── IWriter.php
│ │ │ │ │ ├── OpenDocument
│ │ │ │ │ │ ├── Cell
│ │ │ │ │ │ │ └── Comment.php
│ │ │ │ │ │ ├── Content.php
│ │ │ │ │ │ ├── MetaInf.php
│ │ │ │ │ │ ├── Meta.php
│ │ │ │ │ │ ├── Mimetype.php
│ │ │ │ │ │ ├── Settings.php
│ │ │ │ │ │ ├── Styles.php
│ │ │ │ │ │ ├── Thumbnails.php
│ │ │ │ │ │ └── WriterPart.php
│ │ │ │ │ ├── OpenDocument.php
│ │ │ │ │ │ ├── Core.php
│ │ │ │ │ │ ├── DomPDF.php
│ │ │ │ │ │ ├── mPDF.php
│ │ │ │ │ │ └── tcPDF.php
│ │ │ │ │ └── PDF.php
│ │ │ │ └── PHPExcel.php
│ │ │ ├── composer.json
│ │ │ ├── Examples
│ │ │ │ ├── 01pharSimple.php
│ │ │ │ ├── 01simple-download-ods.php
│ │ │ │ ├── 01simple-download-pdf.php
│ │ │ │ ├── 01simple-download-xls.php
│ │ │ │ ├── 01simple-download-xlsx.php
│ │ │ │ ├── 01simplePCLZip.php
│ │ │ │ ├── 01simple.php
│ │ │ │ ├── 02types.php
│ │ │ │ ├── 02types-xls.php
│ │ │ │ ├── 03formulas.php
│ │ │ │ ├── 04printing.php
│ │ │ │ ├── 05featuredemo.inc.php
│ │ │ │ ├── 05featuredemo.php
│ │ │ │ ├── 06largescale.php
│ │ │ │ ├── 06largescale-with-cellcaching.php
│ │ │ │ ├── 06largescale-with-cellcaching-sqlite3.php
│ │ │ │ ├── 06largescale-with-cellcaching-sqlite.php
│ │ │ │ ├── 06largescale-xls.php
│ │ │ │ ├── 07readerPCLZip.php
│ │ │ │ ├── 07reader.php
│ │ │ │ ├── 08conditionalformatting2.php
│ │ │ │ ├── 08conditionalformatting.php
│ │ │ │ ├── 09pagebreaks.php
│ │ │ │ ├── 10autofilter.php
│ │ │ │ ├── 10autofilter-selection-1.php
│ │ │ │ ├── 10autofilter-selection-2.php
│ │ │ │ ├── 10autofilter-selection-display.php
│ │ │ │ ├── 11documentsecurity.php
│ │ │ │ ├── 11documentsecurity-xls.php
│ │ │ │ ├── 12cellProtection.php
│ │ │ │ ├── 13calculation.php
│ │ │ │ ├── 14excel5.php
│ │ │ │ ├── 15datavalidation.php
│ │ │ │ ├── 15datavalidation-xls.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.php
│ │ │ │ ├── 31docproperties_write-xls.php
│ │ │ │ ├── 32chartreadwrite.php
│ │ │ │ ├── 33chartcreate-area.php
│ │ │ │ ├── 33chartcreate-bar.php
│ │ │ │ ├── 33chartcreate-bar-stacked.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
│ │ │ │ ├── data
│ │ │ │ │ └── continents
│ │ │ │ │ ├── Africa.txt
│ │ │ │ │ ├── Asia.txt
│ │ │ │ │ ├── Europe.txt
│ │ │ │ │ ├── North America.txt
│ │ │ │ │ ├── Oceania.txt
│ │ │ │ │ └── South America.txt
│ │ │ │ ├── Excel2003XMLReader.php
│ │ │ │ ├── Excel2003XMLTest.xml
│ │ │ │ ├── GnumericReader.php
│ │ │ │ ├── GnumericTest.gnumeric
│ │ │ │ ├── images
│ │ │ │ │ ├── officelogo.jpg
│ │ │ │ │ ├── paid.png
│ │ │ │ │ ├── phpexcel_logo.gif
│ │ │ │ │ └── termsconditions.jpg
│ │ │ │ ├── OOCalcReaderPCLZip.php
│ │ │ │ ├── OOCalcReader.php
│ │ │ │ ├── OOCalcTest.ods
│ │ │ │ ├── Quadratic2.php
│ │ │ │ ├── Quadratic.php
│ │ │ │ ├── Quadratic.xlsx
│ │ │ │ ├── runall.php
│ │ │ │ ├── SylkReader.php
│ │ │ │ ├── SylkTest.slk
│ │ │ │ ├── templates
│ │ │ │ │ ├── 26template.xlsx
│ │ │ │ │ ├── 27template.xls
│ │ │ │ │ ├── 30template.xls
│ │ │ │ │ ├── 31docproperties.xls
│ │ │ │ │ ├── 31docproperties.xlsx
│ │ │ │ │ ├── 32chartreadwrite.xlsx
│ │ │ │ │ ├── 32complexChartreadwrite.xlsx
│ │ │ │ │ ├── 32readwriteAreaChart1.xlsx
│ │ │ │ │ ├── 32readwriteAreaChart2.xlsx
│ │ │ │ │ ├── 32readwriteAreaChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteAreaChart3.xlsx
│ │ │ │ │ ├── 32readwriteAreaPercentageChart1.xlsx
│ │ │ │ │ ├── 32readwriteAreaPercentageChart2.xlsx
│ │ │ │ │ ├── 32readwriteAreaPercentageChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteAreaStackedChart1.xlsx
│ │ │ │ │ ├── 32readwriteAreaStackedChart2.xlsx
│ │ │ │ │ ├── 32readwriteAreaStackedChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteBarChart1.xlsx
│ │ │ │ │ ├── 32readwriteBarChart2.xlsx
│ │ │ │ │ ├── 32readwriteBarChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteBarChart3.xlsx
│ │ │ │ │ ├── 32readwriteBarPercentageChart1.xlsx
│ │ │ │ │ ├── 32readwriteBarPercentageChart2.xlsx
│ │ │ │ │ ├── 32readwriteBarPercentageChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteBarStackedChart1.xlsx
│ │ │ │ │ ├── 32readwriteBarStackedChart2.xlsx
│ │ │ │ │ ├── 32readwriteBarStackedChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteBubbleChart1.xlsx
│ │ │ │ │ ├── 32readwriteBubbleChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteChartWithImages1.xlsx
│ │ │ │ │ ├── 32readwriteColumnChart1.xlsx
│ │ │ │ │ ├── 32readwriteColumnChart2.xlsx
│ │ │ │ │ ├── 32readwriteColumnChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteColumnChart3.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
│ │ │ │ │ ├── 32readwriteLineChart3D1.xlsx
│ │ │ │ │ ├── 32readwriteLineChart3.xlsx
│ │ │ │ │ ├── 32readwriteLineChartNoPointMarkers1.xlsx
│ │ │ │ │ ├── 32readwriteLinePercentageChart1.xlsx
│ │ │ │ │ ├── 32readwriteLinePercentageChart2.xlsx
│ │ │ │ │ ├── 32readwriteLineStackedChart1.xlsx
│ │ │ │ │ ├── 32readwriteLineStackedChart2.xlsx
│ │ │ │ │ ├── 32readwritePieChart1.xlsx
│ │ │ │ │ ├── 32readwritePieChart2.xlsx
│ │ │ │ │ ├── 32readwritePieChart3D1.xlsx
│ │ │ │ │ ├── 32readwritePieChart3.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
│ │ │ │ ├── XMLReader.php
│ │ │ │ └── XMLTest.xml
│ │ │ ├── install.txt
│ │ │ ├── license.md
│ │ │ └── unitTests
│ │ │ ├── bootstrap.php
│ │ │ ├── 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
│ │ │ ├── custom
│ │ │ │ ├── complexAssert.php
│ │ │ │ └── Complex.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
│ │ │ │ │ │ ├── ERFC.data
│ │ │ │ │ │ ├── ERF.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-16BE.xml
│ │ │ │ │ ├── XEETestInvalidUTF-16LE.xml
│ │ │ │ │ ├── XEETestInvalidUTF-16.xml
│ │ │ │ │ ├── XEETestInvalidUTF-8.xml
│ │ │ │ │ ├── XEETestValidUTF-16BE.xml
│ │ │ │ │ ├── XEETestValidUTF-16LE.xml
│ │ │ │ │ ├── XEETestValidUTF-16.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
│ │ ├── phpspec
│ │ │ └── prophecy
│ │ │ ├── CHANGES.md
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ └── Prophecy
│ │ │ ├── Argument
│ │ │ │ ├── ArgumentsWildcard.php
│ │ │ │ └── Token
│ │ │ │ ├── AnyValuesToken.php
│ │ │ │ ├── AnyValueToken.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
│ │ │ ├── Argument.php
│ │ │ ├── Call
│ │ │ │ ├── CallCenter.php
│ │ │ │ └── Call.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
│ │ │ │ ├── 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
│ │ │ │ ├── CallbackPrediction.php
│ │ │ │ ├── CallPrediction.php
│ │ │ │ ├── CallTimesPrediction.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
│ │ │ │ ├── RevealerInterface.php
│ │ │ │ └── Revealer.php
│ │ │ ├── Prophet.php
│ │ │ └── Util
│ │ │ ├── ExportUtil.php
│ │ │ └── StringUtil.php
│ │ ├── phpunit
│ │ │ ├── php-code-coverage
│ │ │ │ ├── build
│ │ │ │ │ └── travis-ci.xml
│ │ │ │ ├── build.xml
│ │ │ │ ├── ChangeLog-2.2.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── README.md
│ │ │ │ ├── scripts
│ │ │ │ │ ├── auto_append.php
│ │ │ │ │ └── auto_prepend.php
│ │ │ │ ├── src
│ │ │ │ │ ├── CodeCoverage
│ │ │ │ │ │ ├── Driver
│ │ │ │ │ │ │ ├── HHVM.php
│ │ │ │ │ │ │ ├── PHPDBG.php
│ │ │ │ │ │ │ └── Xdebug.php
│ │ │ │ │ │ ├── Driver.php
│ │ │ │ │ │ ├── Exception
│ │ │ │ │ │ │ └── UnintentionallyCoveredCode.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── Filter.php
│ │ │ │ │ │ ├── Report
│ │ │ │ │ │ │ ├── Clover.php
│ │ │ │ │ │ │ ├── Crap4j.php
│ │ │ │ │ │ │ ├── Factory.php
│ │ │ │ │ │ │ ├── HTML
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ │ └── Renderer.php
│ │ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ │ ├── Node
│ │ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ │ └── Iterator.php
│ │ │ │ │ │ │ ├── Node.php
│ │ │ │ │ │ │ ├── PHP.php
│ │ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ │ ├── XML
│ │ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ │ ├── File
│ │ │ │ │ │ │ │ │ ├── Coverage.php
│ │ │ │ │ │ │ │ │ ├── Method.php
│ │ │ │ │ │ │ │ │ ├── Report.php
│ │ │ │ │ │ │ │ │ └── Unit.php
│ │ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ │ ├── Node.php
│ │ │ │ │ │ │ │ ├── Project.php
│ │ │ │ │ │ │ │ ├── Tests.php
│ │ │ │ │ │ │ │ └── Totals.php
│ │ │ │ │ │ │ └── XML.php
│ │ │ │ │ │ ├── Util
│ │ │ │ │ │ │ └── InvalidArgumentHelper.php
│ │ │ │ │ │ └── Util.php
│ │ │ │ │ └── CodeCoverage.php
│ │ │ │ └── tests
│ │ │ │ ├── _files
│ │ │ │ │ ├── BankAccount-clover.xml
│ │ │ │ │ ├── BankAccount.php
│ │ │ │ │ ├── BankAccountTest.php
│ │ │ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ │ ├── CoverageClassTest.php
│ │ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ │ ├── CoverageNotPublicTest.php
│ │ │ │ │ ├── CoveragePrivateTest.php
│ │ │ │ │ ├── CoverageProtectedTest.php
│ │ │ │ │ ├── CoveragePublicTest.php
│ │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ │ │ ├── CoveredClass.php
│ │ │ │ │ ├── CoveredFunction.php
│ │ │ │ │ ├── ignored-lines-clover.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── CodeCoverage
│ │ │ │ │ │ ├── FilterTest.php
│ │ │ │ │ │ ├── Report
│ │ │ │ │ │ │ ├── CloverTest.php
│ │ │ │ │ │ │ └── FactoryTest.php
│ │ │ │ │ │ └── UtilTest.php
│ │ │ │ │ └── CodeCoverageTest.php
│ │ │ │ └── TestCase.php
│ │ │ ├── php-file-iterator
│ │ │ │ ├── ChangeLog.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ ├── Facade.php
│ │ │ │ ├── Factory.php
│ │ │ │ └── Iterator.php
│ │ │ ├── php-text-template
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ └── Template.php
│ │ │ ├── php-timer
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ └── Timer.php
│ │ │ │ └── tests
│ │ │ │ └── TimerTest.php
│ │ │ ├── php-token-stream
│ │ │ │ ├── build
│ │ │ │ │ └── phpunit.xml
│ │ │ │ ├── build.xml
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── Token
│ │ │ │ │ │ ├── Stream
│ │ │ │ │ │ │ └── CachingFactory.php
│ │ │ │ │ │ └── Stream.php
│ │ │ │ │ └── Token.php
│ │ │ │ └── tests
│ │ │ │ ├── bootstrap.php
│ │ │ │ ├── _fixture
│ │ │ │ │ ├── classExtendsNamespacedClass.php
│ │ │ │ │ ├── classInNamespace.php
│ │ │ │ │ ├── classInScopedNamespace.php
│ │ │ │ │ ├── classUsesNamespacedFunction.php
│ │ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ │ │ ├── closure.php
│ │ │ │ │ ├── issue19.php
│ │ │ │ │ ├── issue30.php
│ │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ │ │ ├── source2.php
│ │ │ │ │ ├── source3.php
│ │ │ │ │ ├── source4.php
│ │ │ │ │ ├── source5.php
│ │ │ │ │ └── source.php
│ │ │ │ ├── Token
│ │ │ │ │ ├── ClassTest.php
│ │ │ │ │ ├── ClosureTest.php
│ │ │ │ │ ├── FunctionTest.php
│ │ │ │ │ ├── IncludeTest.php
│ │ │ │ │ ├── InterfaceTest.php
│ │ │ │ │ └── NamespaceTest.php
│ │ │ │ └── TokenTest.php
│ │ │ ├── phpunit
│ │ │ │ ├── build.xml
│ │ │ │ ├── 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
│ │ │ │ ├── CODE_OF_CONDUCT.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit
│ │ │ │ ├── phpunit.xml
│ │ │ │ ├── phpunit.xsd
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Extensions
│ │ │ │ │ │ ├── GroupTestSuite.php
│ │ │ │ │ │ ├── PhptTestCase.php
│ │ │ │ │ │ ├── PhptTestSuite.php
│ │ │ │ │ │ ├── RepeatedTest.php
│ │ │ │ │ │ ├── TestDecorator.php
│ │ │ │ │ │ └── TicketListener.php
│ │ │ │ │ ├── ForwardCompatibility
│ │ │ │ │ │ ├── AssertionFailedError.php
│ │ │ │ │ │ ├── Assert.php
│ │ │ │ │ │ ├── BaseTestListener.php
│ │ │ │ │ │ ├── TestCase.php
│ │ │ │ │ │ ├── TestListener.php
│ │ │ │ │ │ ├── Test.php
│ │ │ │ │ │ └── TestSuite.php
│ │ │ │ │ ├── Framework
│ │ │ │ │ │ ├── Assert
│ │ │ │ │ │ │ └── Functions.php
│ │ │ │ │ │ ├── AssertionFailedError.php
│ │ │ │ │ │ ├── Assert.php
│ │ │ │ │ │ ├── BaseTestListener.php
│ │ │ │ │ │ ├── CodeCoverageException.php
│ │ │ │ │ │ ├── Constraint
│ │ │ │ │ │ │ ├── And.php
│ │ │ │ │ │ │ ├── ArrayHasKey.php
│ │ │ │ │ │ │ ├── ArraySubset.php
│ │ │ │ │ │ │ ├── Attribute.php
│ │ │ │ │ │ │ ├── Callback.php
│ │ │ │ │ │ │ ├── ClassHasAttribute.php
│ │ │ │ │ │ │ ├── ClassHasStaticAttribute.php
│ │ │ │ │ │ │ ├── Composite.php
│ │ │ │ │ │ │ ├── Count.php
│ │ │ │ │ │ │ ├── ExceptionCode.php
│ │ │ │ │ │ │ ├── ExceptionMessage.php
│ │ │ │ │ │ │ ├── ExceptionMessageRegExp.php
│ │ │ │ │ │ │ ├── Exception.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
│ │ │ │ │ │ │ │ └── ErrorMessageProvider.php
│ │ │ │ │ │ │ ├── JsonMatches.php
│ │ │ │ │ │ │ ├── LessThan.php
│ │ │ │ │ │ │ ├── Not.php
│ │ │ │ │ │ │ ├── ObjectHasAttribute.php
│ │ │ │ │ │ │ ├── Or.php
│ │ │ │ │ │ │ ├── PCREMatch.php
│ │ │ │ │ │ │ ├── SameSize.php
│ │ │ │ │ │ │ ├── StringContains.php
│ │ │ │ │ │ │ ├── StringEndsWith.php
│ │ │ │ │ │ │ ├── StringMatches.php
│ │ │ │ │ │ │ ├── StringStartsWith.php
│ │ │ │ │ │ │ ├── TraversableContainsOnly.php
│ │ │ │ │ │ │ ├── TraversableContains.php
│ │ │ │ │ │ │ └── Xor.php
│ │ │ │ │ │ ├── Constraint.php
│ │ │ │ │ │ ├── Error
│ │ │ │ │ │ │ ├── Deprecated.php
│ │ │ │ │ │ │ ├── Notice.php
│ │ │ │ │ │ │ └── Warning.php
│ │ │ │ │ │ ├── Error.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── ExceptionWrapper.php
│ │ │ │ │ │ ├── ExpectationFailedException.php
│ │ │ │ │ │ ├── IncompleteTestCase.php
│ │ │ │ │ │ ├── IncompleteTestError.php
│ │ │ │ │ │ ├── IncompleteTest.php
│ │ │ │ │ │ ├── InvalidCoversTargetError.php
│ │ │ │ │ │ ├── InvalidCoversTargetException.php
│ │ │ │ │ │ ├── OutputError.php
│ │ │ │ │ │ ├── RiskyTestError.php
│ │ │ │ │ │ ├── RiskyTest.php
│ │ │ │ │ │ ├── SelfDescribing.php
│ │ │ │ │ │ ├── SkippedTestCase.php
│ │ │ │ │ │ ├── SkippedTestError.php
│ │ │ │ │ │ ├── SkippedTest.php
│ │ │ │ │ │ ├── SkippedTestSuiteError.php
│ │ │ │ │ │ ├── SyntheticError.php
│ │ │ │ │ │ ├── TestCase.php
│ │ │ │ │ │ ├── TestFailure.php
│ │ │ │ │ │ ├── TestListener.php
│ │ │ │ │ │ ├── Test.php
│ │ │ │ │ │ ├── TestResult.php
│ │ │ │ │ │ ├── TestSuite
│ │ │ │ │ │ │ └── DataProvider.php
│ │ │ │ │ │ ├── TestSuite.php
│ │ │ │ │ │ ├── UnintentionallyCoveredCodeError.php
│ │ │ │ │ │ └── Warning.php
│ │ │ │ │ ├── Runner
│ │ │ │ │ │ ├── BaseTestRunner.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── Filter
│ │ │ │ │ │ │ ├── Factory.php
│ │ │ │ │ │ │ ├── Group
│ │ │ │ │ │ │ │ ├── Exclude.php
│ │ │ │ │ │ │ │ └── Include.php
│ │ │ │ │ │ │ ├── Group.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
│ │ │ │ │ │ ├── Default.php
│ │ │ │ │ │ ├── eval-stdin.php
│ │ │ │ │ │ ├── Template
│ │ │ │ │ │ │ └── TestCaseMethod.tpl.dist
│ │ │ │ │ │ └── Windows.php
│ │ │ │ │ ├── PHP.php
│ │ │ │ │ ├── Printer.php
│ │ │ │ │ ├── Regex.php
│ │ │ │ │ ├── String.php
│ │ │ │ │ ├── TestDox
│ │ │ │ │ │ ├── NamePrettifier.php
│ │ │ │ │ │ ├── ResultPrinter
│ │ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ │ └── Text.php
│ │ │ │ │ │ └── ResultPrinter.php
│ │ │ │ │ ├── Test.php
│ │ │ │ │ ├── TestSuiteIterator.php
│ │ │ │ │ ├── Type.php
│ │ │ │ │ └── XML.php
│ │ │ │ └── tests
│ │ │ │ ├── bootstrap.php
│ │ │ │ ├── Extensions
│ │ │ │ │ ├── PhptTestCaseTest.php
│ │ │ │ │ └── RepeatedTestTest.php
│ │ │ │ ├── Fail
│ │ │ │ │ └── fail.phpt
│ │ │ │ ├── _files
│ │ │ │ │ ├── AbstractTest.php
│ │ │ │ │ ├── Author.php
│ │ │ │ │ ├── BankAccount.php
│ │ │ │ │ ├── BankAccountTest.php
│ │ │ │ │ ├── BankAccountTest.test.php
│ │ │ │ │ ├── bar.xml
│ │ │ │ │ ├── BaseTestListenerSample.php
│ │ │ │ │ ├── BeforeAndAfterTest.php
│ │ │ │ │ ├── BeforeClassAndAfterClassTest.php
│ │ │ │ │ ├── Book.php
│ │ │ │ │ ├── Calculator.php
│ │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php
│ │ │ │ │ ├── ClassWithNonPublicAttributes.php
│ │ │ │ │ ├── ClassWithScalarTypeDeclarations.php
│ │ │ │ │ ├── ClassWithToString.php
│ │ │ │ │ ├── ConcreteTest.my.php
│ │ │ │ │ ├── ConcreteTest.php
│ │ │ │ │ ├── configuration.colors.empty.xml
│ │ │ │ │ ├── configuration.colors.false.xml
│ │ │ │ │ ├── configuration.colors.invalid.xml
│ │ │ │ │ ├── configuration.colors.true.xml
│ │ │ │ │ ├── configuration.custom-printer.xml
│ │ │ │ │ ├── configuration_empty.xml
│ │ │ │ │ ├── configuration_xinclude.xml
│ │ │ │ │ ├── configuration.xml
│ │ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ │ ├── CoverageClassTest.php
│ │ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ │ ├── CoverageNamespacedFunctionTest.php
│ │ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ │ ├── CoverageNotPublicTest.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
│ │ │ │ │ ├── expectedFileFormat.txt
│ │ │ │ │ ├── Failure.php
│ │ │ │ │ ├── FailureTest.php
│ │ │ │ │ ├── FatalTest.php
│ │ │ │ │ ├── foo.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── NonStatic.php
│ │ │ │ │ ├── NoTestCaseClass.php
│ │ │ │ │ ├── NoTestCases.php
│ │ │ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ │ │ ├── NothingTest.php
│ │ │ │ │ ├── NotPublicTestCase.php
│ │ │ │ │ ├── NotVoidTestCase.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
│ │ │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml
│ │ │ │ │ ├── structureExpected.xml
│ │ │ │ │ ├── structureIgnoreTextNodes.xml
│ │ │ │ │ ├── structureIsSameButDataIsNot.xml
│ │ │ │ │ ├── structureWrongNumberOfAttributes.xml
│ │ │ │ │ ├── structureWrongNumberOfNodes.xml
│ │ │ │ │ ├── Success.php
│ │ │ │ │ ├── TemplateMethodsTest.php
│ │ │ │ │ ├── TestIncomplete.php
│ │ │ │ │ ├── TestIterator2.php
│ │ │ │ │ ├── TestIterator.php
│ │ │ │ │ ├── TestSkipped.php
│ │ │ │ │ ├── TestTestError.php
│ │ │ │ │ ├── TestWithTest.php
│ │ │ │ │ ├── ThrowExceptionTestCase.php
│ │ │ │ │ ├── ThrowNoExceptionTestCase.php
│ │ │ │ │ └── WasRun.php
│ │ │ │ ├── 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
│ │ │ │ │ │ ├── 1149
│ │ │ │ │ │ │ └── Issue1149Test.php
│ │ │ │ │ │ ├── 1149.phpt
│ │ │ │ │ │ ├── 1216
│ │ │ │ │ │ │ ├── bootstrap1216.php
│ │ │ │ │ │ │ ├── Issue1216Test.php
│ │ │ │ │ │ │ └── phpunit1216.xml
│ │ │ │ │ │ ├── 1216.phpt
│ │ │ │ │ │ ├── 1265
│ │ │ │ │ │ │ ├── Issue1265Test.php
│ │ │ │ │ │ │ └── phpunit1265.xml
│ │ │ │ │ │ ├── 1265.phpt
│ │ │ │ │ │ ├── 1330
│ │ │ │ │ │ │ ├── Issue1330Test.php
│ │ │ │ │ │ │ └── phpunit1330.xml
│ │ │ │ │ │ ├── 1330.phpt
│ │ │ │ │ │ ├── 1335
│ │ │ │ │ │ │ ├── bootstrap1335.php
│ │ │ │ │ │ │ └── Issue1335Test.php
│ │ │ │ │ │ ├── 1335.phpt
│ │ │ │ │ │ ├── 1337
│ │ │ │ │ │ │ └── Issue1337Test.php
│ │ │ │ │ │ ├── 1337.phpt
│ │ │ │ │ │ ├── 1348
│ │ │ │ │ │ │ └── Issue1348Test.php
│ │ │ │ │ │ ├── 1348.phpt
│ │ │ │ │ │ ├── 1351
│ │ │ │ │ │ │ ├── ChildProcessClass1351.php
│ │ │ │ │ │ │ └── Issue1351Test.php
│ │ │ │ │ │ ├── 1351.phpt
│ │ │ │ │ │ ├── 1374
│ │ │ │ │ │ │ └── Issue1374Test.php
│ │ │ │ │ │ ├── 1374.phpt
│ │ │ │ │ │ ├── 1437
│ │ │ │ │ │ │ └── Issue1437Test.php
│ │ │ │ │ │ ├── 1437.phpt
│ │ │ │ │ │ ├── 1468
│ │ │ │ │ │ │ └── Issue1468Test.php
│ │ │ │ │ │ ├── 1468.phpt
│ │ │ │ │ │ ├── 1471
│ │ │ │ │ │ │ └── Issue1471Test.php
│ │ │ │ │ │ ├── 1471.phpt
│ │ │ │ │ │ ├── 1472
│ │ │ │ │ │ │ └── Issue1472Test.php
│ │ │ │ │ │ ├── 1472.phpt
│ │ │ │ │ │ ├── 1570
│ │ │ │ │ │ │ └── Issue1570Test.php
│ │ │ │ │ │ ├── 1570.phpt
│ │ │ │ │ │ ├── 2158
│ │ │ │ │ │ │ ├── constant.inc
│ │ │ │ │ │ │ └── Issue2158Test.php
│ │ │ │ │ │ ├── 2158.phpt
│ │ │ │ │ │ ├── 244
│ │ │ │ │ │ │ └── Issue244Test.php
│ │ │ │ │ │ ├── 244.phpt
│ │ │ │ │ │ ├── 322
│ │ │ │ │ │ │ ├── Issue322Test.php
│ │ │ │ │ │ │ └── phpunit322.xml
│ │ │ │ │ │ ├── 322.phpt
│ │ │ │ │ │ ├── 433
│ │ │ │ │ │ │ └── Issue433Test.php
│ │ │ │ │ │ ├── 433.phpt
│ │ │ │ │ │ ├── 445
│ │ │ │ │ │ │ └── Issue445Test.php
│ │ │ │ │ │ ├── 445.phpt
│ │ │ │ │ │ ├── 498
│ │ │ │ │ │ │ └── Issue498Test.php
│ │ │ │ │ │ ├── 498.phpt
│ │ │ │ │ │ ├── 503
│ │ │ │ │ │ │ └── Issue503Test.php
│ │ │ │ │ │ ├── 503.phpt
│ │ │ │ │ │ ├── 581
│ │ │ │ │ │ │ └── Issue581Test.php
│ │ │ │ │ │ ├── 581.phpt
│ │ │ │ │ │ ├── 74
│ │ │ │ │ │ │ ├── Issue74Test.php
│ │ │ │ │ │ │ └── NewException.php
│ │ │ │ │ │ ├── 74.phpt
│ │ │ │ │ │ ├── 765
│ │ │ │ │ │ │ └── Issue765Test.php
│ │ │ │ │ │ ├── 765.phpt
│ │ │ │ │ │ ├── 797
│ │ │ │ │ │ │ ├── bootstrap797.php
│ │ │ │ │ │ │ └── Issue797Test.php
│ │ │ │ │ │ ├── 797.phpt
│ │ │ │ │ │ ├── 863.phpt
│ │ │ │ │ │ ├── 873
│ │ │ │ │ │ │ └── Issue873Test.php
│ │ │ │ │ │ ├── 873-php5.phpt
│ │ │ │ │ │ └── 873-php7.phpt
│ │ │ │ │ └── Trac
│ │ │ │ │ ├── 1021
│ │ │ │ │ │ └── Issue1021Test.php
│ │ │ │ │ ├── 1021.phpt
│ │ │ │ │ ├── 523
│ │ │ │ │ │ └── Issue523Test.php
│ │ │ │ │ ├── 523.phpt
│ │ │ │ │ ├── 578
│ │ │ │ │ │ └── Issue578Test.php
│ │ │ │ │ ├── 578.phpt
│ │ │ │ │ ├── 684
│ │ │ │ │ │ └── Issue684Test.php
│ │ │ │ │ ├── 684.phpt
│ │ │ │ │ ├── 783
│ │ │ │ │ │ ├── ChildSuite.php
│ │ │ │ │ │ ├── OneTest.php
│ │ │ │ │ │ ├── ParentSuite.php
│ │ │ │ │ │ └── TwoTest.php
│ │ │ │ │ └── 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
│ │ │ │ │ ├── dependencies2-isolation.phpt
│ │ │ │ │ ├── dependencies2.phpt
│ │ │ │ │ ├── dependencies3-isolation.phpt
│ │ │ │ │ ├── dependencies3.phpt
│ │ │ │ │ ├── dependencies-isolation.phpt
│ │ │ │ │ ├── dependencies.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
│ │ │ │ │ ├── help2.phpt
│ │ │ │ │ ├── help.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
│ │ │ │ │ ├── testdox-html.phpt
│ │ │ │ │ ├── testdox.phpt
│ │ │ │ │ ├── testdox-text.phpt
│ │ │ │ │ ├── test-suffix-multiple.phpt
│ │ │ │ │ └── test-suffix-single.phpt
│ │ │ │ └── Util
│ │ │ │ ├── ConfigurationTest.php
│ │ │ │ ├── GetoptTest.php
│ │ │ │ ├── GlobalStateTest.php
│ │ │ │ ├── RegexTest.php
│ │ │ │ ├── TestDox
│ │ │ │ │ └── NamePrettifierTest.php
│ │ │ │ ├── TestTest.php
│ │ │ │ └── XMLTest.php
│ │ │ └── phpunit-mock-objects
│ │ │ ├── build
│ │ │ │ └── travis-ci.xml
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── 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
│ │ │ │ │ ├── mocked_class_method.tpl.dist
│ │ │ │ │ ├── mocked_class.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
│ │ │ │ ├── Generator.php
│ │ │ │ ├── Invocation
│ │ │ │ │ ├── Object.php
│ │ │ │ │ └── Static.php
│ │ │ │ ├── InvocationMocker.php
│ │ │ │ ├── Invocation.php
│ │ │ │ ├── Invokable.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
│ │ │ │ ├── Matcher.php
│ │ │ │ ├── MockBuilder.php
│ │ │ │ ├── MockObject.php
│ │ │ │ ├── Stub
│ │ │ │ │ ├── ConsecutiveCalls.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── MatcherCollection.php
│ │ │ │ │ ├── ReturnArgument.php
│ │ │ │ │ ├── ReturnCallback.php
│ │ │ │ │ ├── Return.php
│ │ │ │ │ ├── ReturnSelf.php
│ │ │ │ │ └── ReturnValueMap.php
│ │ │ │ ├── Stub.php
│ │ │ │ └── Verifiable.php
│ │ │ └── tests
│ │ │ ├── bootstrap.php
│ │ │ ├── _fixture
│ │ │ │ ├── AbstractMockTestClass.php
│ │ │ │ ├── AbstractTrait.php
│ │ │ │ ├── AnInterface.php
│ │ │ │ ├── AnotherInterface.php
│ │ │ │ ├── Bar.php
│ │ │ │ ├── ClassThatImplementsSerializable.php
│ │ │ │ ├── ClassWithStaticMethod.php
│ │ │ │ ├── Foo.php
│ │ │ │ ├── FunctionCallback.php
│ │ │ │ ├── GoogleSearch.wsdl
│ │ │ │ ├── InterfaceWithStaticMethod.php
│ │ │ │ ├── MethodCallbackByReference.php
│ │ │ │ ├── MethodCallback.php
│ │ │ │ ├── Mockable.php
│ │ │ │ ├── MockTestInterface.php
│ │ │ │ ├── PartialMockTestClass.php
│ │ │ │ ├── SingletonClass.php
│ │ │ │ ├── SomeClass.php
│ │ │ │ ├── StaticMockTestClass.php
│ │ │ │ └── TraversableMockTestInterface.php
│ │ │ ├── GeneratorTest.php
│ │ │ ├── MockBuilderTest.php
│ │ │ ├── MockObject
│ │ │ │ ├── 232.phpt
│ │ │ │ ├── abstract_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.phpt
│ │ │ │ ├── class_with_method_named_method.phpt
│ │ │ │ ├── class_with_method_with_variadic_arguments.phpt
│ │ │ │ ├── interface.phpt
│ │ │ │ ├── Invocation
│ │ │ │ │ ├── ObjectTest.php
│ │ │ │ │ └── StaticTest.php
│ │ │ │ ├── invocation_object_clone_object.phpt
│ │ │ │ ├── Matcher
│ │ │ │ │ └── ConsecutiveParametersTest.php
│ │ │ │ ├── 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_class.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_namespace.phpt
│ │ │ │ ├── wsdl_class_partial.phpt
│ │ │ │ └── wsdl_class.phpt
│ │ │ ├── MockObjectTest.php
│ │ │ └── ProxyObjectTest.php
│ │ ├── qiniu
│ │ │ └── php-sdk
│ │ │ ├── autoload.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── examples
│ │ │ │ ├── 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
│ │ │ │ ├── README.md
│ │ │ │ ├── rs_batch_change_mime.php
│ │ │ │ ├── rs_batch_change_type.php
│ │ │ │ ├── rs_batch_copy.php
│ │ │ │ ├── rs_batch_delete_after_days.php
│ │ │ │ ├── rs_batch_delete.php
│ │ │ │ ├── rs_batch_move.php
│ │ │ │ ├── rs_batch_stat.php
│ │ │ │ ├── rs_bucket_domains.php
│ │ │ │ ├── rs_buckets.php
│ │ │ │ ├── rs_change_mime.php
│ │ │ │ ├── rs_change_type.php
│ │ │ │ ├── rs_copy.php
│ │ │ │ ├── rs_delete_after_days.php
│ │ │ │ ├── rs_delete.php
│ │ │ │ ├── rs_download_urls.php
│ │ │ │ ├── rs_fetch.php
│ │ │ │ ├── rsf_list_bucket.php
│ │ │ │ ├── rsf_list_files.php
│ │ │ │ ├── rs_move.php
│ │ │ │ ├── rs_prefetch.php
│ │ │ │ ├── rs_stat.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
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ └── Qiniu
│ │ │ │ ├── Auth.php
│ │ │ │ ├── Cdn
│ │ │ │ │ └── CdnManager.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Etag.php
│ │ │ │ ├── functions.php
│ │ │ │ ├── Http
│ │ │ │ │ ├── Client.php
│ │ │ │ │ ├── Error.php
│ │ │ │ │ ├── Request.php
│ │ │ │ │ └── Response.php
│ │ │ │ ├── Processing
│ │ │ │ │ ├── ImageUrlBuilder.php
│ │ │ │ │ ├── Operation.php
│ │ │ │ │ └── PersistentFop.php
│ │ │ │ ├── Storage
│ │ │ │ │ ├── BucketManager.php
│ │ │ │ │ ├── FormUploader.php
│ │ │ │ │ ├── ResumeUploader.php
│ │ │ │ │ └── UploadManager.php
│ │ │ │ └── Zone.php
│ │ │ ├── test-env.sh
│ │ │ └── tests
│ │ │ ├── bootstrap.php
│ │ │ └── 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
│ │ ├── sebastian
│ │ │ ├── comparator
│ │ │ │ ├── build
│ │ │ │ │ └── travis-ci.xml
│ │ │ │ ├── build.xml
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── ArrayComparator.php
│ │ │ │ │ ├── Comparator.php
│ │ │ │ │ ├── ComparisonFailure.php
│ │ │ │ │ ├── DateTimeComparator.php
│ │ │ │ │ ├── DOMNodeComparator.php
│ │ │ │ │ ├── DoubleComparator.php
│ │ │ │ │ ├── ExceptionComparator.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── MockObjectComparator.php
│ │ │ │ │ ├── NumericComparator.php
│ │ │ │ │ ├── ObjectComparator.php
│ │ │ │ │ ├── ResourceComparator.php
│ │ │ │ │ ├── ScalarComparator.php
│ │ │ │ │ ├── SplObjectStorageComparator.php
│ │ │ │ │ └── TypeComparator.php
│ │ │ │ └── tests
│ │ │ │ ├── ArrayComparatorTest.php
│ │ │ │ ├── autoload.php
│ │ │ │ ├── bootstrap.php
│ │ │ │ ├── DateTimeComparatorTest.php
│ │ │ │ ├── DOMNodeComparatorTest.php
│ │ │ │ ├── DoubleComparatorTest.php
│ │ │ │ ├── ExceptionComparatorTest.php
│ │ │ │ ├── FactoryTest.php
│ │ │ │ ├── _files
│ │ │ │ │ ├── Author.php
│ │ │ │ │ ├── Book.php
│ │ │ │ │ ├── ClassWithToString.php
│ │ │ │ │ ├── SampleClass.php
│ │ │ │ │ ├── Struct.php
│ │ │ │ │ ├── TestClassComparator.php
│ │ │ │ │ └── TestClass.php
│ │ │ │ ├── MockObjectComparatorTest.php
│ │ │ │ ├── NumericComparatorTest.php
│ │ │ │ ├── ObjectComparatorTest.php
│ │ │ │ ├── ResourceComparatorTest.php
│ │ │ │ ├── ScalarComparatorTest.php
│ │ │ │ ├── SplObjectStorageComparatorTest.php
│ │ │ │ └── TypeComparatorTest.php
│ │ │ ├── diff
│ │ │ │ ├── build.xml
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── Chunk.php
│ │ │ │ │ ├── Differ.php
│ │ │ │ │ ├── Diff.php
│ │ │ │ │ ├── LCS
│ │ │ │ │ │ ├── LongestCommonSubsequence.php
│ │ │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ │ ├── Line.php
│ │ │ │ │ └── Parser.php
│ │ │ │ └── tests
│ │ │ │ ├── ChunkTest.php
│ │ │ │ ├── DifferTest.php
│ │ │ │ ├── DiffTest.php
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── patch2.txt
│ │ │ │ │ └── patch.txt
│ │ │ │ ├── LCS
│ │ │ │ │ ├── LongestCommonSubsequenceTest.php
│ │ │ │ │ ├── MemoryEfficientImplementationTest.php
│ │ │ │ │ └── TimeEfficientImplementationTest.php
│ │ │ │ ├── LineTest.php
│ │ │ │ └── ParserTest.php
│ │ │ ├── environment
│ │ │ │ ├── build.xml
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── Console.php
│ │ │ │ │ └── Runtime.php
│ │ │ │ └── tests
│ │ │ │ ├── ConsoleTest.php
│ │ │ │ └── RuntimeTest.php
│ │ │ ├── exporter
│ │ │ │ ├── build.xml
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ └── Exporter.php
│ │ │ │ └── tests
│ │ │ │ └── ExporterTest.php
│ │ │ ├── global-state
│ │ │ │ ├── build.xml
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── Blacklist.php
│ │ │ │ │ ├── CodeExporter.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Restorer.php
│ │ │ │ │ ├── RuntimeException.php
│ │ │ │ │ └── Snapshot.php
│ │ │ │ └── tests
│ │ │ │ ├── BlacklistTest.php
│ │ │ │ ├── _fixture
│ │ │ │ │ ├── BlacklistedChildClass.php
│ │ │ │ │ ├── BlacklistedClass.php
│ │ │ │ │ ├── BlacklistedImplementor.php
│ │ │ │ │ ├── BlacklistedInterface.php
│ │ │ │ │ ├── SnapshotClass.php
│ │ │ │ │ ├── SnapshotDomDocument.php
│ │ │ │ │ ├── SnapshotFunctions.php
│ │ │ │ │ └── SnapshotTrait.php
│ │ │ │ └── SnapshotTest.php
│ │ │ ├── recursion-context
│ │ │ │ ├── build.xml
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── Context.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ └── InvalidArgumentException.php
│ │ │ │ └── tests
│ │ │ │ └── ContextTest.php
│ │ │ └── version
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ └── Version.php
│ │ ├── symfony
│ │ │ ├── dom-crawler
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── Crawler.php
│ │ │ │ ├── Field
│ │ │ │ │ ├── ChoiceFormField.php
│ │ │ │ │ ├── FileFormField.php
│ │ │ │ │ ├── FormField.php
│ │ │ │ │ ├── InputFormField.php
│ │ │ │ │ └── TextareaFormField.php
│ │ │ │ ├── FormFieldRegistry.php
│ │ │ │ ├── Form.php
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Link.php
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── README.md
│ │ │ │ └── Tests
│ │ │ │ ├── CrawlerTest.php
│ │ │ │ ├── Field
│ │ │ │ │ ├── ChoiceFormFieldTest.php
│ │ │ │ │ ├── FileFormFieldTest.php
│ │ │ │ │ ├── FormFieldTestCase.php
│ │ │ │ │ ├── FormFieldTest.php
│ │ │ │ │ ├── InputFormFieldTest.php
│ │ │ │ │ └── TextareaFormFieldTest.php
│ │ │ │ ├── Fixtures
│ │ │ │ │ ├── no-extension
│ │ │ │ │ └── windows-1250.html
│ │ │ │ ├── FormTest.php
│ │ │ │ └── LinkTest.php
│ │ │ ├── polyfill-mbstring
│ │ │ │ ├── bootstrap.php
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Mbstring.php
│ │ │ │ ├── README.md
│ │ │ │ └── Resources
│ │ │ │ └── unidata
│ │ │ │ ├── lowerCase.php
│ │ │ │ └── upperCase.php
│ │ │ └── yaml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Command
│ │ │ │ └── LintCommand.php
│ │ │ ├── composer.json
│ │ │ ├── Dumper.php
│ │ │ ├── Escaper.php
│ │ │ ├── Exception
│ │ │ │ ├── DumpException.php
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── ParseException.php
│ │ │ │ └── RuntimeException.php
│ │ │ ├── Inline.php
│ │ │ ├── LICENSE
│ │ │ ├── Parser.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── Tests
│ │ │ │ ├── Command
│ │ │ │ │ └── LintCommandTest.php
│ │ │ │ ├── DumperTest.php
│ │ │ │ ├── Fixtures
│ │ │ │ │ ├── arrow.gif
│ │ │ │ │ ├── embededPhp.yml
│ │ │ │ │ ├── escapedCharacters.yml
│ │ │ │ │ ├── index.yml
│ │ │ │ │ ├── multiple_lines_as_literal_block.yml
│ │ │ │ │ ├── sfComments.yml
│ │ │ │ │ ├── sfCompact.yml
│ │ │ │ │ ├── sfMergeKey.yml
│ │ │ │ │ ├── sfObjects.yml
│ │ │ │ │ ├── sfQuotes.yml
│ │ │ │ │ ├── sfTests.yml
│ │ │ │ │ ├── unindentedCollections.yml
│ │ │ │ │ ├── YtsAnchorAlias.yml
│ │ │ │ │ ├── YtsBasicTests.yml
│ │ │ │ │ ├── YtsBlockMapping.yml
│ │ │ │ │ ├── YtsDocumentSeparator.yml
│ │ │ │ │ ├── YtsErrorTests.yml
│ │ │ │ │ ├── YtsFlowCollections.yml
│ │ │ │ │ ├── YtsFoldedScalars.yml
│ │ │ │ │ ├── YtsNullsAndEmpties.yml
│ │ │ │ │ ├── YtsSpecificationExamples.yml
│ │ │ │ │ └── YtsTypeTransfers.yml
│ │ │ │ ├── InlineTest.php
│ │ │ │ ├── ParseExceptionTest.php
│ │ │ │ ├── ParserTest.php
│ │ │ │ └── YamlTest.php
│ │ │ ├── Unescaper.php
│ │ │ └── Yaml.php
│ │ ├── topthink
│ │ │ ├── think-captcha
│ │ │ │ ├── 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
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ ├── CaptchaController.php
│ │ │ │ ├── Captcha.php
│ │ │ │ └── helper.php
│ │ │ ├── think-helper
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ ├── Arr.php
│ │ │ │ ├── hash
│ │ │ │ │ ├── Bcrypt.php
│ │ │ │ │ └── Md5.php
│ │ │ │ ├── Hash.php
│ │ │ │ ├── helper.php
│ │ │ │ ├── Str.php
│ │ │ │ └── Time.php
│ │ │ ├── think-image
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpunit.xml
│ │ │ │ ├── README.md
│ │ │ │ ├── src
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ └── gif
│ │ │ │ │ │ ├── Decoder.php
│ │ │ │ │ │ ├── Encoder.php
│ │ │ │ │ │ └── Gif.php
│ │ │ │ │ └── Image.php
│ │ │ │ └── tests
│ │ │ │ ├── autoload.php
│ │ │ │ ├── CropTest.php
│ │ │ │ ├── FlipTest.php
│ │ │ │ ├── images
│ │ │ │ │ ├── test.bmp
│ │ │ │ │ ├── test.gif
│ │ │ │ │ ├── test.jpg
│ │ │ │ │ ├── test.png
│ │ │ │ │ └── test.ttf
│ │ │ │ ├── InfoTest.php
│ │ │ │ ├── RotateTest.php
│ │ │ │ ├── TestCase.php
│ │ │ │ ├── TextTest.php
│ │ │ │ ├── ThumbTest.php
│ │ │ │ ├── tmp
│ │ │ │ └── WaterTest.php
│ │ │ ├── think-installer
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── Plugin.php
│ │ │ │ ├── ThinkExtend.php
│ │ │ │ ├── ThinkFramework.php
│ │ │ │ └── ThinkTesting.php
│ │ │ ├── think-migration
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phinx
│ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── src
│ │ │ │ │ └── Phinx
│ │ │ │ │ ├── Db
│ │ │ │ │ │ ├── Adapter
│ │ │ │ │ │ │ ├── AdapterFactory.php
│ │ │ │ │ │ │ ├── AdapterInterface.php
│ │ │ │ │ │ │ ├── AdapterWrapper.php
│ │ │ │ │ │ │ ├── MysqlAdapter.php
│ │ │ │ │ │ │ ├── PdoAdapter.php
│ │ │ │ │ │ │ ├── PostgresAdapter.php
│ │ │ │ │ │ │ ├── ProxyAdapter.php
│ │ │ │ │ │ │ ├── SQLiteAdapter.php
│ │ │ │ │ │ │ ├── SqlServerAdapter.php
│ │ │ │ │ │ │ ├── TablePrefixAdapter.php
│ │ │ │ │ │ │ └── WrapperInterface.php
│ │ │ │ │ │ ├── Table
│ │ │ │ │ │ │ ├── Column.php
│ │ │ │ │ │ │ ├── ForeignKey.php
│ │ │ │ │ │ │ └── Index.php
│ │ │ │ │ │ └── Table.php
│ │ │ │ │ ├── Migration
│ │ │ │ │ │ ├── AbstractMigration.php
│ │ │ │ │ │ ├── AbstractTemplateCreation.php
│ │ │ │ │ │ ├── CreationInterface.php
│ │ │ │ │ │ ├── IrreversibleMigrationException.php
│ │ │ │ │ │ ├── MigrationInterface.php
│ │ │ │ │ │ └── Migration.template.php.dist
│ │ │ │ │ ├── Seed
│ │ │ │ │ │ ├── AbstractSeed.php
│ │ │ │ │ │ ├── SeedInterface.php
│ │ │ │ │ │ └── Seed.template.php.dist
│ │ │ │ │ └── Util
│ │ │ │ │ └── Util.php
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ ├── command
│ │ │ │ │ ├── migrate
│ │ │ │ │ │ ├── Breakpoint.php
│ │ │ │ │ │ ├── Create.php
│ │ │ │ │ │ ├── Rollback.php
│ │ │ │ │ │ ├── Run.php
│ │ │ │ │ │ └── Status.php
│ │ │ │ │ ├── Migrate.php
│ │ │ │ │ ├── seed
│ │ │ │ │ │ ├── Create.php
│ │ │ │ │ │ └── Run.php
│ │ │ │ │ ├── Seed.php
│ │ │ │ │ └── stubs
│ │ │ │ │ ├── migrate.stub
│ │ │ │ │ └── seed.stub
│ │ │ │ ├── Command.php
│ │ │ │ ├── config.php
│ │ │ │ ├── db
│ │ │ │ │ ├── Column.php
│ │ │ │ │ └── Table.php
│ │ │ │ ├── Migrator.php
│ │ │ │ └── Seeder.php
│ │ │ ├── think-queue
│ │ │ │ ├── composer.json
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ ├── common.php
│ │ │ │ ├── config.php
│ │ │ │ ├── queue
│ │ │ │ │ ├── CallQueuedHandler.php
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── Listen.php
│ │ │ │ │ │ ├── Restart.php
│ │ │ │ │ │ ├── Subscribe.php
│ │ │ │ │ │ └── Work.php
│ │ │ │ │ ├── connector
│ │ │ │ │ │ ├── Database.php
│ │ │ │ │ │ ├── Redis.php
│ │ │ │ │ │ ├── Sync.php
│ │ │ │ │ │ └── Topthink.php
│ │ │ │ │ ├── Connector.php
│ │ │ │ │ ├── job
│ │ │ │ │ │ ├── Database.php
│ │ │ │ │ │ ├── Redis.php
│ │ │ │ │ │ ├── Sync.php
│ │ │ │ │ │ └── Topthink.php
│ │ │ │ │ ├── Job.php
│ │ │ │ │ ├── Listener.php
│ │ │ │ │ ├── Queueable.php
│ │ │ │ │ ├── ShouldQueue.php
│ │ │ │ │ └── Worker.php
│ │ │ │ └── Queue.php
│ │ │ └── think-testing
│ │ │ ├── composer.json
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── ApplicationTrait.php
│ │ │ ├── AssertionsTrait.php
│ │ │ ├── command
│ │ │ │ └── Test.php
│ │ │ ├── config.php
│ │ │ ├── CrawlerTrait.php
│ │ │ ├── HttpException.php
│ │ │ ├── InteractsWithPages.php
│ │ │ └── TestCase.php
│ │ └── webmozart
│ │ └── assert
│ │ ├── appveyor.yml
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Assert.php
│ │ └── tests
│ │ └── AssertTest.php
│ ├── version.php
│ └── XResource
│ └── 20190106
│ ├── 1-130114123Z4.jpg
│ ├── 1-130306064014-50.jpg
│ ├── 13O24IR33320-151062.jpg
│ ├── 51X3879G5NMW_53861c469e48d276.jpg!600x600_500.jpg
│ ├── file_5c3210c5c3858
│ ├── file_5c3210c9e43cc
│ ├── file_5c3211f439ebb
│ ├── file_5c3211fe39097
│ ├── file_5c32135f6ee6e
│ ├── file_5c3214c6a021a
│ ├── file_5c321a2a11eeb
│ ├── file_5c321a31dd610
│ ├── file_5c321a4e8d74c
│ └── file_5c321ce395b01
├── LICENSE.txt
├── phpunit.xml
├── public
│ ├── autoloader.php
│ ├── b7954665455445_20190109131157.JPG
│ ├── error
│ │ ├── index.html
│ │ ├── m.html
│ │ └── site-off.png
│ ├── favicon.ico
│ ├── index.php
│ ├── robots.txt
│ ├── router.php
│ ├── static
│ │ ├── ckplayer
│ │ │ ├── ckplayer.js
│ │ │ ├── ckplayer.js`
│ │ │ ├── ckplayer.swf
│ │ │ ├── ckplayer.xml
│ │ │ ├── language.xml
│ │ │ └── style.xml
│ │ ├── images
│ │ │ ├── alipay_icon.png
│ │ │ ├── alipay.png
│ │ │ ├── bg.jpg
│ │ │ ├── images_default.png
│ │ │ ├── info-bg.png
│ │ │ ├── loading.gif
│ │ │ ├── myself_domain.png
│ │ │ ├── myself_moey.png
│ │ │ ├── myself_seo.png
│ │ │ ├── NO-PAY.png
│ │ │ ├── qqpay_icon.png
│ │ │ ├── qqpay.png
│ │ │ ├── site-off.png
│ │ │ ├── spread.png
│ │ │ ├── user_dafault_headimg.jpg
│ │ │ ├── wxpay_icon.png
│ │ │ └── wxpay.png
│ │ ├── js
│ │ │ ├── clipboard.min.js
│ │ │ └── qrcode.min.js
│ │ ├── layer_mobile
│ │ │ ├── layer.js
│ │ │ └── need
│ │ │ └── layer.css
│ │ ├── msvodx
│ │ │ └── js
│ │ │ ├── video.js
│ │ │ └── video_mobile.js
│ │ ├── plupload-2.3.6
│ │ │ ├── bower.json
│ │ │ ├── examples
│ │ │ │ ├── custom.html
│ │ │ │ ├── dump.php
│ │ │ │ ├── events.html
│ │ │ │ ├── jquery
│ │ │ │ │ ├── all_runtimes.html
│ │ │ │ │ ├── jquery_ui_widget.html
│ │ │ │ │ ├── queue_widget.html
│ │ │ │ │ └── s3.php
│ │ │ │ └── upload.php
│ │ │ ├── js
│ │ │ │ ├── i18n
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── az.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── bs.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── hy.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ka.js
│ │ │ │ │ ├── kk.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku_IQ.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt_BR.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th_TH.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── uk_UA.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh_CN.js
│ │ │ │ │ └── zh_TW.js
│ │ │ │ ├── jquery.plupload.queue
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── jquery.plupload.queue.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── backgrounds.gif
│ │ │ │ │ │ ├── buttons-disabled.png
│ │ │ │ │ │ ├── buttons.png
│ │ │ │ │ │ ├── delete.gif
│ │ │ │ │ │ ├── done.gif
│ │ │ │ │ │ ├── error.gif
│ │ │ │ │ │ ├── throbber.gif
│ │ │ │ │ │ └── transp50.png
│ │ │ │ │ ├── jquery.plupload.queue.js
│ │ │ │ │ └── jquery.plupload.queue.min.js
│ │ │ │ ├── jquery.ui.plupload
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── jquery.ui.plupload.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ └── plupload.png
│ │ │ │ │ ├── jquery.ui.plupload.js
│ │ │ │ │ └── jquery.ui.plupload.min.js
│ │ │ │ ├── moxie.js
│ │ │ │ ├── moxie.min.js
│ │ │ │ ├── Moxie.swf
│ │ │ │ ├── Moxie.xap
│ │ │ │ ├── plupload.dev.js
│ │ │ │ ├── plupload.full.min.js
│ │ │ │ └── plupload.min.js
│ │ │ ├── license.txt
│ │ │ └── readme.md
│ │ ├── UEditor
│ │ │ ├── dialogs
│ │ │ │ ├── anchor
│ │ │ │ │ └── anchor.html
│ │ │ │ ├── attachment
│ │ │ │ │ ├── attachment.css
│ │ │ │ │ ├── attachment.html
│ │ │ │ │ ├── attachment.js
│ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ ├── alignicon.png
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── background
│ │ │ │ │ ├── background.css
│ │ │ │ │ ├── background.html
│ │ │ │ │ ├── background.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ └── success.png
│ │ │ │ ├── charts
│ │ │ │ │ ├── chart.config.js
│ │ │ │ │ ├── charts.css
│ │ │ │ │ ├── charts.html
│ │ │ │ │ ├── charts.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── charts0.png
│ │ │ │ │ ├── charts1.png
│ │ │ │ │ ├── charts2.png
│ │ │ │ │ ├── charts3.png
│ │ │ │ │ ├── charts4.png
│ │ │ │ │ └── charts5.png
│ │ │ │ ├── emotion
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.html
│ │ │ │ │ ├── emotion.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── bface.gif
│ │ │ │ │ ├── cface.gif
│ │ │ │ │ ├── fface.gif
│ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── tface.gif
│ │ │ │ │ ├── wface.gif
│ │ │ │ │ └── yface.gif
│ │ │ │ ├── gmap
│ │ │ │ │ └── gmap.html
│ │ │ │ ├── help
│ │ │ │ │ ├── help.css
│ │ │ │ │ ├── help.html
│ │ │ │ │ └── help.js
│ │ │ │ ├── image
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.html
│ │ │ │ │ ├── image.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── insertframe
│ │ │ │ │ └── insertframe.html
│ │ │ │ ├── internal.js
│ │ │ │ ├── link
│ │ │ │ │ └── link.html
│ │ │ │ ├── map
│ │ │ │ │ ├── map.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── music
│ │ │ │ │ ├── music.css
│ │ │ │ │ ├── music.html
│ │ │ │ │ └── music.js
│ │ │ │ ├── preview
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scrawl
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ ├── undoH.png
│ │ │ │ │ │ └── undo.png
│ │ │ │ │ ├── scrawl.css
│ │ │ │ │ ├── scrawl.html
│ │ │ │ │ └── scrawl.js
│ │ │ │ ├── searchreplace
│ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ └── searchreplace.js
│ │ │ │ ├── snapscreen
│ │ │ │ │ └── snapscreen.html
│ │ │ │ ├── spechars
│ │ │ │ │ ├── spechars.html
│ │ │ │ │ └── spechars.js
│ │ │ │ ├── table
│ │ │ │ │ ├── dragicon.png
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── template
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ └── pre4.png
│ │ │ │ │ ├── template.css
│ │ │ │ │ ├── template.html
│ │ │ │ │ └── template.js
│ │ │ │ ├── video
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── video.css
│ │ │ │ │ ├── video.html
│ │ │ │ │ └── video.js
│ │ │ │ ├── webapp
│ │ │ │ │ └── webapp.html
│ │ │ │ └── wordimage
│ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ ├── imageUploader.swf
│ │ │ │ ├── tangram.js
│ │ │ │ ├── wordimage.html
│ │ │ │ └── wordimage.js
│ │ │ ├── index.html
│ │ │ ├── lang
│ │ │ │ ├── en
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── addimage.png
│ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ ├── listbackground.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn
│ │ │ │ ├── images
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn.js
│ │ │ ├── php
│ │ │ │ ├── action_crawler.php
│ │ │ │ ├── action_list.php
│ │ │ │ ├── action_upload.php
│ │ │ │ ├── config.json
│ │ │ │ ├── controller.php
│ │ │ │ └── Uploader.class.php
│ │ │ ├── themes
│ │ │ │ ├── default
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ └── images
│ │ │ │ │ ├── anchor.gif
│ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ ├── arrow.png
│ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ ├── charts.png
│ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ ├── filescan.png
│ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── loaderror.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── lock.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── sortable.png
│ │ │ │ │ ├── spacer.gif
│ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ ├── upload.png
│ │ │ │ │ ├── videologo.gif
│ │ │ │ │ ├── word.gif
│ │ │ │ │ └── wordpaste.png
│ │ │ │ └── iframe.css
│ │ │ ├── third-party
│ │ │ │ ├── codemirror
│ │ │ │ │ ├── codemirror.css
│ │ │ │ │ └── codemirror.js
│ │ │ │ ├── highcharts
│ │ │ │ │ ├── adapters
│ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ ├── highcharts.js
│ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ ├── modules
│ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ ├── map.src.js
│ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ │ └── themes
│ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ ├── dark-green.js
│ │ │ │ │ ├── gray.js
│ │ │ │ │ ├── grid.js
│ │ │ │ │ └── skies.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ ├── snapscreen
│ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ └── shCore.js
│ │ │ │ ├── video-js
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ ├── video.dev.js
│ │ │ │ │ ├── video.js
│ │ │ │ │ ├── video-js.css
│ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ └── video-js.swf
│ │ │ │ ├── webuploader
│ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ ├── webuploader.css
│ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ ├── webuploader.js
│ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ ├── xss.min.js
│ │ │ │ └── zeroclipboard
│ │ │ │ ├── ZeroClipboard.js
│ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── ueditor.all.js
│ │ │ ├── ueditor.all.min.js
│ │ │ ├── ueditor.config.js
│ │ │ ├── ueditor.parse.js
│ │ │ └── ueditor.parse.min.js
│ │ ├── xuploader
│ │ │ ├── aliyunOssNotify.php
│ │ │ ├── webServerUploader.js
│ │ │ └── Xuploader.php
│ │ └── yzmuper
│ │ ├── css
│ │ │ ├── css.css
│ │ │ ├── sc.png
│ │ │ ├── up.css
│ │ │ ├── upload.css
│ │ │ ├── user-uploading.gif
│ │ │ └── webuploader.css
│ │ └── js
│ │ ├── adminup.js
│ │ ├── expressInstall.swf
│ │ ├── jquery-1.11.2.min.js
│ │ ├── jquery.js
│ │ ├── jquery.xdomainrequest.min.js
│ │ ├── md5.js
│ │ ├── Uploader.swf
│ │ ├── upload.js
│ │ └── webuploader.js
│ ├── test.php
│ ├── tpl
│ │ ├── default
│ │ │ ├── agent
│ │ │ │ └── index.html
│ │ │ ├── common
│ │ │ │ ├── footer.html
│ │ │ │ └── header.html
│ │ │ ├── cover.png
│ │ │ ├── images
│ │ │ │ ├── lists.html
│ │ │ │ ├── search.html
│ │ │ │ ├── show.html
│ │ │ │ └── showtips.html
│ │ │ ├── index
│ │ │ │ ├── index.html
│ │ │ │ ├── prompt.html
│ │ │ │ └── remind.html
│ │ │ ├── info.json
│ │ │ ├── install
│ │ │ │ ├── adminconfig.html
│ │ │ │ ├── dbconfig.html
│ │ │ │ ├── index.html
│ │ │ │ ├── installsuccess.html
│ │ │ │ └── nav.html
│ │ │ ├── member
│ │ │ │ ├── addatlas.html
│ │ │ │ ├── addimges.html
│ │ │ │ ├── addnovel.html
│ │ │ │ ├── addvideo.html
│ │ │ │ ├── agent.html
│ │ │ │ ├── binding_third.html
│ │ │ │ ├── card_pwd.html
│ │ │ │ ├── collection.html
│ │ │ │ ├── collection_img.html
│ │ │ │ ├── collection_novel.html
│ │ │ │ ├── collection_pic.html
│ │ │ │ ├── collection_video.html
│ │ │ │ ├── common.html
│ │ │ │ ├── editatlas.html
│ │ │ │ ├── editnovel.html
│ │ │ │ ├── editvideo.html
│ │ │ │ ├── get_out_pay.html
│ │ │ │ ├── img.html
│ │ │ │ ├── member.html
│ │ │ │ ├── novel.html
│ │ │ │ ├── pic.html
│ │ │ │ ├── record_gold.html
│ │ │ │ ├── record_img.html
│ │ │ │ ├── record_novel.html
│ │ │ │ ├── record_out_pay.html
│ │ │ │ ├── record_pay.html
│ │ │ │ ├── record_video.html
│ │ │ │ ├── seek_pwd.html
│ │ │ │ ├── set_email.html
│ │ │ │ ├── set_phone.html
│ │ │ │ ├── set_pwd.html
│ │ │ │ └── video.html
│ │ │ ├── mobile
│ │ │ │ ├── common
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── header.html
│ │ │ │ │ └── head.html
│ │ │ │ ├── images
│ │ │ │ │ ├── lists.html
│ │ │ │ │ ├── search.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── index
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── login.html
│ │ │ │ │ ├── prompt.html
│ │ │ │ │ └── register.html
│ │ │ │ ├── member
│ │ │ │ │ ├── addatlas.html
│ │ │ │ │ ├── add_card.html
│ │ │ │ │ ├── addimges.html
│ │ │ │ │ ├── addnovel.html
│ │ │ │ │ ├── addvideo.html
│ │ │ │ │ ├── agent.html
│ │ │ │ │ ├── binding_third.html
│ │ │ │ │ ├── card_pwd.html
│ │ │ │ │ ├── collection_img.html
│ │ │ │ │ ├── collection_novel.html
│ │ │ │ │ ├── collection_pic.html
│ │ │ │ │ ├── collection_video.html
│ │ │ │ │ ├── editatlas.html
│ │ │ │ │ ├── editnovel.html
│ │ │ │ │ ├── editvideo.html
│ │ │ │ │ ├── get_out_pay.html
│ │ │ │ │ ├── img.html
│ │ │ │ │ ├── info.html
│ │ │ │ │ ├── member_details.html
│ │ │ │ │ ├── member.html
│ │ │ │ │ ├── novel.html
│ │ │ │ │ ├── pic.html
│ │ │ │ │ ├── record_gold.html
│ │ │ │ │ ├── record_img.html
│ │ │ │ │ ├── record_novel.html
│ │ │ │ │ ├── record_out_pay.html
│ │ │ │ │ ├── record_pay.html
│ │ │ │ │ ├── record_video.html
│ │ │ │ │ ├── seek_pwd.html
│ │ │ │ │ ├── set_email.html
│ │ │ │ │ ├── set_phone.html
│ │ │ │ │ ├── set_pwd.html
│ │ │ │ │ └── video.html
│ │ │ │ ├── novel
│ │ │ │ │ ├── lists.html
│ │ │ │ │ ├── search.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── poster
│ │ │ │ │ └── index.html
│ │ │ │ ├── share
│ │ │ │ │ └── index.html
│ │ │ │ ├── static
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── common.css
│ │ │ │ │ │ ├── iconfont.css
│ │ │ │ │ │ ├── i-list.css
│ │ │ │ │ │ ├── login.css
│ │ │ │ │ │ ├── member.css
│ │ │ │ │ │ ├── n-list.css
│ │ │ │ │ │ ├── play.css
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ ├── swiper.min.css
│ │ │ │ │ │ ├── touchTouch.css
│ │ │ │ │ │ └── v-list.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── arrows.png
│ │ │ │ │ │ ├── default-skin.png
│ │ │ │ │ │ ├── default-skin.svg
│ │ │ │ │ │ ├── drop_down.png
│ │ │ │ │ │ ├── login.png
│ │ │ │ │ │ ├── not_pay.png
│ │ │ │ │ │ ├── preloader.gif
│ │ │ │ │ │ ├── pwd_icon.png
│ │ │ │ │ │ ├── seek_icon.png
│ │ │ │ │ │ └── yes_pay.png
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── thumbnails
│ │ │ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ │ │ └── tibet-6.jpg
│ │ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ │ └── tibet-6.jpg
│ │ │ │ │ └── js
│ │ │ │ │ ├── common.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ ├── jquery-3.2.1.min.js
│ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ ├── jquery.mobile-1.3.2.min.js
│ │ │ │ │ ├── jquery.validate.min.js
│ │ │ │ │ ├── layer_mobile
│ │ │ │ │ │ ├── layer.js
│ │ │ │ │ │ └── need
│ │ │ │ │ │ └── layer.css
│ │ │ │ │ ├── swiper.min.js
│ │ │ │ │ ├── touchTouch.jquery.js
│ │ │ │ │ └── viewer.min.js
│ │ │ │ ├── systemMsg
│ │ │ │ │ └── message.html
│ │ │ │ ├── system_pay
│ │ │ │ │ ├── pay.html
│ │ │ │ │ └── recharge.html
│ │ │ │ └── video
│ │ │ │ ├── iframeVideo.html
│ │ │ │ ├── iplay.html
│ │ │ │ ├── lists.html
│ │ │ │ ├── play.html
│ │ │ │ └── search.html
│ │ │ ├── novel
│ │ │ │ ├── lists.html
│ │ │ │ ├── search.html
│ │ │ │ └── show.html
│ │ │ ├── poster
│ │ │ │ └── index.html
│ │ │ ├── static
│ │ │ │ ├── css
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── demo.css
│ │ │ │ │ ├── font_485358_gtgl3zs6gyvqjjor
│ │ │ │ │ │ ├── demo.css
│ │ │ │ │ │ ├── demo_fontclass.html
│ │ │ │ │ │ ├── demo_symbol.html
│ │ │ │ │ │ ├── demo_unicode.html
│ │ │ │ │ │ ├── iconfont.css
│ │ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ │ ├── iconfont.js
│ │ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ │ └── iconfont.woff
│ │ │ │ │ ├── index.css
│ │ │ │ │ ├── install.css
│ │ │ │ │ ├── layui.css
│ │ │ │ │ ├── member.css
│ │ │ │ │ ├── novel.css
│ │ │ │ │ ├── novel-sort.css
│ │ │ │ │ ├── pic-sort.css
│ │ │ │ │ ├── play.css
│ │ │ │ │ ├── video-sort.css
│ │ │ │ │ └── viewer.min.css
│ │ │ │ ├── images
│ │ │ │ │ ├── Alipay.png
│ │ │ │ │ ├── Close.png
│ │ │ │ │ ├── fn-tree.png
│ │ │ │ │ ├── getIMG.jpg
│ │ │ │ │ ├── go.png
│ │ │ │ │ ├── header.png
│ │ │ │ │ ├── heat.png
│ │ │ │ │ ├── images.png
│ │ │ │ │ ├── install.png
│ │ │ │ │ ├── install_.png
│ │ │ │ │ ├── king.png
│ │ │ │ │ ├── login.png
│ │ │ │ │ ├── new.png
│ │ │ │ │ ├── out_pay.png
│ │ │ │ │ ├── passport_icon.png
│ │ │ │ │ ├── payment.png
│ │ │ │ │ ├── pay-site.png
│ │ │ │ │ ├── pwd_icon.png
│ │ │ │ │ ├── QQ.png
│ │ │ │ │ ├── remind-pic.png
│ │ │ │ │ ├── remind.png
│ │ │ │ │ ├── sort.png
│ │ │ │ │ ├── tj.png
│ │ │ │ │ └── WeChat.png
│ │ │ │ └── js
│ │ │ │ ├── common.js
│ │ │ │ ├── index.js
│ │ │ │ ├── jquery-3.2.1.min.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── jquery.zclip.min.js
│ │ │ │ ├── layer
│ │ │ │ │ ├── layer.js
│ │ │ │ │ ├── mobile
│ │ │ │ │ │ ├── layer.js
│ │ │ │ │ │ └── need
│ │ │ │ │ │ └── layer.css
│ │ │ │ │ └── theme
│ │ │ │ │ └── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layer.css
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── 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
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ │ └── iconfont.woff
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── face
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ ├── 17.gif
│ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ ├── 7.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
│ │ │ │ │ │ ├── laypage.js
│ │ │ │ │ │ ├── laytpl.js
│ │ │ │ │ │ ├── mobile.js
│ │ │ │ │ │ ├── table.js
│ │ │ │ │ │ ├── tree.js
│ │ │ │ │ │ ├── upload.js
│ │ │ │ │ │ └── util.js
│ │ │ │ │ ├── layui.all.js
│ │ │ │ │ └── layui.js
│ │ │ │ ├── play.js
│ │ │ │ ├── viewer.min.js
│ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── systemMsg
│ │ │ │ └── message.html
│ │ │ ├── system_pay
│ │ │ │ ├── pay.html
│ │ │ │ └── recharge.html
│ │ │ └── video
│ │ │ ├── lists.html
│ │ │ ├── play.html
│ │ │ └── search.html
│ │ ├── happy2018
│ │ │ ├── agent
│ │ │ │ └── index.html
│ │ │ ├── common
│ │ │ │ ├── bottom.html
│ │ │ │ ├── footer.html
│ │ │ │ ├── header.html
│ │ │ │ └── top.html
│ │ │ ├── cover.png
│ │ │ ├── images
│ │ │ │ ├── lists.html
│ │ │ │ ├── search.html
│ │ │ │ ├── show.html
│ │ │ │ └── showtips.html
│ │ │ ├── index
│ │ │ │ ├── index.html
│ │ │ │ ├── prompt.html
│ │ │ │ └── remind.html
│ │ │ ├── info.json
│ │ │ ├── install
│ │ │ │ ├── adminConfig.html
│ │ │ │ ├── dbConfig.html
│ │ │ │ ├── index.html
│ │ │ │ ├── installSuccess.html
│ │ │ │ └── nav.html
│ │ │ ├── member
│ │ │ │ ├── addAtlas.html
│ │ │ │ ├── addimges.html
│ │ │ │ ├── addNovel.html
│ │ │ │ ├── addVideo.html
│ │ │ │ ├── agent.html
│ │ │ │ ├── binding_third.html
│ │ │ │ ├── card_pwd.html
│ │ │ │ ├── collection.html
│ │ │ │ ├── collection_img.html
│ │ │ │ ├── collection_novel.html
│ │ │ │ ├── collection_pic.html
│ │ │ │ ├── collection_video.html
│ │ │ │ ├── common.html
│ │ │ │ ├── editAtlas.html
│ │ │ │ ├── editNovel.html
│ │ │ │ ├── editVideo.html
│ │ │ │ ├── get_out_pay.html
│ │ │ │ ├── img.html
│ │ │ │ ├── member.html
│ │ │ │ ├── novel.html
│ │ │ │ ├── pic.html
│ │ │ │ ├── record_gold.html
│ │ │ │ ├── record_img.html
│ │ │ │ ├── record_novel.html
│ │ │ │ ├── record_out_pay.html
│ │ │ │ ├── record_pay.html
│ │ │ │ ├── record_video.html
│ │ │ │ ├── seek_pwd.html
│ │ │ │ ├── set_email.html
│ │ │ │ ├── set_phone.html
│ │ │ │ ├── set_pwd.html
│ │ │ │ └── video.html
│ │ │ ├── mobile
│ │ │ │ ├── common
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── header.html
│ │ │ │ │ └── head.html
│ │ │ │ ├── images
│ │ │ │ │ ├── lists.html
│ │ │ │ │ ├── search.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── index
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── login.html
│ │ │ │ │ ├── prompt.html
│ │ │ │ │ └── register.html
│ │ │ │ ├── member
│ │ │ │ │ ├── addAtlas.html
│ │ │ │ │ ├── add_card.html
│ │ │ │ │ ├── addimges.html
│ │ │ │ │ ├── addNovel.html
│ │ │ │ │ ├── addVideo.html
│ │ │ │ │ ├── agent.html
│ │ │ │ │ ├── binding_third.html
│ │ │ │ │ ├── card_pwd.html
│ │ │ │ │ ├── collection_img.html
│ │ │ │ │ ├── collection_novel.html
│ │ │ │ │ ├── collection_pic.html
│ │ │ │ │ ├── collection_video.html
│ │ │ │ │ ├── editatlas.html
│ │ │ │ │ ├── editNovel.html
│ │ │ │ │ ├── editVideo.html
│ │ │ │ │ ├── get_out_pay.html
│ │ │ │ │ ├── img.html
│ │ │ │ │ ├── info.html
│ │ │ │ │ ├── member_details.html
│ │ │ │ │ ├── member.html
│ │ │ │ │ ├── novel.html
│ │ │ │ │ ├── pic.html
│ │ │ │ │ ├── record_gold.html
│ │ │ │ │ ├── record_img.html
│ │ │ │ │ ├── record_novel.html
│ │ │ │ │ ├── record_out_pay.html
│ │ │ │ │ ├── record_pay.html
│ │ │ │ │ ├── record_video.html
│ │ │ │ │ ├── seek_pwd.html
│ │ │ │ │ ├── set_email.html
│ │ │ │ │ ├── set_phone.html
│ │ │ │ │ ├── set_pwd.html
│ │ │ │ │ └── video.html
│ │ │ │ ├── novel
│ │ │ │ │ ├── lists.html
│ │ │ │ │ ├── search.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── poster
│ │ │ │ │ └── index.html
│ │ │ │ ├── share
│ │ │ │ │ └── index.html
│ │ │ │ ├── static
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── common.css
│ │ │ │ │ │ ├── default-skin.min.css
│ │ │ │ │ │ ├── iconfont.css
│ │ │ │ │ │ ├── i-list.css
│ │ │ │ │ │ ├── login.css
│ │ │ │ │ │ ├── member.css
│ │ │ │ │ │ ├── n-list.css
│ │ │ │ │ │ ├── photoswipe.min.css
│ │ │ │ │ │ ├── play.css
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ ├── swiper.min.css
│ │ │ │ │ │ ├── touchTouch.css
│ │ │ │ │ │ └── v-list.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── arrows.png
│ │ │ │ │ │ ├── default-skin.png
│ │ │ │ │ │ ├── default-skin.svg
│ │ │ │ │ │ ├── drop_down.png
│ │ │ │ │ │ ├── icon_QQ.png
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ │ ├── 4.jpg
│ │ │ │ │ │ │ ├── img.jpg
│ │ │ │ │ │ │ └── login.png
│ │ │ │ │ │ ├── login.png
│ │ │ │ │ │ ├── not_pay.png
│ │ │ │ │ │ ├── preloader.gif
│ │ │ │ │ │ ├── pwd_icon.png
│ │ │ │ │ │ ├── seek_icon.png
│ │ │ │ │ │ ├── video_defaultpic2.png
│ │ │ │ │ │ ├── WeChat.png
│ │ │ │ │ │ └── yes_pay.png
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── thumbnails
│ │ │ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ │ │ └── tibet-6.jpg
│ │ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ │ └── tibet-6.jpg
│ │ │ │ │ └── js
│ │ │ │ │ ├── common.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ ├── jquery-3.2.1.min.js
│ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ ├── jquery.mobile-1.3.2.min.js
│ │ │ │ │ ├── jquery.validate.min.js
│ │ │ │ │ ├── layer_mobile
│ │ │ │ │ │ ├── layer.js
│ │ │ │ │ │ └── need
│ │ │ │ │ │ └── layer.css
│ │ │ │ │ ├── photoswipe.js
│ │ │ │ │ ├── photoswipe.min.js
│ │ │ │ │ ├── photoswipe-ui-default.min.js
│ │ │ │ │ ├── swiper.min.js
│ │ │ │ │ ├── touchTouch.jquery.js
│ │ │ │ │ └── viewer.min.js
│ │ │ │ ├── systemMsg
│ │ │ │ │ └── message.html
│ │ │ │ ├── system_pay
│ │ │ │ │ ├── pay.html
│ │ │ │ │ └── recharge.html
│ │ │ │ └── video
│ │ │ │ ├── iframeVideo.html
│ │ │ │ ├── iplay.html
│ │ │ │ ├── lists.html
│ │ │ │ ├── play.html
│ │ │ │ └── search.html
│ │ │ ├── novel
│ │ │ │ ├── lists.html
│ │ │ │ ├── search.html
│ │ │ │ └── show.html
│ │ │ ├── peixin
│ │ │ │ ├── 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
│ │ │ │ │ ├── less
│ │ │ │ │ │ ├── animated.less
│ │ │ │ │ │ ├── bordered-pulled.less
│ │ │ │ │ │ ├── core.less
│ │ │ │ │ │ ├── fixed-width.less
│ │ │ │ │ │ ├── font-awesome.less
│ │ │ │ │ │ ├── icons.less
│ │ │ │ │ │ ├── larger.less
│ │ │ │ │ │ ├── list.less
│ │ │ │ │ │ ├── mixins.less
│ │ │ │ │ │ ├── path.less
│ │ │ │ │ │ ├── rotated-flipped.less
│ │ │ │ │ │ ├── screen-reader.less
│ │ │ │ │ │ ├── stacked.less
│ │ │ │ │ │ └── variables.less
│ │ │ │ │ └── scss
│ │ │ │ │ ├── _animated.scss
│ │ │ │ │ ├── _bordered-pulled.scss
│ │ │ │ │ ├── _core.scss
│ │ │ │ │ ├── _fixed-width.scss
│ │ │ │ │ ├── font-awesome.scss
│ │ │ │ │ ├── _icons.scss
│ │ │ │ │ ├── _larger.scss
│ │ │ │ │ ├── _list.scss
│ │ │ │ │ ├── _mixins.scss
│ │ │ │ │ ├── _path.scss
│ │ │ │ │ ├── _rotated-flipped.scss
│ │ │ │ │ ├── _screen-reader.scss
│ │ │ │ │ ├── _stacked.scss
│ │ │ │ │ └── _variables.scss
│ │ │ │ ├── css
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── font_485358_6sr38xffxwmw8kt9.eot
│ │ │ │ │ ├── font_485358_6sr38xffxwmw8kt9.svg
│ │ │ │ │ ├── font_485358_6sr38xffxwmw8kt9.ttf
│ │ │ │ │ ├── font.css
│ │ │ │ │ ├── images.css
│ │ │ │ │ ├── member.css
│ │ │ │ │ ├── msvod.css
│ │ │ │ │ ├── novel.css
│ │ │ │ │ ├── play.css
│ │ │ │ │ └── viewer.min.css
│ │ │ │ ├── images
│ │ │ │ │ ├── action-bg.png
│ │ │ │ │ ├── action-close.png
│ │ │ │ │ ├── album-banner.jpg
│ │ │ │ │ ├── album-win-icon.png
│ │ │ │ │ ├── banner-btn.png
│ │ │ │ │ ├── Close.png
│ │ │ │ │ ├── collect-icon.png
│ │ │ │ │ ├── down-page.png
│ │ │ │ │ ├── hdnav-item-arrow.png
│ │ │ │ │ ├── header-icon-v2.png
│ │ │ │ │ ├── hk-all-vip-icons.v1.png
│ │ │ │ │ ├── hk_new_index_icons3.png
│ │ │ │ │ ├── hk_new_index_icons.png
│ │ │ │ │ ├── hk_search_butn.png
│ │ │ │ │ ├── hk_slide_button.png
│ │ │ │ │ ├── hot.png
│ │ │ │ │ ├── images.png
│ │ │ │ │ ├── impt_nop_hot_big.png
│ │ │ │ │ ├── impt_nop_hot_small.png
│ │ │ │ │ ├── impt_nop_new.png
│ │ │ │ │ ├── kf.jpg
│ │ │ │ │ ├── login-icon.png
│ │ │ │ │ ├── magnifier1.png
│ │ │ │ │ ├── magnifier2.png
│ │ │ │ │ ├── nav-logo-icon.v3.png
│ │ │ │ │ ├── nav_qb_icon.png
│ │ │ │ │ ├── news-banner.jpg
│ │ │ │ │ ├── new-tip.gif
│ │ │ │ │ ├── passport_icon.png
│ │ │ │ │ ├── play-detail-icons.png
│ │ │ │ │ ├── popup-close-btn.jpg
│ │ │ │ │ ├── rul-btn-left.png
│ │ │ │ │ ├── rul-btn-right.png
│ │ │ │ │ ├── sg.png
│ │ │ │ │ ├── signed.png
│ │ │ │ │ ├── survery-icons.png
│ │ │ │ │ ├── thumbs-like.png
│ │ │ │ │ ├── tj.png
│ │ │ │ │ ├── up-page.png
│ │ │ │ │ ├── user-icon.png
│ │ │ │ │ ├── video-banner.jpg
│ │ │ │ │ ├── vip.jpg
│ │ │ │ │ ├── wap.png
│ │ │ │ │ └── yhj.png
│ │ │ │ ├── js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── msvod_bei.js
│ │ │ │ │ ├── msvod.js
│ │ │ │ │ └── share.js
│ │ │ │ └── picture
│ │ │ │ ├── 1154d4d64d154ac5b3a7ff09bf2f446c.gif
│ │ │ │ ├── 2acb3f8a0f8d4f4cbf63374bc681bfb3.gif
│ │ │ │ ├── 31237225c5dd42ac8d5aba81bad54193.gif
│ │ │ │ ├── 46f2a2b39753416dbf154fca5c39d066.gif
│ │ │ │ ├── 70f8f5e89a954e428a17e3a562ab22be.gif
│ │ │ │ ├── 7cfa24e821134c47a848f70a565669f2.gif
│ │ │ │ ├── b230e1113ba941a1955da7ec3ec2635a.gif
│ │ │ │ ├── bc.png
│ │ │ │ ├── bf.png
│ │ │ │ ├── bi.png
│ │ │ │ ├── bs.png
│ │ │ │ ├── close.png
│ │ │ │ ├── d3bf9646765249809fa511aacedfa219.gif
│ │ │ │ ├── down-m.png
│ │ │ │ ├── footer_aqkx.png
│ │ │ │ ├── hk_foot_logo.png
│ │ │ │ ├── hk_loading.gif
│ │ │ │ ├── new-btn1.jpg
│ │ │ │ ├── new-btn2.jpg
│ │ │ │ ├── vip-icon-1.gif
│ │ │ │ └── wa.png
│ │ │ ├── poster
│ │ │ │ └── index.html
│ │ │ ├── static
│ │ │ │ ├── css
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── demo.css
│ │ │ │ │ ├── index.css
│ │ │ │ │ ├── layui.css
│ │ │ │ │ ├── member.css
│ │ │ │ │ ├── novel.css
│ │ │ │ │ ├── novel-sort.css
│ │ │ │ │ ├── pic-sort.css
│ │ │ │ │ ├── play.css
│ │ │ │ │ ├── video-sort.css
│ │ │ │ │ └── viewer.min.css
│ │ │ │ ├── images
│ │ │ │ │ ├── Alipay.png
│ │ │ │ │ ├── Close.png
│ │ │ │ │ ├── fn-tree.png
│ │ │ │ │ ├── getIMG.jpg
│ │ │ │ │ ├── go.png
│ │ │ │ │ ├── header.png
│ │ │ │ │ ├── heat.png
│ │ │ │ │ ├── images.png
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ ├── 4.jpg
│ │ │ │ │ │ ├── code.jpg
│ │ │ │ │ │ ├── img.jpg
│ │ │ │ │ │ ├── login.png
│ │ │ │ │ │ └── psb.jpg
│ │ │ │ │ ├── king.png
│ │ │ │ │ ├── login.png
│ │ │ │ │ ├── new.png
│ │ │ │ │ ├── out_pay.png
│ │ │ │ │ ├── passport_icon.png
│ │ │ │ │ ├── payment.png
│ │ │ │ │ ├── pay-site.png
│ │ │ │ │ ├── pwd_icon.png
│ │ │ │ │ ├── QQ.png
│ │ │ │ │ ├── remind-pic.png
│ │ │ │ │ ├── remind.png
│ │ │ │ │ ├── sort.png
│ │ │ │ │ ├── tj.png
│ │ │ │ │ └── WeChat.png
│ │ │ │ ├── img
│ │ │ │ │ ├── thumbnails
│ │ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ │ └── tibet-6.jpg
│ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ └── tibet-6.jpg
│ │ │ │ └── js
│ │ │ │ ├── common.js
│ │ │ │ ├── index.js
│ │ │ │ ├── jquery-3.2.1.min.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── jquery.zclip.min.js
│ │ │ │ ├── layer
│ │ │ │ │ ├── layer.js
│ │ │ │ │ ├── mobile
│ │ │ │ │ │ ├── layer.js
│ │ │ │ │ │ └── need
│ │ │ │ │ │ └── layer.css
│ │ │ │ │ └── theme
│ │ │ │ │ └── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layer.css
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── 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
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ │ └── iconfont.woff
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── face
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ ├── 17.gif
│ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ ├── 7.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
│ │ │ │ │ │ ├── laypage.js
│ │ │ │ │ │ ├── laytpl.js
│ │ │ │ │ │ ├── mobile.js
│ │ │ │ │ │ ├── table.js
│ │ │ │ │ │ ├── tree.js
│ │ │ │ │ │ ├── upload.js
│ │ │ │ │ │ └── util.js
│ │ │ │ │ ├── layui.all.js
│ │ │ │ │ └── layui.js
│ │ │ │ ├── play.js
│ │ │ │ ├── viewer.min.js
│ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── systemMsg
│ │ │ │ └── message.html
│ │ │ ├── system_pay
│ │ │ │ ├── pay.html
│ │ │ │ └── recharge.html
│ │ │ └── video
│ │ │ ├── lists.html
│ │ │ ├── play.html
│ │ │ └── search.html
│ │ └── peixun
│ │ ├── agent
│ │ │ └── index.html
│ │ ├── common
│ │ │ ├── bottom.html
│ │ │ ├── footer.html
│ │ │ ├── header.html
│ │ │ └── top.html
│ │ ├── cover.png
│ │ ├── images
│ │ │ ├── lists.html
│ │ │ ├── search.html
│ │ │ ├── show.html
│ │ │ └── showtips.html
│ │ ├── index
│ │ │ ├── index.html
│ │ │ ├── prompt.html
│ │ │ └── remind.html
│ │ ├── info.json
│ │ ├── install
│ │ │ ├── adminConfig.html
│ │ │ ├── dbConfig.html
│ │ │ ├── index.html
│ │ │ ├── installSuccess.html
│ │ │ └── nav.html
│ │ ├── member
│ │ │ ├── addAtlas.html
│ │ │ ├── addimges.html
│ │ │ ├── addNovel.html
│ │ │ ├── addVideo.html
│ │ │ ├── agent.html
│ │ │ ├── binding_third.html
│ │ │ ├── card_pwd.html
│ │ │ ├── collection.html
│ │ │ ├── collection_img.html
│ │ │ ├── collection_novel.html
│ │ │ ├── collection_pic.html
│ │ │ ├── collection_video.html
│ │ │ ├── common.html
│ │ │ ├── editAtlas.html
│ │ │ ├── editNovel.html
│ │ │ ├── editVideo.html
│ │ │ ├── get_out_pay.html
│ │ │ ├── img.html
│ │ │ ├── member.html
│ │ │ ├── novel.html
│ │ │ ├── pic.html
│ │ │ ├── record_gold.html
│ │ │ ├── record_img.html
│ │ │ ├── record_novel.html
│ │ │ ├── record_out_pay.html
│ │ │ ├── record_pay.html
│ │ │ ├── record_video.html
│ │ │ ├── seek_pwd.html
│ │ │ ├── set_email.html
│ │ │ ├── set_phone.html
│ │ │ ├── set_pwd.html
│ │ │ └── video.html
│ │ ├── mobile
│ │ │ ├── common
│ │ │ │ ├── footer.html
│ │ │ │ ├── header.html
│ │ │ │ └── head.html
│ │ │ ├── images
│ │ │ │ ├── lists.html
│ │ │ │ ├── search.html
│ │ │ │ └── show.html
│ │ │ ├── index
│ │ │ │ ├── index.html
│ │ │ │ ├── login.html
│ │ │ │ ├── prompt.html
│ │ │ │ └── register.html
│ │ │ ├── member
│ │ │ │ ├── addAtlas.html
│ │ │ │ ├── add_card.html
│ │ │ │ ├── addimges.html
│ │ │ │ ├── addNovel.html
│ │ │ │ ├── addVideo.html
│ │ │ │ ├── agent.html
│ │ │ │ ├── binding_third.html
│ │ │ │ ├── card_pwd.html
│ │ │ │ ├── collection_img.html
│ │ │ │ ├── collection_novel.html
│ │ │ │ ├── collection_pic.html
│ │ │ │ ├── collection_video.html
│ │ │ │ ├── editatlas.html
│ │ │ │ ├── editNovel.html
│ │ │ │ ├── editVideo.html
│ │ │ │ ├── get_out_pay.html
│ │ │ │ ├── img.html
│ │ │ │ ├── info.html
│ │ │ │ ├── member_details.html
│ │ │ │ ├── member.html
│ │ │ │ ├── novel.html
│ │ │ │ ├── pic.html
│ │ │ │ ├── record_gold.html
│ │ │ │ ├── record_img.html
│ │ │ │ ├── record_novel.html
│ │ │ │ ├── record_out_pay.html
│ │ │ │ ├── record_pay.html
│ │ │ │ ├── record_video.html
│ │ │ │ ├── seek_pwd.html
│ │ │ │ ├── set_email.html
│ │ │ │ ├── set_phone.html
│ │ │ │ ├── set_pwd.html
│ │ │ │ └── video.html
│ │ │ ├── novel
│ │ │ │ ├── lists.html
│ │ │ │ ├── search.html
│ │ │ │ └── show.html
│ │ │ ├── poster
│ │ │ │ └── index.html
│ │ │ ├── share
│ │ │ │ └── index.html
│ │ │ ├── static
│ │ │ │ ├── css
│ │ │ │ │ ├── common.css
│ │ │ │ │ ├── default-skin.min.css
│ │ │ │ │ ├── iconfont.css
│ │ │ │ │ ├── i-list.css
│ │ │ │ │ ├── login.css
│ │ │ │ │ ├── member.css
│ │ │ │ │ ├── n-list.css
│ │ │ │ │ ├── photoswipe.min.css
│ │ │ │ │ ├── play.css
│ │ │ │ │ ├── style.css
│ │ │ │ │ ├── swiper.min.css
│ │ │ │ │ ├── touchTouch.css
│ │ │ │ │ └── v-list.css
│ │ │ │ ├── images
│ │ │ │ │ ├── arrows.png
│ │ │ │ │ ├── default-skin.png
│ │ │ │ │ ├── default-skin.svg
│ │ │ │ │ ├── drop_down.png
│ │ │ │ │ ├── icon_QQ.png
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── 1.jpg
│ │ │ │ │ │ ├── 2.jpg
│ │ │ │ │ │ ├── 3.jpg
│ │ │ │ │ │ ├── 4.jpg
│ │ │ │ │ │ ├── img.jpg
│ │ │ │ │ │ └── login.png
│ │ │ │ │ ├── login.png
│ │ │ │ │ ├── not_pay.png
│ │ │ │ │ ├── preloader.gif
│ │ │ │ │ ├── pwd_icon.png
│ │ │ │ │ ├── seek_icon.png
│ │ │ │ │ ├── video_defaultpic2.png
│ │ │ │ │ ├── WeChat.png
│ │ │ │ │ └── yes_pay.png
│ │ │ │ ├── img
│ │ │ │ │ ├── thumbnails
│ │ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ │ └── tibet-6.jpg
│ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ └── tibet-6.jpg
│ │ │ │ └── js
│ │ │ │ ├── common.js
│ │ │ │ ├── index.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── jquery-3.2.1.min.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ ├── jquery.mobile-1.3.2.min.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── layer_mobile
│ │ │ │ │ ├── layer.js
│ │ │ │ │ └── need
│ │ │ │ │ └── layer.css
│ │ │ │ ├── photoswipe.js
│ │ │ │ ├── photoswipe.min.js
│ │ │ │ ├── photoswipe-ui-default.min.js
│ │ │ │ ├── swiper.min.js
│ │ │ │ ├── touchTouch.jquery.js
│ │ │ │ └── viewer.min.js
│ │ │ ├── systemMsg
│ │ │ │ └── message.html
│ │ │ ├── system_pay
│ │ │ │ ├── pay.html
│ │ │ │ └── recharge.html
│ │ │ └── video
│ │ │ ├── iframeVideo.html
│ │ │ ├── iplay.html
│ │ │ ├── lists.html
│ │ │ ├── play.html
│ │ │ └── search.html
│ │ ├── novel
│ │ │ ├── lists.html
│ │ │ ├── search.html
│ │ │ └── show.html
│ │ ├── peixin
│ │ │ ├── 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
│ │ │ │ ├── less
│ │ │ │ │ ├── animated.less
│ │ │ │ │ ├── bordered-pulled.less
│ │ │ │ │ ├── core.less
│ │ │ │ │ ├── fixed-width.less
│ │ │ │ │ ├── font-awesome.less
│ │ │ │ │ ├── icons.less
│ │ │ │ │ ├── larger.less
│ │ │ │ │ ├── list.less
│ │ │ │ │ ├── mixins.less
│ │ │ │ │ ├── path.less
│ │ │ │ │ ├── rotated-flipped.less
│ │ │ │ │ ├── screen-reader.less
│ │ │ │ │ ├── stacked.less
│ │ │ │ │ └── variables.less
│ │ │ │ └── scss
│ │ │ │ ├── _animated.scss
│ │ │ │ ├── _bordered-pulled.scss
│ │ │ │ ├── _core.scss
│ │ │ │ ├── _fixed-width.scss
│ │ │ │ ├── font-awesome.scss
│ │ │ │ ├── _icons.scss
│ │ │ │ ├── _larger.scss
│ │ │ │ ├── _list.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _path.scss
│ │ │ │ ├── _rotated-flipped.scss
│ │ │ │ ├── _screen-reader.scss
│ │ │ │ ├── _stacked.scss
│ │ │ │ └── _variables.scss
│ │ │ ├── css
│ │ │ │ ├── common.css
│ │ │ │ ├── font_485358_6sr38xffxwmw8kt9.eot
│ │ │ │ ├── font_485358_6sr38xffxwmw8kt9.svg
│ │ │ │ ├── font_485358_6sr38xffxwmw8kt9.ttf
│ │ │ │ ├── font.css
│ │ │ │ ├── images.css
│ │ │ │ ├── member.css
│ │ │ │ ├── msvod.css
│ │ │ │ ├── novel.css
│ │ │ │ ├── play.css
│ │ │ │ └── viewer.min.css
│ │ │ ├── images
│ │ │ │ ├── action-bg.png
│ │ │ │ ├── action-close.png
│ │ │ │ ├── album-banner.jpg
│ │ │ │ ├── album-win-icon.png
│ │ │ │ ├── banner-btn.png
│ │ │ │ ├── Close.png
│ │ │ │ ├── collect-icon.png
│ │ │ │ ├── down-page.png
│ │ │ │ ├── hdnav-item-arrow.png
│ │ │ │ ├── header-icon-v2.png
│ │ │ │ ├── hk-all-vip-icons.v1.png
│ │ │ │ ├── hk_new_index_icons3.png
│ │ │ │ ├── hk_new_index_icons.png
│ │ │ │ ├── hk_search_butn.png
│ │ │ │ ├── hk_slide_button.png
│ │ │ │ ├── hot.png
│ │ │ │ ├── images.png
│ │ │ │ ├── impt_nop_hot_big.png
│ │ │ │ ├── impt_nop_hot_small.png
│ │ │ │ ├── impt_nop_new.png
│ │ │ │ ├── kf.jpg
│ │ │ │ ├── login-icon.png
│ │ │ │ ├── magnifier1.png
│ │ │ │ ├── magnifier2.png
│ │ │ │ ├── nav-logo-icon.v3.png
│ │ │ │ ├── nav_qb_icon.png
│ │ │ │ ├── news-banner.jpg
│ │ │ │ ├── new-tip.gif
│ │ │ │ ├── passport_icon.png
│ │ │ │ ├── play-detail-icons.png
│ │ │ │ ├── popup-close-btn.jpg
│ │ │ │ ├── rul-btn-left.png
│ │ │ │ ├── rul-btn-right.png
│ │ │ │ ├── sg.png
│ │ │ │ ├── signed.png
│ │ │ │ ├── survery-icons.png
│ │ │ │ ├── thumbs-like.png
│ │ │ │ ├── tj.png
│ │ │ │ ├── up-page.png
│ │ │ │ ├── user-icon.png
│ │ │ │ ├── video-banner.jpg
│ │ │ │ ├── vip.jpg
│ │ │ │ ├── wap.png
│ │ │ │ └── yhj.png
│ │ │ ├── js
│ │ │ │ ├── index.js
│ │ │ │ ├── msvod_bei.js
│ │ │ │ ├── msvod.js
│ │ │ │ └── share.js
│ │ │ └── picture
│ │ │ ├── 1154d4d64d154ac5b3a7ff09bf2f446c.gif
│ │ │ ├── 2acb3f8a0f8d4f4cbf63374bc681bfb3.gif
│ │ │ ├── 31237225c5dd42ac8d5aba81bad54193.gif
│ │ │ ├── 46f2a2b39753416dbf154fca5c39d066.gif
│ │ │ ├── 70f8f5e89a954e428a17e3a562ab22be.gif
│ │ │ ├── 7cfa24e821134c47a848f70a565669f2.gif
│ │ │ ├── b230e1113ba941a1955da7ec3ec2635a.gif
│ │ │ ├── bc.png
│ │ │ ├── bf.png
│ │ │ ├── bi.png
│ │ │ ├── bs.png
│ │ │ ├── close.png
│ │ │ ├── d3bf9646765249809fa511aacedfa219.gif
│ │ │ ├── down-m.png
│ │ │ ├── footer_aqkx.png
│ │ │ ├── hk_foot_logo.png
│ │ │ ├── hk_loading.gif
│ │ │ ├── new-btn1.jpg
│ │ │ ├── new-btn2.jpg
│ │ │ ├── vip-icon-1.gif
│ │ │ └── wa.png
│ │ ├── poster
│ │ │ └── index.html
│ │ ├── static
│ │ │ ├── css
│ │ │ │ ├── common.css
│ │ │ │ ├── demo.css
│ │ │ │ ├── index.css
│ │ │ │ ├── layui.css
│ │ │ │ ├── member.css
│ │ │ │ ├── novel.css
│ │ │ │ ├── novel-sort.css
│ │ │ │ ├── pic-sort.css
│ │ │ │ ├── play.css
│ │ │ │ ├── video-sort.css
│ │ │ │ └── viewer.min.css
│ │ │ ├── images
│ │ │ │ ├── Alipay.png
│ │ │ │ ├── Close.png
│ │ │ │ ├── fn-tree.png
│ │ │ │ ├── getIMG.jpg
│ │ │ │ ├── go.png
│ │ │ │ ├── header.png
│ │ │ │ ├── heat.png
│ │ │ │ ├── images.png
│ │ │ │ ├── img
│ │ │ │ │ ├── 1.jpg
│ │ │ │ │ ├── 2.jpg
│ │ │ │ │ ├── 3.jpg
│ │ │ │ │ ├── 4.jpg
│ │ │ │ │ ├── code.jpg
│ │ │ │ │ ├── img.jpg
│ │ │ │ │ ├── login.png
│ │ │ │ │ └── psb.jpg
│ │ │ │ ├── king.png
│ │ │ │ ├── login.png
│ │ │ │ ├── new.png
│ │ │ │ ├── out_pay.png
│ │ │ │ ├── passport_icon.png
│ │ │ │ ├── payment.png
│ │ │ │ ├── pay-site.png
│ │ │ │ ├── pwd_icon.png
│ │ │ │ ├── QQ.png
│ │ │ │ ├── remind-pic.png
│ │ │ │ ├── remind.png
│ │ │ │ ├── sort.png
│ │ │ │ ├── tj.png
│ │ │ │ └── WeChat.png
│ │ │ ├── img
│ │ │ │ ├── thumbnails
│ │ │ │ │ ├── tibet-1.jpg
│ │ │ │ │ ├── tibet-2.jpg
│ │ │ │ │ ├── tibet-3.jpg
│ │ │ │ │ ├── tibet-4.jpg
│ │ │ │ │ ├── tibet-5.jpg
│ │ │ │ │ └── tibet-6.jpg
│ │ │ │ ├── tibet-1.jpg
│ │ │ │ ├── tibet-2.jpg
│ │ │ │ ├── tibet-3.jpg
│ │ │ │ ├── tibet-4.jpg
│ │ │ │ ├── tibet-5.jpg
│ │ │ │ └── tibet-6.jpg
│ │ │ └── js
│ │ │ ├── common.js
│ │ │ ├── index.js
│ │ │ ├── jquery-3.2.1.min.js
│ │ │ ├── jquery.validate.min.js
│ │ │ ├── jquery.zclip.min.js
│ │ │ ├── layer
│ │ │ │ ├── layer.js
│ │ │ │ ├── mobile
│ │ │ │ │ ├── layer.js
│ │ │ │ │ └── need
│ │ │ │ │ └── layer.css
│ │ │ │ └── theme
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── 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
│ │ │ │ ├── font
│ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ └── iconfont.woff
│ │ │ │ ├── images
│ │ │ │ │ └── face
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── 10.gif
│ │ │ │ │ ├── 11.gif
│ │ │ │ │ ├── 12.gif
│ │ │ │ │ ├── 13.gif
│ │ │ │ │ ├── 14.gif
│ │ │ │ │ ├── 15.gif
│ │ │ │ │ ├── 16.gif
│ │ │ │ │ ├── 17.gif
│ │ │ │ │ ├── 18.gif
│ │ │ │ │ ├── 19.gif
│ │ │ │ │ ├── 1.gif
│ │ │ │ │ ├── 20.gif
│ │ │ │ │ ├── 21.gif
│ │ │ │ │ ├── 22.gif
│ │ │ │ │ ├── 23.gif
│ │ │ │ │ ├── 24.gif
│ │ │ │ │ ├── 25.gif
│ │ │ │ │ ├── 26.gif
│ │ │ │ │ ├── 27.gif
│ │ │ │ │ ├── 28.gif
│ │ │ │ │ ├── 29.gif
│ │ │ │ │ ├── 2.gif
│ │ │ │ │ ├── 30.gif
│ │ │ │ │ ├── 31.gif
│ │ │ │ │ ├── 32.gif
│ │ │ │ │ ├── 33.gif
│ │ │ │ │ ├── 34.gif
│ │ │ │ │ ├── 35.gif
│ │ │ │ │ ├── 36.gif
│ │ │ │ │ ├── 37.gif
│ │ │ │ │ ├── 38.gif
│ │ │ │ │ ├── 39.gif
│ │ │ │ │ ├── 3.gif
│ │ │ │ │ ├── 40.gif
│ │ │ │ │ ├── 41.gif
│ │ │ │ │ ├── 42.gif
│ │ │ │ │ ├── 43.gif
│ │ │ │ │ ├── 44.gif
│ │ │ │ │ ├── 45.gif
│ │ │ │ │ ├── 46.gif
│ │ │ │ │ ├── 47.gif
│ │ │ │ │ ├── 48.gif
│ │ │ │ │ ├── 49.gif
│ │ │ │ │ ├── 4.gif
│ │ │ │ │ ├── 50.gif
│ │ │ │ │ ├── 51.gif
│ │ │ │ │ ├── 52.gif
│ │ │ │ │ ├── 53.gif
│ │ │ │ │ ├── 54.gif
│ │ │ │ │ ├── 55.gif
│ │ │ │ │ ├── 56.gif
│ │ │ │ │ ├── 57.gif
│ │ │ │ │ ├── 58.gif
│ │ │ │ │ ├── 59.gif
│ │ │ │ │ ├── 5.gif
│ │ │ │ │ ├── 60.gif
│ │ │ │ │ ├── 61.gif
│ │ │ │ │ ├── 62.gif
│ │ │ │ │ ├── 63.gif
│ │ │ │ │ ├── 64.gif
│ │ │ │ │ ├── 65.gif
│ │ │ │ │ ├── 66.gif
│ │ │ │ │ ├── 67.gif
│ │ │ │ │ ├── 68.gif
│ │ │ │ │ ├── 69.gif
│ │ │ │ │ ├── 6.gif
│ │ │ │ │ ├── 70.gif
│ │ │ │ │ ├── 71.gif
│ │ │ │ │ ├── 7.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
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ ├── laytpl.js
│ │ │ │ │ ├── mobile.js
│ │ │ │ │ ├── table.js
│ │ │ │ │ ├── tree.js
│ │ │ │ │ ├── upload.js
│ │ │ │ │ └── util.js
│ │ │ │ ├── layui.all.js
│ │ │ │ └── layui.js
│ │ │ ├── play.js
│ │ │ ├── viewer.min.js
│ │ │ └── ZeroClipboard.swf
│ │ ├── systemMsg
│ │ │ └── message.html
│ │ ├── system_pay
│ │ │ ├── pay.html
│ │ │ └── recharge.html
│ │ └── video
│ │ ├── lists.html
│ │ ├── play.html
│ │ └── search.html
│ ├── version.lock
│ ├── XResource
│ │ ├── 20190106
│ │ │ └── SEwewXRxTjb72iYsmnkpE3iKRnKxRJdj.jpg
│ │ ├── 20190109
│ │ │ ├── AcbbA3sCwjxk8FyF5mYxiSytCSc43MGf.png
│ │ │ ├── eFmza7ja3m656NejD3fhzDdC4XrBJ7jY.png
│ │ │ ├── FdxrRBypw2DDwSxGbYMRyB8pHT7PQKW7.png
│ │ │ └── jktYKMP8dnxyACxGSB5wZsYEirWExrmP.png
│ │ ├── 20190111
│ │ │ ├── btc3ArTtEWbaQt6P6KC3ATMQCHAJE6rW.png
│ │ │ ├── kjFKCF35W3WfnaXA7KxdXSZxeKB6JpCe.png
│ │ │ ├── RbehNkyJmpcYYk3xDH57QGSZw5RRbDcE.png
│ │ │ └── yzcZt62safxekYktTEXKGHpMGjHknEys.png
│ │ ├── 20190112
│ │ │ ├── Cm4a4QHzaGDs6Kycbk7XscmZ5PT6t7M7.png
│ │ │ ├── dX5fDB2kWJWT8i5mP2HxhYnR5ENaNQBi.png
│ │ │ ├── swPw8ifKnA6xyZTiHYsdaytkMZ6eJZCy.png
│ │ │ └── y7KcfHcjfPm627tPAWFfdtQJ25XrDcxp.png
│ │ ├── 20190116
│ │ │ ├── 2HAYpsyBMQQDYbKSc5hihrxw4TWnTpfk.jpg
│ │ │ ├── bR7t2nWH8HpDnA8sfjxCZ6ftt65xrB3i.jpg
│ │ │ ├── jwxEFXmrEyfSrJ4HmARdDjtxGNeS46fJ.png
│ │ │ ├── k7dEkaAnRKJQiBahkzdryzCzEmMDzPSA.jpg
│ │ │ ├── kFyD4y8jXKJyTJDYwZ2kJ8eibcrHWiDh.png
│ │ │ ├── ky6sk6embfaGifTdQTprnixEE7ZkNrMM.jpg
│ │ │ ├── M7XFPzHhbFeCZznsz5He3YeS3ACZhAXZ.jpg
│ │ │ ├── mimwR7jDfG3cthHpEBtpWde5xcy46Kje.jpg
│ │ │ ├── mkfiTjX25t7RWyH2RYYNGXwwp37rRnEA.png
│ │ │ ├── nDtGkz826ySp8pdAJPpcwQQwnXA7Srjd.jpg
│ │ │ ├── nk6JmdjDGaYWWemBbphxQEwYTx3h7KZp.png
│ │ │ ├── QtTCkh4ejNM2HDrknerX4b4jYhiPB2ak.jpg
│ │ │ └── tSx5J2AWydSmDTKAh84YNGsDfRt6siSr.jpg
│ │ ├── 20190121
│ │ │ └── ebQwN6iXYznKkEZ3Jiid8ZK3WxfaNDJJ.png
│ │ ├── 20190124
│ │ │ └── ShDyrwSnw3b8SAjpnctQhAtcEQkPNwpf.jpg
│ │ ├── 20190126
│ │ │ └── G6zBsSAS3pzMraWsCSn5M4tFCB6arr77.png
│ │ ├── 20190127
│ │ │ ├── FCXcXQQx8yMfPnYTSyQtcJBcrZPtsahS.png
│ │ │ └── hrrEmS8Z5d6nhAAxEB4Wkf23z2z7EKF6.png
│ │ ├── 20190203
│ │ │ ├── 23zhFmr3KKWwHMTbTcBjX32h4TnJjQph.png
│ │ │ ├── CMMDEZfQcfHPmYHtHbJKfcas4WsDtQR4.png
│ │ │ └── WQC6M2hdfPcM6GT6wQFjt8H3wWRmBApy.jpg
│ │ ├── 20190206
│ │ │ ├── knGXhPQ7eyzfNcHNkt8adZzDd4RXP6SW.png
│ │ │ └── ZbJzYdDr7y2ARKPNkK5zTnEJQcRzY3QW.png
│ │ ├── 20190212
│ │ │ ├── a5syFnjwKfRWSyndsJPHX8x4XHSrYzwi.png
│ │ │ ├── b4Zsi4JmeEbHnCnnJfHHJAzspYAA4jJt.jpg
│ │ │ ├── pthFarKfWTXZJrdKxATfhEsPjcexjE3H.png
│ │ │ ├── STpMn2SjydKDwDT3FDt5M5SnNpxMQjeB.gif.part
│ │ │ └── WmMcwedmA2dKrMJEdjQpWxYDMGKRtHQD.jpg
│ │ ├── 20190213
│ │ │ └── B35PkW86E4STjD3skfj4zrmmM7ycz3h4.jpg
│ │ ├── 20190214
│ │ │ ├── 7eQF6wErcZiYx5Ra2APBm8PDDdWJ4FwD.jpg
│ │ │ └── nZ8mkDmTfaxsXC3QEh4GPcpwYsQKPbJ7.jpg
│ │ ├── 20190217
│ │ │ ├── 6S2JBfPckCejAMwtsXKAtGszeesnhDkY.jpg
│ │ │ └── xz2x6MxbKCrtnTwt7CTepXbe74zHPh8d.mov.part
│ │ ├── 20190218
│ │ │ ├── Cikwt8S3WzPB3WhWQWxyE5n6WkYkyFti.png
│ │ │ ├── JBebzKfhAK7baPinePb8PWjEa8aYWN6Y.png
│ │ │ ├── JWfHez2snyByB3E7Fb2WS88k2n2hkrDJ.png
│ │ │ └── WkhSPzRsRRwCQ3Hp7cFjTjdmKWMpHSy3.png
│ │ ├── 20190221
│ │ │ ├── dmWiX3txFwpmtKsftnyMBtBTFpjj6Wmw.png
│ │ │ └── Ty2BaMDJHAtAXJhBjPi4ARyM2z6FtFST.png
│ │ ├── 20190223
│ │ │ ├── hbQmnsX8CwpcWZcAAxnyTSYMnXCDxapy.png
│ │ │ └── nmbfeBQkE3XwsSeTFYGCTdRybH8368pw.png
│ │ ├── 20190226
│ │ │ ├── 27hZn8E7SYK74p6P3GE7ZdBriXnEBBCS.jpg
│ │ │ ├── bkiZch228bwXmAE8s3DMSfWtfkdAzkCy.jpg
│ │ │ └── t7kD5jXYkp7mYP87HSCFkS534HKAYGhA.jpg
│ │ ├── 20190304
│ │ │ ├── kN44DYyZZaWfGcEknsKeSrAyzDr7rCFA.png
│ │ │ └── KRtPr7Rhb3txWnpWRkH7ACQHaHtDwyEw.png
│ │ └── 20190305
│ │ ├── Y8MyHXi57smSyAeFCcKjTWZncB6JS2hY.jpg
│ │ └── z4EFbM3nMktriNN5FZXQhARiQNzjENR2.jpeg
│ └── Xuploader.php
├── README.md
├── sasa.sql
├── think
├── thinkphp
│ ├── base.php
│ ├── codecov.yml
│ ├── composer.json
│ ├── console.php
│ ├── CONTRIBUTING.md
│ ├── convention.php
│ ├── helper.php
│ ├── lang
│ │ └── zh-cn.php
│ ├── library
│ │ ├── think
│ │ │ ├── App.php
│ │ │ ├── Build.php
│ │ │ ├── cache
│ │ │ │ ├── driver
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Lite.php
│ │ │ │ │ ├── Memcached.php
│ │ │ │ │ ├── Memcache.php
│ │ │ │ │ ├── Redis.php
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ ├── Wincache.php
│ │ │ │ │ └── Xcache.php
│ │ │ │ └── Driver.php
│ │ │ ├── Cache.php
│ │ │ ├── Collection.php
│ │ │ ├── config
│ │ │ │ └── driver
│ │ │ │ ├── Ini.php
│ │ │ │ ├── Json.php
│ │ │ │ └── Xml.php
│ │ │ ├── Config.php
│ │ │ ├── console
│ │ │ │ ├── bin
│ │ │ │ │ ├── hiddeninput.exe
│ │ │ │ │ └── README.md
│ │ │ │ ├── command
│ │ │ │ │ ├── Build.php
│ │ │ │ │ ├── Clear.php
│ │ │ │ │ ├── Help.php
│ │ │ │ │ ├── Lists.php
│ │ │ │ │ ├── make
│ │ │ │ │ │ ├── Controller.php
│ │ │ │ │ │ ├── Model.php
│ │ │ │ │ │ └── stubs
│ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ ├── controller.stub
│ │ │ │ │ │ └── model.stub
│ │ │ │ │ ├── Make.php
│ │ │ │ │ └── optimize
│ │ │ │ │ ├── Autoload.php
│ │ │ │ │ ├── Config.php
│ │ │ │ │ ├── Route.php
│ │ │ │ │ └── Schema.php
│ │ │ │ ├── Command.php
│ │ │ │ ├── input
│ │ │ │ │ ├── Argument.php
│ │ │ │ │ ├── Definition.php
│ │ │ │ │ └── Option.php
│ │ │ │ ├── Input.php
│ │ │ │ ├── LICENSE
│ │ │ │ ├── output
│ │ │ │ │ ├── Ask.php
│ │ │ │ │ ├── descriptor
│ │ │ │ │ │ └── Console.php
│ │ │ │ │ ├── Descriptor.php
│ │ │ │ │ ├── driver
│ │ │ │ │ │ ├── Buffer.php
│ │ │ │ │ │ ├── Console.php
│ │ │ │ │ │ └── Nothing.php
│ │ │ │ │ ├── formatter
│ │ │ │ │ │ ├── Stack.php
│ │ │ │ │ │ └── Style.php
│ │ │ │ │ ├── Formatter.php
│ │ │ │ │ ├── question
│ │ │ │ │ │ ├── Choice.php
│ │ │ │ │ │ └── Confirmation.php
│ │ │ │ │ └── Question.php
│ │ │ │ └── Output.php
│ │ │ ├── Console.php
│ │ │ ├── controller
│ │ │ │ ├── Rest.php
│ │ │ │ └── Yar.php
│ │ │ ├── Controller.php
│ │ │ ├── Cookie.php
│ │ │ ├── db
│ │ │ │ ├── builder
│ │ │ │ │ ├── Mysql.php
│ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ └── Sqlsrv.php
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── connector
│ │ │ │ │ ├── Mysql.php
│ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ ├── pgsql.sql
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ └── Sqlsrv.php
│ │ │ │ ├── exception
│ │ │ │ │ ├── BindParamException.php
│ │ │ │ │ ├── DataNotFoundException.php
│ │ │ │ │ └── ModelNotFoundException.php
│ │ │ │ └── Query.php
│ │ │ ├── Db.php
│ │ │ ├── debug
│ │ │ │ ├── Console.php
│ │ │ │ └── Html.php
│ │ │ ├── Debug.php
│ │ │ ├── Env.php
│ │ │ ├── Error.php
│ │ │ ├── exception
│ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ ├── DbException.php
│ │ │ │ ├── ErrorException.php
│ │ │ │ ├── Handle.php
│ │ │ │ ├── HttpException.php
│ │ │ │ ├── HttpResponseException.php
│ │ │ │ ├── PDOException.php
│ │ │ │ ├── RouteNotFoundException.php
│ │ │ │ ├── TemplateNotFoundException.php
│ │ │ │ ├── ThrowableError.php
│ │ │ │ └── ValidateException.php
│ │ │ ├── Exception.php
│ │ │ ├── File.php
│ │ │ ├── Hook.php
│ │ │ ├── Lang.php
│ │ │ ├── Loader.php
│ │ │ ├── log
│ │ │ │ └── driver
│ │ │ │ ├── File.php
│ │ │ │ ├── Socket.php
│ │ │ │ └── Test.php
│ │ │ ├── Log.php
│ │ │ ├── model
│ │ │ │ ├── Collection.php
│ │ │ │ ├── Merge.php
│ │ │ │ ├── Pivot.php
│ │ │ │ ├── relation
│ │ │ │ │ ├── BelongsToMany.php
│ │ │ │ │ ├── BelongsTo.php
│ │ │ │ │ ├── HasMany.php
│ │ │ │ │ ├── HasManyThrough.php
│ │ │ │ │ ├── HasOne.php
│ │ │ │ │ ├── MorphMany.php
│ │ │ │ │ ├── MorphOne.php
│ │ │ │ │ ├── MorphTo.php
│ │ │ │ │ └── OneToOne.php
│ │ │ │ └── Relation.php
│ │ │ ├── Model.php
│ │ │ ├── paginator
│ │ │ │ └── driver
│ │ │ │ └── Bootstrap.php
│ │ │ ├── Paginator.php
│ │ │ ├── process
│ │ │ │ ├── Builder.php
│ │ │ │ ├── exception
│ │ │ │ │ ├── Failed.php
│ │ │ │ │ └── Timeout.php
│ │ │ │ ├── pipes
│ │ │ │ │ ├── Pipes.php
│ │ │ │ │ ├── Unix.php
│ │ │ │ │ └── Windows.php
│ │ │ │ └── Utils.php
│ │ │ ├── Process.php
│ │ │ ├── Request.php
│ │ │ ├── response
│ │ │ │ ├── Json.php
│ │ │ │ ├── Jsonp.php
│ │ │ │ ├── Redirect.php
│ │ │ │ ├── View.php
│ │ │ │ └── Xml.php
│ │ │ ├── Response.php
│ │ │ ├── Route.php
│ │ │ ├── session
│ │ │ │ └── driver
│ │ │ │ ├── Memcached.php
│ │ │ │ ├── Memcache.php
│ │ │ │ └── Redis.php
│ │ │ ├── Session.php
│ │ │ ├── template
│ │ │ │ ├── driver
│ │ │ │ │ └── File.php
│ │ │ │ ├── taglib
│ │ │ │ │ └── Cx.php
│ │ │ │ └── TagLib.php
│ │ │ ├── Template.php
│ │ │ ├── Url.php
│ │ │ ├── Validate.php
│ │ │ ├── view
│ │ │ │ └── driver
│ │ │ │ ├── Php.php
│ │ │ │ └── Think.php
│ │ │ └── View.php
│ │ └── traits
│ │ ├── controller
│ │ │ └── Jump.php
│ │ ├── model
│ │ │ └── SoftDelete.php
│ │ └── think
│ │ └── Instance.php
│ ├── LICENSE.txt
│ ├── logo.png
│ ├── phpunit.xml
│ ├── README.md
│ ├── start.php
│ └── tpl
│ ├── default_index.tpl
│ ├── dispatch_jump.tpl
│ ├── page_trace.tpl
│ └── think_exception.tpl
├── tiaozhuan
│ └── index.php
├── vendor
│ ├── autoload.php
│ ├── bacon
│ │ └── bacon-qr-code
│ │ ├── autoload_classmap.php
│ │ ├── autoload_function.php
│ │ ├── autoload_register.php
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── Module.php
│ │ ├── README.md
│ │ ├── src
│ │ │ └── BaconQrCode
│ │ │ ├── Common
│ │ │ │ ├── AbstractEnum.php
│ │ │ │ ├── BitArray.php
│ │ │ │ ├── BitMatrix.php
│ │ │ │ ├── BitUtils.php
│ │ │ │ ├── CharacterSetEci.php
│ │ │ │ ├── EcBlock.php
│ │ │ │ ├── EcBlocks.php
│ │ │ │ ├── ErrorCorrectionLevel.php
│ │ │ │ ├── FormatInformation.php
│ │ │ │ ├── Mode.php
│ │ │ │ ├── ReedSolomonCodec.php
│ │ │ │ └── Version.php
│ │ │ ├── Encoder
│ │ │ │ ├── BlockPair.php
│ │ │ │ ├── ByteMatrix.php
│ │ │ │ ├── Encoder.php
│ │ │ │ ├── MaskUtil.php
│ │ │ │ ├── MatrixUtil.php
│ │ │ │ └── QrCode.php
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── OutOfBoundsException.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ ├── UnexpectedValueException.php
│ │ │ │ └── WriterException.php
│ │ │ ├── Renderer
│ │ │ │ ├── Color
│ │ │ │ │ ├── Cmyk.php
│ │ │ │ │ ├── ColorInterface.php
│ │ │ │ │ ├── Gray.php
│ │ │ │ │ └── Rgb.php
│ │ │ │ ├── Image
│ │ │ │ │ ├── AbstractRenderer.php
│ │ │ │ │ ├── Decorator
│ │ │ │ │ │ ├── DecoratorInterface.php
│ │ │ │ │ │ └── FinderPattern.php
│ │ │ │ │ ├── Eps.php
│ │ │ │ │ ├── Png.php
│ │ │ │ │ ├── RendererInterface.php
│ │ │ │ │ └── Svg.php
│ │ │ │ ├── RendererInterface.php
│ │ │ │ └── Text
│ │ │ │ ├── Html.php
│ │ │ │ └── Plain.php
│ │ │ └── Writer.php
│ │ └── tests
│ │ ├── BaconQrCode
│ │ │ ├── Common
│ │ │ │ ├── BitArrayTest.php
│ │ │ │ ├── BitMatrixTest.php
│ │ │ │ ├── BitUtilsTest.php
│ │ │ │ ├── ErrorCorrectionLevelTest.php
│ │ │ │ ├── FormatInformationTest.php
│ │ │ │ ├── ModeTest.php
│ │ │ │ ├── ReedSolomonCodecTest.php
│ │ │ │ └── VersionTest.php
│ │ │ ├── Encoder
│ │ │ │ ├── EncoderTest.php
│ │ │ │ ├── MaskUtilTest.php
│ │ │ │ └── MatrixUtilTest.php
│ │ │ └── Renderer
│ │ │ └── Text
│ │ │ ├── HtmlTest.php
│ │ │ └── TextTest.php
│ │ ├── bootstrap.php
│ │ └── phpunit.xml
│ ├── bin
│ │ ├── phpunit
│ │ └── phpunit.bat
│ ├── composer
│ │ ├── autoload_classmap.php
│ │ ├── autoload_files.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_real.php
│ │ ├── autoload_static.php
│ │ ├── ClassLoader.php
│ │ ├── installed.json
│ │ └── LICENSE
│ ├── composer.json
│ ├── composer.lock
│ ├── doctrine
│ │ └── instantiator
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── phpmd.xml.dist
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Doctrine
│ │ │ └── Instantiator
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ └── UnexpectedValueException.php
│ │ │ ├── InstantiatorInterface.php
│ │ │ └── Instantiator.php
│ │ └── tests
│ │ └── DoctrineTest
│ │ ├── InstantiatorPerformance
│ │ │ └── InstantiatorPerformanceEvent.php
│ │ ├── InstantiatorTest
│ │ │ ├── Exception
│ │ │ │ ├── InvalidArgumentExceptionTest.php
│ │ │ │ └── UnexpectedValueExceptionTest.php
│ │ │ └── InstantiatorTest.php
│ │ └── InstantiatorTestAsset
│ │ ├── AbstractClassAsset.php
│ │ ├── ArrayObjectAsset.php
│ │ ├── ExceptionAsset.php
│ │ ├── FinalExceptionAsset.php
│ │ ├── PharAsset.php
│ │ ├── PharExceptionAsset.php
│ │ ├── SerializableArrayObjectAsset.php
│ │ ├── SimpleSerializableAsset.php
│ │ ├── SimpleTraitAsset.php
│ │ ├── UnCloneableAsset.php
│ │ ├── UnserializeExceptionArrayObjectAsset.php
│ │ ├── WakeUpNoticesAsset.php
│ │ └── XMLReaderAsset.php
│ ├── endroid
│ │ └── qr-code
│ │ ├── assets
│ │ │ ├── noto_sans.otf
│ │ │ ├── open_sans.ttf
│ │ │ └── symfony.png
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── Bundle
│ │ │ │ └── QrCodeBundle
│ │ │ │ ├── Controller
│ │ │ │ │ └── QrCodeController.php
│ │ │ │ ├── DependencyInjection
│ │ │ │ │ ├── Compiler
│ │ │ │ │ │ └── WriterRegistryCompilerPass.php
│ │ │ │ │ ├── Configuration.php
│ │ │ │ │ └── EndroidQrCodeExtension.php
│ │ │ │ ├── EndroidQrCodeBundle.php
│ │ │ │ └── Resources
│ │ │ │ ├── config
│ │ │ │ │ ├── routing.yml
│ │ │ │ │ └── services.yml
│ │ │ │ └── views
│ │ │ │ └── QrCode
│ │ │ │ └── twigFunctions.html.twig
│ │ │ ├── ErrorCorrectionLevel.php
│ │ │ ├── Exception
│ │ │ │ ├── InvalidPathException.php
│ │ │ │ ├── InvalidWriterException.php
│ │ │ │ ├── MissingFunctionException.php
│ │ │ │ ├── QrCodeException.php
│ │ │ │ ├── UnsupportedExtensionException.php
│ │ │ │ └── ValidationException.php
│ │ │ ├── Factory
│ │ │ │ └── QrCodeFactory.php
│ │ │ ├── LabelAlignment.php
│ │ │ ├── QrCodeInterface.php
│ │ │ ├── QrCode.php
│ │ │ ├── StaticWriterRegistry.php
│ │ │ ├── Twig
│ │ │ │ └── Extension
│ │ │ │ └── QrCodeExtension.php
│ │ │ ├── Writer
│ │ │ │ ├── AbstractBaconWriter.php
│ │ │ │ ├── AbstractWriter.php
│ │ │ │ ├── BinaryWriter.php
│ │ │ │ ├── DebugWriter.php
│ │ │ │ ├── EpsWriter.php
│ │ │ │ ├── PngWriter.php
│ │ │ │ ├── SvgWriter.php
│ │ │ │ └── WriterInterface.php
│ │ │ ├── WriterRegistryInterface.php
│ │ │ └── WriterRegistry.php
│ │ └── tests
│ │ ├── Bundle
│ │ │ ├── app
│ │ │ │ ├── AppKernel.php
│ │ │ │ ├── bootstrap.php
│ │ │ │ └── config
│ │ │ │ ├── config.yml
│ │ │ │ └── routing.yml
│ │ │ ├── Controller
│ │ │ │ └── QrCodeControllerTest.php
│ │ │ └── EndroidQrCodeBundleTest.php
│ │ └── QrCodeTest.php
│ ├── guzzlehttp
│ │ ├── guzzle
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── ClientInterface.php
│ │ │ │ ├── Client.php
│ │ │ │ ├── Cookie
│ │ │ │ │ ├── CookieJarInterface.php
│ │ │ │ │ ├── CookieJar.php
│ │ │ │ │ ├── FileCookieJar.php
│ │ │ │ │ ├── SessionCookieJar.php
│ │ │ │ │ └── SetCookie.php
│ │ │ │ ├── Exception
│ │ │ │ │ ├── BadResponseException.php
│ │ │ │ │ ├── ClientException.php
│ │ │ │ │ ├── ConnectException.php
│ │ │ │ │ ├── GuzzleException.php
│ │ │ │ │ ├── RequestException.php
│ │ │ │ │ ├── SeekException.php
│ │ │ │ │ ├── ServerException.php
│ │ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ │ └── TransferException.php
│ │ │ │ ├── functions_include.php
│ │ │ │ ├── functions.php
│ │ │ │ ├── Handler
│ │ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ │ ├── CurlFactory.php
│ │ │ │ │ ├── CurlHandler.php
│ │ │ │ │ ├── CurlMultiHandler.php
│ │ │ │ │ ├── EasyHandle.php
│ │ │ │ │ ├── MockHandler.php
│ │ │ │ │ ├── Proxy.php
│ │ │ │ │ └── StreamHandler.php
│ │ │ │ ├── HandlerStack.php
│ │ │ │ ├── MessageFormatter.php
│ │ │ │ ├── Middleware.php
│ │ │ │ ├── Pool.php
│ │ │ │ ├── PrepareBodyMiddleware.php
│ │ │ │ ├── RedirectMiddleware.php
│ │ │ │ ├── RequestOptions.php
│ │ │ │ ├── RetryMiddleware.php
│ │ │ │ ├── TransferStats.php
│ │ │ │ └── UriTemplate.php
│ │ │ └── UPGRADING.md
│ │ ├── promises
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── AggregateException.php
│ │ │ ├── CancellationException.php
│ │ │ ├── Coroutine.php
│ │ │ ├── EachPromise.php
│ │ │ ├── FulfilledPromise.php
│ │ │ ├── functions_include.php
│ │ │ ├── functions.php
│ │ │ ├── PromiseInterface.php
│ │ │ ├── Promise.php
│ │ │ ├── PromisorInterface.php
│ │ │ ├── RejectedPromise.php
│ │ │ ├── RejectionException.php
│ │ │ ├── TaskQueueInterface.php
│ │ │ └── TaskQueue.php
│ │ └── psr7
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── AppendStream.php
│ │ ├── BufferStream.php
│ │ ├── CachingStream.php
│ │ ├── DroppingStream.php
│ │ ├── FnStream.php
│ │ ├── functions_include.php
│ │ ├── functions.php
│ │ ├── InflateStream.php
│ │ ├── LazyOpenStream.php
│ │ ├── LimitStream.php
│ │ ├── MessageTrait.php
│ │ ├── MultipartStream.php
│ │ ├── NoSeekStream.php
│ │ ├── PumpStream.php
│ │ ├── Request.php
│ │ ├── Response.php
│ │ ├── ServerRequest.php
│ │ ├── StreamDecoratorTrait.php
│ │ ├── Stream.php
│ │ ├── StreamWrapper.php
│ │ ├── UploadedFile.php
│ │ ├── UriNormalizer.php
│ │ ├── Uri.php
│ │ └── UriResolver.php
│ ├── khanamiryan
│ │ └── qrcode-detector-decoder
│ │ ├── composer.json
│ │ ├── lib
│ │ │ ├── Binarizer.php
│ │ │ ├── BinaryBitmap.php
│ │ │ ├── ChecksumException.php
│ │ │ ├── common
│ │ │ │ ├── AbstractEnum.php
│ │ │ │ ├── BitArray.php
│ │ │ │ ├── BitMatrix.php
│ │ │ │ ├── BitSource.php
│ │ │ │ ├── CharacterSetEci.php
│ │ │ │ ├── customFunctions.php
│ │ │ │ ├── DecoderResult.php
│ │ │ │ ├── DefaultGridSampler.php
│ │ │ │ ├── detector
│ │ │ │ │ ├── MathUtils.php
│ │ │ │ │ └── MonochromeRectangleDetector.php
│ │ │ │ ├── DetectorResult.php
│ │ │ │ ├── GlobalHistogramBinarizer.php
│ │ │ │ ├── GridSampler.php
│ │ │ │ ├── HybridBinarizer.php
│ │ │ │ ├── PerspectiveTransform.php
│ │ │ │ └── reedsolomon
│ │ │ │ ├── GenericGF.php
│ │ │ │ ├── GenericGFPoly.php
│ │ │ │ ├── ReedSolomonDecoder.php
│ │ │ │ └── ReedSolomonException.php
│ │ │ ├── FormatException.php
│ │ │ ├── GDLuminanceSource.php
│ │ │ ├── IMagickLuminanceSource.php
│ │ │ ├── LuminanceSource.php
│ │ │ ├── NotFoundException.php
│ │ │ ├── PlanarYUVLuminanceSource.php
│ │ │ ├── qrcode
│ │ │ │ ├── decoder
│ │ │ │ │ ├── BitMatrixParser.php
│ │ │ │ │ ├── DataBlock.php
│ │ │ │ │ ├── DataMask.php
│ │ │ │ │ ├── DecodedBitStreamParser.php
│ │ │ │ │ ├── Decoder.php
│ │ │ │ │ ├── ErrorCorrectionLevel.php
│ │ │ │ │ ├── FormatInformation.php
│ │ │ │ │ ├── Mode.php
│ │ │ │ │ └── Version.php
│ │ │ │ ├── detector
│ │ │ │ │ ├── AlignmentPatternFinder.php
│ │ │ │ │ ├── AlignmentPattern.php
│ │ │ │ │ ├── Detector.php
│ │ │ │ │ ├── FinderPatternFinder.php
│ │ │ │ │ ├── FinderPatternInfo.php
│ │ │ │ │ └── FinderPattern.php
│ │ │ │ └── QRCodeReader.php
│ │ │ ├── QrReader.php
│ │ │ ├── ReaderException.php
│ │ │ ├── Reader.php
│ │ │ ├── Result.php
│ │ │ ├── ResultPoint.php
│ │ │ └── RGBLuminanceSource.php
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ └── tests
│ │ ├── bootstrap.php
│ │ ├── qrcodes
│ │ │ └── hello_world.png
│ │ └── QrReaderTest.php
│ ├── myclabs
│ │ └── php-enum
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ └── Enum.php
│ ├── paragonie
│ │ └── random_compat
│ │ ├── build-phar.sh
│ │ ├── composer.json
│ │ ├── dist
│ │ │ ├── random_compat.phar.pubkey
│ │ │ └── random_compat.phar.pubkey.asc
│ │ ├── lib
│ │ │ ├── byte_safe_strings.php
│ │ │ ├── cast_to_int.php
│ │ │ ├── error_polyfill.php
│ │ │ ├── random_bytes_com_dotnet.php
│ │ │ ├── random_bytes_dev_urandom.php
│ │ │ ├── random_bytes_libsodium_legacy.php
│ │ │ ├── random_bytes_libsodium.php
│ │ │ ├── random_bytes_mcrypt.php
│ │ │ ├── random_int.php
│ │ │ └── random.php
│ │ ├── LICENSE
│ │ ├── other
│ │ │ └── build_phar.php
│ │ ├── psalm-autoload.php
│ │ └── psalm.xml
│ ├── phpdocumentor
│ │ ├── reflection-common
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── Element.php
│ │ │ ├── File.php
│ │ │ ├── Fqsen.php
│ │ │ ├── Location.php
│ │ │ ├── ProjectFactory.php
│ │ │ └── Project.php
│ │ ├── reflection-docblock
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── DocBlock
│ │ │ │ ├── DescriptionFactory.php
│ │ │ │ ├── Description.php
│ │ │ │ ├── ExampleFinder.php
│ │ │ │ ├── Serializer.php
│ │ │ │ ├── StandardTagFactory.php
│ │ │ │ ├── TagFactory.php
│ │ │ │ ├── Tag.php
│ │ │ │ └── Tags
│ │ │ │ ├── Author.php
│ │ │ │ ├── BaseTag.php
│ │ │ │ ├── Covers.php
│ │ │ │ ├── Deprecated.php
│ │ │ │ ├── Example.php
│ │ │ │ ├── Factory
│ │ │ │ │ ├── StaticMethod.php
│ │ │ │ │ └── Strategy.php
│ │ │ │ ├── Formatter
│ │ │ │ │ ├── AlignFormatter.php
│ │ │ │ │ └── PassthroughFormatter.php
│ │ │ │ ├── Formatter.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
│ │ │ ├── DocBlockFactoryInterface.php
│ │ │ ├── DocBlockFactory.php
│ │ │ └── DocBlock.php
│ │ └── type-resolver
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── FqsenResolver.php
│ │ ├── Type.php
│ │ ├── TypeResolver.php
│ │ └── Types
│ │ ├── Array_.php
│ │ ├── Boolean.php
│ │ ├── Callable_.php
│ │ ├── Compound.php
│ │ ├── ContextFactory.php
│ │ ├── Context.php
│ │ ├── Float_.php
│ │ ├── Integer.php
│ │ ├── Iterable_.php
│ │ ├── Mixed_.php
│ │ ├── Nullable.php
│ │ ├── Null_.php
│ │ ├── Object_.php
│ │ ├── Parent_.php
│ │ ├── Resource_.php
│ │ ├── Scalar.php
│ │ ├── Self_.php
│ │ ├── Static_.php
│ │ ├── String_.php
│ │ ├── This.php
│ │ └── Void_.php
│ ├── phpoffice
│ │ └── phpexcel
│ │ ├── changelog.txt
│ │ ├── Classes
│ │ │ ├── PHPExcel
│ │ │ │ ├── Autoloader.php
│ │ │ │ ├── CachedObjectStorage
│ │ │ │ │ ├── APC.php
│ │ │ │ │ ├── CacheBase.php
│ │ │ │ │ ├── DiscISAM.php
│ │ │ │ │ ├── ICache.php
│ │ │ │ │ ├── Igbinary.php
│ │ │ │ │ ├── Memcache.php
│ │ │ │ │ ├── MemoryGZip.php
│ │ │ │ │ ├── Memory.php
│ │ │ │ │ ├── MemorySerialized.php
│ │ │ │ │ ├── PHPTemp.php
│ │ │ │ │ ├── SQLite3.php
│ │ │ │ │ ├── SQLite.php
│ │ │ │ │ └── Wincache.php
│ │ │ │ ├── CachedObjectStorageFactory.php
│ │ │ │ ├── CalcEngine
│ │ │ │ │ ├── CyclicReferenceStack.php
│ │ │ │ │ └── Logger.php
│ │ │ │ ├── Calculation
│ │ │ │ │ ├── Database.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Engineering.php
│ │ │ │ │ ├── ExceptionHandler.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Financial.php
│ │ │ │ │ ├── FormulaParser.php
│ │ │ │ │ ├── FormulaToken.php
│ │ │ │ │ ├── functionlist.txt
│ │ │ │ │ ├── Function.php
│ │ │ │ │ ├── Functions.php
│ │ │ │ │ ├── Logical.php
│ │ │ │ │ ├── LookupRef.php
│ │ │ │ │ ├── MathTrig.php
│ │ │ │ │ ├── Statistical.php
│ │ │ │ │ ├── TextData.php
│ │ │ │ │ └── Token
│ │ │ │ │ └── Stack.php
│ │ │ │ ├── Calculation.php
│ │ │ │ ├── Cell
│ │ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ │ ├── DataType.php
│ │ │ │ │ ├── DataValidation.php
│ │ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ │ ├── Hyperlink.php
│ │ │ │ │ └── IValueBinder.php
│ │ │ │ ├── Cell.php
│ │ │ │ ├── Chart
│ │ │ │ │ ├── Axis.php
│ │ │ │ │ ├── DataSeries.php
│ │ │ │ │ ├── DataSeriesValues.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── GridLines.php
│ │ │ │ │ ├── Layout.php
│ │ │ │ │ ├── Legend.php
│ │ │ │ │ ├── PlotArea.php
│ │ │ │ │ ├── Properties.php
│ │ │ │ │ ├── Renderer
│ │ │ │ │ │ ├── jpgraph.php
│ │ │ │ │ │ └── PHP Charting Libraries.txt
│ │ │ │ │ └── Title.php
│ │ │ │ ├── Chart.php
│ │ │ │ ├── Comment.php
│ │ │ │ ├── DocumentProperties.php
│ │ │ │ ├── DocumentSecurity.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── HashTable.php
│ │ │ │ ├── Helper
│ │ │ │ │ └── HTML.php
│ │ │ │ ├── IComparable.php
│ │ │ │ ├── IOFactory.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
│ │ │ │ ├── NamedRange.php
│ │ │ │ ├── Reader
│ │ │ │ │ ├── Abstract.php
│ │ │ │ │ ├── CSV.php
│ │ │ │ │ ├── DefaultReadFilter.php
│ │ │ │ │ ├── Excel2003XML.php
│ │ │ │ │ ├── Excel2007
│ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ └── Theme.php
│ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ ├── Excel5
│ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ ├── MD5.php
│ │ │ │ │ │ └── RC4.php
│ │ │ │ │ ├── Excel5.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Gnumeric.php
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── IReader.php
│ │ │ │ │ ├── IReadFilter.php
│ │ │ │ │ ├── OOCalc.php
│ │ │ │ │ └── SYLK.php
│ │ │ │ ├── ReferenceHelper.php
│ │ │ │ ├── RichText
│ │ │ │ │ ├── ITextElement.php
│ │ │ │ │ ├── Run.php
│ │ │ │ │ └── TextElement.php
│ │ │ │ ├── RichText.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Shared
│ │ │ │ │ ├── CodePage.php
│ │ │ │ │ ├── Date.php
│ │ │ │ │ ├── Drawing.php
│ │ │ │ │ ├── Escher
│ │ │ │ │ │ ├── DgContainer
│ │ │ │ │ │ │ ├── SpgrContainer
│ │ │ │ │ │ │ │ └── SpContainer.php
│ │ │ │ │ │ │ └── SpgrContainer.php
│ │ │ │ │ │ ├── DgContainer.php
│ │ │ │ │ │ ├── DggContainer
│ │ │ │ │ │ │ ├── BstoreContainer
│ │ │ │ │ │ │ │ ├── BSE
│ │ │ │ │ │ │ │ │ └── Blip.php
│ │ │ │ │ │ │ │ └── BSE.php
│ │ │ │ │ │ │ └── BstoreContainer.php
│ │ │ │ │ │ └── DggContainer.php
│ │ │ │ │ ├── Escher.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
│ │ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ │ ├── PPS
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ └── Root.php
│ │ │ │ │ │ └── PPS.php
│ │ │ │ │ ├── OLE.php
│ │ │ │ │ ├── OLERead.php
│ │ │ │ │ ├── PasswordHasher.php
│ │ │ │ │ ├── PCLZip
│ │ │ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ │ │ ├── pclzip.lib.php
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── String.php
│ │ │ │ │ ├── TimeZone.php
│ │ │ │ │ ├── trend
│ │ │ │ │ │ ├── bestFitClass.php
│ │ │ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ │ │ ├── linearBestFitClass.php
│ │ │ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ │ │ ├── powerBestFitClass.php
│ │ │ │ │ │ └── trendClass.php
│ │ │ │ │ ├── XMLWriter.php
│ │ │ │ │ ├── ZipArchive.php
│ │ │ │ │ └── ZipStreamWrapper.php
│ │ │ │ ├── Style
│ │ │ │ │ ├── Alignment.php
│ │ │ │ │ ├── Border.php
│ │ │ │ │ ├── Borders.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Conditional.php
│ │ │ │ │ ├── Fill.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── NumberFormat.php
│ │ │ │ │ ├── Protection.php
│ │ │ │ │ └── Supervisor.php
│ │ │ │ ├── Style.php
│ │ │ │ ├── Worksheet
│ │ │ │ │ ├── AutoFilter
│ │ │ │ │ │ ├── Column
│ │ │ │ │ │ │ └── Rule.php
│ │ │ │ │ │ └── Column.php
│ │ │ │ │ ├── AutoFilter.php
│ │ │ │ │ ├── BaseDrawing.php
│ │ │ │ │ ├── CellIterator.php
│ │ │ │ │ ├── ColumnCellIterator.php
│ │ │ │ │ ├── ColumnDimension.php
│ │ │ │ │ ├── ColumnIterator.php
│ │ │ │ │ ├── Column.php
│ │ │ │ │ ├── Drawing
│ │ │ │ │ │ └── Shadow.php
│ │ │ │ │ ├── Drawing.php
│ │ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ │ ├── HeaderFooter.php
│ │ │ │ │ ├── MemoryDrawing.php
│ │ │ │ │ ├── PageMargins.php
│ │ │ │ │ ├── PageSetup.php
│ │ │ │ │ ├── Protection.php
│ │ │ │ │ ├── RowCellIterator.php
│ │ │ │ │ ├── RowDimension.php
│ │ │ │ │ ├── RowIterator.php
│ │ │ │ │ ├── Row.php
│ │ │ │ │ └── SheetView.php
│ │ │ │ ├── WorksheetIterator.php
│ │ │ │ ├── Worksheet.php
│ │ │ │ └── Writer
│ │ │ │ ├── Abstract.php
│ │ │ │ ├── CSV.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
│ │ │ │ ├── Excel2007.php
│ │ │ │ ├── Excel5
│ │ │ │ │ ├── BIFFwriter.php
│ │ │ │ │ ├── Escher.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Workbook.php
│ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ └── Xf.php
│ │ │ │ ├── Excel5.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── HTML.php
│ │ │ │ ├── IWriter.php
│ │ │ │ ├── OpenDocument
│ │ │ │ │ ├── Cell
│ │ │ │ │ │ └── Comment.php
│ │ │ │ │ ├── Content.php
│ │ │ │ │ ├── MetaInf.php
│ │ │ │ │ ├── Meta.php
│ │ │ │ │ ├── Mimetype.php
│ │ │ │ │ ├── Settings.php
│ │ │ │ │ ├── Styles.php
│ │ │ │ │ ├── Thumbnails.php
│ │ │ │ │ └── WriterPart.php
│ │ │ │ ├── OpenDocument.php
│ │ │ │ │ ├── Core.php
│ │ │ │ │ ├── DomPDF.php
│ │ │ │ │ ├── mPDF.php
│ │ │ │ │ └── tcPDF.php
│ │ │ │ └── PDF.php
│ │ │ └── PHPExcel.php
│ │ ├── composer.json
│ │ ├── Examples
│ │ │ ├── 01pharSimple.php
│ │ │ ├── 01simple-download-ods.php
│ │ │ ├── 01simple-download-pdf.php
│ │ │ ├── 01simple-download-xls.php
│ │ │ ├── 01simple-download-xlsx.php
│ │ │ ├── 01simplePCLZip.php
│ │ │ ├── 01simple.php
│ │ │ ├── 02types.php
│ │ │ ├── 02types-xls.php
│ │ │ ├── 03formulas.php
│ │ │ ├── 04printing.php
│ │ │ ├── 05featuredemo.inc.php
│ │ │ ├── 05featuredemo.php
│ │ │ ├── 06largescale.php
│ │ │ ├── 06largescale-with-cellcaching.php
│ │ │ ├── 06largescale-with-cellcaching-sqlite3.php
│ │ │ ├── 06largescale-with-cellcaching-sqlite.php
│ │ │ ├── 06largescale-xls.php
│ │ │ ├── 07readerPCLZip.php
│ │ │ ├── 07reader.php
│ │ │ ├── 08conditionalformatting2.php
│ │ │ ├── 08conditionalformatting.php
│ │ │ ├── 09pagebreaks.php
│ │ │ ├── 10autofilter.php
│ │ │ ├── 10autofilter-selection-1.php
│ │ │ ├── 10autofilter-selection-2.php
│ │ │ ├── 10autofilter-selection-display.php
│ │ │ ├── 11documentsecurity.php
│ │ │ ├── 11documentsecurity-xls.php
│ │ │ ├── 12cellProtection.php
│ │ │ ├── 13calculation.php
│ │ │ ├── 14excel5.php
│ │ │ ├── 15datavalidation.php
│ │ │ ├── 15datavalidation-xls.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.php
│ │ │ ├── 31docproperties_write-xls.php
│ │ │ ├── 32chartreadwrite.php
│ │ │ ├── 33chartcreate-area.php
│ │ │ ├── 33chartcreate-bar.php
│ │ │ ├── 33chartcreate-bar-stacked.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
│ │ │ ├── data
│ │ │ │ └── continents
│ │ │ │ ├── Africa.txt
│ │ │ │ ├── Asia.txt
│ │ │ │ ├── Europe.txt
│ │ │ │ ├── North America.txt
│ │ │ │ ├── Oceania.txt
│ │ │ │ └── South America.txt
│ │ │ ├── Excel2003XMLReader.php
│ │ │ ├── Excel2003XMLTest.xml
│ │ │ ├── GnumericReader.php
│ │ │ ├── GnumericTest.gnumeric
│ │ │ ├── images
│ │ │ │ ├── officelogo.jpg
│ │ │ │ ├── paid.png
│ │ │ │ ├── phpexcel_logo.gif
│ │ │ │ └── termsconditions.jpg
│ │ │ ├── OOCalcReaderPCLZip.php
│ │ │ ├── OOCalcReader.php
│ │ │ ├── OOCalcTest.ods
│ │ │ ├── Quadratic2.php
│ │ │ ├── Quadratic.php
│ │ │ ├── Quadratic.xlsx
│ │ │ ├── runall.php
│ │ │ ├── SylkReader.php
│ │ │ ├── SylkTest.slk
│ │ │ ├── templates
│ │ │ │ ├── 26template.xlsx
│ │ │ │ ├── 27template.xls
│ │ │ │ ├── 30template.xls
│ │ │ │ ├── 31docproperties.xls
│ │ │ │ ├── 31docproperties.xlsx
│ │ │ │ ├── 32chartreadwrite.xlsx
│ │ │ │ ├── 32complexChartreadwrite.xlsx
│ │ │ │ ├── 32readwriteAreaChart1.xlsx
│ │ │ │ ├── 32readwriteAreaChart2.xlsx
│ │ │ │ ├── 32readwriteAreaChart3D1.xlsx
│ │ │ │ ├── 32readwriteAreaChart3.xlsx
│ │ │ │ ├── 32readwriteAreaPercentageChart1.xlsx
│ │ │ │ ├── 32readwriteAreaPercentageChart2.xlsx
│ │ │ │ ├── 32readwriteAreaPercentageChart3D1.xlsx
│ │ │ │ ├── 32readwriteAreaStackedChart1.xlsx
│ │ │ │ ├── 32readwriteAreaStackedChart2.xlsx
│ │ │ │ ├── 32readwriteAreaStackedChart3D1.xlsx
│ │ │ │ ├── 32readwriteBarChart1.xlsx
│ │ │ │ ├── 32readwriteBarChart2.xlsx
│ │ │ │ ├── 32readwriteBarChart3D1.xlsx
│ │ │ │ ├── 32readwriteBarChart3.xlsx
│ │ │ │ ├── 32readwriteBarPercentageChart1.xlsx
│ │ │ │ ├── 32readwriteBarPercentageChart2.xlsx
│ │ │ │ ├── 32readwriteBarPercentageChart3D1.xlsx
│ │ │ │ ├── 32readwriteBarStackedChart1.xlsx
│ │ │ │ ├── 32readwriteBarStackedChart2.xlsx
│ │ │ │ ├── 32readwriteBarStackedChart3D1.xlsx
│ │ │ │ ├── 32readwriteBubbleChart1.xlsx
│ │ │ │ ├── 32readwriteBubbleChart3D1.xlsx
│ │ │ │ ├── 32readwriteChartWithImages1.xlsx
│ │ │ │ ├── 32readwriteColumnChart1.xlsx
│ │ │ │ ├── 32readwriteColumnChart2.xlsx
│ │ │ │ ├── 32readwriteColumnChart3D1.xlsx
│ │ │ │ ├── 32readwriteColumnChart3.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
│ │ │ │ ├── 32readwriteLineChart3D1.xlsx
│ │ │ │ ├── 32readwriteLineChart3.xlsx
│ │ │ │ ├── 32readwriteLineChartNoPointMarkers1.xlsx
│ │ │ │ ├── 32readwriteLinePercentageChart1.xlsx
│ │ │ │ ├── 32readwriteLinePercentageChart2.xlsx
│ │ │ │ ├── 32readwriteLineStackedChart1.xlsx
│ │ │ │ ├── 32readwriteLineStackedChart2.xlsx
│ │ │ │ ├── 32readwritePieChart1.xlsx
│ │ │ │ ├── 32readwritePieChart2.xlsx
│ │ │ │ ├── 32readwritePieChart3D1.xlsx
│ │ │ │ ├── 32readwritePieChart3.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
│ │ │ ├── XMLReader.php
│ │ │ └── XMLTest.xml
│ │ ├── install.txt
│ │ ├── license.md
│ │ └── unitTests
│ │ ├── bootstrap.php
│ │ ├── 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
│ │ ├── custom
│ │ │ ├── complexAssert.php
│ │ │ └── Complex.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
│ │ │ │ │ ├── ERFC.data
│ │ │ │ │ ├── ERF.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-16BE.xml
│ │ │ │ ├── XEETestInvalidUTF-16LE.xml
│ │ │ │ ├── XEETestInvalidUTF-16.xml
│ │ │ │ ├── XEETestInvalidUTF-8.xml
│ │ │ │ ├── XEETestValidUTF-16BE.xml
│ │ │ │ ├── XEETestValidUTF-16LE.xml
│ │ │ │ ├── XEETestValidUTF-16.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
│ ├── phpspec
│ │ └── prophecy
│ │ ├── CHANGES.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ └── Prophecy
│ │ ├── Argument
│ │ │ ├── ArgumentsWildcard.php
│ │ │ └── Token
│ │ │ ├── AnyValuesToken.php
│ │ │ ├── AnyValueToken.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
│ │ ├── Argument.php
│ │ ├── Call
│ │ │ ├── CallCenter.php
│ │ │ └── Call.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
│ │ │ ├── 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
│ │ │ ├── CallbackPrediction.php
│ │ │ ├── CallPrediction.php
│ │ │ ├── CallTimesPrediction.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
│ │ │ ├── RevealerInterface.php
│ │ │ └── Revealer.php
│ │ ├── Prophet.php
│ │ └── Util
│ │ ├── ExportUtil.php
│ │ └── StringUtil.php
│ ├── phpunit
│ │ ├── php-code-coverage
│ │ │ ├── build
│ │ │ │ └── travis-ci.xml
│ │ │ ├── build.xml
│ │ │ ├── ChangeLog-2.2.md
│ │ │ ├── composer.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── scripts
│ │ │ │ ├── auto_append.php
│ │ │ │ └── auto_prepend.php
│ │ │ ├── src
│ │ │ │ ├── CodeCoverage
│ │ │ │ │ ├── Driver
│ │ │ │ │ │ ├── HHVM.php
│ │ │ │ │ │ ├── PHPDBG.php
│ │ │ │ │ │ └── Xdebug.php
│ │ │ │ │ ├── Driver.php
│ │ │ │ │ ├── Exception
│ │ │ │ │ │ └── UnintentionallyCoveredCode.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Filter.php
│ │ │ │ │ ├── Report
│ │ │ │ │ │ ├── Clover.php
│ │ │ │ │ │ ├── Crap4j.php
│ │ │ │ │ │ ├── Factory.php
│ │ │ │ │ │ ├── HTML
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ └── Renderer.php
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ ├── Node
│ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ └── Iterator.php
│ │ │ │ │ │ ├── Node.php
│ │ │ │ │ │ ├── PHP.php
│ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ ├── XML
│ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ ├── File
│ │ │ │ │ │ │ │ ├── Coverage.php
│ │ │ │ │ │ │ │ ├── Method.php
│ │ │ │ │ │ │ │ ├── Report.php
│ │ │ │ │ │ │ │ └── Unit.php
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ ├── Node.php
│ │ │ │ │ │ │ ├── Project.php
│ │ │ │ │ │ │ ├── Tests.php
│ │ │ │ │ │ │ └── Totals.php
│ │ │ │ │ │ └── XML.php
│ │ │ │ │ ├── Util
│ │ │ │ │ │ └── InvalidArgumentHelper.php
│ │ │ │ │ └── Util.php
│ │ │ │ └── CodeCoverage.php
│ │ │ └── tests
│ │ │ ├── _files
│ │ │ │ ├── BankAccount-clover.xml
│ │ │ │ ├── BankAccount.php
│ │ │ │ ├── BankAccountTest.php
│ │ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ ├── CoverageClassTest.php
│ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ ├── CoverageNotPublicTest.php
│ │ │ │ ├── CoveragePrivateTest.php
│ │ │ │ ├── CoverageProtectedTest.php
│ │ │ │ ├── CoveragePublicTest.php
│ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ │ ├── CoveredClass.php
│ │ │ │ ├── CoveredFunction.php
│ │ │ │ ├── ignored-lines-clover.xml
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ │ │ ├── CodeCoverage
│ │ │ │ │ ├── FilterTest.php
│ │ │ │ │ ├── Report
│ │ │ │ │ │ ├── CloverTest.php
│ │ │ │ │ │ └── FactoryTest.php
│ │ │ │ │ └── UtilTest.php
│ │ │ │ └── CodeCoverageTest.php
│ │ │ └── TestCase.php
│ │ ├── php-file-iterator
│ │ │ ├── ChangeLog.md
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── Facade.php
│ │ │ ├── Factory.php
│ │ │ └── Iterator.php
│ │ ├── php-text-template
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ └── Template.php
│ │ ├── php-timer
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ └── Timer.php
│ │ │ └── tests
│ │ │ └── TimerTest.php
│ │ ├── php-token-stream
│ │ │ ├── build
│ │ │ │ └── phpunit.xml
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Token
│ │ │ │ │ ├── Stream
│ │ │ │ │ │ └── CachingFactory.php
│ │ │ │ │ └── Stream.php
│ │ │ │ └── Token.php
│ │ │ └── tests
│ │ │ ├── bootstrap.php
│ │ │ ├── _fixture
│ │ │ │ ├── classExtendsNamespacedClass.php
│ │ │ │ ├── classInNamespace.php
│ │ │ │ ├── classInScopedNamespace.php
│ │ │ │ ├── classUsesNamespacedFunction.php
│ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ │ ├── closure.php
│ │ │ │ ├── issue19.php
│ │ │ │ ├── issue30.php
│ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ │ ├── source2.php
│ │ │ │ ├── source3.php
│ │ │ │ ├── source4.php
│ │ │ │ ├── source5.php
│ │ │ │ └── source.php
│ │ │ ├── Token
│ │ │ │ ├── ClassTest.php
│ │ │ │ ├── ClosureTest.php
│ │ │ │ ├── FunctionTest.php
│ │ │ │ ├── IncludeTest.php
│ │ │ │ ├── InterfaceTest.php
│ │ │ │ └── NamespaceTest.php
│ │ │ └── TokenTest.php
│ │ ├── phpunit
│ │ │ ├── build.xml
│ │ │ ├── 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
│ │ │ ├── CODE_OF_CONDUCT.md
│ │ │ ├── composer.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── phpunit
│ │ │ ├── phpunit.xml
│ │ │ ├── phpunit.xsd
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Extensions
│ │ │ │ │ ├── GroupTestSuite.php
│ │ │ │ │ ├── PhptTestCase.php
│ │ │ │ │ ├── PhptTestSuite.php
│ │ │ │ │ ├── RepeatedTest.php
│ │ │ │ │ ├── TestDecorator.php
│ │ │ │ │ └── TicketListener.php
│ │ │ │ ├── ForwardCompatibility
│ │ │ │ │ ├── AssertionFailedError.php
│ │ │ │ │ ├── Assert.php
│ │ │ │ │ ├── BaseTestListener.php
│ │ │ │ │ ├── TestCase.php
│ │ │ │ │ ├── TestListener.php
│ │ │ │ │ ├── Test.php
│ │ │ │ │ └── TestSuite.php
│ │ │ │ ├── Framework
│ │ │ │ │ ├── Assert
│ │ │ │ │ │ └── Functions.php
│ │ │ │ │ ├── AssertionFailedError.php
│ │ │ │ │ ├── Assert.php
│ │ │ │ │ ├── BaseTestListener.php
│ │ │ │ │ ├── CodeCoverageException.php
│ │ │ │ │ ├── Constraint
│ │ │ │ │ │ ├── And.php
│ │ │ │ │ │ ├── ArrayHasKey.php
│ │ │ │ │ │ ├── ArraySubset.php
│ │ │ │ │ │ ├── Attribute.php
│ │ │ │ │ │ ├── Callback.php
│ │ │ │ │ │ ├── ClassHasAttribute.php
│ │ │ │ │ │ ├── ClassHasStaticAttribute.php
│ │ │ │ │ │ ├── Composite.php
│ │ │ │ │ │ ├── Count.php
│ │ │ │ │ │ ├── ExceptionCode.php
│ │ │ │ │ │ ├── ExceptionMessage.php
│ │ │ │ │ │ ├── ExceptionMessageRegExp.php
│ │ │ │ │ │ ├── Exception.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
│ │ │ │ │ │ │ └── ErrorMessageProvider.php
│ │ │ │ │ │ ├── JsonMatches.php
│ │ │ │ │ │ ├── LessThan.php
│ │ │ │ │ │ ├── Not.php
│ │ │ │ │ │ ├── ObjectHasAttribute.php
│ │ │ │ │ │ ├── Or.php
│ │ │ │ │ │ ├── PCREMatch.php
│ │ │ │ │ │ ├── SameSize.php
│ │ │ │ │ │ ├── StringContains.php
│ │ │ │ │ │ ├── StringEndsWith.php
│ │ │ │ │ │ ├── StringMatches.php
│ │ │ │ │ │ ├── StringStartsWith.php
│ │ │ │ │ │ ├── TraversableContainsOnly.php
│ │ │ │ │ │ ├── TraversableContains.php
│ │ │ │ │ │ └── Xor.php
│ │ │ │ │ ├── Constraint.php
│ │ │ │ │ ├── Error
│ │ │ │ │ │ ├── Deprecated.php
│ │ │ │ │ │ ├── Notice.php
│ │ │ │ │ │ └── Warning.php
│ │ │ │ │ ├── Error.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── ExceptionWrapper.php
│ │ │ │ │ ├── ExpectationFailedException.php
│ │ │ │ │ ├── IncompleteTestCase.php
│ │ │ │ │ ├── IncompleteTestError.php
│ │ │ │ │ ├── IncompleteTest.php
│ │ │ │ │ ├── InvalidCoversTargetError.php
│ │ │ │ │ ├── InvalidCoversTargetException.php
│ │ │ │ │ ├── OutputError.php
│ │ │ │ │ ├── RiskyTestError.php
│ │ │ │ │ ├── RiskyTest.php
│ │ │ │ │ ├── SelfDescribing.php
│ │ │ │ │ ├── SkippedTestCase.php
│ │ │ │ │ ├── SkippedTestError.php
│ │ │ │ │ ├── SkippedTest.php
│ │ │ │ │ ├── SkippedTestSuiteError.php
│ │ │ │ │ ├── SyntheticError.php
│ │ │ │ │ ├── TestCase.php
│ │ │ │ │ ├── TestFailure.php
│ │ │ │ │ ├── TestListener.php
│ │ │ │ │ ├── Test.php
│ │ │ │ │ ├── TestResult.php
│ │ │ │ │ ├── TestSuite
│ │ │ │ │ │ └── DataProvider.php
│ │ │ │ │ ├── TestSuite.php
│ │ │ │ │ ├── UnintentionallyCoveredCodeError.php
│ │ │ │ │ └── Warning.php
│ │ │ │ ├── Runner
│ │ │ │ │ ├── BaseTestRunner.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Filter
│ │ │ │ │ │ ├── Factory.php
│ │ │ │ │ │ ├── Group
│ │ │ │ │ │ │ ├── Exclude.php
│ │ │ │ │ │ │ └── Include.php
│ │ │ │ │ │ ├── Group.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
│ │ │ │ │ ├── Default.php
│ │ │ │ │ ├── eval-stdin.php
│ │ │ │ │ ├── Template
│ │ │ │ │ │ └── TestCaseMethod.tpl.dist
│ │ │ │ │ └── Windows.php
│ │ │ │ ├── PHP.php
│ │ │ │ ├── Printer.php
│ │ │ │ ├── Regex.php
│ │ │ │ ├── String.php
│ │ │ │ ├── TestDox
│ │ │ │ │ ├── NamePrettifier.php
│ │ │ │ │ ├── ResultPrinter
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ └── Text.php
│ │ │ │ │ └── ResultPrinter.php
│ │ │ │ ├── Test.php
│ │ │ │ ├── TestSuiteIterator.php
│ │ │ │ ├── Type.php
│ │ │ │ └── XML.php
│ │ │ └── tests
│ │ │ ├── bootstrap.php
│ │ │ ├── Extensions
│ │ │ │ ├── PhptTestCaseTest.php
│ │ │ │ └── RepeatedTestTest.php
│ │ │ ├── Fail
│ │ │ │ └── fail.phpt
│ │ │ ├── _files
│ │ │ │ ├── AbstractTest.php
│ │ │ │ ├── Author.php
│ │ │ │ ├── BankAccount.php
│ │ │ │ ├── BankAccountTest.php
│ │ │ │ ├── BankAccountTest.test.php
│ │ │ │ ├── bar.xml
│ │ │ │ ├── BaseTestListenerSample.php
│ │ │ │ ├── BeforeAndAfterTest.php
│ │ │ │ ├── BeforeClassAndAfterClassTest.php
│ │ │ │ ├── Book.php
│ │ │ │ ├── Calculator.php
│ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php
│ │ │ │ ├── ClassWithNonPublicAttributes.php
│ │ │ │ ├── ClassWithScalarTypeDeclarations.php
│ │ │ │ ├── ClassWithToString.php
│ │ │ │ ├── ConcreteTest.my.php
│ │ │ │ ├── ConcreteTest.php
│ │ │ │ ├── configuration.colors.empty.xml
│ │ │ │ ├── configuration.colors.false.xml
│ │ │ │ ├── configuration.colors.invalid.xml
│ │ │ │ ├── configuration.colors.true.xml
│ │ │ │ ├── configuration.custom-printer.xml
│ │ │ │ ├── configuration_empty.xml
│ │ │ │ ├── configuration_xinclude.xml
│ │ │ │ ├── configuration.xml
│ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ ├── CoverageClassTest.php
│ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ ├── CoverageNamespacedFunctionTest.php
│ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ ├── CoverageNotPublicTest.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
│ │ │ │ ├── expectedFileFormat.txt
│ │ │ │ ├── Failure.php
│ │ │ │ ├── FailureTest.php
│ │ │ │ ├── FatalTest.php
│ │ │ │ ├── foo.xml
│ │ │ │ ├── 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
│ │ │ │ ├── NonStatic.php
│ │ │ │ ├── NoTestCaseClass.php
│ │ │ │ ├── NoTestCases.php
│ │ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ │ ├── NothingTest.php
│ │ │ │ ├── NotPublicTestCase.php
│ │ │ │ ├── NotVoidTestCase.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
│ │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml
│ │ │ │ ├── structureExpected.xml
│ │ │ │ ├── structureIgnoreTextNodes.xml
│ │ │ │ ├── structureIsSameButDataIsNot.xml
│ │ │ │ ├── structureWrongNumberOfAttributes.xml
│ │ │ │ ├── structureWrongNumberOfNodes.xml
│ │ │ │ ├── Success.php
│ │ │ │ ├── TemplateMethodsTest.php
│ │ │ │ ├── TestIncomplete.php
│ │ │ │ ├── TestIterator2.php
│ │ │ │ ├── TestIterator.php
│ │ │ │ ├── TestSkipped.php
│ │ │ │ ├── TestTestError.php
│ │ │ │ ├── TestWithTest.php
│ │ │ │ ├── ThrowExceptionTestCase.php
│ │ │ │ ├── ThrowNoExceptionTestCase.php
│ │ │ │ └── WasRun.php
│ │ │ ├── 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
│ │ │ │ │ ├── 1149
│ │ │ │ │ │ └── Issue1149Test.php
│ │ │ │ │ ├── 1149.phpt
│ │ │ │ │ ├── 1216
│ │ │ │ │ │ ├── bootstrap1216.php
│ │ │ │ │ │ ├── Issue1216Test.php
│ │ │ │ │ │ └── phpunit1216.xml
│ │ │ │ │ ├── 1216.phpt
│ │ │ │ │ ├── 1265
│ │ │ │ │ │ ├── Issue1265Test.php
│ │ │ │ │ │ └── phpunit1265.xml
│ │ │ │ │ ├── 1265.phpt
│ │ │ │ │ ├── 1330
│ │ │ │ │ │ ├── Issue1330Test.php
│ │ │ │ │ │ └── phpunit1330.xml
│ │ │ │ │ ├── 1330.phpt
│ │ │ │ │ ├── 1335
│ │ │ │ │ │ ├── bootstrap1335.php
│ │ │ │ │ │ └── Issue1335Test.php
│ │ │ │ │ ├── 1335.phpt
│ │ │ │ │ ├── 1337
│ │ │ │ │ │ └── Issue1337Test.php
│ │ │ │ │ ├── 1337.phpt
│ │ │ │ │ ├── 1348
│ │ │ │ │ │ └── Issue1348Test.php
│ │ │ │ │ ├── 1348.phpt
│ │ │ │ │ ├── 1351
│ │ │ │ │ │ ├── ChildProcessClass1351.php
│ │ │ │ │ │ └── Issue1351Test.php
│ │ │ │ │ ├── 1351.phpt
│ │ │ │ │ ├── 1374
│ │ │ │ │ │ └── Issue1374Test.php
│ │ │ │ │ ├── 1374.phpt
│ │ │ │ │ ├── 1437
│ │ │ │ │ │ └── Issue1437Test.php
│ │ │ │ │ ├── 1437.phpt
│ │ │ │ │ ├── 1468
│ │ │ │ │ │ └── Issue1468Test.php
│ │ │ │ │ ├── 1468.phpt
│ │ │ │ │ ├── 1471
│ │ │ │ │ │ └── Issue1471Test.php
│ │ │ │ │ ├── 1471.phpt
│ │ │ │ │ ├── 1472
│ │ │ │ │ │ └── Issue1472Test.php
│ │ │ │ │ ├── 1472.phpt
│ │ │ │ │ ├── 1570
│ │ │ │ │ │ └── Issue1570Test.php
│ │ │ │ │ ├── 1570.phpt
│ │ │ │ │ ├── 2158
│ │ │ │ │ │ ├── constant.inc
│ │ │ │ │ │ └── Issue2158Test.php
│ │ │ │ │ ├── 2158.phpt
│ │ │ │ │ ├── 244
│ │ │ │ │ │ └── Issue244Test.php
│ │ │ │ │ ├── 244.phpt
│ │ │ │ │ ├── 322
│ │ │ │ │ │ ├── Issue322Test.php
│ │ │ │ │ │ └── phpunit322.xml
│ │ │ │ │ ├── 322.phpt
│ │ │ │ │ ├── 433
│ │ │ │ │ │ └── Issue433Test.php
│ │ │ │ │ ├── 433.phpt
│ │ │ │ │ ├── 445
│ │ │ │ │ │ └── Issue445Test.php
│ │ │ │ │ ├── 445.phpt
│ │ │ │ │ ├── 498
│ │ │ │ │ │ └── Issue498Test.php
│ │ │ │ │ ├── 498.phpt
│ │ │ │ │ ├── 503
│ │ │ │ │ │ └── Issue503Test.php
│ │ │ │ │ ├── 503.phpt
│ │ │ │ │ ├── 581
│ │ │ │ │ │ └── Issue581Test.php
│ │ │ │ │ ├── 581.phpt
│ │ │ │ │ ├── 74
│ │ │ │ │ │ ├── Issue74Test.php
│ │ │ │ │ │ └── NewException.php
│ │ │ │ │ ├── 74.phpt
│ │ │ │ │ ├── 765
│ │ │ │ │ │ └── Issue765Test.php
│ │ │ │ │ ├── 765.phpt
│ │ │ │ │ ├── 797
│ │ │ │ │ │ ├── bootstrap797.php
│ │ │ │ │ │ └── Issue797Test.php
│ │ │ │ │ ├── 797.phpt
│ │ │ │ │ ├── 863.phpt
│ │ │ │ │ ├── 873
│ │ │ │ │ │ └── Issue873Test.php
│ │ │ │ │ ├── 873-php5.phpt
│ │ │ │ │ └── 873-php7.phpt
│ │ │ │ └── Trac
│ │ │ │ ├── 1021
│ │ │ │ │ └── Issue1021Test.php
│ │ │ │ ├── 1021.phpt
│ │ │ │ ├── 523
│ │ │ │ │ └── Issue523Test.php
│ │ │ │ ├── 523.phpt
│ │ │ │ ├── 578
│ │ │ │ │ └── Issue578Test.php
│ │ │ │ ├── 578.phpt
│ │ │ │ ├── 684
│ │ │ │ │ └── Issue684Test.php
│ │ │ │ ├── 684.phpt
│ │ │ │ ├── 783
│ │ │ │ │ ├── ChildSuite.php
│ │ │ │ │ ├── OneTest.php
│ │ │ │ │ ├── ParentSuite.php
│ │ │ │ │ └── TwoTest.php
│ │ │ │ └── 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
│ │ │ │ ├── dependencies2-isolation.phpt
│ │ │ │ ├── dependencies2.phpt
│ │ │ │ ├── dependencies3-isolation.phpt
│ │ │ │ ├── dependencies3.phpt
│ │ │ │ ├── dependencies-isolation.phpt
│ │ │ │ ├── dependencies.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
│ │ │ │ ├── help2.phpt
│ │ │ │ ├── help.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
│ │ │ │ ├── testdox-html.phpt
│ │ │ │ ├── testdox.phpt
│ │ │ │ ├── testdox-text.phpt
│ │ │ │ ├── test-suffix-multiple.phpt
│ │ │ │ └── test-suffix-single.phpt
│ │ │ └── Util
│ │ │ ├── ConfigurationTest.php
│ │ │ ├── GetoptTest.php
│ │ │ ├── GlobalStateTest.php
│ │ │ ├── RegexTest.php
│ │ │ ├── TestDox
│ │ │ │ └── NamePrettifierTest.php
│ │ │ ├── TestTest.php
│ │ │ └── XMLTest.php
│ │ └── phpunit-mock-objects
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── 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
│ │ │ │ ├── mocked_class_method.tpl.dist
│ │ │ │ ├── mocked_class.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
│ │ │ ├── Generator.php
│ │ │ ├── Invocation
│ │ │ │ ├── Object.php
│ │ │ │ └── Static.php
│ │ │ ├── InvocationMocker.php
│ │ │ ├── Invocation.php
│ │ │ ├── Invokable.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
│ │ │ ├── Matcher.php
│ │ │ ├── MockBuilder.php
│ │ │ ├── MockObject.php
│ │ │ ├── Stub
│ │ │ │ ├── ConsecutiveCalls.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── MatcherCollection.php
│ │ │ │ ├── ReturnArgument.php
│ │ │ │ ├── ReturnCallback.php
│ │ │ │ ├── Return.php
│ │ │ │ ├── ReturnSelf.php
│ │ │ │ └── ReturnValueMap.php
│ │ │ ├── Stub.php
│ │ │ └── Verifiable.php
│ │ └── tests
│ │ ├── bootstrap.php
│ │ ├── _fixture
│ │ │ ├── AbstractMockTestClass.php
│ │ │ ├── AbstractTrait.php
│ │ │ ├── AnInterface.php
│ │ │ ├── AnotherInterface.php
│ │ │ ├── Bar.php
│ │ │ ├── ClassThatImplementsSerializable.php
│ │ │ ├── ClassWithStaticMethod.php
│ │ │ ├── Foo.php
│ │ │ ├── FunctionCallback.php
│ │ │ ├── GoogleSearch.wsdl
│ │ │ ├── InterfaceWithStaticMethod.php
│ │ │ ├── MethodCallbackByReference.php
│ │ │ ├── MethodCallback.php
│ │ │ ├── Mockable.php
│ │ │ ├── MockTestInterface.php
│ │ │ ├── PartialMockTestClass.php
│ │ │ ├── SingletonClass.php
│ │ │ ├── SomeClass.php
│ │ │ ├── StaticMockTestClass.php
│ │ │ └── TraversableMockTestInterface.php
│ │ ├── GeneratorTest.php
│ │ ├── MockBuilderTest.php
│ │ ├── MockObject
│ │ │ ├── 232.phpt
│ │ │ ├── abstract_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.phpt
│ │ │ ├── class_with_method_named_method.phpt
│ │ │ ├── class_with_method_with_variadic_arguments.phpt
│ │ │ ├── interface.phpt
│ │ │ ├── Invocation
│ │ │ │ ├── ObjectTest.php
│ │ │ │ └── StaticTest.php
│ │ │ ├── invocation_object_clone_object.phpt
│ │ │ ├── Matcher
│ │ │ │ └── ConsecutiveParametersTest.php
│ │ │ ├── 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_class.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_namespace.phpt
│ │ │ ├── wsdl_class_partial.phpt
│ │ │ └── wsdl_class.phpt
│ │ ├── MockObjectTest.php
│ │ └── ProxyObjectTest.php
│ ├── psr
│ │ └── http-message
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── MessageInterface.php
│ │ ├── RequestInterface.php
│ │ ├── ResponseInterface.php
│ │ ├── ServerRequestInterface.php
│ │ ├── StreamInterface.php
│ │ ├── UploadedFileInterface.php
│ │ └── UriInterface.php
│ ├── qiniu
│ │ └── php-sdk
│ │ ├── autoload.php
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── examples
│ │ │ ├── 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
│ │ │ ├── README.md
│ │ │ ├── rs_batch_change_mime.php
│ │ │ ├── rs_batch_change_type.php
│ │ │ ├── rs_batch_copy.php
│ │ │ ├── rs_batch_delete_after_days.php
│ │ │ ├── rs_batch_delete.php
│ │ │ ├── rs_batch_move.php
│ │ │ ├── rs_batch_stat.php
│ │ │ ├── rs_bucket_domains.php
│ │ │ ├── rs_buckets.php
│ │ │ ├── rs_change_mime.php
│ │ │ ├── rs_change_type.php
│ │ │ ├── rs_copy.php
│ │ │ ├── rs_delete_after_days.php
│ │ │ ├── rs_delete.php
│ │ │ ├── rs_download_urls.php
│ │ │ ├── rs_fetch.php
│ │ │ ├── rsf_list_bucket.php
│ │ │ ├── rsf_list_files.php
│ │ │ ├── rs_move.php
│ │ │ ├── rs_prefetch.php
│ │ │ ├── rs_stat.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
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Qiniu
│ │ │ ├── Auth.php
│ │ │ ├── Cdn
│ │ │ │ └── CdnManager.php
│ │ │ ├── Config.php
│ │ │ ├── Etag.php
│ │ │ ├── functions.php
│ │ │ ├── Http
│ │ │ │ ├── Client.php
│ │ │ │ ├── Error.php
│ │ │ │ ├── Request.php
│ │ │ │ └── Response.php
│ │ │ ├── Processing
│ │ │ │ ├── ImageUrlBuilder.php
│ │ │ │ ├── Operation.php
│ │ │ │ └── PersistentFop.php
│ │ │ ├── Storage
│ │ │ │ ├── BucketManager.php
│ │ │ │ ├── FormUploader.php
│ │ │ │ ├── ResumeUploader.php
│ │ │ │ └── UploadManager.php
│ │ │ └── Zone.php
│ │ ├── test-env.sh
│ │ └── tests
│ │ ├── bootstrap.php
│ │ └── 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
│ ├── sebastian
│ │ ├── comparator
│ │ │ ├── build
│ │ │ │ └── travis-ci.xml
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── ArrayComparator.php
│ │ │ │ ├── Comparator.php
│ │ │ │ ├── ComparisonFailure.php
│ │ │ │ ├── DateTimeComparator.php
│ │ │ │ ├── DOMNodeComparator.php
│ │ │ │ ├── DoubleComparator.php
│ │ │ │ ├── ExceptionComparator.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── MockObjectComparator.php
│ │ │ │ ├── NumericComparator.php
│ │ │ │ ├── ObjectComparator.php
│ │ │ │ ├── ResourceComparator.php
│ │ │ │ ├── ScalarComparator.php
│ │ │ │ ├── SplObjectStorageComparator.php
│ │ │ │ └── TypeComparator.php
│ │ │ └── tests
│ │ │ ├── ArrayComparatorTest.php
│ │ │ ├── autoload.php
│ │ │ ├── bootstrap.php
│ │ │ ├── DateTimeComparatorTest.php
│ │ │ ├── DOMNodeComparatorTest.php
│ │ │ ├── DoubleComparatorTest.php
│ │ │ ├── ExceptionComparatorTest.php
│ │ │ ├── FactoryTest.php
│ │ │ ├── _files
│ │ │ │ ├── Author.php
│ │ │ │ ├── Book.php
│ │ │ │ ├── ClassWithToString.php
│ │ │ │ ├── SampleClass.php
│ │ │ │ ├── Struct.php
│ │ │ │ ├── TestClassComparator.php
│ │ │ │ └── TestClass.php
│ │ │ ├── MockObjectComparatorTest.php
│ │ │ ├── NumericComparatorTest.php
│ │ │ ├── ObjectComparatorTest.php
│ │ │ ├── ResourceComparatorTest.php
│ │ │ ├── ScalarComparatorTest.php
│ │ │ ├── SplObjectStorageComparatorTest.php
│ │ │ └── TypeComparatorTest.php
│ │ ├── diff
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Chunk.php
│ │ │ │ ├── Differ.php
│ │ │ │ ├── Diff.php
│ │ │ │ ├── LCS
│ │ │ │ │ ├── LongestCommonSubsequence.php
│ │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ ├── Line.php
│ │ │ │ └── Parser.php
│ │ │ └── tests
│ │ │ ├── ChunkTest.php
│ │ │ ├── DifferTest.php
│ │ │ ├── DiffTest.php
│ │ │ ├── fixtures
│ │ │ │ ├── patch2.txt
│ │ │ │ └── patch.txt
│ │ │ ├── LCS
│ │ │ │ ├── LongestCommonSubsequenceTest.php
│ │ │ │ ├── MemoryEfficientImplementationTest.php
│ │ │ │ └── TimeEfficientImplementationTest.php
│ │ │ ├── LineTest.php
│ │ │ └── ParserTest.php
│ │ ├── environment
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Console.php
│ │ │ │ └── Runtime.php
│ │ │ └── tests
│ │ │ ├── ConsoleTest.php
│ │ │ └── RuntimeTest.php
│ │ ├── exporter
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ └── Exporter.php
│ │ │ └── tests
│ │ │ └── ExporterTest.php
│ │ ├── global-state
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Blacklist.php
│ │ │ │ ├── CodeExporter.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Restorer.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ └── Snapshot.php
│ │ │ └── tests
│ │ │ ├── BlacklistTest.php
│ │ │ ├── _fixture
│ │ │ │ ├── BlacklistedChildClass.php
│ │ │ │ ├── BlacklistedClass.php
│ │ │ │ ├── BlacklistedImplementor.php
│ │ │ │ ├── BlacklistedInterface.php
│ │ │ │ ├── SnapshotClass.php
│ │ │ │ ├── SnapshotDomDocument.php
│ │ │ │ ├── SnapshotFunctions.php
│ │ │ │ └── SnapshotTrait.php
│ │ │ └── SnapshotTest.php
│ │ ├── recursion-context
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Context.php
│ │ │ │ ├── Exception.php
│ │ │ │ └── InvalidArgumentException.php
│ │ │ └── tests
│ │ │ └── ContextTest.php
│ │ └── version
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ └── Version.php
│ ├── symfony
│ │ ├── dom-crawler
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── Crawler.php
│ │ │ ├── Field
│ │ │ │ ├── ChoiceFormField.php
│ │ │ │ ├── FileFormField.php
│ │ │ │ ├── FormField.php
│ │ │ │ ├── InputFormField.php
│ │ │ │ └── TextareaFormField.php
│ │ │ ├── FormFieldRegistry.php
│ │ │ ├── Form.php
│ │ │ ├── LICENSE
│ │ │ ├── Link.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ └── Tests
│ │ │ ├── CrawlerTest.php
│ │ │ ├── Field
│ │ │ │ ├── ChoiceFormFieldTest.php
│ │ │ │ ├── FileFormFieldTest.php
│ │ │ │ ├── FormFieldTestCase.php
│ │ │ │ ├── FormFieldTest.php
│ │ │ │ ├── InputFormFieldTest.php
│ │ │ │ └── TextareaFormFieldTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── no-extension
│ │ │ │ └── windows-1250.html
│ │ │ ├── FormTest.php
│ │ │ └── LinkTest.php
│ │ ├── inflector
│ │ │ ├── composer.json
│ │ │ ├── Inflector.php
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ └── Tests
│ │ │ └── InflectorTest.php
│ │ ├── options-resolver
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── Exception
│ │ │ │ ├── AccessException.php
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── InvalidOptionsException.php
│ │ │ │ ├── MissingOptionsException.php
│ │ │ │ ├── NoSuchOptionException.php
│ │ │ │ ├── OptionDefinitionException.php
│ │ │ │ └── UndefinedOptionsException.php
│ │ │ ├── LICENSE
│ │ │ ├── Options.php
│ │ │ ├── OptionsResolver.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ └── Tests
│ │ │ └── OptionsResolverTest.php
│ │ ├── polyfill-mbstring
│ │ │ ├── bootstrap.php
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── Mbstring.php
│ │ │ ├── README.md
│ │ │ └── Resources
│ │ │ └── unidata
│ │ │ ├── lowerCase.php
│ │ │ └── upperCase.php
│ │ ├── polyfill-php70
│ │ │ ├── bootstrap.php
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── Php70.php
│ │ │ ├── README.md
│ │ │ └── Resources
│ │ │ └── stubs
│ │ │ ├── ArithmeticError.php
│ │ │ ├── AssertionError.php
│ │ │ ├── DivisionByZeroError.php
│ │ │ ├── Error.php
│ │ │ ├── ParseError.php
│ │ │ ├── SessionUpdateTimestampHandlerInterface.php
│ │ │ └── TypeError.php
│ │ ├── property-access
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── Exception
│ │ │ │ ├── AccessException.php
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── InvalidPropertyPathException.php
│ │ │ │ ├── NoSuchIndexException.php
│ │ │ │ ├── NoSuchPropertyException.php
│ │ │ │ ├── OutOfBoundsException.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ └── UnexpectedTypeException.php
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── PropertyAccessorBuilder.php
│ │ │ ├── PropertyAccessorInterface.php
│ │ │ ├── PropertyAccessor.php
│ │ │ ├── PropertyAccess.php
│ │ │ ├── PropertyPathBuilder.php
│ │ │ ├── PropertyPathInterface.php
│ │ │ ├── PropertyPathIteratorInterface.php
│ │ │ ├── PropertyPathIterator.php
│ │ │ ├── PropertyPath.php
│ │ │ ├── README.md
│ │ │ ├── StringUtil.php
│ │ │ └── Tests
│ │ │ ├── Fixtures
│ │ │ │ ├── NonTraversableArrayObject.php
│ │ │ │ ├── ReturnTyped.php
│ │ │ │ ├── TestClassIsWritable.php
│ │ │ │ ├── TestClassMagicCall.php
│ │ │ │ ├── TestClassMagicGet.php
│ │ │ │ ├── TestClass.php
│ │ │ │ ├── TestClassSetValue.php
│ │ │ │ ├── TestClassTypeErrorInsideCall.php
│ │ │ │ ├── Ticket5775Object.php
│ │ │ │ ├── TraversableArrayObject.php
│ │ │ │ └── TypeHinted.php
│ │ │ ├── PropertyAccessorArrayAccessTest.php
│ │ │ ├── PropertyAccessorArrayObjectTest.php
│ │ │ ├── PropertyAccessorArrayTest.php
│ │ │ ├── PropertyAccessorBuilderTest.php
│ │ │ ├── PropertyAccessorCollectionTest.php
│ │ │ ├── PropertyAccessorNonTraversableArrayObjectTest.php
│ │ │ ├── PropertyAccessorTest.php
│ │ │ ├── PropertyAccessorTraversableArrayObjectTest.php
│ │ │ ├── PropertyPathBuilderTest.php
│ │ │ ├── PropertyPathTest.php
│ │ │ └── StringUtilTest.php
│ │ └── yaml
│ │ ├── CHANGELOG.md
│ │ ├── Command
│ │ │ └── LintCommand.php
│ │ ├── composer.json
│ │ ├── Dumper.php
│ │ ├── Escaper.php
│ │ ├── Exception
│ │ │ ├── DumpException.php
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── ParseException.php
│ │ │ └── RuntimeException.php
│ │ ├── Inline.php
│ │ ├── LICENSE
│ │ ├── Parser.php
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── Tag
│ │ │ └── TaggedValue.php
│ │ ├── Tests
│ │ │ ├── Command
│ │ │ │ └── LintCommandTest.php
│ │ │ ├── DumperTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── arrow.gif
│ │ │ │ ├── booleanMappingKeys.yml
│ │ │ │ ├── embededPhp.yml
│ │ │ │ ├── escapedCharacters.yml
│ │ │ │ ├── index.yml
│ │ │ │ ├── legacyBooleanMappingKeys.yml
│ │ │ │ ├── legacyNonStringKeys.yml
│ │ │ │ ├── legacyNullMappingKey.yml
│ │ │ │ ├── multiple_lines_as_literal_block.yml
│ │ │ │ ├── nonStringKeys.yml
│ │ │ │ ├── nullMappingKey.yml
│ │ │ │ ├── numericMappingKeys.yml
│ │ │ │ ├── sfComments.yml
│ │ │ │ ├── sfCompact.yml
│ │ │ │ ├── sfMergeKey.yml
│ │ │ │ ├── sfObjects.yml
│ │ │ │ ├── sfQuotes.yml
│ │ │ │ ├── sfTests.yml
│ │ │ │ ├── unindentedCollections.yml
│ │ │ │ ├── YtsAnchorAlias.yml
│ │ │ │ ├── YtsBasicTests.yml
│ │ │ │ ├── YtsBlockMapping.yml
│ │ │ │ ├── YtsDocumentSeparator.yml
│ │ │ │ ├── YtsErrorTests.yml
│ │ │ │ ├── YtsFlowCollections.yml
│ │ │ │ ├── YtsFoldedScalars.yml
│ │ │ │ ├── YtsNullsAndEmpties.yml
│ │ │ │ ├── YtsSpecificationExamples.yml
│ │ │ │ └── YtsTypeTransfers.yml
│ │ │ ├── InlineTest.php
│ │ │ ├── ParseExceptionTest.php
│ │ │ ├── ParserTest.php
│ │ │ └── YamlTest.php
│ │ ├── Unescaper.php
│ │ └── Yaml.php
│ ├── topthink
│ │ ├── think-captcha
│ │ │ ├── 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
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── CaptchaController.php
│ │ │ ├── Captcha.php
│ │ │ └── helper.php
│ │ ├── think-helper
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── Arr.php
│ │ │ ├── hash
│ │ │ │ ├── Bcrypt.php
│ │ │ │ └── Md5.php
│ │ │ ├── Hash.php
│ │ │ ├── helper.php
│ │ │ ├── Str.php
│ │ │ └── Time.php
│ │ ├── think-image
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── image
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ └── gif
│ │ │ │ │ ├── Decoder.php
│ │ │ │ │ ├── Encoder.php
│ │ │ │ │ └── Gif.php
│ │ │ │ └── Image.php
│ │ │ └── tests
│ │ │ ├── autoload.php
│ │ │ ├── CropTest.php
│ │ │ ├── FlipTest.php
│ │ │ ├── images
│ │ │ │ ├── test.bmp
│ │ │ │ ├── test.gif
│ │ │ │ ├── test.jpg
│ │ │ │ ├── test.png
│ │ │ │ └── test.ttf
│ │ │ ├── InfoTest.php
│ │ │ ├── RotateTest.php
│ │ │ ├── TestCase.php
│ │ │ ├── TextTest.php
│ │ │ ├── ThumbTest.php
│ │ │ ├── tmp
│ │ │ └── WaterTest.php
│ │ ├── think-installer
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── Plugin.php
│ │ │ ├── ThinkExtend.php
│ │ │ ├── ThinkFramework.php
│ │ │ └── ThinkTesting.php
│ │ ├── think-migration
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phinx
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ └── src
│ │ │ │ └── Phinx
│ │ │ │ ├── Db
│ │ │ │ │ ├── Adapter
│ │ │ │ │ │ ├── AdapterFactory.php
│ │ │ │ │ │ ├── AdapterInterface.php
│ │ │ │ │ │ ├── AdapterWrapper.php
│ │ │ │ │ │ ├── MysqlAdapter.php
│ │ │ │ │ │ ├── PdoAdapter.php
│ │ │ │ │ │ ├── PostgresAdapter.php
│ │ │ │ │ │ ├── ProxyAdapter.php
│ │ │ │ │ │ ├── SQLiteAdapter.php
│ │ │ │ │ │ ├── SqlServerAdapter.php
│ │ │ │ │ │ ├── TablePrefixAdapter.php
│ │ │ │ │ │ └── WrapperInterface.php
│ │ │ │ │ ├── Table
│ │ │ │ │ │ ├── Column.php
│ │ │ │ │ │ ├── ForeignKey.php
│ │ │ │ │ │ └── Index.php
│ │ │ │ │ └── Table.php
│ │ │ │ ├── Migration
│ │ │ │ │ ├── AbstractMigration.php
│ │ │ │ │ ├── AbstractTemplateCreation.php
│ │ │ │ │ ├── CreationInterface.php
│ │ │ │ │ ├── IrreversibleMigrationException.php
│ │ │ │ │ ├── MigrationInterface.php
│ │ │ │ │ └── Migration.template.php.dist
│ │ │ │ ├── Seed
│ │ │ │ │ ├── AbstractSeed.php
│ │ │ │ │ ├── SeedInterface.php
│ │ │ │ │ └── Seed.template.php.dist
│ │ │ │ └── Util
│ │ │ │ └── Util.php
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── command
│ │ │ │ ├── migrate
│ │ │ │ │ ├── Breakpoint.php
│ │ │ │ │ ├── Create.php
│ │ │ │ │ ├── Rollback.php
│ │ │ │ │ ├── Run.php
│ │ │ │ │ └── Status.php
│ │ │ │ ├── Migrate.php
│ │ │ │ ├── seed
│ │ │ │ │ ├── Create.php
│ │ │ │ │ └── Run.php
│ │ │ │ ├── Seed.php
│ │ │ │ └── stubs
│ │ │ │ ├── migrate.stub
│ │ │ │ └── seed.stub
│ │ │ ├── Command.php
│ │ │ ├── config.php
│ │ │ ├── db
│ │ │ │ ├── Column.php
│ │ │ │ └── Table.php
│ │ │ ├── Migrator.php
│ │ │ └── Seeder.php
│ │ ├── think-mongo
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── Builder.php
│ │ │ ├── Connection.php
│ │ │ └── Query.php
│ │ ├── think-queue
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── common.php
│ │ │ ├── config.php
│ │ │ ├── queue
│ │ │ │ ├── CallQueuedHandler.php
│ │ │ │ ├── command
│ │ │ │ │ ├── Listen.php
│ │ │ │ │ ├── Restart.php
│ │ │ │ │ ├── Subscribe.php
│ │ │ │ │ └── Work.php
│ │ │ │ ├── connector
│ │ │ │ │ ├── Database.php
│ │ │ │ │ ├── Redis.php
│ │ │ │ │ ├── Sync.php
│ │ │ │ │ └── Topthink.php
│ │ │ │ ├── Connector.php
│ │ │ │ ├── job
│ │ │ │ │ ├── Database.php
│ │ │ │ │ ├── Redis.php
│ │ │ │ │ ├── Sync.php
│ │ │ │ │ └── Topthink.php
│ │ │ │ ├── Job.php
│ │ │ │ ├── Listener.php
│ │ │ │ ├── Queueable.php
│ │ │ │ ├── ShouldQueue.php
│ │ │ │ └── Worker.php
│ │ │ └── Queue.php
│ │ └── think-testing
│ │ ├── composer.json
│ │ ├── README.md
│ │ └── src
│ │ ├── ApplicationTrait.php
│ │ ├── AssertionsTrait.php
│ │ ├── command
│ │ │ └── Test.php
│ │ ├── config.php
│ │ ├── CrawlerTrait.php
│ │ ├── HttpException.php
│ │ ├── InteractsWithPages.php
│ │ └── TestCase.php
│ ├── webmozart
│ │ └── assert
│ │ ├── appveyor.yml
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Assert.php
│ │ └── tests
│ │ └── AssertTest.php
│ └── yansongda
│ └── pay
│ ├── composer.json
│ ├── ISSUE_TEMPLATE.md
│ ├── LICENSE
│ ├── phpunit.xml
│ ├── README.md
│ ├── src
│ │ ├── Contracts
│ │ │ └── GatewayInterface.php
│ │ ├── Exceptions
│ │ │ ├── Exception.php
│ │ │ ├── GatewayException.php
│ │ │ └── InvalidArgumentException.php
│ │ ├── Gateways
│ │ │ ├── Alipay
│ │ │ │ ├── Alipay.php
│ │ │ │ ├── AppGateway.php
│ │ │ │ ├── PosGateway.php
│ │ │ │ ├── ScanGateway.php
│ │ │ │ ├── TransferGateway.php
│ │ │ │ ├── WapGateway.php
│ │ │ │ └── WebGateway.php
│ │ │ ├── AppGateway.php
│ │ │ ├── GroupredpackGateway.php
│ │ │ ├── MiniappGateway.php
│ │ │ ├── MpGateway.php
│ │ │ ├── PosGateway.php
│ │ │ ├── RedpackGateway.php
│ │ │ ├── ScanGateway.php
│ │ │ ├── TransferGateway.php
│ │ │ ├── WapGateway.php
│ │ │ └── Wechat.php
│ │ ├── Pay.php
│ │ ├── Support
│ │ │ └── Config.php
│ │ └── Traits
│ │ └── HasHttpRequest.php
│ └── tests
│ ├── Gateways
│ │ ├── Alipay
│ │ │ ├── AppGatewayTest.php
│ │ │ ├── WapGatewayTest.php
│ │ │ └── WebGatewayTest.php
│ │ ├── AppGatewayTest.php
│ │ ├── MiniappGatewayTest.php
│ │ ├── MpGatewayTest.php
│ │ ├── PosGatewayTest.php
│ │ ├── ScanGatewayTest.php
│ │ └── WapGatewayTest.php
│ ├── PayTest.php
│ ├── Support
│ │ └── ConfigTest.php
│ ├── TestCase.php
│ └── Traits
│ └── HasHttpRequestTest.php
├── 安装教程.txt
├── 安装教程.url
├── 安装说明.txt
├── 更多源码请点击.url
└── 防红跳转
├── index.php
└── 防红跳转教程.txt
1681 directories, 8152 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论