在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → tp5集合phpexcel,phpmailer,phpqrcode

tp5集合phpexcel,phpmailer,phpqrcode

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:4.62M
  • 下载次数:1
  • 浏览次数:7
  • 发布时间:2023-12-11
  • 实例类别:PHP语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.gz
  • 所需积分:2
 相关标签: PHPMailer qrcode Excel Code EXCE

实例介绍

【实例简介】tp5集合phpexcel,phpmailer,phpqrcode,

【实例截图】

from clipboard

【核心代码】

.
├── thinkphp_5.0_full
│   ├── LICENSE.txt
│   ├── README.md
│   ├── UploadFiles
│   │   ├── 20161010
│   │   ├── excel
│   │   │   └── ceshi.xlsx
│   │   └── qrcode
│   │       ├── 3e71adde90965f2c8ca1c4c77e0d680a.png
│   │       └── 7cb42e1e2d5c86a10c7c60de957d999a.png
│   ├── apps
│   │   ├── admin
│   │   │   ├── common.php
│   │   │   ├── config.php
│   │   │   ├── controller
│   │   │   │   └── Index.php
│   │   │   ├── model
│   │   │   └── view
│   │   ├── command.php
│   │   ├── common
│   │   │   ├── common.php
│   │   │   ├── config.php
│   │   │   ├── controller
│   │   │   │   └── chen.php
│   │   │   ├── model
│   │   │   └── view
│   │   ├── common.php
│   │   ├── config.php
│   │   ├── database.php
│   │   ├── home
│   │   │   ├── common.php
│   │   │   ├── config.php
│   │   │   ├── controller
│   │   │   │   ├── Excel.php
│   │   │   │   ├── Index.php
│   │   │   │   ├── Mail.php
│   │   │   │   └── Phpqrcode.php
│   │   │   ├── model
│   │   │   └── view
│   │   │       ├── excel
│   │   │       │   ├── index.html
│   │   │       │   └── out.html
│   │   │       ├── index
│   │   │       │   └── index.html
│   │   │       └── mail
│   │   │           └── index.html
│   │   ├── route.php
│   │   └── tags.php
│   ├── build.php
│   ├── composer.json
│   ├── composer.lock
│   ├── extend
│   │   ├── PHPExcel
│   │   │   ├── PHPExcel
│   │   │   │   ├── Autoloader.php
│   │   │   │   ├── CachedObjectStorage
│   │   │   │   │   ├── APC.php
│   │   │   │   │   ├── CacheBase.php
│   │   │   │   │   ├── DiscISAM.php
│   │   │   │   │   ├── ICache.php
│   │   │   │   │   ├── Igbinary.php
│   │   │   │   │   ├── Memcache.php
│   │   │   │   │   ├── Memory.php
│   │   │   │   │   ├── MemoryGZip.php
│   │   │   │   │   ├── MemorySerialized.php
│   │   │   │   │   ├── PHPTemp.php
│   │   │   │   │   ├── SQLite.php
│   │   │   │   │   ├── SQLite3.php
│   │   │   │   │   └── Wincache.php
│   │   │   │   ├── CachedObjectStorageFactory.php
│   │   │   │   ├── CalcEngine
│   │   │   │   │   ├── CyclicReferenceStack.php
│   │   │   │   │   └── Logger.php
│   │   │   │   ├── Calculation
│   │   │   │   │   ├── Database.php
│   │   │   │   │   ├── DateTime.php
│   │   │   │   │   ├── Engineering.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── ExceptionHandler.php
│   │   │   │   │   ├── Financial.php
│   │   │   │   │   ├── FormulaParser.php
│   │   │   │   │   ├── FormulaToken.php
│   │   │   │   │   ├── Function.php
│   │   │   │   │   ├── Functions.php
│   │   │   │   │   ├── Logical.php
│   │   │   │   │   ├── LookupRef.php
│   │   │   │   │   ├── MathTrig.php
│   │   │   │   │   ├── Statistical.php
│   │   │   │   │   ├── TextData.php
│   │   │   │   │   ├── Token
│   │   │   │   │   │   └── Stack.php
│   │   │   │   │   └── functionlist.txt
│   │   │   │   ├── Calculation.php
│   │   │   │   ├── Cell
│   │   │   │   │   ├── AdvancedValueBinder.php
│   │   │   │   │   ├── DataType.php
│   │   │   │   │   ├── DataValidation.php
│   │   │   │   │   ├── DefaultValueBinder.php
│   │   │   │   │   ├── Hyperlink.php
│   │   │   │   │   └── IValueBinder.php
│   │   │   │   ├── Cell.php
│   │   │   │   ├── Chart
│   │   │   │   │   ├── Axis.php
│   │   │   │   │   ├── DataSeries.php
│   │   │   │   │   ├── DataSeriesValues.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── GridLines.php
│   │   │   │   │   ├── Layout.php
│   │   │   │   │   ├── Legend.php
│   │   │   │   │   ├── PlotArea.php
│   │   │   │   │   ├── Properties.php
│   │   │   │   │   ├── Renderer
│   │   │   │   │   │   ├── PHP Charting Libraries.txt
│   │   │   │   │   │   └── jpgraph.php
│   │   │   │   │   └── Title.php
│   │   │   │   ├── Chart.php
│   │   │   │   ├── Comment.php
│   │   │   │   ├── DocumentProperties.php
│   │   │   │   ├── DocumentSecurity.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── HashTable.php
│   │   │   │   ├── Helper
│   │   │   │   │   └── HTML.php
│   │   │   │   ├── IComparable.php
│   │   │   │   ├── IOFactory.php
│   │   │   │   ├── NamedRange.php
│   │   │   │   ├── Reader
│   │   │   │   │   ├── Abstract.php
│   │   │   │   │   ├── CSV.php
│   │   │   │   │   ├── DefaultReadFilter.php
│   │   │   │   │   ├── Excel2003XML.php
│   │   │   │   │   ├── Excel2007
│   │   │   │   │   │   ├── Chart.php
│   │   │   │   │   │   └── Theme.php
│   │   │   │   │   ├── Excel2007.php
│   │   │   │   │   ├── Excel5
│   │   │   │   │   │   ├── Color
│   │   │   │   │   │   │   ├── BIFF5.php
│   │   │   │   │   │   │   ├── BIFF8.php
│   │   │   │   │   │   │   └── BuiltIn.php
│   │   │   │   │   │   ├── Color.php
│   │   │   │   │   │   ├── ErrorCode.php
│   │   │   │   │   │   ├── Escher.php
│   │   │   │   │   │   ├── MD5.php
│   │   │   │   │   │   ├── RC4.php
│   │   │   │   │   │   └── Style
│   │   │   │   │   │       ├── Border.php
│   │   │   │   │   │       └── FillPattern.php
│   │   │   │   │   ├── Excel5.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── Gnumeric.php
│   │   │   │   │   ├── HTML.php
│   │   │   │   │   ├── IReadFilter.php
│   │   │   │   │   ├── IReader.php
│   │   │   │   │   ├── OOCalc.php
│   │   │   │   │   └── SYLK.php
│   │   │   │   ├── ReferenceHelper.php
│   │   │   │   ├── RichText
│   │   │   │   │   ├── ITextElement.php
│   │   │   │   │   ├── Run.php
│   │   │   │   │   └── TextElement.php
│   │   │   │   ├── RichText.php
│   │   │   │   ├── Settings.php
│   │   │   │   ├── Shared
│   │   │   │   │   ├── CodePage.php
│   │   │   │   │   ├── Date.php
│   │   │   │   │   ├── Drawing.php
│   │   │   │   │   ├── Escher
│   │   │   │   │   │   ├── DgContainer
│   │   │   │   │   │   │   ├── SpgrContainer
│   │   │   │   │   │   │   │   └── SpContainer.php
│   │   │   │   │   │   │   └── SpgrContainer.php
│   │   │   │   │   │   ├── DgContainer.php
│   │   │   │   │   │   ├── DggContainer
│   │   │   │   │   │   │   ├── BstoreContainer
│   │   │   │   │   │   │   │   ├── BSE
│   │   │   │   │   │   │   │   │   └── Blip.php
│   │   │   │   │   │   │   │   └── BSE.php
│   │   │   │   │   │   │   └── BstoreContainer.php
│   │   │   │   │   │   └── DggContainer.php
│   │   │   │   │   ├── Escher.php
│   │   │   │   │   ├── Excel5.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   ├── Font.php
│   │   │   │   │   ├── JAMA
│   │   │   │   │   │   ├── CHANGELOG.TXT
│   │   │   │   │   │   ├── CholeskyDecomposition.php
│   │   │   │   │   │   ├── EigenvalueDecomposition.php
│   │   │   │   │   │   ├── LUDecomposition.php
│   │   │   │   │   │   ├── Matrix.php
│   │   │   │   │   │   ├── QRDecomposition.php
│   │   │   │   │   │   ├── SingularValueDecomposition.php
│   │   │   │   │   │   └── utils
│   │   │   │   │   │       ├── Error.php
│   │   │   │   │   │       └── Maths.php
│   │   │   │   │   ├── OLE
│   │   │   │   │   │   ├── ChainedBlockStream.php
│   │   │   │   │   │   ├── PPS
│   │   │   │   │   │   │   ├── File.php
│   │   │   │   │   │   │   └── Root.php
│   │   │   │   │   │   └── PPS.php
│   │   │   │   │   ├── OLE.php
│   │   │   │   │   ├── OLERead.php
│   │   │   │   │   ├── PCLZip
│   │   │   │   │   │   ├── gnu-lgpl.txt
│   │   │   │   │   │   ├── pclzip.lib.php
│   │   │   │   │   │   └── readme.txt
│   │   │   │   │   ├── PasswordHasher.php
│   │   │   │   │   ├── String.php
│   │   │   │   │   ├── TimeZone.php
│   │   │   │   │   ├── XMLWriter.php
│   │   │   │   │   ├── ZipArchive.php
│   │   │   │   │   ├── ZipStreamWrapper.php
│   │   │   │   │   └── trend
│   │   │   │   │       ├── bestFitClass.php
│   │   │   │   │       ├── exponentialBestFitClass.php
│   │   │   │   │       ├── linearBestFitClass.php
│   │   │   │   │       ├── logarithmicBestFitClass.php
│   │   │   │   │       ├── polynomialBestFitClass.php
│   │   │   │   │       ├── powerBestFitClass.php
│   │   │   │   │       └── trendClass.php
│   │   │   │   ├── Style
│   │   │   │   │   ├── Alignment.php
│   │   │   │   │   ├── Border.php
│   │   │   │   │   ├── Borders.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Conditional.php
│   │   │   │   │   ├── Fill.php
│   │   │   │   │   ├── Font.php
│   │   │   │   │   ├── NumberFormat.php
│   │   │   │   │   ├── Protection.php
│   │   │   │   │   └── Supervisor.php
│   │   │   │   ├── Style.php
│   │   │   │   ├── Worksheet
│   │   │   │   │   ├── AutoFilter
│   │   │   │   │   │   ├── Column
│   │   │   │   │   │   │   └── Rule.php
│   │   │   │   │   │   └── Column.php
│   │   │   │   │   ├── AutoFilter.php
│   │   │   │   │   ├── BaseDrawing.php
│   │   │   │   │   ├── CellIterator.php
│   │   │   │   │   ├── Column.php
│   │   │   │   │   ├── ColumnCellIterator.php
│   │   │   │   │   ├── ColumnDimension.php
│   │   │   │   │   ├── ColumnIterator.php
│   │   │   │   │   ├── Dimension.php
│   │   │   │   │   ├── Drawing
│   │   │   │   │   │   └── Shadow.php
│   │   │   │   │   ├── Drawing.php
│   │   │   │   │   ├── HeaderFooter.php
│   │   │   │   │   ├── HeaderFooterDrawing.php
│   │   │   │   │   ├── MemoryDrawing.php
│   │   │   │   │   ├── PageMargins.php
│   │   │   │   │   ├── PageSetup.php
│   │   │   │   │   ├── Protection.php
│   │   │   │   │   ├── Row.php
│   │   │   │   │   ├── RowCellIterator.php
│   │   │   │   │   ├── RowDimension.php
│   │   │   │   │   ├── RowIterator.php
│   │   │   │   │   └── SheetView.php
│   │   │   │   ├── Worksheet.php
│   │   │   │   ├── WorksheetIterator.php
│   │   │   │   ├── Writer
│   │   │   │   │   ├── Abstract.php
│   │   │   │   │   ├── CSV.php
│   │   │   │   │   ├── Excel2007
│   │   │   │   │   │   ├── Chart.php
│   │   │   │   │   │   ├── Comments.php
│   │   │   │   │   │   ├── ContentTypes.php
│   │   │   │   │   │   ├── DocProps.php
│   │   │   │   │   │   ├── Drawing.php
│   │   │   │   │   │   ├── Rels.php
│   │   │   │   │   │   ├── RelsRibbon.php
│   │   │   │   │   │   ├── RelsVBA.php
│   │   │   │   │   │   ├── StringTable.php
│   │   │   │   │   │   ├── Style.php
│   │   │   │   │   │   ├── Theme.php
│   │   │   │   │   │   ├── Workbook.php
│   │   │   │   │   │   ├── Worksheet.php
│   │   │   │   │   │   └── WriterPart.php
│   │   │   │   │   ├── Excel2007.php
│   │   │   │   │   ├── Excel5
│   │   │   │   │   │   ├── BIFFwriter.php
│   │   │   │   │   │   ├── Escher.php
│   │   │   │   │   │   ├── Font.php
│   │   │   │   │   │   ├── Parser.php
│   │   │   │   │   │   ├── Workbook.php
│   │   │   │   │   │   ├── Worksheet.php
│   │   │   │   │   │   └── Xf.php
│   │   │   │   │   ├── Excel5.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── HTML.php
│   │   │   │   │   ├── IWriter.php
│   │   │   │   │   ├── OpenDocument
│   │   │   │   │   │   ├── Cell
│   │   │   │   │   │   │   └── Comment.php
│   │   │   │   │   │   ├── Content.php
│   │   │   │   │   │   ├── Meta.php
│   │   │   │   │   │   ├── MetaInf.php
│   │   │   │   │   │   ├── Mimetype.php
│   │   │   │   │   │   ├── Settings.php
│   │   │   │   │   │   ├── Styles.php
│   │   │   │   │   │   ├── Thumbnails.php
│   │   │   │   │   │   └── WriterPart.php
│   │   │   │   │   ├── OpenDocument.php
│   │   │   │   │   ├── PDF
│   │   │   │   │   │   ├── Core.php
│   │   │   │   │   │   ├── DomPDF.php
│   │   │   │   │   │   ├── mPDF.php
│   │   │   │   │   │   └── tcPDF.php
│   │   │   │   │   └── PDF.php
│   │   │   │   └── locale
│   │   │   │       ├── bg
│   │   │   │       │   └── config
│   │   │   │       ├── cs
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── da
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── de
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── en
│   │   │   │       │   └── uk
│   │   │   │       │       └── config
│   │   │   │       ├── es
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── fi
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── fr
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── hu
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── it
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── nl
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── no
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── pl
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── pt
│   │   │   │       │   ├── br
│   │   │   │       │   │   ├── config
│   │   │   │       │   │   └── functions
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── ru
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       ├── sv
│   │   │   │       │   ├── config
│   │   │   │       │   └── functions
│   │   │   │       └── tr
│   │   │   │           ├── config
│   │   │   │           └── functions
│   │   │   └── PHPExcel.php
│   │   ├── class.phpmailer.php
│   │   ├── phpmailer
│   │   │   ├── LICENSE
│   │   │   ├── PHPMailerAutoload.php
│   │   │   ├── README.md
│   │   │   ├── VERSION
│   │   │   ├── changelog.md
│   │   │   ├── class.phpmailer.php
│   │   │   ├── class.phpmaileroauth.php
│   │   │   ├── class.phpmaileroauthgoogle.php
│   │   │   ├── class.pop3.php
│   │   │   ├── class.smtp.php
│   │   │   ├── composer.json
│   │   │   ├── composer.lock
│   │   │   ├── docs
│   │   │   │   ├── Callback_function_notes.txt
│   │   │   │   ├── DomainKeys_notes.txt
│   │   │   │   ├── Note_for_SMTP_debugging.txt
│   │   │   │   ├── extending.html
│   │   │   │   ├── faq.html
│   │   │   │   ├── generatedocs.sh
│   │   │   │   └── pop3_article.txt
│   │   │   ├── examples
│   │   │   │   ├── DKIM.phps
│   │   │   │   ├── code_generator.phps
│   │   │   │   ├── contents.html
│   │   │   │   ├── contentsutf8.html
│   │   │   │   ├── exceptions.phps
│   │   │   │   ├── gmail.phps
│   │   │   │   ├── gmail_xoauth.phps
│   │   │   │   ├── images
│   │   │   │   │   ├── phpmailer.png
│   │   │   │   │   └── phpmailer_mini.png
│   │   │   │   ├── index.html
│   │   │   │   ├── mail.phps
│   │   │   │   ├── mailing_list.phps
│   │   │   │   ├── pop_before_smtp.phps
│   │   │   │   ├── scripts
│   │   │   │   │   ├── XRegExp.js
│   │   │   │   │   ├── shAutoloader.js
│   │   │   │   │   ├── shBrushPhp.js
│   │   │   │   │   ├── shCore.js
│   │   │   │   │   └── shLegacy.js
│   │   │   │   ├── send_file_upload.phps
│   │   │   │   ├── send_multiple_file_upload.phps
│   │   │   │   ├── sendmail.phps
│   │   │   │   ├── signed-mail.phps
│   │   │   │   ├── smtp.phps
│   │   │   │   ├── smtp_check.phps
│   │   │   │   ├── smtp_no_auth.phps
│   │   │   │   ├── ssl_options.phps
│   │   │   │   └── styles
│   │   │   │       ├── shCore.css
│   │   │   │       ├── shCoreDefault.css
│   │   │   │       ├── shCoreDjango.css
│   │   │   │       ├── shCoreEclipse.css
│   │   │   │       ├── shCoreEmacs.css
│   │   │   │       ├── shCoreFadeToGrey.css
│   │   │   │       ├── shCoreMDUltra.css
│   │   │   │       ├── shCoreMidnight.css
│   │   │   │       ├── shCoreRDark.css
│   │   │   │       ├── shThemeAppleScript.css
│   │   │   │       ├── shThemeDefault.css
│   │   │   │       ├── shThemeDjango.css
│   │   │   │       ├── shThemeEclipse.css
│   │   │   │       ├── shThemeEmacs.css
│   │   │   │       ├── shThemeFadeToGrey.css
│   │   │   │       ├── shThemeMDUltra.css
│   │   │   │       ├── shThemeMidnight.css
│   │   │   │       ├── shThemeRDark.css
│   │   │   │       ├── shThemeVisualStudio.css
│   │   │   │       └── wrapping.png
│   │   │   ├── extras
│   │   │   │   ├── EasyPeasyICS.php
│   │   │   │   ├── README.md
│   │   │   │   ├── htmlfilter.php
│   │   │   │   └── ntlm_sasl_client.php
│   │   │   ├── get_oauth_token.php
│   │   │   ├── language
│   │   │   │   ├── phpmailer.lang-am.php
│   │   │   │   ├── phpmailer.lang-ar.php
│   │   │   │   ├── phpmailer.lang-az.php
│   │   │   │   ├── phpmailer.lang-be.php
│   │   │   │   ├── phpmailer.lang-bg.php
│   │   │   │   ├── phpmailer.lang-br.php
│   │   │   │   ├── phpmailer.lang-ca.php
│   │   │   │   ├── phpmailer.lang-ch.php
│   │   │   │   ├── phpmailer.lang-cz.php
│   │   │   │   ├── phpmailer.lang-de.php
│   │   │   │   ├── phpmailer.lang-dk.php
│   │   │   │   ├── phpmailer.lang-el.php
│   │   │   │   ├── phpmailer.lang-eo.php
│   │   │   │   ├── phpmailer.lang-es.php
│   │   │   │   ├── phpmailer.lang-et.php
│   │   │   │   ├── phpmailer.lang-fa.php
│   │   │   │   ├── phpmailer.lang-fi.php
│   │   │   │   ├── phpmailer.lang-fo.php
│   │   │   │   ├── phpmailer.lang-fr.php
│   │   │   │   ├── phpmailer.lang-gl.php
│   │   │   │   ├── phpmailer.lang-he.php
│   │   │   │   ├── phpmailer.lang-hr.php
│   │   │   │   ├── phpmailer.lang-hu.php
│   │   │   │   ├── phpmailer.lang-id.php
│   │   │   │   ├── phpmailer.lang-it.php
│   │   │   │   ├── phpmailer.lang-ja.php
│   │   │   │   ├── phpmailer.lang-ka.php
│   │   │   │   ├── phpmailer.lang-ko.php
│   │   │   │   ├── phpmailer.lang-lt.php
│   │   │   │   ├── phpmailer.lang-lv.php
│   │   │   │   ├── phpmailer.lang-ms.php
│   │   │   │   ├── phpmailer.lang-nl.php
│   │   │   │   ├── phpmailer.lang-no.php
│   │   │   │   ├── phpmailer.lang-pl.php
│   │   │   │   ├── phpmailer.lang-pt.php
│   │   │   │   ├── phpmailer.lang-ro.php
│   │   │   │   ├── phpmailer.lang-ru.php
│   │   │   │   ├── phpmailer.lang-se.php
│   │   │   │   ├── phpmailer.lang-sk.php
│   │   │   │   ├── phpmailer.lang-sl.php
│   │   │   │   ├── phpmailer.lang-sr.php
│   │   │   │   ├── phpmailer.lang-tr.php
│   │   │   │   ├── phpmailer.lang-uk.php
│   │   │   │   ├── phpmailer.lang-vi.php
│   │   │   │   ├── phpmailer.lang-zh.php
│   │   │   │   └── phpmailer.lang-zh_cn.php
│   │   │   ├── test
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── fakepopserver.sh
│   │   │   │   ├── fakesendmail.sh
│   │   │   │   ├── phpmailerLangTest.php
│   │   │   │   ├── phpmailerTest.php
│   │   │   │   ├── runfakepopserver.sh
│   │   │   │   ├── test_callback.php
│   │   │   │   └── testbootstrap-dist.php
│   │   │   └── travis.phpunit.xml.dist
│   │   ├── phpqrcode
│   │   │   ├── CHANGELOG
│   │   │   ├── INSTALL
│   │   │   ├── LICENSE
│   │   │   ├── README
│   │   │   ├── VERSION
│   │   │   ├── bindings
│   │   │   │   └── tcpdf
│   │   │   │       └── qrcode.php
│   │   │   ├── cache
│   │   │   │   ├── frame_1.dat
│   │   │   │   ├── frame_1.png
│   │   │   │   ├── frame_10.dat
│   │   │   │   ├── frame_10.png
│   │   │   │   ├── frame_11.dat
│   │   │   │   ├── frame_11.png
│   │   │   │   ├── frame_12.dat
│   │   │   │   ├── frame_12.png
│   │   │   │   ├── frame_13.dat
│   │   │   │   ├── frame_13.png
│   │   │   │   ├── frame_14.dat
│   │   │   │   ├── frame_14.png
│   │   │   │   ├── frame_15.dat
│   │   │   │   ├── frame_15.png
│   │   │   │   ├── frame_16.dat
│   │   │   │   ├── frame_16.png
│   │   │   │   ├── frame_17.dat
│   │   │   │   ├── frame_17.png
│   │   │   │   ├── frame_18.dat
│   │   │   │   ├── frame_18.png
│   │   │   │   ├── frame_19.dat
│   │   │   │   ├── frame_19.png
│   │   │   │   ├── frame_2.dat
│   │   │   │   ├── frame_2.png
│   │   │   │   ├── frame_20.dat
│   │   │   │   ├── frame_20.png
│   │   │   │   ├── frame_21.dat
│   │   │   │   ├── frame_21.png
│   │   │   │   ├── frame_22.dat
│   │   │   │   ├── frame_22.png
│   │   │   │   ├── frame_23.dat
│   │   │   │   ├── frame_23.png
│   │   │   │   ├── frame_24.dat
│   │   │   │   ├── frame_24.png
│   │   │   │   ├── frame_25.dat
│   │   │   │   ├── frame_25.png
│   │   │   │   ├── frame_26.dat
│   │   │   │   ├── frame_26.png
│   │   │   │   ├── frame_27.dat
│   │   │   │   ├── frame_27.png
│   │   │   │   ├── frame_28.dat
│   │   │   │   ├── frame_28.png
│   │   │   │   ├── frame_29.dat
│   │   │   │   ├── frame_29.png
│   │   │   │   ├── frame_3.dat
│   │   │   │   ├── frame_3.png
│   │   │   │   ├── frame_30.dat
│   │   │   │   ├── frame_30.png
│   │   │   │   ├── frame_31.dat
│   │   │   │   ├── frame_31.png
│   │   │   │   ├── frame_32.dat
│   │   │   │   ├── frame_32.png
│   │   │   │   ├── frame_33.dat
│   │   │   │   ├── frame_33.png
│   │   │   │   ├── frame_34.dat
│   │   │   │   ├── frame_34.png
│   │   │   │   ├── frame_35.dat
│   │   │   │   ├── frame_35.png
│   │   │   │   ├── frame_36.dat
│   │   │   │   ├── frame_36.png
│   │   │   │   ├── frame_37.dat
│   │   │   │   ├── frame_37.png
│   │   │   │   ├── frame_38.dat
│   │   │   │   ├── frame_38.png
│   │   │   │   ├── frame_39.dat
│   │   │   │   ├── frame_39.png
│   │   │   │   ├── frame_4.dat
│   │   │   │   ├── frame_4.png
│   │   │   │   ├── frame_40.dat
│   │   │   │   ├── frame_40.png
│   │   │   │   ├── frame_5.dat
│   │   │   │   ├── frame_5.png
│   │   │   │   ├── frame_6.dat
│   │   │   │   ├── frame_6.png
│   │   │   │   ├── frame_7.dat
│   │   │   │   ├── frame_7.png
│   │   │   │   ├── frame_8.dat
│   │   │   │   ├── frame_8.png
│   │   │   │   ├── frame_9.dat
│   │   │   │   ├── frame_9.png
│   │   │   │   ├── mask_0
│   │   │   │   │   ├── mask_101_0.dat
│   │   │   │   │   ├── mask_105_0.dat
│   │   │   │   │   ├── mask_109_0.dat
│   │   │   │   │   ├── mask_113_0.dat
│   │   │   │   │   ├── mask_117_0.dat
│   │   │   │   │   ├── mask_121_0.dat
│   │   │   │   │   ├── mask_125_0.dat
│   │   │   │   │   ├── mask_129_0.dat
│   │   │   │   │   ├── mask_133_0.dat
│   │   │   │   │   ├── mask_137_0.dat
│   │   │   │   │   ├── mask_141_0.dat
│   │   │   │   │   ├── mask_145_0.dat
│   │   │   │   │   ├── mask_149_0.dat
│   │   │   │   │   ├── mask_153_0.dat
│   │   │   │   │   ├── mask_157_0.dat
│   │   │   │   │   ├── mask_161_0.dat
│   │   │   │   │   ├── mask_165_0.dat
│   │   │   │   │   ├── mask_169_0.dat
│   │   │   │   │   ├── mask_173_0.dat
│   │   │   │   │   ├── mask_177_0.dat
│   │   │   │   │   ├── mask_21_0.dat
│   │   │   │   │   ├── mask_25_0.dat
│   │   │   │   │   ├── mask_29_0.dat
│   │   │   │   │   ├── mask_33_0.dat
│   │   │   │   │   ├── mask_37_0.dat
│   │   │   │   │   ├── mask_41_0.dat
│   │   │   │   │   ├── mask_45_0.dat
│   │   │   │   │   ├── mask_49_0.dat
│   │   │   │   │   ├── mask_53_0.dat
│   │   │   │   │   ├── mask_57_0.dat
│   │   │   │   │   ├── mask_61_0.dat
│   │   │   │   │   ├── mask_65_0.dat
│   │   │   │   │   ├── mask_69_0.dat
│   │   │   │   │   ├── mask_73_0.dat
│   │   │   │   │   ├── mask_77_0.dat
│   │   │   │   │   ├── mask_81_0.dat
│   │   │   │   │   ├── mask_85_0.dat
│   │   │   │   │   ├── mask_89_0.dat
│   │   │   │   │   ├── mask_93_0.dat
│   │   │   │   │   └── mask_97_0.dat
│   │   │   │   ├── mask_1
│   │   │   │   │   ├── mask_101_1.dat
│   │   │   │   │   ├── mask_105_1.dat
│   │   │   │   │   ├── mask_109_1.dat
│   │   │   │   │   ├── mask_113_1.dat
│   │   │   │   │   ├── mask_117_1.dat
│   │   │   │   │   ├── mask_121_1.dat
│   │   │   │   │   ├── mask_125_1.dat
│   │   │   │   │   ├── mask_129_1.dat
│   │   │   │   │   ├── mask_133_1.dat
│   │   │   │   │   ├── mask_137_1.dat
│   │   │   │   │   ├── mask_141_1.dat
│   │   │   │   │   ├── mask_145_1.dat
│   │   │   │   │   ├── mask_149_1.dat
│   │   │   │   │   ├── mask_153_1.dat
│   │   │   │   │   ├── mask_157_1.dat
│   │   │   │   │   ├── mask_161_1.dat
│   │   │   │   │   ├── mask_165_1.dat
│   │   │   │   │   ├── mask_169_1.dat
│   │   │   │   │   ├── mask_173_1.dat
│   │   │   │   │   ├── mask_177_1.dat
│   │   │   │   │   ├── mask_21_1.dat
│   │   │   │   │   ├── mask_25_1.dat
│   │   │   │   │   ├── mask_29_1.dat
│   │   │   │   │   ├── mask_33_1.dat
│   │   │   │   │   ├── mask_37_1.dat
│   │   │   │   │   ├── mask_41_1.dat
│   │   │   │   │   ├── mask_45_1.dat
│   │   │   │   │   ├── mask_49_1.dat
│   │   │   │   │   ├── mask_53_1.dat
│   │   │   │   │   ├── mask_57_1.dat
│   │   │   │   │   ├── mask_61_1.dat
│   │   │   │   │   ├── mask_65_1.dat
│   │   │   │   │   ├── mask_69_1.dat
│   │   │   │   │   ├── mask_73_1.dat
│   │   │   │   │   ├── mask_77_1.dat
│   │   │   │   │   ├── mask_81_1.dat
│   │   │   │   │   ├── mask_85_1.dat
│   │   │   │   │   ├── mask_89_1.dat
│   │   │   │   │   ├── mask_93_1.dat
│   │   │   │   │   └── mask_97_1.dat
│   │   │   │   ├── mask_2
│   │   │   │   │   ├── mask_101_2.dat
│   │   │   │   │   ├── mask_105_2.dat
│   │   │   │   │   ├── mask_109_2.dat
│   │   │   │   │   ├── mask_113_2.dat
│   │   │   │   │   ├── mask_117_2.dat
│   │   │   │   │   ├── mask_121_2.dat
│   │   │   │   │   ├── mask_125_2.dat
│   │   │   │   │   ├── mask_129_2.dat
│   │   │   │   │   ├── mask_133_2.dat
│   │   │   │   │   ├── mask_137_2.dat
│   │   │   │   │   ├── mask_141_2.dat
│   │   │   │   │   ├── mask_145_2.dat
│   │   │   │   │   ├── mask_149_2.dat
│   │   │   │   │   ├── mask_153_2.dat
│   │   │   │   │   ├── mask_157_2.dat
│   │   │   │   │   ├── mask_161_2.dat
│   │   │   │   │   ├── mask_165_2.dat
│   │   │   │   │   ├── mask_169_2.dat
│   │   │   │   │   ├── mask_173_2.dat
│   │   │   │   │   ├── mask_177_2.dat
│   │   │   │   │   ├── mask_21_2.dat
│   │   │   │   │   ├── mask_25_2.dat
│   │   │   │   │   ├── mask_29_2.dat
│   │   │   │   │   ├── mask_33_2.dat
│   │   │   │   │   ├── mask_37_2.dat
│   │   │   │   │   ├── mask_41_2.dat
│   │   │   │   │   ├── mask_45_2.dat
│   │   │   │   │   ├── mask_49_2.dat
│   │   │   │   │   ├── mask_53_2.dat
│   │   │   │   │   ├── mask_57_2.dat
│   │   │   │   │   ├── mask_61_2.dat
│   │   │   │   │   ├── mask_65_2.dat
│   │   │   │   │   ├── mask_69_2.dat
│   │   │   │   │   ├── mask_73_2.dat
│   │   │   │   │   ├── mask_77_2.dat
│   │   │   │   │   ├── mask_81_2.dat
│   │   │   │   │   ├── mask_85_2.dat
│   │   │   │   │   ├── mask_89_2.dat
│   │   │   │   │   ├── mask_93_2.dat
│   │   │   │   │   └── mask_97_2.dat
│   │   │   │   ├── mask_3
│   │   │   │   │   ├── mask_101_3.dat
│   │   │   │   │   ├── mask_105_3.dat
│   │   │   │   │   ├── mask_109_3.dat
│   │   │   │   │   ├── mask_113_3.dat
│   │   │   │   │   ├── mask_117_3.dat
│   │   │   │   │   ├── mask_121_3.dat
│   │   │   │   │   ├── mask_125_3.dat
│   │   │   │   │   ├── mask_129_3.dat
│   │   │   │   │   ├── mask_133_3.dat
│   │   │   │   │   ├── mask_137_3.dat
│   │   │   │   │   ├── mask_141_3.dat
│   │   │   │   │   ├── mask_145_3.dat
│   │   │   │   │   ├── mask_149_3.dat
│   │   │   │   │   ├── mask_153_3.dat
│   │   │   │   │   ├── mask_157_3.dat
│   │   │   │   │   ├── mask_161_3.dat
│   │   │   │   │   ├── mask_165_3.dat
│   │   │   │   │   ├── mask_169_3.dat
│   │   │   │   │   ├── mask_173_3.dat
│   │   │   │   │   ├── mask_177_3.dat
│   │   │   │   │   ├── mask_21_3.dat
│   │   │   │   │   ├── mask_25_3.dat
│   │   │   │   │   ├── mask_29_3.dat
│   │   │   │   │   ├── mask_33_3.dat
│   │   │   │   │   ├── mask_37_3.dat
│   │   │   │   │   ├── mask_41_3.dat
│   │   │   │   │   ├── mask_45_3.dat
│   │   │   │   │   ├── mask_49_3.dat
│   │   │   │   │   ├── mask_53_3.dat
│   │   │   │   │   ├── mask_57_3.dat
│   │   │   │   │   ├── mask_61_3.dat
│   │   │   │   │   ├── mask_65_3.dat
│   │   │   │   │   ├── mask_69_3.dat
│   │   │   │   │   ├── mask_73_3.dat
│   │   │   │   │   ├── mask_77_3.dat
│   │   │   │   │   ├── mask_81_3.dat
│   │   │   │   │   ├── mask_85_3.dat
│   │   │   │   │   ├── mask_89_3.dat
│   │   │   │   │   ├── mask_93_3.dat
│   │   │   │   │   └── mask_97_3.dat
│   │   │   │   ├── mask_4
│   │   │   │   │   ├── mask_101_4.dat
│   │   │   │   │   ├── mask_105_4.dat
│   │   │   │   │   ├── mask_109_4.dat
│   │   │   │   │   ├── mask_113_4.dat
│   │   │   │   │   ├── mask_117_4.dat
│   │   │   │   │   ├── mask_121_4.dat
│   │   │   │   │   ├── mask_125_4.dat
│   │   │   │   │   ├── mask_129_4.dat
│   │   │   │   │   ├── mask_133_4.dat
│   │   │   │   │   ├── mask_137_4.dat
│   │   │   │   │   ├── mask_141_4.dat
│   │   │   │   │   ├── mask_145_4.dat
│   │   │   │   │   ├── mask_149_4.dat
│   │   │   │   │   ├── mask_153_4.dat
│   │   │   │   │   ├── mask_157_4.dat
│   │   │   │   │   ├── mask_161_4.dat
│   │   │   │   │   ├── mask_165_4.dat
│   │   │   │   │   ├── mask_169_4.dat
│   │   │   │   │   ├── mask_173_4.dat
│   │   │   │   │   ├── mask_177_4.dat
│   │   │   │   │   ├── mask_21_4.dat
│   │   │   │   │   ├── mask_25_4.dat
│   │   │   │   │   ├── mask_29_4.dat
│   │   │   │   │   ├── mask_33_4.dat
│   │   │   │   │   ├── mask_37_4.dat
│   │   │   │   │   ├── mask_41_4.dat
│   │   │   │   │   ├── mask_45_4.dat
│   │   │   │   │   ├── mask_49_4.dat
│   │   │   │   │   ├── mask_53_4.dat
│   │   │   │   │   ├── mask_57_4.dat
│   │   │   │   │   ├── mask_61_4.dat
│   │   │   │   │   ├── mask_65_4.dat
│   │   │   │   │   ├── mask_69_4.dat
│   │   │   │   │   ├── mask_73_4.dat
│   │   │   │   │   ├── mask_77_4.dat
│   │   │   │   │   ├── mask_81_4.dat
│   │   │   │   │   ├── mask_85_4.dat
│   │   │   │   │   ├── mask_89_4.dat
│   │   │   │   │   ├── mask_93_4.dat
│   │   │   │   │   └── mask_97_4.dat
│   │   │   │   ├── mask_5
│   │   │   │   │   ├── mask_101_5.dat
│   │   │   │   │   ├── mask_105_5.dat
│   │   │   │   │   ├── mask_109_5.dat
│   │   │   │   │   ├── mask_113_5.dat
│   │   │   │   │   ├── mask_117_5.dat
│   │   │   │   │   ├── mask_121_5.dat
│   │   │   │   │   ├── mask_125_5.dat
│   │   │   │   │   ├── mask_129_5.dat
│   │   │   │   │   ├── mask_133_5.dat
│   │   │   │   │   ├── mask_137_5.dat
│   │   │   │   │   ├── mask_141_5.dat
│   │   │   │   │   ├── mask_145_5.dat
│   │   │   │   │   ├── mask_149_5.dat
│   │   │   │   │   ├── mask_153_5.dat
│   │   │   │   │   ├── mask_157_5.dat
│   │   │   │   │   ├── mask_161_5.dat
│   │   │   │   │   ├── mask_165_5.dat
│   │   │   │   │   ├── mask_169_5.dat
│   │   │   │   │   ├── mask_173_5.dat
│   │   │   │   │   ├── mask_177_5.dat
│   │   │   │   │   ├── mask_21_5.dat
│   │   │   │   │   ├── mask_25_5.dat
│   │   │   │   │   ├── mask_29_5.dat
│   │   │   │   │   ├── mask_33_5.dat
│   │   │   │   │   ├── mask_37_5.dat
│   │   │   │   │   ├── mask_41_5.dat
│   │   │   │   │   ├── mask_45_5.dat
│   │   │   │   │   ├── mask_49_5.dat
│   │   │   │   │   ├── mask_53_5.dat
│   │   │   │   │   ├── mask_57_5.dat
│   │   │   │   │   ├── mask_61_5.dat
│   │   │   │   │   ├── mask_65_5.dat
│   │   │   │   │   ├── mask_69_5.dat
│   │   │   │   │   ├── mask_73_5.dat
│   │   │   │   │   ├── mask_77_5.dat
│   │   │   │   │   ├── mask_81_5.dat
│   │   │   │   │   ├── mask_85_5.dat
│   │   │   │   │   ├── mask_89_5.dat
│   │   │   │   │   ├── mask_93_5.dat
│   │   │   │   │   └── mask_97_5.dat
│   │   │   │   ├── mask_6
│   │   │   │   │   ├── mask_101_6.dat
│   │   │   │   │   ├── mask_105_6.dat
│   │   │   │   │   ├── mask_109_6.dat
│   │   │   │   │   ├── mask_113_6.dat
│   │   │   │   │   ├── mask_117_6.dat
│   │   │   │   │   ├── mask_121_6.dat
│   │   │   │   │   ├── mask_125_6.dat
│   │   │   │   │   ├── mask_129_6.dat
│   │   │   │   │   ├── mask_133_6.dat
│   │   │   │   │   ├── mask_137_6.dat
│   │   │   │   │   ├── mask_141_6.dat
│   │   │   │   │   ├── mask_145_6.dat
│   │   │   │   │   ├── mask_149_6.dat
│   │   │   │   │   ├── mask_153_6.dat
│   │   │   │   │   ├── mask_157_6.dat
│   │   │   │   │   ├── mask_161_6.dat
│   │   │   │   │   ├── mask_165_6.dat
│   │   │   │   │   ├── mask_169_6.dat
│   │   │   │   │   ├── mask_173_6.dat
│   │   │   │   │   ├── mask_177_6.dat
│   │   │   │   │   ├── mask_21_6.dat
│   │   │   │   │   ├── mask_25_6.dat
│   │   │   │   │   ├── mask_29_6.dat
│   │   │   │   │   ├── mask_33_6.dat
│   │   │   │   │   ├── mask_37_6.dat
│   │   │   │   │   ├── mask_41_6.dat
│   │   │   │   │   ├── mask_45_6.dat
│   │   │   │   │   ├── mask_49_6.dat
│   │   │   │   │   ├── mask_53_6.dat
│   │   │   │   │   ├── mask_57_6.dat
│   │   │   │   │   ├── mask_61_6.dat
│   │   │   │   │   ├── mask_65_6.dat
│   │   │   │   │   ├── mask_69_6.dat
│   │   │   │   │   ├── mask_73_6.dat
│   │   │   │   │   ├── mask_77_6.dat
│   │   │   │   │   ├── mask_81_6.dat
│   │   │   │   │   ├── mask_85_6.dat
│   │   │   │   │   ├── mask_89_6.dat
│   │   │   │   │   ├── mask_93_6.dat
│   │   │   │   │   └── mask_97_6.dat
│   │   │   │   └── mask_7
│   │   │   │       ├── mask_101_7.dat
│   │   │   │       ├── mask_105_7.dat
│   │   │   │       ├── mask_109_7.dat
│   │   │   │       ├── mask_113_7.dat
│   │   │   │       ├── mask_117_7.dat
│   │   │   │       ├── mask_121_7.dat
│   │   │   │       ├── mask_125_7.dat
│   │   │   │       ├── mask_129_7.dat
│   │   │   │       ├── mask_133_7.dat
│   │   │   │       ├── mask_137_7.dat
│   │   │   │       ├── mask_141_7.dat
│   │   │   │       ├── mask_145_7.dat
│   │   │   │       ├── mask_149_7.dat
│   │   │   │       ├── mask_153_7.dat
│   │   │   │       ├── mask_157_7.dat
│   │   │   │       ├── mask_161_7.dat
│   │   │   │       ├── mask_165_7.dat
│   │   │   │       ├── mask_169_7.dat
│   │   │   │       ├── mask_173_7.dat
│   │   │   │       ├── mask_177_7.dat
│   │   │   │       ├── mask_21_7.dat
│   │   │   │       ├── mask_25_7.dat
│   │   │   │       ├── mask_29_7.dat
│   │   │   │       ├── mask_33_7.dat
│   │   │   │       ├── mask_37_7.dat
│   │   │   │       ├── mask_41_7.dat
│   │   │   │       ├── mask_45_7.dat
│   │   │   │       ├── mask_49_7.dat
│   │   │   │       ├── mask_53_7.dat
│   │   │   │       ├── mask_57_7.dat
│   │   │   │       ├── mask_61_7.dat
│   │   │   │       ├── mask_65_7.dat
│   │   │   │       ├── mask_69_7.dat
│   │   │   │       ├── mask_73_7.dat
│   │   │   │       ├── mask_77_7.dat
│   │   │   │       ├── mask_81_7.dat
│   │   │   │       ├── mask_85_7.dat
│   │   │   │       ├── mask_89_7.dat
│   │   │   │       ├── mask_93_7.dat
│   │   │   │       └── mask_97_7.dat
│   │   │   ├── index.php
│   │   │   ├── phpqrcode.php
│   │   │   ├── qrbitstream.php
│   │   │   ├── qrconfig.php
│   │   │   ├── qrconst.php
│   │   │   ├── qrencode.php
│   │   │   ├── qrimage.php
│   │   │   ├── qrinput.php
│   │   │   ├── qrlib.php
│   │   │   ├── qrmask.php
│   │   │   ├── qrrscode.php
│   │   │   ├── qrspec.php
│   │   │   ├── qrsplit.php
│   │   │   ├── qrtools.php
│   │   │   ├── temp
│   │   │   │   ├── test.png
│   │   │   │   ├── test55d34e39de9027b9e29eeff19ac79b18.png
│   │   │   │   ├── test8c861c22b919a86b6caffdae9f56108a.png
│   │   │   │   ├── test9d9859ebb4e825179a00a36b2d734ca0.png
│   │   │   │   └── testde39d755a09ede28638e42452c658e62.png
│   │   │   └── tools
│   │   │       ├── merge.bat
│   │   │       ├── merge.php
│   │   │       ├── merge.sh
│   │   │       ├── merged_config.php
│   │   │       └── merged_header.php
│   │   └── pinyin
│   │       ├── Hzpy.php
│   │       └── zidian.json
│   ├── helloweixin.png
│   ├── index.php
│   ├── phpunit.xml
│   ├── public
│   │   ├── favicon.ico
│   │   ├── index.php
│   │   ├── robots.txt
│   │   ├── router.php
│   │   └── static
│   │       └── logo.jpg
│   ├── qrcode.png
│   ├── runtime
│   │   ├── log
│   │   │   └── 201610
│   │   │       ├── 12.log
│   │   │       └── 15.log
│   │   └── temp
│   │       ├── 1b54c8a786e4ddb8f3ccc25c4958df5b.php
│   │       ├── 3b8c97c38b645b7c68c17416e5f680a5.php
│   │       ├── 4e6c8757b01067e618bb54db44667a41.php
│   │       ├── a66e440d106d36502e41f1380c18ea45.php
│   │       ├── bfb3bb194a34ff204fa0e08cf884e862.php
│   │       ├── d41d8cd98f00b204e9800998ecf8427e.php
│   │       └── fd5c89846cdaeee48776dd523213c8ab.php
│   ├── tests
│   │   ├── ExampleTest.php
│   │   └── TestCase.php
│   ├── think
│   ├── thinkphp
│   │   ├── CONTRIBUTING.md
│   │   ├── LICENSE.txt
│   │   ├── README.md
│   │   ├── base.php
│   │   ├── codecov.yml
│   │   ├── composer.json
│   │   ├── console.php
│   │   ├── convention.php
│   │   ├── helper.php
│   │   ├── lang
│   │   │   └── zh-cn.php
│   │   ├── library
│   │   │   ├── think
│   │   │   │   ├── App.php
│   │   │   │   ├── Build.php
│   │   │   │   ├── Cache.php
│   │   │   │   ├── Collection.php
│   │   │   │   ├── Config.php
│   │   │   │   ├── Console.php
│   │   │   │   ├── Controller.php
│   │   │   │   ├── Cookie.php
│   │   │   │   ├── Db.php
│   │   │   │   ├── Debug.php
│   │   │   │   ├── Env.php
│   │   │   │   ├── Error.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── File.php
│   │   │   │   ├── Hook.php
│   │   │   │   ├── Lang.php
│   │   │   │   ├── Loader.php
│   │   │   │   ├── Log.php
│   │   │   │   ├── Model.php
│   │   │   │   ├── Paginator.php
│   │   │   │   ├── Process.php
│   │   │   │   ├── Request.php
│   │   │   │   ├── Response.php
│   │   │   │   ├── Route.php
│   │   │   │   ├── Session.php
│   │   │   │   ├── Template.php
│   │   │   │   ├── Url.php
│   │   │   │   ├── Validate.php
│   │   │   │   ├── View.php
│   │   │   │   ├── cache
│   │   │   │   │   ├── Driver.php
│   │   │   │   │   └── driver
│   │   │   │   │       ├── File.php
│   │   │   │   │       ├── Lite.php
│   │   │   │   │       ├── Memcache.php
│   │   │   │   │       ├── Memcached.php
│   │   │   │   │       ├── Redis.php
│   │   │   │   │       ├── Sqlite.php
│   │   │   │   │       ├── Wincache.php
│   │   │   │   │       └── Xcache.php
│   │   │   │   ├── config
│   │   │   │   │   └── driver
│   │   │   │   │       ├── Ini.php
│   │   │   │   │       ├── Json.php
│   │   │   │   │       └── Xml.php
│   │   │   │   ├── console
│   │   │   │   │   ├── Command.php
│   │   │   │   │   ├── Input.php
│   │   │   │   │   ├── LICENSE
│   │   │   │   │   ├── Output.php
│   │   │   │   │   ├── bin
│   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   └── hiddeninput.exe
│   │   │   │   │   ├── command
│   │   │   │   │   │   ├── Build.php
│   │   │   │   │   │   ├── Clear.php
│   │   │   │   │   │   ├── Help.php
│   │   │   │   │   │   ├── Lists.php
│   │   │   │   │   │   ├── Make.php
│   │   │   │   │   │   ├── make
│   │   │   │   │   │   │   ├── Controller.php
│   │   │   │   │   │   │   ├── Model.php
│   │   │   │   │   │   │   └── stubs
│   │   │   │   │   │   │       ├── controller.plain.stub
│   │   │   │   │   │   │       ├── controller.stub
│   │   │   │   │   │   │       └── model.stub
│   │   │   │   │   │   └── optimize
│   │   │   │   │   │       ├── Autoload.php
│   │   │   │   │   │       ├── Config.php
│   │   │   │   │   │       ├── Route.php
│   │   │   │   │   │       └── Schema.php
│   │   │   │   │   ├── input
│   │   │   │   │   │   ├── Argument.php
│   │   │   │   │   │   ├── Definition.php
│   │   │   │   │   │   └── Option.php
│   │   │   │   │   └── output
│   │   │   │   │       ├── Ask.php
│   │   │   │   │       ├── Descriptor.php
│   │   │   │   │       ├── Formatter.php
│   │   │   │   │       ├── Question.php
│   │   │   │   │       ├── descriptor
│   │   │   │   │       │   └── Console.php
│   │   │   │   │       ├── driver
│   │   │   │   │       │   ├── Buffer.php
│   │   │   │   │       │   ├── Console.php
│   │   │   │   │       │   └── Nothing.php
│   │   │   │   │       ├── formatter
│   │   │   │   │       │   ├── Stack.php
│   │   │   │   │       │   └── Style.php
│   │   │   │   │       └── question
│   │   │   │   │           ├── Choice.php
│   │   │   │   │           └── Confirmation.php
│   │   │   │   ├── controller
│   │   │   │   │   ├── Rest.php
│   │   │   │   │   └── Yar.php
│   │   │   │   ├── db
│   │   │   │   │   ├── Builder.php
│   │   │   │   │   ├── Connection.php
│   │   │   │   │   ├── Query.php
│   │   │   │   │   ├── builder
│   │   │   │   │   │   ├── Mysql.php
│   │   │   │   │   │   ├── Pgsql.php
│   │   │   │   │   │   ├── Sqlite.php
│   │   │   │   │   │   └── Sqlsrv.php
│   │   │   │   │   ├── connector
│   │   │   │   │   │   ├── Mysql.php
│   │   │   │   │   │   ├── Pgsql.php
│   │   │   │   │   │   ├── Sqlite.php
│   │   │   │   │   │   ├── Sqlsrv.php
│   │   │   │   │   │   └── pgsql.sql
│   │   │   │   │   └── exception
│   │   │   │   │       ├── BindParamException.php
│   │   │   │   │       ├── DataNotFoundException.php
│   │   │   │   │       └── ModelNotFoundException.php
│   │   │   │   ├── debug
│   │   │   │   │   ├── Console.php
│   │   │   │   │   └── Html.php
│   │   │   │   ├── exception
│   │   │   │   │   ├── ClassNotFoundException.php
│   │   │   │   │   ├── DbException.php
│   │   │   │   │   ├── ErrorException.php
│   │   │   │   │   ├── Handle.php
│   │   │   │   │   ├── HttpException.php
│   │   │   │   │   ├── HttpResponseException.php
│   │   │   │   │   ├── PDOException.php
│   │   │   │   │   ├── TemplateNotFoundException.php
│   │   │   │   │   ├── ThrowableError.php
│   │   │   │   │   └── ValidateException.php
│   │   │   │   ├── log
│   │   │   │   │   └── driver
│   │   │   │   │       ├── File.php
│   │   │   │   │       ├── Socket.php
│   │   │   │   │       └── Test.php
│   │   │   │   ├── model
│   │   │   │   │   ├── Merge.php
│   │   │   │   │   ├── Pivot.php
│   │   │   │   │   └── Relation.php
│   │   │   │   ├── paginator
│   │   │   │   │   ├── Collection.php
│   │   │   │   │   └── driver
│   │   │   │   │       └── Bootstrap.php
│   │   │   │   ├── process
│   │   │   │   │   ├── Builder.php
│   │   │   │   │   ├── Utils.php
│   │   │   │   │   ├── exception
│   │   │   │   │   │   ├── Faild.php
│   │   │   │   │   │   └── Timeout.php
│   │   │   │   │   └── pipes
│   │   │   │   │       ├── Pipes.php
│   │   │   │   │       ├── Unix.php
│   │   │   │   │       └── Windows.php
│   │   │   │   ├── response
│   │   │   │   │   ├── Json.php
│   │   │   │   │   ├── Jsonp.php
│   │   │   │   │   ├── Redirect.php
│   │   │   │   │   ├── View.php
│   │   │   │   │   └── Xml.php
│   │   │   │   ├── session
│   │   │   │   │   └── driver
│   │   │   │   │       ├── Memcache.php
│   │   │   │   │       ├── Memcached.php
│   │   │   │   │       └── Redis.php
│   │   │   │   ├── template
│   │   │   │   │   ├── TagLib.php
│   │   │   │   │   ├── driver
│   │   │   │   │   │   └── File.php
│   │   │   │   │   └── taglib
│   │   │   │   │       └── Cx.php
│   │   │   │   └── view
│   │   │   │       └── driver
│   │   │   │           ├── Php.php
│   │   │   │           └── Think.php
│   │   │   └── traits
│   │   │       ├── controller
│   │   │       │   └── Jump.php
│   │   │       ├── model
│   │   │       │   └── SoftDelete.php
│   │   │       └── think
│   │   │           └── Instance.php
│   │   ├── logo.png
│   │   ├── phpunit.xml
│   │   ├── start.php
│   │   └── tpl
│   │       ├── default_index.tpl
│   │       ├── dispatch_jump.tpl
│   │       ├── page_trace.tpl
│   │       └── think_exception.tpl
│   └── vendor
│       ├── autoload.php
│       ├── bin
│       │   ├── phpunit
│       │   └── phpunit.bat
│       ├── composer
│       │   ├── ClassLoader.php
│       │   ├── LICENSE
│       │   ├── autoload_classmap.php
│       │   ├── autoload_files.php
│       │   ├── autoload_namespaces.php
│       │   ├── autoload_psr4.php
│       │   ├── autoload_real.php
│       │   ├── autoload_static.php
│       │   └── installed.json
│       ├── doctrine
│       │   └── instantiator
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       ├── phpmd.xml.dist
│       │       ├── phpunit.xml.dist
│       │       ├── src
│       │       │   └── Doctrine
│       │       │       └── Instantiator
│       │       │           ├── Exception
│       │       │           │   ├── ExceptionInterface.php
│       │       │           │   ├── InvalidArgumentException.php
│       │       │           │   └── UnexpectedValueException.php
│       │       │           ├── Instantiator.php
│       │       │           └── InstantiatorInterface.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
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   ├── composer.lock
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── src
│       │   │   │   ├── Element.php
│       │   │   │   ├── File.php
│       │   │   │   ├── Fqsen.php
│       │   │   │   ├── Location.php
│       │   │   │   ├── Project.php
│       │   │   │   └── ProjectFactory.php
│       │   │   └── tests
│       │   │       ├── common
│       │   │       │   └── bootstrap.php
│       │   │       └── unit
│       │   │           └── FqsenTest.php
│       │   ├── reflection-docblock
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   ├── composer.lock
│       │   │   ├── examples
│       │   │   │   ├── 01-interpreting-a-simple-docblock.php
│       │   │   │   ├── 02-interpreting-tags.php
│       │   │   │   ├── 03-reconstituting-a-docblock.php
│       │   │   │   ├── 04-adding-your-own-tag.php
│       │   │   │   └── playing-with-descriptions
│       │   │   │       └── 02-escaping.php
│       │   │   ├── phpmd.xml.dist
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── src
│       │   │   │   ├── DocBlock
│       │   │   │   │   ├── Description.php
│       │   │   │   │   ├── DescriptionFactory.php
│       │   │   │   │   ├── ExampleFinder.php
│       │   │   │   │   ├── Serializer.php
│       │   │   │   │   ├── StandardTagFactory.php
│       │   │   │   │   ├── Tag.php
│       │   │   │   │   ├── TagFactory.php
│       │   │   │   │   └── Tags
│       │   │   │   │       ├── Author.php
│       │   │   │   │       ├── BaseTag.php
│       │   │   │   │       ├── Covers.php
│       │   │   │   │       ├── Deprecated.php
│       │   │   │   │       ├── Example.php
│       │   │   │   │       ├── Factory
│       │   │   │   │       │   ├── StaticMethod.php
│       │   │   │   │       │   └── Strategy.php
│       │   │   │   │       ├── Formatter
│       │   │   │   │       │   └── 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
│       │   │   │   ├── DocBlock.php
│       │   │   │   ├── DocBlockFactory.php
│       │   │   │   └── DocBlockFactoryInterface.php
│       │   │   └── tests
│       │   │       ├── integration
│       │   │       │   ├── InterpretingDocBlocksTest.php
│       │   │       │   ├── ReconstitutingADocBlockTest.php
│       │   │       │   └── UsingTagsTest.php
│       │   │       └── unit
│       │   │           ├── DocBlock
│       │   │           │   ├── DescriptionFactoryTest.php
│       │   │           │   ├── DescriptionTest.php
│       │   │           │   ├── SerializerTest.php
│       │   │           │   ├── StandardTagFactoryTest.php
│       │   │           │   └── Tags
│       │   │           │       ├── AuthorTest.php
│       │   │           │       ├── CoversTest.php
│       │   │           │       ├── DeprecatedTest.php
│       │   │           │       ├── Formatter
│       │   │           │       │   └── PassthroughFormatterTest.php
│       │   │           │       ├── GenericTest.php
│       │   │           │       ├── LinkTest.php
│       │   │           │       ├── MethodTest.php
│       │   │           │       ├── ParamTest.php
│       │   │           │       ├── PropertyReadTest.php
│       │   │           │       ├── PropertyTest.php
│       │   │           │       ├── PropertyWriteTest.php
│       │   │           │       ├── ReturnTest.php
│       │   │           │       ├── SeeTest.php
│       │   │           │       ├── SinceTest.php
│       │   │           │       ├── SourceTest.php
│       │   │           │       ├── ThrowsTest.php
│       │   │           │       ├── UsesTest.php
│       │   │           │       ├── VarTest.php
│       │   │           │       └── VersionTest.php
│       │   │           ├── DocBlockFactoryTest.php
│       │   │           └── DocBlockTest.php
│       │   └── type-resolver
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       ├── examples
│       │       │   ├── 01-resolving-simple-types.php
│       │       │   ├── 02-resolving-classes.php
│       │       │   ├── 03-resolving-all-elements.php
│       │       │   ├── 04-discovering-the-context-using-class-reflection.php
│       │       │   ├── 05-discovering-the-context-using-method-reflection.php
│       │       │   ├── 06-discovering-the-context-using-file-contents.php
│       │       │   └── Classy.php
│       │       ├── phpmd.xml.dist
│       │       ├── phpunit.xml.dist
│       │       ├── src
│       │       │   ├── FqsenResolver.php
│       │       │   ├── Type.php
│       │       │   ├── TypeResolver.php
│       │       │   └── Types
│       │       │       ├── Array_.php
│       │       │       ├── Boolean.php
│       │       │       ├── Callable_.php
│       │       │       ├── Compound.php
│       │       │       ├── Context.php
│       │       │       ├── ContextFactory.php
│       │       │       ├── Float_.php
│       │       │       ├── Integer.php
│       │       │       ├── Mixed.php
│       │       │       ├── Null_.php
│       │       │       ├── Object_.php
│       │       │       ├── Resource.php
│       │       │       ├── Scalar.php
│       │       │       ├── Self_.php
│       │       │       ├── Static_.php
│       │       │       ├── String_.php
│       │       │       ├── This.php
│       │       │       └── Void_.php
│       │       └── tests
│       │           └── unit
│       │               ├── TypeResolverTest.php
│       │               └── Types
│       │                   ├── ContextFactoryTest.php
│       │                   └── ContextTest.php
│       ├── phpspec
│       │   └── prophecy
│       │       ├── CHANGES.md
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       ├── spec
│       │       │   └── Prophecy
│       │       │       ├── Argument
│       │       │       │   ├── ArgumentsWildcardSpec.php
│       │       │       │   └── Token
│       │       │       │       ├── AnyValueTokenSpec.php
│       │       │       │       ├── AnyValuesTokenSpec.php
│       │       │       │       ├── ApproximateValueTokenSpec.php
│       │       │       │       ├── ArrayCountTokenSpec.php
│       │       │       │       ├── ArrayEntryTokenSpec.php
│       │       │       │       ├── ArrayEveryEntryTokenSpec.php
│       │       │       │       ├── CallbackTokenSpec.php
│       │       │       │       ├── ExactValueTokenSpec.php
│       │       │       │       ├── IdenticalValueTokenSpec.php
│       │       │       │       ├── LogicalAndTokenSpec.php
│       │       │       │       ├── LogicalNotTokenSpec.php
│       │       │       │       ├── ObjectStateTokenSpec.php
│       │       │       │       ├── StringContainsTokenSpec.php
│       │       │       │       └── TypeTokenSpec.php
│       │       │       ├── ArgumentSpec.php
│       │       │       ├── Call
│       │       │       │   ├── CallCenterSpec.php
│       │       │       │   └── CallSpec.php
│       │       │       ├── Comparator
│       │       │       │   ├── ClosureComparatorSpec.php
│       │       │       │   ├── FactorySpec.php
│       │       │       │   └── ProphecyComparatorSpec.php
│       │       │       ├── Doubler
│       │       │       │   ├── ClassPatch
│       │       │       │   │   ├── DisableConstructorPatchSpec.php
│       │       │       │   │   ├── HhvmExceptionPatchSpec.php
│       │       │       │   │   ├── KeywordPatchSpec.php
│       │       │       │   │   ├── MagicCallPatchSpec.php
│       │       │       │   │   ├── ProphecySubjectPatchSpec.php
│       │       │       │   │   ├── ReflectionClassNewInstancePatchSpec.php
│       │       │       │   │   ├── SplFileInfoPatchSpec.php
│       │       │       │   │   └── TraversablePatchSpec.php
│       │       │       │   ├── DoublerSpec.php
│       │       │       │   ├── Generator
│       │       │       │   │   ├── ClassCodeGeneratorSpec.php
│       │       │       │   │   ├── ClassCreatorSpec.php
│       │       │       │   │   ├── ClassMirrorSpec.php
│       │       │       │   │   └── Node
│       │       │       │   │       ├── ArgumentNodeSpec.php
│       │       │       │   │       ├── ClassNodeSpec.php
│       │       │       │   │       └── MethodNodeSpec.php
│       │       │       │   ├── LazyDoubleSpec.php
│       │       │       │   └── NameGeneratorSpec.php
│       │       │       ├── Exception
│       │       │       │   ├── Call
│       │       │       │   │   └── UnexpectedCallExceptionSpec.php
│       │       │       │   ├── Doubler
│       │       │       │   │   ├── ClassCreatorExceptionSpec.php
│       │       │       │   │   ├── ClassMirrorExceptionSpec.php
│       │       │       │   │   ├── ClassNotFoundExceptionSpec.php
│       │       │       │   │   ├── DoubleExceptionSpec.php
│       │       │       │   │   ├── InterfaceNotFoundExceptionSpec.php
│       │       │       │   │   ├── MethodNotExtendableExceptionSpec.php
│       │       │       │   │   └── MethodNotFoundExceptionSpec.php
│       │       │       │   ├── Prediction
│       │       │       │   │   ├── AggregateExceptionSpec.php
│       │       │       │   │   ├── NoCallsExceptionSpec.php
│       │       │       │   │   ├── UnexpectedCallsCountExceptionSpec.php
│       │       │       │   │   └── UnexpectedCallsExceptionSpec.php
│       │       │       │   └── Prophecy
│       │       │       │       ├── MethodProphecyExceptionSpec.php
│       │       │       │       └── ObjectProphecyExceptionSpec.php
│       │       │       ├── Prediction
│       │       │       │   ├── CallPredictionSpec.php
│       │       │       │   ├── CallTimesPredictionSpec.php
│       │       │       │   ├── CallbackPredictionSpec.php
│       │       │       │   └── NoCallsPredictionSpec.php
│       │       │       ├── Promise
│       │       │       │   ├── CallbackPromiseSpec.php
│       │       │       │   ├── ReturnArgumentPromiseSpec.php
│       │       │       │   ├── ReturnPromiseSpec.php
│       │       │       │   └── ThrowPromiseSpec.php
│       │       │       ├── Prophecy
│       │       │       │   ├── MethodProphecySpec.php
│       │       │       │   ├── ObjectProphecySpec.php
│       │       │       │   └── RevealerSpec.php
│       │       │       ├── ProphetSpec.php
│       │       │       └── Util
│       │       │           └── StringUtilSpec.php
│       │       └── src
│       │           └── Prophecy
│       │               ├── Argument
│       │               │   ├── ArgumentsWildcard.php
│       │               │   └── Token
│       │               │       ├── AnyValueToken.php
│       │               │       ├── AnyValuesToken.php
│       │               │       ├── ApproximateValueToken.php
│       │               │       ├── ArrayCountToken.php
│       │               │       ├── ArrayEntryToken.php
│       │               │       ├── ArrayEveryEntryToken.php
│       │               │       ├── CallbackToken.php
│       │               │       ├── ExactValueToken.php
│       │               │       ├── IdenticalValueToken.php
│       │               │       ├── LogicalAndToken.php
│       │               │       ├── LogicalNotToken.php
│       │               │       ├── ObjectStateToken.php
│       │               │       ├── StringContainsToken.php
│       │               │       ├── TokenInterface.php
│       │               │       └── TypeToken.php
│       │               ├── Argument.php
│       │               ├── Call
│       │               │   ├── Call.php
│       │               │   └── CallCenter.php
│       │               ├── Comparator
│       │               │   ├── ClosureComparator.php
│       │               │   ├── Factory.php
│       │               │   └── ProphecyComparator.php
│       │               ├── Doubler
│       │               │   ├── CachedDoubler.php
│       │               │   ├── ClassPatch
│       │               │   │   ├── ClassPatchInterface.php
│       │               │   │   ├── DisableConstructorPatch.php
│       │               │   │   ├── HhvmExceptionPatch.php
│       │               │   │   ├── KeywordPatch.php
│       │               │   │   ├── MagicCallPatch.php
│       │               │   │   ├── ProphecySubjectPatch.php
│       │               │   │   ├── ReflectionClassNewInstancePatch.php
│       │               │   │   ├── SplFileInfoPatch.php
│       │               │   │   └── TraversablePatch.php
│       │               │   ├── DoubleInterface.php
│       │               │   ├── Doubler.php
│       │               │   ├── Generator
│       │               │   │   ├── ClassCodeGenerator.php
│       │               │   │   ├── ClassCreator.php
│       │               │   │   ├── ClassMirror.php
│       │               │   │   ├── Node
│       │               │   │   │   ├── ArgumentNode.php
│       │               │   │   │   ├── ClassNode.php
│       │               │   │   │   └── MethodNode.php
│       │               │   │   └── ReflectionInterface.php
│       │               │   ├── LazyDouble.php
│       │               │   └── NameGenerator.php
│       │               ├── Exception
│       │               │   ├── Call
│       │               │   │   └── UnexpectedCallException.php
│       │               │   ├── Doubler
│       │               │   │   ├── ClassCreatorException.php
│       │               │   │   ├── ClassMirrorException.php
│       │               │   │   ├── ClassNotFoundException.php
│       │               │   │   ├── DoubleException.php
│       │               │   │   ├── DoublerException.php
│       │               │   │   ├── InterfaceNotFoundException.php
│       │               │   │   ├── MethodNotExtendableException.php
│       │               │   │   ├── MethodNotFoundException.php
│       │               │   │   └── ReturnByReferenceException.php
│       │               │   ├── Exception.php
│       │               │   ├── InvalidArgumentException.php
│       │               │   ├── Prediction
│       │               │   │   ├── AggregateException.php
│       │               │   │   ├── FailedPredictionException.php
│       │               │   │   ├── NoCallsException.php
│       │               │   │   ├── PredictionException.php
│       │               │   │   ├── UnexpectedCallsCountException.php
│       │               │   │   └── UnexpectedCallsException.php
│       │               │   └── Prophecy
│       │               │       ├── MethodProphecyException.php
│       │               │       ├── ObjectProphecyException.php
│       │               │       └── ProphecyException.php
│       │               ├── PhpDocumentor
│       │               │   ├── ClassAndInterfaceTagRetriever.php
│       │               │   ├── ClassTagRetriever.php
│       │               │   ├── LegacyClassTagRetriever.php
│       │               │   └── MethodTagRetrieverInterface.php
│       │               ├── Prediction
│       │               │   ├── CallPrediction.php
│       │               │   ├── CallTimesPrediction.php
│       │               │   ├── CallbackPrediction.php
│       │               │   ├── NoCallsPrediction.php
│       │               │   └── PredictionInterface.php
│       │               ├── Promise
│       │               │   ├── CallbackPromise.php
│       │               │   ├── PromiseInterface.php
│       │               │   ├── ReturnArgumentPromise.php
│       │               │   ├── ReturnPromise.php
│       │               │   └── ThrowPromise.php
│       │               ├── Prophecy
│       │               │   ├── MethodProphecy.php
│       │               │   ├── ObjectProphecy.php
│       │               │   ├── ProphecyInterface.php
│       │               │   ├── ProphecySubjectInterface.php
│       │               │   ├── Revealer.php
│       │               │   └── RevealerInterface.php
│       │               ├── Prophet.php
│       │               └── Util
│       │                   ├── ExportUtil.php
│       │                   └── StringUtil.php
│       ├── phpunit
│       │   ├── php-code-coverage
│       │   │   ├── CONTRIBUTING.md
│       │   │   ├── ChangeLog-2.2.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build
│       │   │   │   └── travis-ci.xml
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── 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
│       │   │       ├── PHP
│       │   │       │   ├── CodeCoverage
│       │   │       │   │   ├── FilterTest.php
│       │   │       │   │   ├── Report
│       │   │       │   │   │   ├── CloverTest.php
│       │   │       │   │   │   └── FactoryTest.php
│       │   │       │   │   └── UtilTest.php
│       │   │       │   └── CodeCoverageTest.php
│       │   │       ├── TestCase.php
│       │   │       └── _files
│       │   │           ├── BankAccount-clover.xml
│       │   │           ├── BankAccount.php
│       │   │           ├── BankAccountTest.php
│       │   │           ├── CoverageClassExtendedTest.php
│       │   │           ├── CoverageClassTest.php
│       │   │           ├── CoverageFunctionParenthesesTest.php
│       │   │           ├── CoverageFunctionParenthesesWhitespaceTest.php
│       │   │           ├── CoverageFunctionTest.php
│       │   │           ├── CoverageMethodOneLineAnnotationTest.php
│       │   │           ├── CoverageMethodParenthesesTest.php
│       │   │           ├── CoverageMethodParenthesesWhitespaceTest.php
│       │   │           ├── CoverageMethodTest.php
│       │   │           ├── CoverageNoneTest.php
│       │   │           ├── CoverageNotPrivateTest.php
│       │   │           ├── CoverageNotProtectedTest.php
│       │   │           ├── CoverageNotPublicTest.php
│       │   │           ├── CoverageNothingTest.php
│       │   │           ├── CoveragePrivateTest.php
│       │   │           ├── CoverageProtectedTest.php
│       │   │           ├── CoveragePublicTest.php
│       │   │           ├── CoverageTwoDefaultClassAnnotations.php
│       │   │           ├── CoveredClass.php
│       │   │           ├── CoveredFunction.php
│       │   │           ├── NamespaceCoverageClassExtendedTest.php
│       │   │           ├── NamespaceCoverageClassTest.php
│       │   │           ├── NamespaceCoverageCoversClassPublicTest.php
│       │   │           ├── NamespaceCoverageCoversClassTest.php
│       │   │           ├── NamespaceCoverageMethodTest.php
│       │   │           ├── NamespaceCoverageNotPrivateTest.php
│       │   │           ├── NamespaceCoverageNotProtectedTest.php
│       │   │           ├── NamespaceCoverageNotPublicTest.php
│       │   │           ├── NamespaceCoveragePrivateTest.php
│       │   │           ├── NamespaceCoverageProtectedTest.php
│       │   │           ├── NamespaceCoveragePublicTest.php
│       │   │           ├── NamespaceCoveredClass.php
│       │   │           ├── NotExistingCoveredElementTest.php
│       │   │           ├── class-with-anonymous-function-clover.xml
│       │   │           ├── ignored-lines-clover.xml
│       │   │           ├── source_with_class_and_anonymous_function.php
│       │   │           ├── source_with_ignore.php
│       │   │           ├── source_with_namespace.php
│       │   │           ├── source_with_oneline_annotations.php
│       │   │           ├── source_without_ignore.php
│       │   │           └── source_without_namespace.php
│       │   ├── php-file-iterator
│       │   │   ├── ChangeLog.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Facade.php
│       │   │       ├── Factory.php
│       │   │       └── Iterator.php
│       │   ├── php-text-template
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       └── Template.php
│       │   ├── php-timer
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   ├── src
│       │   │   │   └── Timer.php
│       │   │   └── tests
│       │   │       └── TimerTest.php
│       │   ├── php-token-stream
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build
│       │   │   │   └── phpunit.xml
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── src
│       │   │   │   ├── Token
│       │   │   │   │   ├── Stream
│       │   │   │   │   │   └── CachingFactory.php
│       │   │   │   │   └── Stream.php
│       │   │   │   └── Token.php
│       │   │   └── tests
│       │   │       ├── Token
│       │   │       │   ├── ClassTest.php
│       │   │       │   ├── ClosureTest.php
│       │   │       │   ├── FunctionTest.php
│       │   │       │   ├── IncludeTest.php
│       │   │       │   ├── InterfaceTest.php
│       │   │       │   └── NamespaceTest.php
│       │   │       ├── TokenTest.php
│       │   │       ├── _fixture
│       │   │       │   ├── classExtendsNamespacedClass.php
│       │   │       │   ├── classInNamespace.php
│       │   │       │   ├── classInScopedNamespace.php
│       │   │       │   ├── class_with_method_that_declares_anonymous_class.php
│       │   │       │   ├── class_with_method_that_declares_anonymous_class2.php
│       │   │       │   ├── closure.php
│       │   │       │   ├── issue19.php
│       │   │       │   ├── issue30.php
│       │   │       │   ├── multipleNamespacesWithOneClassUsingBraces.php
│       │   │       │   ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│       │   │       │   ├── source.php
│       │   │       │   ├── source2.php
│       │   │       │   ├── source3.php
│       │   │       │   ├── source4.php
│       │   │       │   └── source5.php
│       │   │       └── bootstrap.php
│       │   ├── phpunit
│       │   │   ├── CODE_OF_CONDUCT.md
│       │   │   ├── CONTRIBUTING.md
│       │   │   ├── ChangeLog-4.0.md
│       │   │   ├── ChangeLog-4.1.md
│       │   │   ├── ChangeLog-4.2.md
│       │   │   ├── ChangeLog-4.3.md
│       │   │   ├── ChangeLog-4.4.md
│       │   │   ├── ChangeLog-4.5.md
│       │   │   ├── ChangeLog-4.6.md
│       │   │   ├── ChangeLog-4.7.md
│       │   │   ├── ChangeLog-4.8.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit
│       │   │   ├── phpunit.xml
│       │   │   ├── phpunit.xsd
│       │   │   ├── src
│       │   │   │   ├── Exception.php
│       │   │   │   ├── Extensions
│       │   │   │   │   ├── GroupTestSuite.php
│       │   │   │   │   ├── PhptTestCase.php
│       │   │   │   │   ├── PhptTestSuite.php
│       │   │   │   │   ├── RepeatedTest.php
│       │   │   │   │   ├── TestDecorator.php
│       │   │   │   │   └── TicketListener.php
│       │   │   │   ├── Framework
│       │   │   │   │   ├── Assert
│       │   │   │   │   │   └── Functions.php
│       │   │   │   │   ├── Assert.php
│       │   │   │   │   ├── AssertionFailedError.php
│       │   │   │   │   ├── BaseTestListener.php
│       │   │   │   │   ├── CodeCoverageException.php
│       │   │   │   │   ├── Constraint
│       │   │   │   │   │   ├── And.php
│       │   │   │   │   │   ├── ArrayHasKey.php
│       │   │   │   │   │   ├── ArraySubset.php
│       │   │   │   │   │   ├── Attribute.php
│       │   │   │   │   │   ├── Callback.php
│       │   │   │   │   │   ├── ClassHasAttribute.php
│       │   │   │   │   │   ├── ClassHasStaticAttribute.php
│       │   │   │   │   │   ├── Composite.php
│       │   │   │   │   │   ├── Count.php
│       │   │   │   │   │   ├── Exception.php
│       │   │   │   │   │   ├── ExceptionCode.php
│       │   │   │   │   │   ├── ExceptionMessage.php
│       │   │   │   │   │   ├── ExceptionMessageRegExp.php
│       │   │   │   │   │   ├── FileExists.php
│       │   │   │   │   │   ├── GreaterThan.php
│       │   │   │   │   │   ├── IsAnything.php
│       │   │   │   │   │   ├── IsEmpty.php
│       │   │   │   │   │   ├── IsEqual.php
│       │   │   │   │   │   ├── IsFalse.php
│       │   │   │   │   │   ├── IsIdentical.php
│       │   │   │   │   │   ├── IsInstanceOf.php
│       │   │   │   │   │   ├── IsJson.php
│       │   │   │   │   │   ├── IsNull.php
│       │   │   │   │   │   ├── IsTrue.php
│       │   │   │   │   │   ├── IsType.php
│       │   │   │   │   │   ├── JsonMatches
│       │   │   │   │   │   │   └── ErrorMessageProvider.php
│       │   │   │   │   │   ├── JsonMatches.php
│       │   │   │   │   │   ├── LessThan.php
│       │   │   │   │   │   ├── Not.php
│       │   │   │   │   │   ├── ObjectHasAttribute.php
│       │   │   │   │   │   ├── Or.php
│       │   │   │   │   │   ├── PCREMatch.php
│       │   │   │   │   │   ├── SameSize.php
│       │   │   │   │   │   ├── StringContains.php
│       │   │   │   │   │   ├── StringEndsWith.php
│       │   │   │   │   │   ├── StringMatches.php
│       │   │   │   │   │   ├── StringStartsWith.php
│       │   │   │   │   │   ├── TraversableContains.php
│       │   │   │   │   │   ├── TraversableContainsOnly.php
│       │   │   │   │   │   └── Xor.php
│       │   │   │   │   ├── Constraint.php
│       │   │   │   │   ├── Error
│       │   │   │   │   │   ├── Deprecated.php
│       │   │   │   │   │   ├── Notice.php
│       │   │   │   │   │   └── Warning.php
│       │   │   │   │   ├── Error.php
│       │   │   │   │   ├── Exception.php
│       │   │   │   │   ├── ExceptionWrapper.php
│       │   │   │   │   ├── ExpectationFailedException.php
│       │   │   │   │   ├── IncompleteTest.php
│       │   │   │   │   ├── IncompleteTestCase.php
│       │   │   │   │   ├── IncompleteTestError.php
│       │   │   │   │   ├── InvalidCoversTargetError.php
│       │   │   │   │   ├── InvalidCoversTargetException.php
│       │   │   │   │   ├── OutputError.php
│       │   │   │   │   ├── RiskyTest.php
│       │   │   │   │   ├── RiskyTestError.php
│       │   │   │   │   ├── SelfDescribing.php
│       │   │   │   │   ├── SkippedTest.php
│       │   │   │   │   ├── SkippedTestCase.php
│       │   │   │   │   ├── SkippedTestError.php
│       │   │   │   │   ├── SkippedTestSuiteError.php
│       │   │   │   │   ├── SyntheticError.php
│       │   │   │   │   ├── Test.php
│       │   │   │   │   ├── TestCase.php
│       │   │   │   │   ├── TestFailure.php
│       │   │   │   │   ├── TestListener.php
│       │   │   │   │   ├── TestResult.php
│       │   │   │   │   ├── TestSuite
│       │   │   │   │   │   └── 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
│       │   │   │       │   ├── Template
│       │   │   │       │   │   └── TestCaseMethod.tpl.dist
│       │   │   │       │   ├── Windows.php
│       │   │   │       │   └── eval-stdin.php
│       │   │   │       ├── PHP.php
│       │   │   │       ├── Printer.php
│       │   │   │       ├── Regex.php
│       │   │   │       ├── String.php
│       │   │   │       ├── Test.php
│       │   │   │       ├── TestDox
│       │   │   │       │   ├── NamePrettifier.php
│       │   │   │       │   ├── ResultPrinter
│       │   │   │       │   │   ├── HTML.php
│       │   │   │       │   │   └── Text.php
│       │   │   │       │   └── ResultPrinter.php
│       │   │   │       ├── TestSuiteIterator.php
│       │   │   │       ├── Type.php
│       │   │   │       └── XML.php
│       │   │   └── tests
│       │   │       ├── Extensions
│       │   │       │   ├── PhptTestCaseTest.php
│       │   │       │   └── RepeatedTestTest.php
│       │   │       ├── Fail
│       │   │       │   └── fail.phpt
│       │   │       ├── Framework
│       │   │       │   ├── AssertTest.php
│       │   │       │   ├── BaseTestListenerTest.php
│       │   │       │   ├── Constraint
│       │   │       │   │   ├── CountTest.php
│       │   │       │   │   ├── ExceptionMessageRegExpTest.php
│       │   │       │   │   ├── ExceptionMessageTest.php
│       │   │       │   │   ├── JsonMatches
│       │   │       │   │   │   └── ErrorMessageProviderTest.php
│       │   │       │   │   └── JsonMatchesTest.php
│       │   │       │   ├── ConstraintTest.php
│       │   │       │   ├── SuiteTest.php
│       │   │       │   ├── TestCaseTest.php
│       │   │       │   ├── TestFailureTest.php
│       │   │       │   ├── TestImplementorTest.php
│       │   │       │   └── TestListenerTest.php
│       │   │       ├── Regression
│       │   │       │   ├── GitHub
│       │   │       │   │   ├── 1149
│       │   │       │   │   │   └── Issue1149Test.php
│       │   │       │   │   ├── 1149.phpt
│       │   │       │   │   ├── 1216
│       │   │       │   │   │   ├── Issue1216Test.php
│       │   │       │   │   │   ├── bootstrap1216.php
│       │   │       │   │   │   └── phpunit1216.xml
│       │   │       │   │   ├── 1216.phpt
│       │   │       │   │   ├── 1265
│       │   │       │   │   │   ├── Issue1265Test.php
│       │   │       │   │   │   └── phpunit1265.xml
│       │   │       │   │   ├── 1265.phpt
│       │   │       │   │   ├── 1330
│       │   │       │   │   │   ├── Issue1330Test.php
│       │   │       │   │   │   └── phpunit1330.xml
│       │   │       │   │   ├── 1330.phpt
│       │   │       │   │   ├── 1335
│       │   │       │   │   │   ├── Issue1335Test.php
│       │   │       │   │   │   └── bootstrap1335.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
│       │   │       │   │   │   ├── Issue2158Test.php
│       │   │       │   │   │   └── constant.inc
│       │   │       │   │   ├── 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
│       │   │       │   │   │   ├── Issue797Test.php
│       │   │       │   │   │   └── bootstrap797.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
│       │   │       │   ├── dependencies-isolation.phpt
│       │   │       │   ├── dependencies.phpt
│       │   │       │   ├── dependencies2-isolation.phpt
│       │   │       │   ├── dependencies2.phpt
│       │   │       │   ├── dependencies3-isolation.phpt
│       │   │       │   ├── dependencies3.phpt
│       │   │       │   ├── empty-testcase.phpt
│       │   │       │   ├── exception-stack.phpt
│       │   │       │   ├── exclude-group-isolation.phpt
│       │   │       │   ├── exclude-group.phpt
│       │   │       │   ├── failure-isolation.phpt
│       │   │       │   ├── failure.phpt
│       │   │       │   ├── fatal-isolation.phpt
│       │   │       │   ├── filter-class-isolation.phpt
│       │   │       │   ├── filter-class.phpt
│       │   │       │   ├── filter-dataprovider-by-classname-and-range-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-classname-and-range.phpt
│       │   │       │   ├── filter-dataprovider-by-number-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-number.phpt
│       │   │       │   ├── filter-dataprovider-by-only-range-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-only-range.phpt
│       │   │       │   ├── filter-dataprovider-by-only-regexp-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-only-regexp.phpt
│       │   │       │   ├── filter-dataprovider-by-only-string-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-only-string.phpt
│       │   │       │   ├── filter-dataprovider-by-range-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-range.phpt
│       │   │       │   ├── filter-dataprovider-by-regexp-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-regexp.phpt
│       │   │       │   ├── filter-dataprovider-by-string-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-string.phpt
│       │   │       │   ├── filter-method-case-insensitive.phpt
│       │   │       │   ├── filter-method-case-sensitive-no-result.phpt
│       │   │       │   ├── filter-method-isolation.phpt
│       │   │       │   ├── filter-method.phpt
│       │   │       │   ├── filter-no-results.phpt
│       │   │       │   ├── group-isolation.phpt
│       │   │       │   ├── group.phpt
│       │   │       │   ├── help.phpt
│       │   │       │   ├── help2.phpt
│       │   │       │   ├── ini-isolation.phpt
│       │   │       │   ├── list-groups.phpt
│       │   │       │   ├── log-json-no-pretty-print.phpt
│       │   │       │   ├── log-json-post-66021.phpt
│       │   │       │   ├── log-json-pre-66021.phpt
│       │   │       │   ├── log-tap.phpt
│       │   │       │   ├── log-xml.phpt
│       │   │       │   ├── options-after-arguments.phpt
│       │   │       │   ├── output-isolation.phpt
│       │   │       │   ├── repeat.phpt
│       │   │       │   ├── report-useless-tests-incomplete.phpt
│       │   │       │   ├── report-useless-tests-isolation.phpt
│       │   │       │   ├── report-useless-tests.phpt
│       │   │       │   ├── tap.phpt
│       │   │       │   ├── test-suffix-multiple.phpt
│       │   │       │   ├── test-suffix-single.phpt
│       │   │       │   ├── testdox-html.phpt
│       │   │       │   ├── testdox-text.phpt
│       │   │       │   └── testdox.phpt
│       │   │       ├── Util
│       │   │       │   ├── ConfigurationTest.php
│       │   │       │   ├── GetoptTest.php
│       │   │       │   ├── GlobalStateTest.php
│       │   │       │   ├── RegexTest.php
│       │   │       │   ├── TestDox
│       │   │       │   │   └── NamePrettifierTest.php
│       │   │       │   ├── TestTest.php
│       │   │       │   └── XMLTest.php
│       │   │       ├── _files
│       │   │       │   ├── AbstractTest.php
│       │   │       │   ├── Author.php
│       │   │       │   ├── BankAccount.php
│       │   │       │   ├── BankAccountTest.php
│       │   │       │   ├── BankAccountTest.test.php
│       │   │       │   ├── BaseTestListenerSample.php
│       │   │       │   ├── BeforeAndAfterTest.php
│       │   │       │   ├── BeforeClassAndAfterClassTest.php
│       │   │       │   ├── Book.php
│       │   │       │   ├── Calculator.php
│       │   │       │   ├── ChangeCurrentWorkingDirectoryTest.php
│       │   │       │   ├── ClassWithNonPublicAttributes.php
│       │   │       │   ├── ClassWithScalarTypeDeclarations.php
│       │   │       │   ├── ClassWithToString.php
│       │   │       │   ├── ConcreteTest.my.php
│       │   │       │   ├── ConcreteTest.php
│       │   │       │   ├── CoverageClassExtendedTest.php
│       │   │       │   ├── CoverageClassTest.php
│       │   │       │   ├── CoverageFunctionParenthesesTest.php
│       │   │       │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│       │   │       │   ├── CoverageFunctionTest.php
│       │   │       │   ├── CoverageMethodOneLineAnnotationTest.php
│       │   │       │   ├── CoverageMethodParenthesesTest.php
│       │   │       │   ├── CoverageMethodParenthesesWhitespaceTest.php
│       │   │       │   ├── CoverageMethodTest.php
│       │   │       │   ├── CoverageNamespacedFunctionTest.php
│       │   │       │   ├── CoverageNoneTest.php
│       │   │       │   ├── CoverageNotPrivateTest.php
│       │   │       │   ├── CoverageNotProtectedTest.php
│       │   │       │   ├── CoverageNotPublicTest.php
│       │   │       │   ├── CoverageNothingTest.php
│       │   │       │   ├── CoveragePrivateTest.php
│       │   │       │   ├── CoverageProtectedTest.php
│       │   │       │   ├── CoveragePublicTest.php
│       │   │       │   ├── CoverageTwoDefaultClassAnnotations.php
│       │   │       │   ├── CoveredClass.php
│       │   │       │   ├── CoveredFunction.php
│       │   │       │   ├── CustomPrinter.php
│       │   │       │   ├── DataProviderDebugTest.php
│       │   │       │   ├── DataProviderFilterTest.php
│       │   │       │   ├── DataProviderIncompleteTest.php
│       │   │       │   ├── DataProviderSkippedTest.php
│       │   │       │   ├── DataProviderTest.php
│       │   │       │   ├── DependencyFailureTest.php
│       │   │       │   ├── DependencySuccessTest.php
│       │   │       │   ├── DependencyTestSuite.php
│       │   │       │   ├── DoubleTestCase.php
│       │   │       │   ├── DummyException.php
│       │   │       │   ├── EmptyTestCaseTest.php
│       │   │       │   ├── ExceptionInAssertPostConditionsTest.php
│       │   │       │   ├── ExceptionInAssertPreConditionsTest.php
│       │   │       │   ├── ExceptionInSetUpTest.php
│       │   │       │   ├── ExceptionInTearDownTest.php
│       │   │       │   ├── ExceptionInTest.php
│       │   │       │   ├── ExceptionNamespaceTest.php
│       │   │       │   ├── ExceptionStackTest.php
│       │   │       │   ├── ExceptionTest.php
│       │   │       │   ├── Failure.php
│       │   │       │   ├── FailureTest.php
│       │   │       │   ├── FatalTest.php
│       │   │       │   ├── IncompleteTest.php
│       │   │       │   ├── Inheritance
│       │   │       │   │   ├── InheritanceA.php
│       │   │       │   │   └── InheritanceB.php
│       │   │       │   ├── InheritedTestCase.php
│       │   │       │   ├── IniTest.php
│       │   │       │   ├── IsolationTest.php
│       │   │       │   ├── JsonData
│       │   │       │   │   ├── arrayObject.json
│       │   │       │   │   └── simpleObject.json
│       │   │       │   ├── MockRunner.php
│       │   │       │   ├── MultiDependencyTest.php
│       │   │       │   ├── NamespaceCoverageClassExtendedTest.php
│       │   │       │   ├── NamespaceCoverageClassTest.php
│       │   │       │   ├── NamespaceCoverageCoversClassPublicTest.php
│       │   │       │   ├── NamespaceCoverageCoversClassTest.php
│       │   │       │   ├── NamespaceCoverageMethodTest.php
│       │   │       │   ├── NamespaceCoverageNotPrivateTest.php
│       │   │       │   ├── NamespaceCoverageNotProtectedTest.php
│       │   │       │   ├── NamespaceCoverageNotPublicTest.php
│       │   │       │   ├── NamespaceCoveragePrivateTest.php
│       │   │       │   ├── NamespaceCoverageProtectedTest.php
│       │   │       │   ├── NamespaceCoveragePublicTest.php
│       │   │       │   ├── NamespaceCoveredClass.php
│       │   │       │   ├── NamespaceCoveredFunction.php
│       │   │       │   ├── NoArgTestCaseTest.php
│       │   │       │   ├── NoTestCaseClass.php
│       │   │       │   ├── NoTestCases.php
│       │   │       │   ├── NonStatic.php
│       │   │       │   ├── NotExistingCoveredElementTest.php
│       │   │       │   ├── NotPublicTestCase.php
│       │   │       │   ├── NotVoidTestCase.php
│       │   │       │   ├── NothingTest.php
│       │   │       │   ├── OneTestCase.php
│       │   │       │   ├── OutputTestCase.php
│       │   │       │   ├── OverrideTestCase.php
│       │   │       │   ├── RequirementsClassBeforeClassHookTest.php
│       │   │       │   ├── RequirementsClassDocBlockTest.php
│       │   │       │   ├── RequirementsTest.php
│       │   │       │   ├── SampleArrayAccess.php
│       │   │       │   ├── SampleClass.php
│       │   │       │   ├── Singleton.php
│       │   │       │   ├── StackTest.php
│       │   │       │   ├── Struct.php
│       │   │       │   ├── Success.php
│       │   │       │   ├── TemplateMethodsTest.php
│       │   │       │   ├── TestIncomplete.php
│       │   │       │   ├── TestIterator.php
│       │   │       │   ├── TestIterator2.php
│       │   │       │   ├── TestSkipped.php
│       │   │       │   ├── TestTestError.php
│       │   │       │   ├── TestWithTest.php
│       │   │       │   ├── ThrowExceptionTestCase.php
│       │   │       │   ├── ThrowNoExceptionTestCase.php
│       │   │       │   ├── WasRun.php
│       │   │       │   ├── bar.xml
│       │   │       │   ├── configuration.colors.empty.xml
│       │   │       │   ├── configuration.colors.false.xml
│       │   │       │   ├── configuration.colors.invalid.xml
│       │   │       │   ├── configuration.colors.true.xml
│       │   │       │   ├── configuration.custom-printer.xml
│       │   │       │   ├── configuration.xml
│       │   │       │   ├── configuration_empty.xml
│       │   │       │   ├── configuration_xinclude.xml
│       │   │       │   ├── expectedFileFormat.txt
│       │   │       │   ├── foo.xml
│       │   │       │   ├── structureAttributesAreSameButValuesAreNot.xml
│       │   │       │   ├── structureExpected.xml
│       │   │       │   ├── structureIgnoreTextNodes.xml
│       │   │       │   ├── structureIsSameButDataIsNot.xml
│       │   │       │   ├── structureWrongNumberOfAttributes.xml
│       │   │       │   └── structureWrongNumberOfNodes.xml
│       │   │       └── bootstrap.php
│       │   └── phpunit-mock-objects
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── build
│       │       │   └── travis-ci.xml
│       │       ├── build.xml
│       │       ├── composer.json
│       │       ├── phpunit.xml.dist
│       │       ├── src
│       │       │   └── Framework
│       │       │       └── MockObject
│       │       │           ├── Builder
│       │       │           │   ├── Identity.php
│       │       │           │   ├── InvocationMocker.php
│       │       │           │   ├── Match.php
│       │       │           │   ├── MethodNameMatch.php
│       │       │           │   ├── Namespace.php
│       │       │           │   ├── ParametersMatch.php
│       │       │           │   └── Stub.php
│       │       │           ├── Exception
│       │       │           │   ├── BadMethodCallException.php
│       │       │           │   ├── Exception.php
│       │       │           │   └── RuntimeException.php
│       │       │           ├── Generator
│       │       │           │   ├── mocked_class.tpl.dist
│       │       │           │   ├── mocked_class_method.tpl.dist
│       │       │           │   ├── mocked_clone.tpl.dist
│       │       │           │   ├── mocked_method.tpl.dist
│       │       │           │   ├── mocked_static_method.tpl.dist
│       │       │           │   ├── proxied_method.tpl.dist
│       │       │           │   ├── trait_class.tpl.dist
│       │       │           │   ├── unmocked_clone.tpl.dist
│       │       │           │   ├── wsdl_class.tpl.dist
│       │       │           │   └── wsdl_method.tpl.dist
│       │       │           ├── Generator.php
│       │       │           ├── Invocation
│       │       │           │   ├── Object.php
│       │       │           │   └── Static.php
│       │       │           ├── Invocation.php
│       │       │           ├── InvocationMocker.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
│       │       │           │   ├── Return.php
│       │       │           │   ├── ReturnArgument.php
│       │       │           │   ├── ReturnCallback.php
│       │       │           │   ├── ReturnSelf.php
│       │       │           │   └── ReturnValueMap.php
│       │       │           ├── Stub.php
│       │       │           └── Verifiable.php
│       │       └── tests
│       │           ├── GeneratorTest.php
│       │           ├── MockBuilderTest.php
│       │           ├── MockObject
│       │           │   ├── 232.phpt
│       │           │   ├── Invocation
│       │           │   │   ├── ObjectTest.php
│       │           │   │   └── StaticTest.php
│       │           │   ├── Matcher
│       │           │   │   └── ConsecutiveParametersTest.php
│       │           │   ├── abstract_class.phpt
│       │           │   ├── class.phpt
│       │           │   ├── class_call_parent_clone.phpt
│       │           │   ├── class_call_parent_constructor.phpt
│       │           │   ├── class_dont_call_parent_clone.phpt
│       │           │   ├── class_dont_call_parent_constructor.phpt
│       │           │   ├── class_implementing_interface_call_parent_constructor.phpt
│       │           │   ├── class_implementing_interface_dont_call_parent_constructor.phpt
│       │           │   ├── class_partial.phpt
│       │           │   ├── class_with_method_named_method.phpt
│       │           │   ├── class_with_method_with_variadic_arguments.phpt
│       │           │   ├── interface.phpt
│       │           │   ├── invocation_object_clone_object.phpt
│       │           │   ├── namespaced_class.phpt
│       │           │   ├── namespaced_class_call_parent_clone.phpt
│       │           │   ├── namespaced_class_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_dont_call_parent_clone.phpt
│       │           │   ├── namespaced_class_dont_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_implementing_interface_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_partial.phpt
│       │           │   ├── namespaced_interface.phpt
│       │           │   ├── nonexistent_class.phpt
│       │           │   ├── nonexistent_class_with_namespace.phpt
│       │           │   ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│       │           │   ├── proxy.phpt
│       │           │   ├── scalar_type_declarations.phpt
│       │           │   ├── wsdl_class.phpt
│       │           │   ├── wsdl_class_namespace.phpt
│       │           │   └── wsdl_class_partial.phpt
│       │           ├── MockObjectTest.php
│       │           ├── ProxyObjectTest.php
│       │           ├── _fixture
│       │           │   ├── AbstractMockTestClass.php
│       │           │   ├── AbstractTrait.php
│       │           │   ├── AnInterface.php
│       │           │   ├── AnotherInterface.php
│       │           │   ├── Bar.php
│       │           │   ├── ClassThatImplementsSerializable.php
│       │           │   ├── ClassWithStaticMethod.php
│       │           │   ├── Foo.php
│       │           │   ├── FunctionCallback.php
│       │           │   ├── GoogleSearch.wsdl
│       │           │   ├── InterfaceWithStaticMethod.php
│       │           │   ├── MethodCallback.php
│       │           │   ├── MethodCallbackByReference.php
│       │           │   ├── MockTestInterface.php
│       │           │   ├── Mockable.php
│       │           │   ├── PartialMockTestClass.php
│       │           │   ├── SingletonClass.php
│       │           │   ├── SomeClass.php
│       │           │   ├── StaticMockTestClass.php
│       │           │   └── TraversableMockTestInterface.php
│       │           └── bootstrap.php
│       ├── sebastian
│       │   ├── comparator
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build
│       │   │   │   └── travis-ci.xml
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── src
│       │   │   │   ├── ArrayComparator.php
│       │   │   │   ├── Comparator.php
│       │   │   │   ├── ComparisonFailure.php
│       │   │   │   ├── DOMNodeComparator.php
│       │   │   │   ├── DateTimeComparator.php
│       │   │   │   ├── DoubleComparator.php
│       │   │   │   ├── ExceptionComparator.php
│       │   │   │   ├── Factory.php
│       │   │   │   ├── MockObjectComparator.php
│       │   │   │   ├── NumericComparator.php
│       │   │   │   ├── ObjectComparator.php
│       │   │   │   ├── ResourceComparator.php
│       │   │   │   ├── ScalarComparator.php
│       │   │   │   ├── SplObjectStorageComparator.php
│       │   │   │   └── TypeComparator.php
│       │   │   └── tests
│       │   │       ├── ArrayComparatorTest.php
│       │   │       ├── DOMNodeComparatorTest.php
│       │   │       ├── DateTimeComparatorTest.php
│       │   │       ├── DoubleComparatorTest.php
│       │   │       ├── ExceptionComparatorTest.php
│       │   │       ├── FactoryTest.php
│       │   │       ├── MockObjectComparatorTest.php
│       │   │       ├── NumericComparatorTest.php
│       │   │       ├── ObjectComparatorTest.php
│       │   │       ├── ResourceComparatorTest.php
│       │   │       ├── ScalarComparatorTest.php
│       │   │       ├── SplObjectStorageComparatorTest.php
│       │   │       ├── TypeComparatorTest.php
│       │   │       ├── _files
│       │   │       │   ├── Author.php
│       │   │       │   ├── Book.php
│       │   │       │   ├── ClassWithToString.php
│       │   │       │   ├── SampleClass.php
│       │   │       │   ├── Struct.php
│       │   │       │   ├── TestClass.php
│       │   │       │   └── TestClassComparator.php
│       │   │       ├── autoload.php
│       │   │       └── bootstrap.php
│       │   ├── diff
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── src
│       │   │   │   ├── Chunk.php
│       │   │   │   ├── Diff.php
│       │   │   │   ├── Differ.php
│       │   │   │   ├── LCS
│       │   │   │   │   ├── LongestCommonSubsequence.php
│       │   │   │   │   ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│       │   │   │   │   └── TimeEfficientLongestCommonSubsequenceImplementation.php
│       │   │   │   ├── Line.php
│       │   │   │   └── Parser.php
│       │   │   └── tests
│       │   │       ├── DifferTest.php
│       │   │       ├── LCS
│       │   │       │   └── TimeEfficientImplementationTest.php
│       │   │       ├── ParserTest.php
│       │   │       └── fixtures
│       │   │           ├── patch.txt
│       │   │           └── patch2.txt
│       │   ├── environment
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Console.php
│       │   │   │   └── Runtime.php
│       │   │   └── tests
│       │   │       ├── ConsoleTest.php
│       │   │       └── RuntimeTest.php
│       │   ├── exporter
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── src
│       │   │   │   └── Exporter.php
│       │   │   └── tests
│       │   │       └── ExporterTest.php
│       │   ├── global-state
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── src
│       │   │   │   ├── Blacklist.php
│       │   │   │   ├── CodeExporter.php
│       │   │   │   ├── Exception.php
│       │   │   │   ├── Restorer.php
│       │   │   │   ├── RuntimeException.php
│       │   │   │   └── Snapshot.php
│       │   │   └── tests
│       │   │       ├── BlacklistTest.php
│       │   │       ├── SnapshotTest.php
│       │   │       └── _fixture
│       │   │           ├── BlacklistedChildClass.php
│       │   │           ├── BlacklistedClass.php
│       │   │           ├── BlacklistedImplementor.php
│       │   │           ├── BlacklistedInterface.php
│       │   │           ├── SnapshotClass.php
│       │   │           ├── SnapshotDomDocument.php
│       │   │           ├── SnapshotFunctions.php
│       │   │           └── SnapshotTrait.php
│       │   ├── recursion-context
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml.dist
│       │   │   ├── src
│       │   │   │   ├── Context.php
│       │   │   │   ├── Exception.php
│       │   │   │   └── InvalidArgumentException.php
│       │   │   └── tests
│       │   │       └── ContextTest.php
│       │   └── version
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       └── src
│       │           └── Version.php
│       ├── symfony
│       │   ├── dom-crawler
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Crawler.php
│       │   │   ├── Field
│       │   │   │   ├── ChoiceFormField.php
│       │   │   │   ├── FileFormField.php
│       │   │   │   ├── FormField.php
│       │   │   │   ├── InputFormField.php
│       │   │   │   └── TextareaFormField.php
│       │   │   ├── Form.php
│       │   │   ├── FormFieldRegistry.php
│       │   │   ├── LICENSE
│       │   │   ├── Link.php
│       │   │   ├── README.md
│       │   │   ├── Tests
│       │   │   │   ├── CrawlerTest.php
│       │   │   │   ├── Field
│       │   │   │   │   ├── ChoiceFormFieldTest.php
│       │   │   │   │   ├── FileFormFieldTest.php
│       │   │   │   │   ├── FormFieldTest.php
│       │   │   │   │   ├── FormFieldTestCase.php
│       │   │   │   │   ├── InputFormFieldTest.php
│       │   │   │   │   └── TextareaFormFieldTest.php
│       │   │   │   ├── Fixtures
│       │   │   │   │   ├── no-extension
│       │   │   │   │   └── windows-1250.html
│       │   │   │   ├── FormTest.php
│       │   │   │   └── LinkTest.php
│       │   │   ├── composer.json
│       │   │   └── phpunit.xml.dist
│       │   ├── polyfill-mbstring
│       │   │   ├── LICENSE
│       │   │   ├── Mbstring.php
│       │   │   ├── README.md
│       │   │   ├── Resources
│       │   │   │   └── unidata
│       │   │   │       ├── lowerCase.php
│       │   │   │       └── upperCase.php
│       │   │   ├── bootstrap.php
│       │   │   └── composer.json
│       │   └── yaml
│       │       ├── CHANGELOG.md
│       │       ├── Dumper.php
│       │       ├── Escaper.php
│       │       ├── Exception
│       │       │   ├── DumpException.php
│       │       │   ├── ExceptionInterface.php
│       │       │   ├── ParseException.php
│       │       │   └── RuntimeException.php
│       │       ├── Inline.php
│       │       ├── LICENSE
│       │       ├── Parser.php
│       │       ├── README.md
│       │       ├── Tests
│       │       │   ├── DumperTest.php
│       │       │   ├── Fixtures
│       │       │   │   ├── YtsAnchorAlias.yml
│       │       │   │   ├── YtsBasicTests.yml
│       │       │   │   ├── YtsBlockMapping.yml
│       │       │   │   ├── YtsDocumentSeparator.yml
│       │       │   │   ├── YtsErrorTests.yml
│       │       │   │   ├── YtsFlowCollections.yml
│       │       │   │   ├── YtsFoldedScalars.yml
│       │       │   │   ├── YtsNullsAndEmpties.yml
│       │       │   │   ├── YtsSpecificationExamples.yml
│       │       │   │   ├── YtsTypeTransfers.yml
│       │       │   │   ├── arrow.gif
│       │       │   │   ├── embededPhp.yml
│       │       │   │   ├── escapedCharacters.yml
│       │       │   │   ├── index.yml
│       │       │   │   ├── multiple_lines_as_literal_block.yml
│       │       │   │   ├── sfComments.yml
│       │       │   │   ├── sfCompact.yml
│       │       │   │   ├── sfMergeKey.yml
│       │       │   │   ├── sfObjects.yml
│       │       │   │   ├── sfQuotes.yml
│       │       │   │   ├── sfTests.yml
│       │       │   │   └── unindentedCollections.yml
│       │       │   ├── InlineTest.php
│       │       │   ├── ParseExceptionTest.php
│       │       │   ├── ParserTest.php
│       │       │   └── YamlTest.php
│       │       ├── Unescaper.php
│       │       ├── Yaml.php
│       │       ├── composer.json
│       │       └── phpunit.xml.dist
│       ├── topthink
│       │   ├── think-captcha
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── assets
│       │   │   │   ├── bgs
│       │   │   │   │   ├── 1.jpg
│       │   │   │   │   ├── 2.jpg
│       │   │   │   │   ├── 3.jpg
│       │   │   │   │   ├── 4.jpg
│       │   │   │   │   ├── 5.jpg
│       │   │   │   │   ├── 6.jpg
│       │   │   │   │   ├── 7.jpg
│       │   │   │   │   └── 8.jpg
│       │   │   │   ├── ttfs
│       │   │   │   │   ├── 1.ttf
│       │   │   │   │   ├── 2.ttf
│       │   │   │   │   ├── 3.ttf
│       │   │   │   │   ├── 4.ttf
│       │   │   │   │   ├── 5.ttf
│       │   │   │   │   └── 6.ttf
│       │   │   │   └── zhttfs
│       │   │   │       └── 1.ttf
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Captcha.php
│       │   │       ├── CaptchaController.php
│       │   │       └── helper.php
│       │   ├── think-helper
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Arr.php
│       │   │       ├── Hash.php
│       │   │       ├── Str.php
│       │   │       ├── Time.php
│       │   │       └── hash
│       │   │           ├── Bcrypt.php
│       │   │           └── Md5.php
│       │   ├── think-image
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Image.php
│       │   │   │   └── image
│       │   │   │       ├── Exception.php
│       │   │   │       └── gif
│       │   │   │           ├── Decoder.php
│       │   │   │           ├── Encoder.php
│       │   │   │           └── Gif.php
│       │   │   └── tests
│       │   │       ├── CropTest.php
│       │   │       ├── FlipTest.php
│       │   │       ├── InfoTest.php
│       │   │       ├── RotateTest.php
│       │   │       ├── TestCase.php
│       │   │       ├── TextTest.php
│       │   │       ├── ThumbTest.php
│       │   │       ├── WaterTest.php
│       │   │       ├── autoload.php
│       │   │       ├── images
│       │   │       │   ├── test.bmp
│       │   │       │   ├── test.gif
│       │   │       │   ├── test.jpg
│       │   │       │   ├── test.png
│       │   │       │   └── test.ttf
│       │   │       └── tmp
│       │   ├── think-installer
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Plugin.php
│       │   │       ├── ThinkExtend.php
│       │   │       ├── ThinkFramework.php
│       │   │       └── ThinkTesting.php
│       │   ├── think-migration
│       │   │   ├── LICENSE
│       │   │   ├── composer.json
│       │   │   ├── phinx
│       │   │   │   ├── CONTRIBUTING.md
│       │   │   │   ├── LICENSE
│       │   │   │   ├── README.md
│       │   │   │   └── src
│       │   │   │       └── Phinx
│       │   │   │           ├── Config.php
│       │   │   │           ├── 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
│       │   │   │           │   ├── CreationInterface.php
│       │   │   │           │   ├── IrreversibleMigrationException.php
│       │   │   │           │   ├── Manager.php
│       │   │   │           │   ├── Migration.template.php.dist
│       │   │   │           │   └── MigrationInterface.php
│       │   │   │           ├── Seed
│       │   │   │           │   ├── AbstractSeed.php
│       │   │   │           │   ├── Seed.template.php.dist
│       │   │   │           │   └── SeedInterface.php
│       │   │   │           └── Util.php
│       │   │   └── src
│       │   │       ├── command
│       │   │       │   ├── AbstractCommand.php
│       │   │       │   ├── migrate
│       │   │       │   │   ├── Create.php
│       │   │       │   │   ├── Rollback.php
│       │   │       │   │   ├── Run.php
│       │   │       │   │   └── Status.php
│       │   │       │   └── seed
│       │   │       │       ├── Create.php
│       │   │       │       └── Run.php
│       │   │       └── config.php
│       │   ├── think-mongo
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Builder.php
│       │   │       ├── Connection.php
│       │   │       └── Query.php
│       │   ├── think-queue
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Job.php
│       │   │       ├── Listener.php
│       │   │       ├── Queue.php
│       │   │       ├── Worker.php
│       │   │       ├── command
│       │   │       │   ├── Listen.php
│       │   │       │   ├── Restart.php
│       │   │       │   ├── Subscribe.php
│       │   │       │   └── Work.php
│       │   │       ├── config.php
│       │   │       ├── driver
│       │   │       │   ├── Database.php
│       │   │       │   ├── Redis.php
│       │   │       │   ├── Sync.php
│       │   │       │   └── Topthink.php
│       │   │       └── job
│       │   │           ├── Database.php
│       │   │           ├── Redis.php
│       │   │           ├── Sync.php
│       │   │           └── Topthink.php
│       │   ├── think-sae
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Cache.php
│       │   │       ├── Log.php
│       │   │       └── Template.php
│       │   └── think-testing
│       │       ├── README.md
│       │       ├── composer.json
│       │       └── src
│       │           ├── ApplicationTrait.php
│       │           ├── AssertionsTrait.php
│       │           ├── CrawlerTrait.php
│       │           ├── HttpException.php
│       │           ├── InteractsWithPages.php
│       │           ├── TestCase.php
│       │           ├── command
│       │           │   └── Test.php
│       │           └── config.php
│       └── webmozart
│           └── assert
│               ├── CHANGELOG.md
│               ├── LICENSE
│               ├── README.md
│               ├── appveyor.yml
│               ├── composer.json
│               ├── phpunit.xml.dist
│               ├── src
│               │   └── Assert.php
│               └── tests
│                   └── AssertTest.php
└── tp5集合phpexcel,phpmailer,phpqrcode_thinkphp_5.0_full.tar.gz

453 directories, 2395 files


实例下载地址

tp5集合phpexcel,phpmailer,phpqrcode

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警