在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 基于thinkphp开发的简单的教学管理系统

基于thinkphp开发的简单的教学管理系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:11.04M
  • 下载次数:5
  • 浏览次数:86
  • 发布时间:2020-09-19
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
之前根据网上教程做的教学管理系统,这个修改过些内容,可能在下载后需要调整些,文章地址:https://blog.csdn.net/dhywjx/article/details/80712939
【实例截图】
【核心代码】
edu
└── edu
├── application
│   ├── command.php
│   ├── common.php
│   ├── config.php
│   ├── database.php
│   ├── extra
│   │   └── queue.php
│   ├── index
│   │   ├── config.php
│   │   ├── controller
│   │   │   ├── Base.php
│   │   │   ├── Grade.php
│   │   │   ├── Index.php
│   │   │   ├── Student.php
│   │   │   ├── Teacher.php
│   │   │   └── User.php
│   │   ├── model
│   │   │   ├── Grade.php
│   │   │   ├── Student.php
│   │   │   ├── Teacher.php
│   │   │   └── User.php
│   │   └── view
│   │   ├── grade
│   │   │   ├── grade_add.html
│   │   │   ├── grade_edit.html
│   │   │   └── grade_list.html
│   │   ├── index
│   │   │   └── index.html
│   │   ├── public
│   │   │   ├── base.html
│   │   │   ├── footer.html
│   │   │   ├── header.html
│   │   │   ├── menu.html
│   │   │   └── meta.html
│   │   ├── student
│   │   │   ├── student_add.html
│   │   │   ├── student_edit.html
│   │   │   └── student_list.html
│   │   ├── teacher
│   │   │   ├── teacher_add.html
│   │   │   ├── teacher_edit.html
│   │   │   └── teacher_list.html
│   │   └── user
│   │   ├── admin_add.html
│   │   ├── admin_edit.html
│   │   ├── admin_list.html
│   │   └── login.html
│   ├── route.php
│   └── tags.php
├── build.php
├── composer.json
├── composer.lock
├── config
│   └── database.php
├── edu.sql
├── extend
├── LICENSE.txt
├── phpunit.xml
├── public
│   ├── favicon.ico
│   ├── index.php
│   ├── phpinfo.php
│   ├── robots.txt
│   ├── router.php
│   └── static
│   ├── lib
│   │   ├── datatables
│   │   │   └── 1.10.0
│   │   │   └── jquery.dataTables.min.js
│   │   ├── DD_belatedPNG_0.0.8a-min.js
│   │   ├── echarts
│   │   │   └── 3.4.0
│   │   │   └── echarts.common.min.js
│   │   ├── expressInstall.swf
│   │   ├── hcharts
│   │   │   └── Highcharts
│   │   │   └── 5.0.6
│   │   │   ├── js
│   │   │   │   ├── highcharts-3d.js
│   │   │   │   ├── highcharts.js
│   │   │   │   ├── highcharts-more.js
│   │   │   │   ├── modules
│   │   │   │   │   ├── accessibility.js
│   │   │   │   │   ├── accessibility.src.js
│   │   │   │   │   ├── annotations.js
│   │   │   │   │   ├── annotations.src.js
│   │   │   │   │   ├── boost.js
│   │   │   │   │   ├── boost.src.js
│   │   │   │   │   ├── broken-axis.js
│   │   │   │   │   ├── broken-axis.src.js
│   │   │   │   │   ├── data.js
│   │   │   │   │   ├── data.src.js
│   │   │   │   │   ├── drilldown.js
│   │   │   │   │   ├── drilldown.src.js
│   │   │   │   │   ├── exporting.js
│   │   │   │   │   ├── exporting.src.js
│   │   │   │   │   ├── funnel.js
│   │   │   │   │   ├── funnel.src.js
│   │   │   │   │   ├── gantt.js
│   │   │   │   │   ├── gantt.src.js
│   │   │   │   │   ├── grid-axis.js
│   │   │   │   │   ├── grid-axis.src.js
│   │   │   │   │   ├── heatmap.js
│   │   │   │   │   ├── heatmap.src.js
│   │   │   │   │   ├── no-data-to-display.js
│   │   │   │   │   ├── no-data-to-display.src.js
│   │   │   │   │   ├── offline-exporting.js
│   │   │   │   │   ├── offline-exporting.src.js
│   │   │   │   │   ├── overlapping-datalabels.js
│   │   │   │   │   ├── overlapping-datalabels.src.js
│   │   │   │   │   ├── series-label.js
│   │   │   │   │   ├── series-label.src.js
│   │   │   │   │   ├── solid-gauge.js
│   │   │   │   │   ├── solid-gauge.src.js
│   │   │   │   │   ├── treemap.js
│   │   │   │   │   ├── treemap.src.js
│   │   │   │   │   ├── xrange-series.js
│   │   │   │   │   └── xrange-series.src.js
│   │   │   │   └── themes
│   │   │   │   ├── dark-blue.js
│   │   │   │   ├── dark-green.js
│   │   │   │   ├── dark-unica.js
│   │   │   │   ├── gray.js
│   │   │   │   ├── grid.js
│   │   │   │   ├── grid-light.js
│   │   │   │   ├── sand-signika.js
│   │   │   │   └── skies.js
│   │   │   ├── license.pdf
│   │   │   └── readme.txt
│   │   ├── html5shiv.js
│   │   ├── Hui-iconfont
│   │   │   └── 1.0.8
│   │   │   ├── demo.html
│   │   │   ├── iconfont.css
│   │   │   ├── iconfont.eot
│   │   │   ├── iconfont.min.css
│   │   │   ├── iconfont.svg
│   │   │   ├── iconfont.ttf
│   │   │   └── iconfont.woff
│   │   ├── jquery
│   │   │   └── 1.9.1
│   │   │   ├── jquery.js
│   │   │   └── jquery.min.js
│   │   ├── jquery.contextmenu
│   │   │   └── jquery.contextmenu.r2.js
│   │   ├── jquery.SuperSlide
│   │   │   └── 2.1.1
│   │   │   └── jquery.SuperSlide.min.js
│   │   ├── jquery.validation
│   │   │   └── 1.14.0
│   │   │   ├── additional-methods.js
│   │   │   ├── jquery.validate.js
│   │   │   ├── messages_zh.js
│   │   │   └── validate-methods.js
│   │   ├── jselect-1.0.js
│   │   ├── layer
│   │   │   └── 2.4
│   │   │   ├── layer.js
│   │   │   └── skin
│   │   │   ├── default
│   │   │   │   ├── icon-ext.png
│   │   │   │   ├── icon.png
│   │   │   │   ├── loading-0.gif
│   │   │   │   ├── loading-1.gif
│   │   │   │   └── loading-2.gif
│   │   │   └── layer.css
│   │   ├── laypage
│   │   │   └── 1.2
│   │   │   ├── laypage.js
│   │   │   └── skin
│   │   │   └── laypage.css
│   │   ├── lightbox2
│   │   │   └── 2.8.1
│   │   │   ├── css
│   │   │   │   └── lightbox.css
│   │   │   ├── examples.html
│   │   │   ├── images
│   │   │   │   ├── close.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── next.png
│   │   │   │   └── prev.png
│   │   │   └── js
│   │   │   ├── lightbox.js
│   │   │   ├── lightbox.min.js
│   │   │   ├── lightbox.min.map
│   │   │   ├── lightbox-plus-jquery.js
│   │   │   ├── lightbox-plus-jquery.min.js
│   │   │   └── lightbox-plus-jquery.min.map
│   │   ├── My97DatePicker
│   │   │   └── 4.8
│   │   │   ├── calendar.js
│   │   │   ├── lang
│   │   │   │   ├── en.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh-tw.js
│   │   │   ├── skin
│   │   │   │   ├── datePicker.gif
│   │   │   │   ├── default
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   ├── twoer
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   ├── datepicker-dev.css
│   │   │   │   │   ├── img.gif
│   │   │   │   │   └── img.png
│   │   │   │   ├── WdatePicker.css
│   │   │   │   └── whyGreen
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   └── WdatePicker.js
│   │   ├── nprogress
│   │   │   └── 0.2.0
│   │   │   ├── nprogress.css
│   │   │   ├── nprogress.js
│   │   │   ├── nprogress.min.css
│   │   │   └── nprogress.min.js
│   │   ├── respond.min.js
│   │   ├── squid.js
│   │   ├── swfobject.js
│   │   ├── ueditor
│   │   │   └── 1.4.3
│   │   │   ├── 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
│   │   │   ├── jsp
│   │   │   │   ├── config.json
│   │   │   │   ├── controller.jsp
│   │   │   │   ├── lib
│   │   │   │   │   ├── commons-codec-1.9.jar
│   │   │   │   │   ├── commons-fileupload-1.3.1.jar
│   │   │   │   │   ├── commons-io-2.4.jar
│   │   │   │   │   ├── json.jar
│   │   │   │   │   └── ueditor-1.1.1.jar
│   │   │   │   └── src
│   │   │   │   └── com
│   │   │   │   └── baidu
│   │   │   │   └── ueditor
│   │   │   │   ├── ActionEnter.java
│   │   │   │   ├── ConfigManager.java
│   │   │   │   ├── define
│   │   │   │   │   ├── ActionMap.java
│   │   │   │   │   ├── ActionState.java
│   │   │   │   │   ├── AppInfo.java
│   │   │   │   │   ├── BaseState.java
│   │   │   │   │   ├── FileType.java
│   │   │   │   │   ├── MIMEType.java
│   │   │   │   │   ├── MultiState.java
│   │   │   │   │   └── State.java
│   │   │   │   ├── Encoder.java
│   │   │   │   ├── hunter
│   │   │   │   │   ├── FileManager.java
│   │   │   │   │   └── ImageHunter.java
│   │   │   │   ├── PathFormat.java
│   │   │   │   └── upload
│   │   │   │   ├── Base64Uploader.java
│   │   │   │   ├── BinaryUploader.java
│   │   │   │   ├── StorageManager.java
│   │   │   │   └── Uploader.java
│   │   │   ├── 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
│   │   │   ├── net
│   │   │   │   ├── App_Code
│   │   │   │   │   ├── Config.cs
│   │   │   │   │   ├── ConfigHandler.cs
│   │   │   │   │   ├── CrawlerHandler.cs
│   │   │   │   │   ├── Handler.cs
│   │   │   │   │   ├── ListFileHandler.cs
│   │   │   │   │   ├── NotSupportedHandler.cs
│   │   │   │   │   ├── PathFormater.cs
│   │   │   │   │   └── UploadHandler.cs
│   │   │   │   ├── Bin
│   │   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   │   ├── Newtonsoft.Json.pdb
│   │   │   │   │   └── Newtonsoft.Json.xml
│   │   │   │   ├── config.json
│   │   │   │   ├── controller.ashx
│   │   │   │   ├── net.sln
│   │   │   │   ├── README.md
│   │   │   │   └── Web.config
│   │   │   ├── 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
│   │   │   │   └── 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
│   │   ├── webuploader
│   │   │   └── 0.1.5
│   │   │   ├── cropper
│   │   │   │   ├── cropper.js
│   │   │   │   ├── index.html
│   │   │   │   └── uploader.js
│   │   │   ├── expressInstall.swf
│   │   │   ├── images
│   │   │   │   ├── bg.png
│   │   │   │   ├── icons.png
│   │   │   │   ├── icons.psd
│   │   │   │   ├── image.png
│   │   │   │   ├── progress.png
│   │   │   │   ├── progress.psd
│   │   │   │   └── success.png
│   │   │   ├── image-upload
│   │   │   │   ├── index.html
│   │   │   │   └── upload.js
│   │   │   ├── md5-demo
│   │   │   │   ├── index.html
│   │   │   │   └── script.js
│   │   │   ├── README.md
│   │   │   ├── requirejs
│   │   │   │   ├── app.js
│   │   │   │   ├── index.html
│   │   │   │   └── require.js
│   │   │   ├── server
│   │   │   │   ├── crossdomain.xml
│   │   │   │   ├── fileupload2.php
│   │   │   │   ├── fileupload.php
│   │   │   │   └── preview.php
│   │   │   ├── Uploader.swf
│   │   │   ├── webuploader.css
│   │   │   ├── webuploader.custom.js
│   │   │   ├── webuploader.custom.min.js
│   │   │   ├── webuploader.fis.js
│   │   │   ├── webuploader.flashonly.js
│   │   │   ├── webuploader.flashonly.min.js
│   │   │   ├── webuploader.html5only.js
│   │   │   ├── webuploader.html5only.min.js
│   │   │   ├── webuploader.js
│   │   │   ├── webuploader.min.js
│   │   │   ├── webuploader.noimage.js
│   │   │   ├── webuploader.noimage.min.js
│   │   │   ├── webuploader.nolog.js
│   │   │   ├── webuploader.nolog.min.js
│   │   │   ├── webuploader.withoutimage.js
│   │   │   └── webuploader.withoutimage.min.js
│   │   └── zTree
│   │   └── v3
│   │   ├── api
│   │   │   ├── API_cn.html
│   │   │   ├── apiCss
│   │   │   │   ├── api.js
│   │   │   │   ├── common.css
│   │   │   │   ├── common_ie6.css
│   │   │   │   ├── img
│   │   │   │   │   ├── apiMenu.gif
│   │   │   │   │   ├── apiMenu.png
│   │   │   │   │   ├── background.jpg
│   │   │   │   │   ├── chinese.png
│   │   │   │   │   ├── close.png
│   │   │   │   │   ├── contact-bg.png
│   │   │   │   │   ├── english.png
│   │   │   │   │   ├── header-bg.png
│   │   │   │   │   ├── lightbulb.png
│   │   │   │   │   ├── overlay_arrow.gif
│   │   │   │   │   ├── overlay_arrow.png
│   │   │   │   │   ├── overlay_bg.png
│   │   │   │   │   ├── overlay_close_IE6.gif
│   │   │   │   │   ├── zTreeStandard.gif
│   │   │   │   │   └── zTreeStandard.png
│   │   │   │   ├── jquery-1.6.2.min.js
│   │   │   │   ├── jquery.ztree.core-3.5.js
│   │   │   │   └── zTreeStyleForApi.css
│   │   │   ├── API_en.html
│   │   │   ├── cn
│   │   │   │   ├── fn.zTree.destroy.html
│   │   │   │   ├── fn.zTree.getZTreeObj.html
│   │   │   │   ├── fn.zTree.init.html
│   │   │   │   ├── fn.zTree._z.html
│   │   │   │   ├── setting.async.autoParam.html
│   │   │   │   ├── setting.async.contentType.html
│   │   │   │   ├── setting.async.dataFilter.html
│   │   │   │   ├── setting.async.dataType.html
│   │   │   │   ├── setting.async.enable.html
│   │   │   │   ├── setting.async.otherParam.html
│   │   │   │   ├── setting.async.type.html
│   │   │   │   ├── setting.async.url.html
│   │   │   │   ├── setting.callback.beforeAsync.html
│   │   │   │   ├── setting.callback.beforeCheck.html
│   │   │   │   ├── setting.callback.beforeClick.html
│   │   │   │   ├── setting.callback.beforeCollapse.html
│   │   │   │   ├── setting.callback.beforeDblClick.html
│   │   │   │   ├── setting.callback.beforeDrag.html
│   │   │   │   ├── setting.callback.beforeDragOpen.html
│   │   │   │   ├── setting.callback.beforeDrop.html
│   │   │   │   ├── setting.callback.beforeEditName.html
│   │   │   │   ├── setting.callback.beforeExpand.html
│   │   │   │   ├── setting.callback.beforeMouseDown.html
│   │   │   │   ├── setting.callback.beforeMouseUp.html
│   │   │   │   ├── setting.callback.beforeRemove.html
│   │   │   │   ├── setting.callback.beforeRename.html
│   │   │   │   ├── setting.callback.beforeRightClick.html
│   │   │   │   ├── setting.callback.onAsyncError.html
│   │   │   │   ├── setting.callback.onAsyncSuccess.html
│   │   │   │   ├── setting.callback.onCheck.html
│   │   │   │   ├── setting.callback.onClick.html
│   │   │   │   ├── setting.callback.onCollapse.html
│   │   │   │   ├── setting.callback.onDblClick.html
│   │   │   │   ├── setting.callback.onDrag.html
│   │   │   │   ├── setting.callback.onDragMove.html
│   │   │   │   ├── setting.callback.onDrop.html
│   │   │   │   ├── setting.callback.onExpand.html
│   │   │   │   ├── setting.callback.onMouseDown.html
│   │   │   │   ├── setting.callback.onMouseUp.html
│   │   │   │   ├── setting.callback.onNodeCreated.html
│   │   │   │   ├── setting.callback.onRemove.html
│   │   │   │   ├── setting.callback.onRename.html
│   │   │   │   ├── setting.callback.onRightClick.html
│   │   │   │   ├── setting.check.autoCheckTrigger.html
│   │   │   │   ├── setting.check.chkboxType.html
│   │   │   │   ├── setting.check.chkDisabledInherit.html
│   │   │   │   ├── setting.check.chkStyle.html
│   │   │   │   ├── setting.check.enable.html
│   │   │   │   ├── setting.check.nocheckInherit.html
│   │   │   │   ├── setting.check.radioType.html
│   │   │   │   ├── setting.data.keep.leaf.html
│   │   │   │   ├── setting.data.keep.parent.html
│   │   │   │   ├── setting.data.key.checked.html
│   │   │   │   ├── setting.data.key.children.html
│   │   │   │   ├── setting.data.key.name.html
│   │   │   │   ├── setting.data.key.title.html
│   │   │   │   ├── setting.data.key.url.html
│   │   │   │   ├── setting.data.simpleData.enable.html
│   │   │   │   ├── setting.data.simpleData.idKey.html
│   │   │   │   ├── setting.data.simpleData.pIdKey.html
│   │   │   │   ├── setting.data.simpleData.rootPId.html
│   │   │   │   ├── setting.edit.drag.autoExpandTrigger.html
│   │   │   │   ├── setting.edit.drag.autoOpenTime.html
│   │   │   │   ├── setting.edit.drag.borderMax.html
│   │   │   │   ├── setting.edit.drag.borderMin.html
│   │   │   │   ├── setting.edit.drag.inner.html
│   │   │   │   ├── setting.edit.drag.isCopy.html
│   │   │   │   ├── setting.edit.drag.isMove.html
│   │   │   │   ├── setting.edit.drag.maxShowNodeNum.html
│   │   │   │   ├── setting.edit.drag.minMoveSize.html
│   │   │   │   ├── setting.edit.drag.next.html
│   │   │   │   ├── setting.edit.drag.prev.html
│   │   │   │   ├── setting.edit.editNameSelectAll.html
│   │   │   │   ├── setting.edit.enable.html
│   │   │   │   ├── setting.edit.removeTitle.html
│   │   │   │   ├── setting.edit.renameTitle.html
│   │   │   │   ├── setting.edit.showRemoveBtn.html
│   │   │   │   ├── setting.edit.showRenameBtn.html
│   │   │   │   ├── setting.treeId.html
│   │   │   │   ├── setting.treeObj.html
│   │   │   │   ├── setting.view.addDiyDom.html
│   │   │   │   ├── setting.view.addHoverDom.html
│   │   │   │   ├── setting.view.autoCancelSelected.html
│   │   │   │   ├── setting.view.dblClickExpand.html
│   │   │   │   ├── setting.view.expandSpeed.html
│   │   │   │   ├── setting.view.fontCss.html
│   │   │   │   ├── setting.view.nameIsHTML.html
│   │   │   │   ├── setting.view.removeHoverDom.html
│   │   │   │   ├── setting.view.selectedMulti.html
│   │   │   │   ├── setting.view.showIcon.html
│   │   │   │   ├── setting.view.showLine.html
│   │   │   │   ├── setting.view.showTitle.html
│   │   │   │   ├── setting.view.txtSelectedEnable.html
│   │   │   │   ├── treeNode.check_Child_State.html
│   │   │   │   ├── treeNode.checked.html
│   │   │   │   ├── treeNode.checkedOld.html
│   │   │   │   ├── treeNode.check_Focus.html
│   │   │   │   ├── treeNode.children.html
│   │   │   │   ├── treeNode.chkDisabled.html
│   │   │   │   ├── treeNode.click.html
│   │   │   │   ├── treeNode.diy.html
│   │   │   │   ├── treeNode.editNameFlag.html
│   │   │   │   ├── treeNode.getCheckStatus.html
│   │   │   │   ├── treeNode.getNextNode.html
│   │   │   │   ├── treeNode.getParentNode.html
│   │   │   │   ├── treeNode.getPreNode.html
│   │   │   │   ├── treeNode.halfCheck.html
│   │   │   │   ├── treeNode.iconClose.html
│   │   │   │   ├── treeNode.icon.html
│   │   │   │   ├── treeNode.iconOpen.html
│   │   │   │   ├── treeNode.iconSkin.html
│   │   │   │   ├── treeNode.isAjaxing.html
│   │   │   │   ├── treeNode.isFirstNode.html
│   │   │   │   ├── treeNode.isHidden.html
│   │   │   │   ├── treeNode.isHover.html
│   │   │   │   ├── treeNode.isLastNode.html
│   │   │   │   ├── treeNode.isParent.html
│   │   │   │   ├── treeNode.level.html
│   │   │   │   ├── treeNode.name.html
│   │   │   │   ├── treeNode.nocheck.html
│   │   │   │   ├── treeNode.open.html
│   │   │   │   ├── treeNode.parentTId.html
│   │   │   │   ├── treeNode.target.html
│   │   │   │   ├── treeNode.tId.html
│   │   │   │   ├── treeNode.url.html
│   │   │   │   ├── treeNode.zAsync.html
│   │   │   │   ├── zTreeObj.addNodes.html
│   │   │   │   ├── zTreeObj.cancelEditName.html
│   │   │   │   ├── zTreeObj.cancelSelectedNode.html
│   │   │   │   ├── zTreeObj.checkAllNodes.html
│   │   │   │   ├── zTreeObj.checkNode.html
│   │   │   │   ├── zTreeObj.copyNode.html
│   │   │   │   ├── zTreeObj.destroy.html
│   │   │   │   ├── zTreeObj.editName.html
│   │   │   │   ├── zTreeObj.expandAll.html
│   │   │   │   ├── zTreeObj.expandNode.html
│   │   │   │   ├── zTreeObj.getChangeCheckedNodes.html
│   │   │   │   ├── zTreeObj.getCheckedNodes.html
│   │   │   │   ├── zTreeObj.getNodeByParam.html
│   │   │   │   ├── zTreeObj.getNodeByTId.html
│   │   │   │   ├── zTreeObj.getNodeIndex.html
│   │   │   │   ├── zTreeObj.getNodesByFilter.html
│   │   │   │   ├── zTreeObj.getNodesByParamFuzzy.html
│   │   │   │   ├── zTreeObj.getNodesByParam.html
│   │   │   │   ├── zTreeObj.getNodes.html
│   │   │   │   ├── zTreeObj.getSelectedNodes.html
│   │   │   │   ├── zTreeObj.hideNode.html
│   │   │   │   ├── zTreeObj.hideNodes.html
│   │   │   │   ├── zTreeObj.moveNode.html
│   │   │   │   ├── zTreeObj.reAsyncChildNodes.html
│   │   │   │   ├── zTreeObj.refresh.html
│   │   │   │   ├── zTreeObj.removeChildNodes.html
│   │   │   │   ├── zTreeObj.removeNode.html
│   │   │   │   ├── zTreeObj.selectNode.html
│   │   │   │   ├── zTreeObj.setChkDisabled.html
│   │   │   │   ├── zTreeObj.setEditable.html
│   │   │   │   ├── zTreeObj.setting.html
│   │   │   │   ├── zTreeObj.showNode.html
│   │   │   │   ├── zTreeObj.showNodes.html
│   │   │   │   ├── zTreeObj.transformToArray.html
│   │   │   │   ├── zTreeObj.transformTozTreeNodes.html
│   │   │   │   └── zTreeObj.updateNode.html
│   │   │   └── en
│   │   │   ├── fn.zTree.destroy.html
│   │   │   ├── fn.zTree.getZTreeObj.html
│   │   │   ├── fn.zTree.init.html
│   │   │   ├── fn.zTree._z.html
│   │   │   ├── setting.async.autoParam.html
│   │   │   ├── setting.async.contentType.html
│   │   │   ├── setting.async.dataFilter.html
│   │   │   ├── setting.async.dataType.html
│   │   │   ├── setting.async.enable.html
│   │   │   ├── setting.async.otherParam.html
│   │   │   ├── setting.async.type.html
│   │   │   ├── setting.async.url.html
│   │   │   ├── setting.callback.beforeAsync.html
│   │   │   ├── setting.callback.beforeCheck.html
│   │   │   ├── setting.callback.beforeClick.html
│   │   │   ├── setting.callback.beforeCollapse.html
│   │   │   ├── setting.callback.beforeDblClick.html
│   │   │   ├── setting.callback.beforeDrag.html
│   │   │   ├── setting.callback.beforeDragOpen.html
│   │   │   ├── setting.callback.beforeDrop.html
│   │   │   ├── setting.callback.beforeEditName.html
│   │   │   ├── setting.callback.beforeExpand.html
│   │   │   ├── setting.callback.beforeMouseDown.html
│   │   │   ├── setting.callback.beforeMouseUp.html
│   │   │   ├── setting.callback.beforeRemove.html
│   │   │   ├── setting.callback.beforeRename.html
│   │   │   ├── setting.callback.beforeRightClick.html
│   │   │   ├── setting.callback.onAsyncError.html
│   │   │   ├── setting.callback.onAsyncSuccess.html
│   │   │   ├── setting.callback.onCheck.html
│   │   │   ├── setting.callback.onClick.html
│   │   │   ├── setting.callback.onCollapse.html
│   │   │   ├── setting.callback.onDblClick.html
│   │   │   ├── setting.callback.onDrag.html
│   │   │   ├── setting.callback.onDragMove.html
│   │   │   ├── setting.callback.onDrop.html
│   │   │   ├── setting.callback.onExpand.html
│   │   │   ├── setting.callback.onMouseDown.html
│   │   │   ├── setting.callback.onMouseUp.html
│   │   │   ├── setting.callback.onNodeCreated.html
│   │   │   ├── setting.callback.onRemove.html
│   │   │   ├── setting.callback.onRename.html
│   │   │   ├── setting.callback.onRightClick.html
│   │   │   ├── setting.check.autoCheckTrigger.html
│   │   │   ├── setting.check.chkboxType.html
│   │   │   ├── setting.check.chkDisabledInherit.html
│   │   │   ├── setting.check.chkStyle.html
│   │   │   ├── setting.check.enable.html
│   │   │   ├── setting.check.nocheckInherit.html
│   │   │   ├── setting.check.radioType.html
│   │   │   ├── setting.data.keep.leaf.html
│   │   │   ├── setting.data.keep.parent.html
│   │   │   ├── setting.data.key.checked.html
│   │   │   ├── setting.data.key.children.html
│   │   │   ├── setting.data.key.name.html
│   │   │   ├── setting.data.key.title.html
│   │   │   ├── setting.data.key.url.html
│   │   │   ├── setting.data.simpleData.enable.html
│   │   │   ├── setting.data.simpleData.idKey.html
│   │   │   ├── setting.data.simpleData.pIdKey.html
│   │   │   ├── setting.data.simpleData.rootPId.html
│   │   │   ├── setting.edit.drag.autoExpandTrigger.html
│   │   │   ├── setting.edit.drag.autoOpenTime.html
│   │   │   ├── setting.edit.drag.borderMax.html
│   │   │   ├── setting.edit.drag.borderMin.html
│   │   │   ├── setting.edit.drag.inner.html
│   │   │   ├── setting.edit.drag.isCopy.html
│   │   │   ├── setting.edit.drag.isMove.html
│   │   │   ├── setting.edit.drag.maxShowNodeNum.html
│   │   │   ├── setting.edit.drag.minMoveSize.html
│   │   │   ├── setting.edit.drag.next.html
│   │   │   ├── setting.edit.drag.prev.html
│   │   │   ├── setting.edit.editNameSelectAll.html
│   │   │   ├── setting.edit.enable.html
│   │   │   ├── setting.edit.removeTitle.html
│   │   │   ├── setting.edit.renameTitle.html
│   │   │   ├── setting.edit.showRemoveBtn.html
│   │   │   ├── setting.edit.showRenameBtn.html
│   │   │   ├── setting.treeId.html
│   │   │   ├── setting.treeObj.html
│   │   │   ├── setting.view.addDiyDom.html
│   │   │   ├── setting.view.addHoverDom.html
│   │   │   ├── setting.view.autoCancelSelected.html
│   │   │   ├── setting.view.dblClickExpand.html
│   │   │   ├── setting.view.expandSpeed.html
│   │   │   ├── setting.view.fontCss.html
│   │   │   ├── setting.view.nameIsHTML.html
│   │   │   ├── setting.view.removeHoverDom.html
│   │   │   ├── setting.view.selectedMulti.html
│   │   │   ├── setting.view.showIcon.html
│   │   │   ├── setting.view.showLine.html
│   │   │   ├── setting.view.showTitle.html
│   │   │   ├── setting.view.txtSelectedEnable.html
│   │   │   ├── treeNode.check_Child_State.html
│   │   │   ├── treeNode.checked.html
│   │   │   ├── treeNode.checkedOld.html
│   │   │   ├── treeNode.check_Focus.html
│   │   │   ├── treeNode.children.html
│   │   │   ├── treeNode.chkDisabled.html
│   │   │   ├── treeNode.click.html
│   │   │   ├── treeNode.diy.html
│   │   │   ├── treeNode.editNameFlag.html
│   │   │   ├── treeNode.getCheckStatus.html
│   │   │   ├── treeNode.getNextNode.html
│   │   │   ├── treeNode.getParentNode.html
│   │   │   ├── treeNode.getPreNode.html
│   │   │   ├── treeNode.halfCheck.html
│   │   │   ├── treeNode.iconClose.html
│   │   │   ├── treeNode.icon.html
│   │   │   ├── treeNode.iconOpen.html
│   │   │   ├── treeNode.iconSkin.html
│   │   │   ├── treeNode.isAjaxing.html
│   │   │   ├── treeNode.isFirstNode.html
│   │   │   ├── treeNode.isHidden.html
│   │   │   ├── treeNode.isHover.html
│   │   │   ├── treeNode.isLastNode.html
│   │   │   ├── treeNode.isParent.html
│   │   │   ├── treeNode.level.html
│   │   │   ├── treeNode.name.html
│   │   │   ├── treeNode.nocheck.html
│   │   │   ├── treeNode.open.html
│   │   │   ├── treeNode.parentTId.html
│   │   │   ├── treeNode.target.html
│   │   │   ├── treeNode.tId.html
│   │   │   ├── treeNode.url.html
│   │   │   ├── treeNode.zAsync.html
│   │   │   ├── zTreeObj.addNodes.html
│   │   │   ├── zTreeObj.cancelEditName.html
│   │   │   ├── zTreeObj.cancelSelectedNode.html
│   │   │   ├── zTreeObj.checkAllNodes.html
│   │   │   ├── zTreeObj.checkNode.html
│   │   │   ├── zTreeObj.copyNode.html
│   │   │   ├── zTreeObj.destroy.html
│   │   │   ├── zTreeObj.editName.html
│   │   │   ├── zTreeObj.expandAll.html
│   │   │   ├── zTreeObj.expandNode.html
│   │   │   ├── zTreeObj.getChangeCheckedNodes.html
│   │   │   ├── zTreeObj.getCheckedNodes.html
│   │   │   ├── zTreeObj.getNodeByParam.html
│   │   │   ├── zTreeObj.getNodeByTId.html
│   │   │   ├── zTreeObj.getNodeIndex.html
│   │   │   ├── zTreeObj.getNodesByFilter.html
│   │   │   ├── zTreeObj.getNodesByParamFuzzy.html
│   │   │   ├── zTreeObj.getNodesByParam.html
│   │   │   ├── zTreeObj.getNodes.html
│   │   │   ├── zTreeObj.getSelectedNodes.html
│   │   │   ├── zTreeObj.hideNode.html
│   │   │   ├── zTreeObj.hideNodes.html
│   │   │   ├── zTreeObj.moveNode.html
│   │   │   ├── zTreeObj.reAsyncChildNodes.html
│   │   │   ├── zTreeObj.refresh.html
│   │   │   ├── zTreeObj.removeChildNodes.html
│   │   │   ├── zTreeObj.removeNode.html
│   │   │   ├── zTreeObj.selectNode.html
│   │   │   ├── zTreeObj.setChkDisabled.html
│   │   │   ├── zTreeObj.setEditable.html
│   │   │   ├── zTreeObj.setting.html
│   │   │   ├── zTreeObj.showNode.html
│   │   │   ├── zTreeObj.showNodes.html
│   │   │   ├── zTreeObj.transformToArray.html
│   │   │   ├── zTreeObj.transformTozTreeNodes.html
│   │   │   └── zTreeObj.updateNode.html
│   │   ├── css
│   │   │   ├── metroStyle
│   │   │   │   ├── img
│   │   │   │   │   ├── line_conn.png
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── metro.gif
│   │   │   │   │   └── metro.png
│   │   │   │   └── metroStyle.css
│   │   │   └── zTreeStyle
│   │   │   ├── img
│   │   │   │   ├── diy
│   │   │   │   │   ├── 1_close.png
│   │   │   │   │   ├── 1_open.png
│   │   │   │   │   ├── 2.png
│   │   │   │   │   ├── 3.png
│   │   │   │   │   ├── 4.png
│   │   │   │   │   ├── 5.png
│   │   │   │   │   ├── 6.png
│   │   │   │   │   ├── 7.png
│   │   │   │   │   ├── 8.png
│   │   │   │   │   └── 9.png
│   │   │   │   ├── line_conn.gif
│   │   │   │   ├── loading.gif
│   │   │   │   ├── zTreeStandard.gif
│   │   │   │   └── zTreeStandard.png
│   │   │   └── zTreeStyle.css
│   │   └── js
│   │   ├── jquery.ztree.all-3.5.js
│   │   ├── jquery.ztree.all-3.5.min.js
│   │   ├── jquery.ztree.core-3.5.js
│   │   ├── jquery.ztree.core-3.5.min.js
│   │   ├── jquery.ztree.excheck-3.5.js
│   │   ├── jquery.ztree.excheck-3.5.min.js
│   │   ├── jquery.ztree.exedit-3.5.js
│   │   ├── jquery.ztree.exedit-3.5.min.js
│   │   ├── jquery.ztree.exedit.js
│   │   ├── jquery.ztree.exhide-3.5.js
│   │   └── jquery.ztree.exhide-3.5.min.js
│   └── static
│   ├── h-ui
│   │   ├── css
│   │   │   ├── H-ui.css
│   │   │   ├── H-ui.ie.css
│   │   │   ├── H-ui.min.css
│   │   │   └── H-ui.reset.css
│   │   ├── images
│   │   │   ├── acrossTab
│   │   │   │   ├── acrossTab-bg.png
│   │   │   │   ├── acrossTab-close.png
│   │   │   │   └── acrossTab.png
│   │   │   ├── dataTable
│   │   │   │   ├── sort_asc.png
│   │   │   │   ├── sort_both.png
│   │   │   │   └── sort_desc.png
│   │   │   ├── dropDown
│   │   │   │   └── icon-jt.png
│   │   │   ├── face
│   │   │   │   ├── 201.gif
│   │   │   │   ├── 202.gif
│   │   │   │   ├── 203.gif
│   │   │   │   ├── 204.gif
│   │   │   │   ├── 205.gif
│   │   │   │   ├── 206.gif
│   │   │   │   ├── 207.gif
│   │   │   │   ├── 208.gif
│   │   │   │   ├── 209.gif
│   │   │   │   ├── 210.gif
│   │   │   │   └── QQ
│   │   │   │   ├── 0.gif
│   │   │   │   ├── 100.gif
│   │   │   │   ├── 101.gif
│   │   │   │   ├── 102.gif
│   │   │   │   ├── 103.gif
│   │   │   │   ├── 104.gif
│   │   │   │   ├── 105.gif
│   │   │   │   ├── 106.gif
│   │   │   │   ├── 10.gif
│   │   │   │   ├── 11.gif
│   │   │   │   ├── 12.gif
│   │   │   │   ├── 13.gif
│   │   │   │   ├── 14.gif
│   │   │   │   ├── 15.gif
│   │   │   │   ├── 16.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
│   │   │   ├── Hui-tags
│   │   │   │   └── empty.png
│   │   │   ├── iCheck
│   │   │   │   ├── aero@2x.png
│   │   │   │   ├── aero.png
│   │   │   │   ├── blue@2x.png
│   │   │   │   ├── blue.png
│   │   │   │   ├── green@2x.png
│   │   │   │   ├── green.png
│   │   │   │   ├── grey@2x.png
│   │   │   │   ├── grey.png
│   │   │   │   ├── minimal@2x.png
│   │   │   │   ├── minimal.png
│   │   │   │   ├── orange@2x.png
│   │   │   │   ├── orange.png
│   │   │   │   ├── pink@2x.png
│   │   │   │   ├── pink.png
│   │   │   │   ├── purple@2x.png
│   │   │   │   ├── purple.png
│   │   │   │   ├── red@2x.png
│   │   │   │   ├── red.png
│   │   │   │   ├── yellow@2x.png
│   │   │   │   └── yellow.png
│   │   │   ├── iconpic-arrow.png
│   │   │   ├── jselect
│   │   │   │   └── iconpic-arrow-down2.png
│   │   │   ├── loading
│   │   │   │   ├── loading-b.gif
│   │   │   │   └── loading-s.gif
│   │   │   ├── rollpic
│   │   │   │   └── unslider-arrow.png
│   │   │   ├── star
│   │   │   │   ├── iconpic-star-S-default.png
│   │   │   │   └── iconpic-star-S.png
│   │   │   ├── steps
│   │   │   │   ├── step_arrow-active.png
│   │   │   │   ├── step_arrow.png
│   │   │   │   ├── step_bg-active.png
│   │   │   │   └── step_bg.png
│   │   │   ├── ucnter
│   │   │   │   ├── avatar-default.jpg
│   │   │   │   ├── avatar-default-S.gif
│   │   │   │   ├── avatar.png
│   │   │   │   └── noavatar_small.gif
│   │   │   ├── validform
│   │   │   │   ├── iconpic-error.png
│   │   │   │   ├── iconpic-right.png
│   │   │   │   └── iconpic-warning.png
│   │   │   └── verticalTab
│   │   │   ├── tab_bg.png
│   │   │   ├── tabNav-active.png
│   │   │   ├── tabNav-hover.png
│   │   │   ├── tabNav.png
│   │   │   ├── tabNav_right-active.png
│   │   │   ├── tabNav_right-hover.png
│   │   │   └── tabNav_right.png
│   │   └── js
│   │   ├── H-ui.js
│   │   └── H-ui.min.js
│   └── h-ui.admin
│   ├── css
│   │   ├── H-ui.admin.css
│   │   ├── H-ui.login.css
│   │   └── style.css
│   ├── images
│   │   ├── acrossTab
│   │   │   └── acrossTab-2.png
│   │   ├── admin-login-bg.jpg
│   │   ├── admin-loginform-bg.png
│   │   ├── cn.gif
│   │   ├── loading.gif
│   │   ├── logo.png
│   │   └── um.gif
│   ├── js
│   │   ├── de_DE.txt
│   │   └── H-ui.admin.page.js
│   └── skin
│   ├── blue
│   │   ├── acrossTab-bg.png
│   │   ├── acrossTab.png
│   │   ├── icon_arrow.png
│   │   └── skin.css
│   ├── default
│   │   ├── acrossTab-bg.png
│   │   ├── acrossTab.png
│   │   ├── icon_arrow.png
│   │   └── skin.css
│   ├── green
│   │   ├── acrossTab-bg.png
│   │   ├── acrossTab.png
│   │   ├── icon_arrow.png
│   │   └── skin.css
│   ├── orange
│   │   ├── acrossTab-bg.png
│   │   ├── acrossTab.png
│   │   ├── icon_arrow.png
│   │   └── skin.css
│   ├── red
│   │   ├── acrossTab-bg.png
│   │   ├── acrossTab.png
│   │   ├── icon_arrow.png
│   │   └── skin.css
│   └── yellow
│   ├── acrossTab-bg.png
│   ├── acrossTab.png
│   ├── icon_arrow.png
│   └── skin.css
├── README.md
├── runtime
│   ├── log
│   │   ├── 201711
│   │   │   ├── 24.log
│   │   │   ├── 25.log
│   │   │   ├── 26.log
│   │   │   ├── 27.log
│   │   │   ├── 29.log
│   │   │   └── 30.log
│   │   ├── 201712
│   │   │   ├── 02.log
│   │   │   ├── 03.log
│   │   │   ├── 04.log
│   │   │   ├── 05.log
│   │   │   ├── 06.log
│   │   │   ├── 07.log
│   │   │   ├── 11.log
│   │   │   ├── 21.log
│   │   │   └── 26.log
│   │   ├── 201801
│   │   │   └── 24.log
│   │   └── 201806
│   │   ├── 11.log
│   │   ├── 12_cli.log
│   │   ├── 12.log
│   │   ├── 13_cli.log
│   │   └── 13.log
│   └── temp
│   ├── 075431071554c708ec4370dc6a9af413.php
│   ├── 0c5b68e0b2541ef837e925bfe7534f0e.php
│   ├── 1d129bf9766da570099d198a50b38073.php
│   ├── 218ed92991730f535936a524c44911a1.php
│   ├── 75a4ce2997aaeb975b1c9c7513901a25.php
│   ├── 98f4120caa97c93cf006615e633a27bb.php
│   ├── b02893ed7293d2ebcafea3ba2388e662.php
│   ├── b74f5507bd27c259931ec01064346b4f.php
│   ├── bcabe4ce9af2cf833a65d990ed8cda4d.php
│   ├── c23b46baf0bc3686e0bb97f2dc79c95d.php
│   ├── cade467f2decdfdf9b4983049179a8e4.php
│   ├── e0093ae4f5e2d3cbad0a05f1493d829c.php
│   ├── e4d1e98a0c073f5c37c1fd3d21355e5a.php
│   ├── eb582de42fc7a1f205a353ee7c046d4c.php
│   └── ed0e481424c1bf980f46ca6febcee2a2.php
├── tests
│   ├── ExampleTest.php
│   └── TestCase.php
├── 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
└── 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
├── phpdocumentor
│   ├── reflection-common
│   │   ├── composer.json
│   │   ├── composer.lock
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Element.php
│   │   │   ├── File.php
│   │   │   ├── Fqsen.php
│   │   │   ├── Location.php
│   │   │   ├── ProjectFactory.php
│   │   │   └── Project.php
│   │   └── tests
│   │   ├── common
│   │   │   └── bootstrap.php
│   │   └── unit
│   │   └── FqsenTest.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
│   │   │   ├── 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
├── 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
├── 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
│   ├── 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-angular
│   │   ├── composer.json
│   │   ├── drivers
│   │   │   └── thinkphp5
│   │   │   └── Angular.php
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Angular.php
│   │   └── test
│   │   ├── blog.php
│   │   ├── cache
│   │   │   ├── 126ac9f6149081eb0e97c2e939eaad52.php
│   │   │   ├── 6a992d5529f459a44fee58c733255e86.php
│   │   │   ├── 6e2baaf3b97dbeef01c0043275f9a0e7.php
│   │   │   └── ed09636a6ea24a292460866afdd7a89a.php
│   │   ├── common.php
│   │   ├── data
│   │   │   ├── blog_category.php
│   │   │   ├── blog_list.php
│   │   │   ├── navs.php
│   │   │   ├── pic_category.php
│   │   │   └── pic_list.php
│   │   ├── index.php
│   │   ├── msg.php
│   │   ├── pic.php
│   │   └── view
│   │   ├── base.html
│   │   ├── blog.html
│   │   ├── index.html
│   │   ├── msg.html
│   │   ├── page.html
│   │   └── pic.html
│   ├── 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

512 directories, 2639 files

标签:

实例下载地址

基于thinkphp开发的简单的教学管理系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警