在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → phpword完整代码包含sample无需安装可直接运行

phpword完整代码包含sample无需安装可直接运行

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:149.10M
  • 下载次数:14
  • 浏览次数:605
  • 发布时间:2021-02-12
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
phpword完整代码包含sample无需安装可直接运行,无需composer安装
【实例截图】
【核心代码】
1f3e7dc9-f6cc-4df6-8085-3bcb1827572e
├── bootstrap.php
├── CHANGELOG.md
├── composer.json
├── composer.lock
├── CONTRIBUTING.md
├── COPYING
├── COPYING.LESSER
├── LICENSE
├── PhpWord
│   ├── bootstrap.php
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── composer.lock
│   ├── CONTRIBUTING.md
│   ├── COPYING
│   ├── COPYING.LESSER
│   ├── LICENSE
│   ├── phpword.ini.dist
│   ├── README.md
│   ├── samples
│   │   ├── bootstrap
│   │   │   ├── css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── font-awesome.min.css
│   │   │   │   └── phpword.css
│   │   │   ├── fonts
│   │   │   │   ├── FontAwesome.otf
│   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   └── fontawesome-webfont.woff
│   │   │   └── js
│   │   │   ├── bootstrap.min.js
│   │   │   └── jquery.min.js
│   │   ├── index.php
│   │   ├── resources
│   │   │   ├── _earth.jpg
│   │   │   ├── _mars.jpg
│   │   │   ├── PhpWord.png
│   │   │   ├── Sample_07_TemplateCloneRow.docx
│   │   │   ├── Sample_11_ReadWord2007.docx
│   │   │   ├── Sample_11_ReadWord97.doc
│   │   │   ├── Sample_23_TemplateBlock.docx
│   │   │   ├── Sample_24_ReadODText.odt
│   │   │   ├── Sample_28_ReadRTF.rtf
│   │   │   ├── Sample_30_ReadHTML.html
│   │   │   └── _sheet.xls
│   │   ├── results
│   │   │   ├── Sample_01_SimpleText.docx
│   │   │   ├── Sample_01_SimpleText.html
│   │   │   ├── Sample_01_SimpleText.odt
│   │   │   ├── Sample_01_SimpleText.pdf
│   │   │   ├── Sample_01_SimpleText.rtf
│   │   │   ├── Sample_02_TabStops.docx
│   │   │   ├── Sample_02_TabStops.html
│   │   │   ├── Sample_02_TabStops.odt
│   │   │   ├── Sample_02_TabStops.pdf
│   │   │   ├── Sample_02_TabStops.rtf
│   │   │   ├── Sample_08_ParagraphPagination.docx
│   │   │   ├── Sample_08_ParagraphPagination.html
│   │   │   ├── Sample_08_ParagraphPagination.odt
│   │   │   ├── Sample_08_ParagraphPagination.pdf
│   │   │   ├── Sample_08_ParagraphPagination.rtf
│   │   │   ├── Sample_11_ReadWord2007.docx
│   │   │   ├── Sample_11_ReadWord2007.html
│   │   │   ├── Sample_11_ReadWord2007.odt
│   │   │   ├── Sample_11_ReadWord2007.pdf
│   │   │   ├── Sample_11_ReadWord2007.rtf
│   │   │   ├── Sample_12_HeaderFooter.docx
│   │   │   ├── Sample_12_HeaderFooter.html
│   │   │   ├── Sample_12_HeaderFooter.odt
│   │   │   ├── Sample_12_HeaderFooter.pdf
│   │   │   ├── Sample_12_HeaderFooter.rtf
│   │   │   ├── Sample_16_Object.docx
│   │   │   ├── Sample_16_Object.html
│   │   │   ├── Sample_16_Object.odt
│   │   │   ├── Sample_16_Object.pdf
│   │   │   ├── Sample_16_Object.rtf
│   │   │   ├── Sample_26_Html.docx
│   │   │   ├── Sample_26_Html.html
│   │   │   ├── Sample_26_Html.odt
│   │   │   ├── Sample_26_Html.pdf
│   │   │   └── Sample_26_Html.rtf
│   │   ├── Sample_01_SimpleText.php
│   │   ├── Sample_02_TabStops.php
│   │   ├── Sample_03_Sections.php
│   │   ├── Sample_04_Textrun.php
│   │   ├── Sample_05_Multicolumn.php
│   │   ├── Sample_06_Footnote.php
│   │   ├── Sample_07_TemplateCloneRow.php
│   │   ├── Sample_08_ParagraphPagination.php
│   │   ├── Sample_09_Tables.php
│   │   ├── Sample_10_EastAsianFontStyle.php
│   │   ├── Sample_11_ReadWord2007.php
│   │   ├── Sample_11_ReadWord97.php
│   │   ├── Sample_12_HeaderFooter.php
│   │   ├── Sample_13_Images.php
│   │   ├── Sample_14_ListItem.php
│   │   ├── Sample_15_Link.php
│   │   ├── Sample_16_Object.php
│   │   ├── Sample_17_TitleTOC.php
│   │   ├── Sample_18_Watermark.php
│   │   ├── Sample_19_TextBreak.php
│   │   ├── Sample_20_BGColor.php
│   │   ├── Sample_21_TableRowRules.php
│   │   ├── Sample_22_CheckBox.php
│   │   ├── Sample_23_TemplateBlock.php
│   │   ├── Sample_24_ReadODText.php
│   │   ├── Sample_25_TextBox.php
│   │   ├── Sample_26_Html.php
│   │   ├── Sample_27_Field.php
│   │   ├── Sample_28_ReadRTF.php
│   │   ├── Sample_29_Line.php
│   │   ├── Sample_30_ReadHTML.php
│   │   ├── Sample_31_Shape.php
│   │   ├── Sample_32_Chart.php
│   │   ├── Sample_33_FormField.php
│   │   ├── Sample_34_SDT.php
│   │   ├── Sample_35_InternalLink.php
│   │   ├── Sample_36_RTL.php
│   │   ├── Sample_37_Comments.php
│   │   ├── Sample_38_Protection.php
│   │   ├── Sample_39_TrackChanges.php
│   │   ├── Sample_Footer.php
│   │   └── Sample_Header.php
│   ├── sonar-project.properties
│   ├── src
│   │   └── PhpWord
│   │   ├── Collection
│   │   │   ├── AbstractCollection.php
│   │   │   ├── Bookmarks.php
│   │   │   ├── Charts.php
│   │   │   ├── Comments.php
│   │   │   ├── Endnotes.php
│   │   │   ├── Footnotes.php
│   │   │   └── Titles.php
│   │   ├── ComplexType
│   │   │   ├── FootnoteProperties.php
│   │   │   ├── ProofState.php
│   │   │   ├── TblWidth.php
│   │   │   └── TrackChangesView.php
│   │   ├── Element
│   │   │   ├── AbstractContainer.php
│   │   │   ├── AbstractElement.php
│   │   │   ├── Bookmark.php
│   │   │   ├── Cell.php
│   │   │   ├── Chart.php
│   │   │   ├── CheckBox.php
│   │   │   ├── Comment.php
│   │   │   ├── Endnote.php
│   │   │   ├── Field.php
│   │   │   ├── Footer.php
│   │   │   ├── Footnote.php
│   │   │   ├── FormField.php
│   │   │   ├── Header.php
│   │   │   ├── Image.php
│   │   │   ├── Line.php
│   │   │   ├── Link.php
│   │   │   ├── ListItem.php
│   │   │   ├── ListItemRun.php
│   │   │   ├── OLEObject.php
│   │   │   ├── PageBreak.php
│   │   │   ├── PreserveText.php
│   │   │   ├── Row.php
│   │   │   ├── SDT.php
│   │   │   ├── Section.php
│   │   │   ├── Shape.php
│   │   │   ├── Table.php
│   │   │   ├── TextBox.php
│   │   │   ├── TextBreak.php
│   │   │   ├── Text.php
│   │   │   ├── TextRun.php
│   │   │   ├── Title.php
│   │   │   ├── TOC.php
│   │   │   └── TrackChange.php
│   │   ├── Escaper
│   │   │   ├── AbstractEscaper.php
│   │   │   ├── EscaperInterface.php
│   │   │   ├── RegExp.php
│   │   │   ├── Rtf.php
│   │   │   └── Xml.php
│   │   ├── Exception
│   │   │   ├── CopyFileException.php
│   │   │   ├── CreateTemporaryFileException.php
│   │   │   ├── Exception.php
│   │   │   ├── InvalidImageException.php
│   │   │   ├── InvalidObjectException.php
│   │   │   ├── InvalidStyleException.php
│   │   │   └── UnsupportedImageTypeException.php
│   │   ├── IOFactory.php
│   │   ├── Media.php
│   │   ├── Metadata
│   │   │   ├── Compatibility.php
│   │   │   ├── DocInfo.php
│   │   │   ├── Protection.php
│   │   │   └── Settings.php
│   │   ├── PhpWord.php
│   │   ├── Reader
│   │   │   ├── AbstractReader.php
│   │   │   ├── HTML.php
│   │   │   ├── MsDoc.php
│   │   │   ├── ODText
│   │   │   │   ├── AbstractPart.php
│   │   │   │   ├── Content.php
│   │   │   │   └── Meta.php
│   │   │   ├── ODText.php
│   │   │   ├── ReaderInterface.php
│   │   │   ├── RTF
│   │   │   │   └── Document.php
│   │   │   ├── RTF.php
│   │   │   ├── Word2007
│   │   │   │   ├── AbstractPart.php
│   │   │   │   ├── DocPropsApp.php
│   │   │   │   ├── DocPropsCore.php
│   │   │   │   ├── DocPropsCustom.php
│   │   │   │   ├── Document.php
│   │   │   │   ├── Endnotes.php
│   │   │   │   ├── Footnotes.php
│   │   │   │   ├── Numbering.php
│   │   │   │   ├── Settings.php
│   │   │   │   └── Styles.php
│   │   │   └── Word2007.php
│   │   ├── resources
│   │   │   ├── doc.png
│   │   │   ├── ppt.png
│   │   │   └── xls.png
│   │   ├── Settings.php
│   │   ├── Shared
│   │   │   ├── AbstractEnum.php
│   │   │   ├── Converter.php
│   │   │   ├── Html.php
│   │   │   ├── OLERead.php
│   │   │   ├── PCLZip
│   │   │   │   └── pclzip.lib.php
│   │   │   └── ZipArchive.php
│   │   ├── SimpleType
│   │   │   ├── DocProtect.php
│   │   │   ├── Jc.php
│   │   │   ├── JcTable.php
│   │   │   ├── LineSpacingRule.php
│   │   │   ├── NumberFormat.php
│   │   │   ├── TblWidth.php
│   │   │   ├── TextAlignment.php
│   │   │   └── Zoom.php
│   │   ├── Style
│   │   │   ├── AbstractStyle.php
│   │   │   ├── Border.php
│   │   │   ├── Cell.php
│   │   │   ├── Chart.php
│   │   │   ├── Extrusion.php
│   │   │   ├── Fill.php
│   │   │   ├── Font.php
│   │   │   ├── Frame.php
│   │   │   ├── Image.php
│   │   │   ├── Indentation.php
│   │   │   ├── Language.php
│   │   │   ├── LineNumbering.php
│   │   │   ├── Line.php
│   │   │   ├── ListItem.php
│   │   │   ├── NumberingLevel.php
│   │   │   ├── Numbering.php
│   │   │   ├── Outline.php
│   │   │   ├── Paper.php
│   │   │   ├── Paragraph.php
│   │   │   ├── Row.php
│   │   │   ├── Section.php
│   │   │   ├── Shading.php
│   │   │   ├── Shadow.php
│   │   │   ├── Shape.php
│   │   │   ├── Spacing.php
│   │   │   ├── Table.php
│   │   │   ├── TablePosition.php
│   │   │   ├── Tab.php
│   │   │   ├── TextBox.php
│   │   │   └── TOC.php
│   │   ├── Style.php
│   │   ├── Template.php
│   │   ├── TemplateProcessor.php
│   │   └── Writer
│   │   ├── AbstractWriter.php
│   │   ├── HTML
│   │   │   ├── Element
│   │   │   │   ├── AbstractElement.php
│   │   │   │   ├── Bookmark.php
│   │   │   │   ├── Container.php
│   │   │   │   ├── Endnote.php
│   │   │   │   ├── Footnote.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Link.php
│   │   │   │   ├── ListItem.php
│   │   │   │   ├── PageBreak.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TextBreak.php
│   │   │   │   ├── Text.php
│   │   │   │   ├── TextRun.php
│   │   │   │   └── Title.php
│   │   │   ├── Part
│   │   │   │   ├── AbstractPart.php
│   │   │   │   ├── Body.php
│   │   │   │   └── Head.php
│   │   │   └── Style
│   │   │   ├── AbstractStyle.php
│   │   │   ├── Font.php
│   │   │   ├── Generic.php
│   │   │   ├── Image.php
│   │   │   └── Paragraph.php
│   │   ├── HTML.php
│   │   ├── ODText
│   │   │   ├── Element
│   │   │   │   ├── AbstractElement.php
│   │   │   │   ├── Container.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Link.php
│   │   │   │   ├── PageBreak.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TextBreak.php
│   │   │   │   ├── Text.php
│   │   │   │   ├── TextRun.php
│   │   │   │   └── Title.php
│   │   │   ├── Part
│   │   │   │   ├── AbstractPart.php
│   │   │   │   ├── Content.php
│   │   │   │   ├── Manifest.php
│   │   │   │   ├── Meta.php
│   │   │   │   ├── Mimetype.php
│   │   │   │   └── Styles.php
│   │   │   └── Style
│   │   │   ├── AbstractStyle.php
│   │   │   ├── Font.php
│   │   │   ├── Image.php
│   │   │   ├── Paragraph.php
│   │   │   ├── Section.php
│   │   │   └── Table.php
│   │   ├── ODText.php
│   │   ├── PDF
│   │   │   ├── AbstractRenderer.php
│   │   │   ├── DomPDF.php
│   │   │   ├── MPDF.php
│   │   │   └── TCPDF.php
│   │   ├── PDF.php
│   │   ├── RTF
│   │   │   ├── Element
│   │   │   │   ├── AbstractElement.php
│   │   │   │   ├── Container.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Link.php
│   │   │   │   ├── ListItem.php
│   │   │   │   ├── PageBreak.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TextBreak.php
│   │   │   │   ├── Text.php
│   │   │   │   ├── TextRun.php
│   │   │   │   └── Title.php
│   │   │   ├── Part
│   │   │   │   ├── AbstractPart.php
│   │   │   │   ├── Document.php
│   │   │   │   └── Header.php
│   │   │   └── Style
│   │   │   ├── AbstractStyle.php
│   │   │   ├── Border.php
│   │   │   ├── Font.php
│   │   │   ├── Indentation.php
│   │   │   ├── Paragraph.php
│   │   │   ├── Section.php
│   │   │   └── Tab.php
│   │   ├── RTF.php
│   │   ├── Word2007
│   │   │   ├── Element
│   │   │   │   ├── AbstractElement.php
│   │   │   │   ├── Bookmark.php
│   │   │   │   ├── Chart.php
│   │   │   │   ├── CheckBox.php
│   │   │   │   ├── Container.php
│   │   │   │   ├── Endnote.php
│   │   │   │   ├── Field.php
│   │   │   │   ├── Footnote.php
│   │   │   │   ├── FormField.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Line.php
│   │   │   │   ├── Link.php
│   │   │   │   ├── ListItem.php
│   │   │   │   ├── ListItemRun.php
│   │   │   │   ├── OLEObject.php
│   │   │   │   ├── PageBreak.php
│   │   │   │   ├── ParagraphAlignment.php
│   │   │   │   ├── PreserveText.php
│   │   │   │   ├── SDT.php
│   │   │   │   ├── Shape.php
│   │   │   │   ├── TableAlignment.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TextBox.php
│   │   │   │   ├── TextBreak.php
│   │   │   │   ├── Text.php
│   │   │   │   ├── TextRun.php
│   │   │   │   ├── Title.php
│   │   │   │   └── TOC.php
│   │   │   ├── Part
│   │   │   │   ├── AbstractPart.php
│   │   │   │   ├── Chart.php
│   │   │   │   ├── Comments.php
│   │   │   │   ├── ContentTypes.php
│   │   │   │   ├── DocPropsApp.php
│   │   │   │   ├── DocPropsCore.php
│   │   │   │   ├── DocPropsCustom.php
│   │   │   │   ├── Document.php
│   │   │   │   ├── Endnotes.php
│   │   │   │   ├── FontTable.php
│   │   │   │   ├── Footer.php
│   │   │   │   ├── Footnotes.php
│   │   │   │   ├── Header.php
│   │   │   │   ├── Numbering.php
│   │   │   │   ├── RelsDocument.php
│   │   │   │   ├── RelsPart.php
│   │   │   │   ├── Rels.php
│   │   │   │   ├── Settings.php
│   │   │   │   ├── Styles.php
│   │   │   │   ├── Theme.php
│   │   │   │   └── WebSettings.php
│   │   │   └── Style
│   │   │   ├── AbstractStyle.php
│   │   │   ├── Cell.php
│   │   │   ├── Extrusion.php
│   │   │   ├── Fill.php
│   │   │   ├── Font.php
│   │   │   ├── Frame.php
│   │   │   ├── Image.php
│   │   │   ├── Indentation.php
│   │   │   ├── LineNumbering.php
│   │   │   ├── Line.php
│   │   │   ├── MarginBorder.php
│   │   │   ├── Outline.php
│   │   │   ├── Paragraph.php
│   │   │   ├── Row.php
│   │   │   ├── Section.php
│   │   │   ├── Shading.php
│   │   │   ├── Shadow.php
│   │   │   ├── Shape.php
│   │   │   ├── Spacing.php
│   │   │   ├── Table.php
│   │   │   ├── TablePosition.php
│   │   │   ├── Tab.php
│   │   │   └── TextBox.php
│   │   ├── Word2007.php
│   │   └── WriterInterface.php
│   └── vendor
│   ├── autoload.php
│   ├── bin
│   │   ├── pdepend
│   │   ├── pdepend.bat
│   │   ├── phpcbf
│   │   ├── phpcbf.bat
│   │   ├── php-coveralls
│   │   ├── php-coveralls.bat
│   │   ├── phpcs
│   │   ├── phpcs.bat
│   │   ├── php-cs-fixer
│   │   ├── php-cs-fixer.bat
│   │   ├── phploc
│   │   ├── phploc.bat
│   │   ├── phpmd
│   │   ├── phpmd.bat
│   │   ├── phpunit
│   │   └── phpunit.bat
│   ├── composer
│   │   ├── autoload_classmap.php
│   │   ├── autoload_files.php
│   │   ├── autoload_namespaces.php
│   │   ├── autoload_psr4.php
│   │   ├── autoload_real.php
│   │   ├── autoload_static.php
│   │   ├── ClassLoader.php
│   │   ├── installed.json
│   │   ├── LICENSE
│   │   ├── semver
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── Comparator.php
│   │   │   ├── Constraint
│   │   │   │   ├── AbstractConstraint.php
│   │   │   │   ├── ConstraintInterface.php
│   │   │   │   ├── Constraint.php
│   │   │   │   ├── EmptyConstraint.php
│   │   │   │   └── MultiConstraint.php
│   │   │   ├── Semver.php
│   │   │   └── VersionParser.php
│   │   └── xdebug-handler
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── PhpConfig.php
│   │   ├── Process.php
│   │   ├── Status.php
│   │   └── XdebugHandler.php
│   ├── doctrine
│   │   ├── annotations
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── docs
│   │   │   │   └── en
│   │   │   │   ├── annotations.rst
│   │   │   │   ├── custom.rst
│   │   │   │   ├── index.rst
│   │   │   │   └── sidebar.rst
│   │   │   ├── lib
│   │   │   │   └── Doctrine
│   │   │   │   └── Common
│   │   │   │   └── Annotations
│   │   │   │   ├── Annotation
│   │   │   │   │   ├── Attribute.php
│   │   │   │   │   ├── Attributes.php
│   │   │   │   │   ├── Enum.php
│   │   │   │   │   ├── IgnoreAnnotation.php
│   │   │   │   │   ├── Required.php
│   │   │   │   │   └── Target.php
│   │   │   │   ├── AnnotationException.php
│   │   │   │   ├── Annotation.php
│   │   │   │   ├── AnnotationReader.php
│   │   │   │   ├── AnnotationRegistry.php
│   │   │   │   ├── CachedReader.php
│   │   │   │   ├── DocLexer.php
│   │   │   │   ├── DocParser.php
│   │   │   │   ├── FileCacheReader.php
│   │   │   │   ├── IndexedReader.php
│   │   │   │   ├── PhpParser.php
│   │   │   │   ├── Reader.php
│   │   │   │   ├── SimpleAnnotationReader.php
│   │   │   │   └── TokenParser.php
│   │   │   ├── LICENSE
│   │   │   ├── phpstan.neon
│   │   │   └── README.md
│   │   ├── instantiator
│   │   │   ├── composer.json
│   │   │   ├── CONTRIBUTING.md
│   │   │   ├── docs
│   │   │   │   └── en
│   │   │   │   ├── index.rst
│   │   │   │   └── sidebar.rst
│   │   │   ├── LICENSE
│   │   │   ├── phpbench.json
│   │   │   ├── phpcs.xml.dist
│   │   │   ├── phpstan.neon.dist
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   └── Doctrine
│   │   │   └── Instantiator
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   └── UnexpectedValueException.php
│   │   │   ├── InstantiatorInterface.php
│   │   │   └── Instantiator.php
│   │   └── lexer
│   │   ├── composer.json
│   │   ├── lib
│   │   │   └── Doctrine
│   │   │   └── Common
│   │   │   └── Lexer
│   │   │   └── AbstractLexer.php
│   │   ├── LICENSE
│   │   └── README.md
│   ├── dompdf
│   │   └── dompdf
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── lib
│   │   │   ├── Cpdf.php
│   │   │   ├── fonts
│   │   │   │   ├── Courier.afm
│   │   │   │   ├── Courier-Bold.afm
│   │   │   │   ├── Courier-BoldOblique.afm
│   │   │   │   ├── Courier-Oblique.afm
│   │   │   │   ├── DejaVuSans-BoldOblique.ttf
│   │   │   │   ├── DejaVuSans-BoldOblique.ufm
│   │   │   │   ├── DejaVuSans-Bold.ttf
│   │   │   │   ├── DejaVuSans-Bold.ufm
│   │   │   │   ├── DejaVuSansMono-BoldOblique.ttf
│   │   │   │   ├── DejaVuSansMono-BoldOblique.ufm
│   │   │   │   ├── DejaVuSansMono-Bold.ttf
│   │   │   │   ├── DejaVuSansMono-Bold.ufm
│   │   │   │   ├── DejaVuSansMono-Oblique.ttf
│   │   │   │   ├── DejaVuSansMono-Oblique.ufm
│   │   │   │   ├── DejaVuSansMono.ttf
│   │   │   │   ├── DejaVuSansMono.ufm
│   │   │   │   ├── DejaVuSans-Oblique.ttf
│   │   │   │   ├── DejaVuSans-Oblique.ufm
│   │   │   │   ├── DejaVuSans.ttf
│   │   │   │   ├── DejaVuSans.ufm
│   │   │   │   ├── DejaVuSerif-BoldItalic.ttf
│   │   │   │   ├── DejaVuSerif-BoldItalic.ufm
│   │   │   │   ├── DejaVuSerif-Bold.ttf
│   │   │   │   ├── DejaVuSerif-Bold.ufm
│   │   │   │   ├── DejaVuSerif-Italic.ttf
│   │   │   │   ├── DejaVuSerif-Italic.ufm
│   │   │   │   ├── DejaVuSerif.ttf
│   │   │   │   ├── DejaVuSerif.ufm
│   │   │   │   ├── dompdf_font_family_cache.dist.php
│   │   │   │   ├── Helvetica.afm
│   │   │   │   ├── Helvetica-Bold.afm
│   │   │   │   ├── Helvetica-BoldOblique.afm
│   │   │   │   ├── Helvetica-Oblique.afm
│   │   │   │   ├── mustRead.html
│   │   │   │   ├── Symbol.afm
│   │   │   │   ├── Times-Bold.afm
│   │   │   │   ├── Times-Bold.afm.php
│   │   │   │   ├── Times-BoldItalic.afm
│   │   │   │   ├── Times-BoldItalic.afm.php
│   │   │   │   ├── Times-Italic.afm
│   │   │   │   ├── Times-Italic.afm.php
│   │   │   │   ├── Times-Roman.afm
│   │   │   │   ├── Times-Roman.afm.php
│   │   │   │   └── ZapfDingbats.afm
│   │   │   ├── html5lib
│   │   │   │   ├── Data.php
│   │   │   │   ├── InputStream.php
│   │   │   │   ├── named-character-references.ser
│   │   │   │   ├── Parser.php
│   │   │   │   ├── Tokenizer.php
│   │   │   │   └── TreeBuilder.php
│   │   │   └── res
│   │   │   ├── broken_image.png
│   │   │   ├── broken_image.svg
│   │   │   └── html.css
│   │   ├── LICENSE.LGPL
│   │   ├── phpcs.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Adapter
│   │   │   │   ├── CPDF.php
│   │   │   │   ├── GD.php
│   │   │   │   └── PDFLib.php
│   │   │   ├── Autoloader.php
│   │   │   ├── CanvasFactory.php
│   │   │   ├── Canvas.php
│   │   │   ├── Cellmap.php
│   │   │   ├── Css
│   │   │   │   ├── AttributeTranslator.php
│   │   │   │   ├── Color.php
│   │   │   │   ├── Style.php
│   │   │   │   └── Stylesheet.php
│   │   │   ├── Dompdf.php
│   │   │   ├── Exception
│   │   │   │   └── ImageException.php
│   │   │   ├── Exception.php
│   │   │   ├── FontMetrics.php
│   │   │   ├── Frame
│   │   │   │   ├── Factory.php
│   │   │   │   ├── FrameListIterator.php
│   │   │   │   ├── FrameList.php
│   │   │   │   ├── FrameTreeIterator.php
│   │   │   │   ├── FrameTreeList.php
│   │   │   │   └── FrameTree.php
│   │   │   ├── FrameDecorator
│   │   │   │   ├── AbstractFrameDecorator.php
│   │   │   │   ├── Block.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Inline.php
│   │   │   │   ├── ListBulletImage.php
│   │   │   │   ├── ListBullet.php
│   │   │   │   ├── NullFrameDecorator.php
│   │   │   │   ├── Page.php
│   │   │   │   ├── TableCell.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TableRowGroup.php
│   │   │   │   ├── TableRow.php
│   │   │   │   └── Text.php
│   │   │   ├── Frame.php
│   │   │   ├── FrameReflower
│   │   │   │   ├── AbstractFrameReflower.php
│   │   │   │   ├── Block.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Inline.php
│   │   │   │   ├── ListBullet.php
│   │   │   │   ├── NullFrameReflower.php
│   │   │   │   ├── Page.php
│   │   │   │   ├── TableCell.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TableRowGroup.php
│   │   │   │   ├── TableRow.php
│   │   │   │   └── Text.php
│   │   │   ├── Helpers.php
│   │   │   ├── Image
│   │   │   │   └── Cache.php
│   │   │   ├── JavascriptEmbedder.php
│   │   │   ├── LineBox.php
│   │   │   ├── Options.php
│   │   │   ├── PhpEvaluator.php
│   │   │   ├── Positioner
│   │   │   │   ├── Absolute.php
│   │   │   │   ├── AbstractPositioner.php
│   │   │   │   ├── Block.php
│   │   │   │   ├── Fixed.php
│   │   │   │   ├── Inline.php
│   │   │   │   ├── ListBullet.php
│   │   │   │   ├── NullPositioner.php
│   │   │   │   ├── TableCell.php
│   │   │   │   └── TableRow.php
│   │   │   ├── Renderer
│   │   │   │   ├── AbstractRenderer.php
│   │   │   │   ├── Block.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Inline.php
│   │   │   │   ├── ListBullet.php
│   │   │   │   ├── TableCell.php
│   │   │   │   ├── TableRowGroup.php
│   │   │   │   └── Text.php
│   │   │   └── Renderer.php
│   │   └── VERSION
│   ├── dompdf.zip
│   ├── friendsofphp
│   │   └── php-cs-fixer
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── dev-tools
│   │   │   ├── build.sh
│   │   │   ├── check-shell-scripts.sh
│   │   │   ├── ci-integration.sh
│   │   │   ├── composer.json
│   │   │   ├── info-extractor.php
│   │   │   └── trigger-website.sh
│   │   ├── doc
│   │   │   ├── checkstyle.xsd
│   │   │   ├── COOKBOOK-FIXERS.md
│   │   │   ├── junit-10.xsd
│   │   │   ├── schema.json
│   │   │   └── xml.xsd
│   │   ├── LICENSE
│   │   ├── php-cs-fixer
│   │   ├── README.rst
│   │   ├── src
│   │   │   ├── AbstractAlignFixerHelper.php
│   │   │   ├── AbstractDoctrineAnnotationFixer.php
│   │   │   ├── AbstractFixer.php
│   │   │   ├── AbstractFopenFlagFixer.php
│   │   │   ├── AbstractFunctionReferenceFixer.php
│   │   │   ├── AbstractLinesBeforeNamespaceFixer.php
│   │   │   ├── AbstractNoUselessElseFixer.php
│   │   │   ├── AbstractPhpdocTypesFixer.php
│   │   │   ├── AbstractProxyFixer.php
│   │   │   ├── AbstractPsrAutoloadingFixer.php
│   │   │   ├── Cache
│   │   │   │   ├── CacheInterface.php
│   │   │   │   ├── CacheManagerInterface.php
│   │   │   │   ├── Cache.php
│   │   │   │   ├── DirectoryInterface.php
│   │   │   │   ├── Directory.php
│   │   │   │   ├── FileCacheManager.php
│   │   │   │   ├── FileHandlerInterface.php
│   │   │   │   ├── FileHandler.php
│   │   │   │   ├── NullCacheManager.php
│   │   │   │   ├── SignatureInterface.php
│   │   │   │   └── Signature.php
│   │   │   ├── ConfigInterface.php
│   │   │   ├── Config.php
│   │   │   ├── ConfigurationException
│   │   │   │   ├── InvalidConfigurationException.php
│   │   │   │   ├── InvalidFixerConfigurationException.php
│   │   │   │   ├── InvalidForEnvFixerConfigurationException.php
│   │   │   │   └── RequiredFixerConfigurationException.php
│   │   │   ├── Console
│   │   │   │   ├── Application.php
│   │   │   │   ├── Command
│   │   │   │   │   ├── DescribeCommand.php
│   │   │   │   │   ├── DescribeNameNotFoundException.php
│   │   │   │   │   ├── FixCommandExitStatusCalculator.php
│   │   │   │   │   ├── FixCommand.php
│   │   │   │   │   ├── HelpCommand.php
│   │   │   │   │   ├── ReadmeCommand.php
│   │   │   │   │   └── SelfUpdateCommand.php
│   │   │   │   ├── ConfigurationResolver.php
│   │   │   │   ├── Output
│   │   │   │   │   ├── ErrorOutput.php
│   │   │   │   │   ├── NullOutput.php
│   │   │   │   │   ├── ProcessOutputInterface.php
│   │   │   │   │   └── ProcessOutput.php
│   │   │   │   ├── SelfUpdate
│   │   │   │   │   ├── GithubClientInterface.php
│   │   │   │   │   ├── GithubClient.php
│   │   │   │   │   ├── NewVersionCheckerInterface.php
│   │   │   │   │   └── NewVersionChecker.php
│   │   │   │   └── WarningsDetector.php
│   │   │   ├── Differ
│   │   │   │   ├── DiffConsoleFormatter.php
│   │   │   │   ├── DifferInterface.php
│   │   │   │   ├── FullDiffer.php
│   │   │   │   ├── NullDiffer.php
│   │   │   │   ├── SebastianBergmannDiffer.php
│   │   │   │   ├── SebastianBergmannShortDiffer.php
│   │   │   │   └── UnifiedDiffer.php
│   │   │   ├── DocBlock
│   │   │   │   ├── Annotation.php
│   │   │   │   ├── DocBlock.php
│   │   │   │   ├── Line.php
│   │   │   │   ├── ShortDescription.php
│   │   │   │   ├── TagComparator.php
│   │   │   │   └── Tag.php
│   │   │   ├── Doctrine
│   │   │   │   └── Annotation
│   │   │   │   ├── Token.php
│   │   │   │   └── Tokens.php
│   │   │   ├── Error
│   │   │   │   ├── Error.php
│   │   │   │   └── ErrorsManager.php
│   │   │   ├── FileReader.php
│   │   │   ├── FileRemoval.php
│   │   │   ├── Finder.php
│   │   │   ├── Fixer
│   │   │   │   ├── Alias
│   │   │   │   │   ├── BacktickToShellExecFixer.php
│   │   │   │   │   ├── EregToPregFixer.php
│   │   │   │   │   ├── MbStrFunctionsFixer.php
│   │   │   │   │   ├── NoAliasFunctionsFixer.php
│   │   │   │   │   ├── NoMixedEchoPrintFixer.php
│   │   │   │   │   ├── PowToExponentiationFixer.php
│   │   │   │   │   ├── RandomApiMigrationFixer.php
│   │   │   │   │   └── SetTypeToCastFixer.php
│   │   │   │   ├── ArrayNotation
│   │   │   │   │   ├── ArraySyntaxFixer.php
│   │   │   │   │   ├── NoMultilineWhitespaceAroundDoubleArrowFixer.php
│   │   │   │   │   ├── NormalizeIndexBraceFixer.php
│   │   │   │   │   ├── NoTrailingCommaInSinglelineArrayFixer.php
│   │   │   │   │   ├── NoWhitespaceBeforeCommaInArrayFixer.php
│   │   │   │   │   ├── TrailingCommaInMultilineArrayFixer.php
│   │   │   │   │   ├── TrimArraySpacesFixer.php
│   │   │   │   │   └── WhitespaceAfterCommaInArrayFixer.php
│   │   │   │   ├── Basic
│   │   │   │   │   ├── BracesFixer.php
│   │   │   │   │   ├── EncodingFixer.php
│   │   │   │   │   ├── NonPrintableCharacterFixer.php
│   │   │   │   │   ├── Psr0Fixer.php
│   │   │   │   │   └── Psr4Fixer.php
│   │   │   │   ├── Casing
│   │   │   │   │   ├── LowercaseConstantsFixer.php
│   │   │   │   │   ├── LowercaseKeywordsFixer.php
│   │   │   │   │   ├── LowercaseStaticReferenceFixer.php
│   │   │   │   │   ├── MagicConstantCasingFixer.php
│   │   │   │   │   ├── MagicMethodCasingFixer.php
│   │   │   │   │   └── NativeFunctionCasingFixer.php
│   │   │   │   ├── CastNotation
│   │   │   │   │   ├── CastSpacesFixer.php
│   │   │   │   │   ├── LowercaseCastFixer.php
│   │   │   │   │   ├── ModernizeTypesCastingFixer.php
│   │   │   │   │   ├── NoShortBoolCastFixer.php
│   │   │   │   │   ├── NoUnsetCastFixer.php
│   │   │   │   │   └── ShortScalarCastFixer.php
│   │   │   │   ├── ClassNotation
│   │   │   │   │   ├── ClassAttributesSeparationFixer.php
│   │   │   │   │   ├── ClassDefinitionFixer.php
│   │   │   │   │   ├── FinalInternalClassFixer.php
│   │   │   │   │   ├── MethodSeparationFixer.php
│   │   │   │   │   ├── NoBlankLinesAfterClassOpeningFixer.php
│   │   │   │   │   ├── NoNullPropertyInitializationFixer.php
│   │   │   │   │   ├── NoPhp4ConstructorFixer.php
│   │   │   │   │   ├── NoUnneededFinalMethodFixer.php
│   │   │   │   │   ├── OrderedClassElementsFixer.php
│   │   │   │   │   ├── ProtectedToPrivateFixer.php
│   │   │   │   │   ├── SelfAccessorFixer.php
│   │   │   │   │   ├── SingleClassElementPerStatementFixer.php
│   │   │   │   │   └── VisibilityRequiredFixer.php
│   │   │   │   ├── ClassUsage
│   │   │   │   │   └── DateTimeImmutableFixer.php
│   │   │   │   ├── Comment
│   │   │   │   │   ├── CommentToPhpdocFixer.php
│   │   │   │   │   ├── HashToSlashCommentFixer.php
│   │   │   │   │   ├── HeaderCommentFixer.php
│   │   │   │   │   ├── MultilineCommentOpeningClosingFixer.php
│   │   │   │   │   ├── NoEmptyCommentFixer.php
│   │   │   │   │   ├── NoTrailingWhitespaceInCommentFixer.php
│   │   │   │   │   └── SingleLineCommentStyleFixer.php
│   │   │   │   ├── ConfigurableFixerInterface.php
│   │   │   │   ├── ConfigurationDefinitionFixerInterface.php
│   │   │   │   ├── ConstantNotation
│   │   │   │   │   └── NativeConstantInvocationFixer.php
│   │   │   │   ├── ControlStructure
│   │   │   │   │   ├── ElseifFixer.php
│   │   │   │   │   ├── IncludeFixer.php
│   │   │   │   │   ├── NoAlternativeSyntaxFixer.php
│   │   │   │   │   ├── NoBreakCommentFixer.php
│   │   │   │   │   ├── NoSuperfluousElseifFixer.php
│   │   │   │   │   ├── NoTrailingCommaInListCallFixer.php
│   │   │   │   │   ├── NoUnneededControlParenthesesFixer.php
│   │   │   │   │   ├── NoUnneededCurlyBracesFixer.php
│   │   │   │   │   ├── NoUselessElseFixer.php
│   │   │   │   │   ├── SwitchCaseSemicolonToColonFixer.php
│   │   │   │   │   ├── SwitchCaseSpaceFixer.php
│   │   │   │   │   └── YodaStyleFixer.php
│   │   │   │   ├── DefinedFixerInterface.php
│   │   │   │   ├── DeprecatedFixerInterface.php
│   │   │   │   ├── DoctrineAnnotation
│   │   │   │   │   ├── DoctrineAnnotationArrayAssignmentFixer.php
│   │   │   │   │   ├── DoctrineAnnotationBracesFixer.php
│   │   │   │   │   ├── DoctrineAnnotationIndentationFixer.php
│   │   │   │   │   └── DoctrineAnnotationSpacesFixer.php
│   │   │   │   ├── FixerInterface.php
│   │   │   │   ├── FunctionNotation
│   │   │   │   │   ├── CombineNestedDirnameFixer.php
│   │   │   │   │   ├── FopenFlagOrderFixer.php
│   │   │   │   │   ├── FopenFlagsFixer.php
│   │   │   │   │   ├── FunctionDeclarationFixer.php
│   │   │   │   │   ├── FunctionTypehintSpaceFixer.php
│   │   │   │   │   ├── ImplodeCallFixer.php
│   │   │   │   │   ├── MethodArgumentSpaceFixer.php
│   │   │   │   │   ├── NativeFunctionInvocationFixer.php
│   │   │   │   │   ├── NoSpacesAfterFunctionNameFixer.php
│   │   │   │   │   ├── NoUnreachableDefaultArgumentValueFixer.php
│   │   │   │   │   ├── PhpdocToReturnTypeFixer.php
│   │   │   │   │   ├── ReturnTypeDeclarationFixer.php
│   │   │   │   │   ├── StaticLambdaFixer.php
│   │   │   │   │   └── VoidReturnFixer.php
│   │   │   │   ├── Import
│   │   │   │   │   ├── FullyQualifiedStrictTypesFixer.php
│   │   │   │   │   ├── NoLeadingImportSlashFixer.php
│   │   │   │   │   ├── NoUnusedImportsFixer.php
│   │   │   │   │   ├── OrderedImportsFixer.php
│   │   │   │   │   ├── SingleImportPerStatementFixer.php
│   │   │   │   │   └── SingleLineAfterImportsFixer.php
│   │   │   │   ├── LanguageConstruct
│   │   │   │   │   ├── ClassKeywordRemoveFixer.php
│   │   │   │   │   ├── CombineConsecutiveIssetsFixer.php
│   │   │   │   │   ├── CombineConsecutiveUnsetsFixer.php
│   │   │   │   │   ├── DeclareEqualNormalizeFixer.php
│   │   │   │   │   ├── DirConstantFixer.php
│   │   │   │   │   ├── ErrorSuppressionFixer.php
│   │   │   │   │   ├── ExplicitIndirectVariableFixer.php
│   │   │   │   │   ├── FunctionToConstantFixer.php
│   │   │   │   │   ├── IsNullFixer.php
│   │   │   │   │   ├── NoUnsetOnPropertyFixer.php
│   │   │   │   │   └── SilencedDeprecationErrorFixer.php
│   │   │   │   ├── ListNotation
│   │   │   │   │   └── ListSyntaxFixer.php
│   │   │   │   ├── NamespaceNotation
│   │   │   │   │   ├── BlankLineAfterNamespaceFixer.php
│   │   │   │   │   ├── NoBlankLinesBeforeNamespaceFixer.php
│   │   │   │   │   ├── NoLeadingNamespaceWhitespaceFixer.php
│   │   │   │   │   └── SingleBlankLineBeforeNamespaceFixer.php
│   │   │   │   ├── Naming
│   │   │   │   │   └── NoHomoglyphNamesFixer.php
│   │   │   │   ├── Operator
│   │   │   │   │   ├── AlignDoubleArrowFixerHelper.php
│   │   │   │   │   ├── AlignEqualsFixerHelper.php
│   │   │   │   │   ├── BinaryOperatorSpacesFixer.php
│   │   │   │   │   ├── ConcatSpaceFixer.php
│   │   │   │   │   ├── IncrementStyleFixer.php
│   │   │   │   │   ├── LogicalOperatorsFixer.php
│   │   │   │   │   ├── NewWithBracesFixer.php
│   │   │   │   │   ├── NotOperatorWithSpaceFixer.php
│   │   │   │   │   ├── NotOperatorWithSuccessorSpaceFixer.php
│   │   │   │   │   ├── ObjectOperatorWithoutWhitespaceFixer.php
│   │   │   │   │   ├── PreIncrementFixer.php
│   │   │   │   │   ├── StandardizeIncrementFixer.php
│   │   │   │   │   ├── StandardizeNotEqualsFixer.php
│   │   │   │   │   ├── TernaryOperatorSpacesFixer.php
│   │   │   │   │   ├── TernaryToNullCoalescingFixer.php
│   │   │   │   │   └── UnaryOperatorSpacesFixer.php
│   │   │   │   ├── Phpdoc
│   │   │   │   │   ├── AlignMultilineCommentFixer.php
│   │   │   │   │   ├── GeneralPhpdocAnnotationRemoveFixer.php
│   │   │   │   │   ├── NoBlankLinesAfterPhpdocFixer.php
│   │   │   │   │   ├── NoEmptyPhpdocFixer.php
│   │   │   │   │   ├── NoSuperfluousPhpdocTagsFixer.php
│   │   │   │   │   ├── PhpdocAddMissingParamAnnotationFixer.php
│   │   │   │   │   ├── PhpdocAlignFixer.php
│   │   │   │   │   ├── PhpdocAnnotationWithoutDotFixer.php
│   │   │   │   │   ├── PhpdocIndentFixer.php
│   │   │   │   │   ├── PhpdocInlineTagFixer.php
│   │   │   │   │   ├── PhpdocNoAccessFixer.php
│   │   │   │   │   ├── PhpdocNoAliasTagFixer.php
│   │   │   │   │   ├── PhpdocNoEmptyReturnFixer.php
│   │   │   │   │   ├── PhpdocNoPackageFixer.php
│   │   │   │   │   ├── PhpdocNoUselessInheritdocFixer.php
│   │   │   │   │   ├── PhpdocOrderFixer.php
│   │   │   │   │   ├── PhpdocReturnSelfReferenceFixer.php
│   │   │   │   │   ├── PhpdocScalarFixer.php
│   │   │   │   │   ├── PhpdocSeparationFixer.php
│   │   │   │   │   ├── PhpdocSingleLineVarSpacingFixer.php
│   │   │   │   │   ├── PhpdocSummaryFixer.php
│   │   │   │   │   ├── PhpdocToCommentFixer.php
│   │   │   │   │   ├── PhpdocTrimConsecutiveBlankLineSeparationFixer.php
│   │   │   │   │   ├── PhpdocTrimFixer.php
│   │   │   │   │   ├── PhpdocTypesFixer.php
│   │   │   │   │   ├── PhpdocTypesOrderFixer.php
│   │   │   │   │   ├── PhpdocVarAnnotationCorrectOrderFixer.php
│   │   │   │   │   └── PhpdocVarWithoutNameFixer.php
│   │   │   │   ├── PhpTag
│   │   │   │   │   ├── BlankLineAfterOpeningTagFixer.php
│   │   │   │   │   ├── FullOpeningTagFixer.php
│   │   │   │   │   ├── LinebreakAfterOpeningTagFixer.php
│   │   │   │   │   ├── NoClosingTagFixer.php
│   │   │   │   │   └── NoShortEchoTagFixer.php
│   │   │   │   ├── PhpUnit
│   │   │   │   │   ├── PhpUnitConstructFixer.php
│   │   │   │   │   ├── PhpUnitDedicateAssertFixer.php
│   │   │   │   │   ├── PhpUnitExpectationFixer.php
│   │   │   │   │   ├── PhpUnitFqcnAnnotationFixer.php
│   │   │   │   │   ├── PhpUnitInternalClassFixer.php
│   │   │   │   │   ├── PhpUnitMethodCasingFixer.php
│   │   │   │   │   ├── PhpUnitMockFixer.php
│   │   │   │   │   ├── PhpUnitNamespacedFixer.php
│   │   │   │   │   ├── PhpUnitNoExpectationAnnotationFixer.php
│   │   │   │   │   ├── PhpUnitOrderedCoversFixer.php
│   │   │   │   │   ├── PhpUnitSetUpTearDownVisibilityFixer.php
│   │   │   │   │   ├── PhpUnitStrictFixer.php
│   │   │   │   │   ├── PhpUnitTargetVersion.php
│   │   │   │   │   ├── PhpUnitTestAnnotationFixer.php
│   │   │   │   │   ├── PhpUnitTestCaseStaticMethodCallsFixer.php
│   │   │   │   │   └── PhpUnitTestClassRequiresCoversFixer.php
│   │   │   │   ├── ReturnNotation
│   │   │   │   │   ├── BlankLineBeforeReturnFixer.php
│   │   │   │   │   ├── NoUselessReturnFixer.php
│   │   │   │   │   ├── ReturnAssignmentFixer.php
│   │   │   │   │   └── SimplifiedNullReturnFixer.php
│   │   │   │   ├── Semicolon
│   │   │   │   │   ├── MultilineWhitespaceBeforeSemicolonsFixer.php
│   │   │   │   │   ├── NoEmptyStatementFixer.php
│   │   │   │   │   ├── NoMultilineWhitespaceBeforeSemicolonsFixer.php
│   │   │   │   │   ├── NoSinglelineWhitespaceBeforeSemicolonsFixer.php
│   │   │   │   │   ├── SemicolonAfterInstructionFixer.php
│   │   │   │   │   └── SpaceAfterSemicolonFixer.php
│   │   │   │   ├── Strict
│   │   │   │   │   ├── DeclareStrictTypesFixer.php
│   │   │   │   │   ├── StrictComparisonFixer.php
│   │   │   │   │   └── StrictParamFixer.php
│   │   │   │   ├── StringNotation
│   │   │   │   │   ├── EscapeImplicitBackslashesFixer.php
│   │   │   │   │   ├── ExplicitStringVariableFixer.php
│   │   │   │   │   ├── HeredocToNowdocFixer.php
│   │   │   │   │   ├── NoBinaryStringFixer.php
│   │   │   │   │   ├── SingleQuoteFixer.php
│   │   │   │   │   └── StringLineEndingFixer.php
│   │   │   │   ├── Whitespace
│   │   │   │   │   ├── ArrayIndentationFixer.php
│   │   │   │   │   ├── BlankLineBeforeStatementFixer.php
│   │   │   │   │   ├── CompactNullableTypehintFixer.php
│   │   │   │   │   ├── HeredocIndentationFixer.php
│   │   │   │   │   ├── IndentationTypeFixer.php
│   │   │   │   │   ├── LineEndingFixer.php
│   │   │   │   │   ├── MethodChainingIndentationFixer.php
│   │   │   │   │   ├── NoExtraBlankLinesFixer.php
│   │   │   │   │   ├── NoExtraConsecutiveBlankLinesFixer.php
│   │   │   │   │   ├── NoSpacesAroundOffsetFixer.php
│   │   │   │   │   ├── NoSpacesInsideParenthesisFixer.php
│   │   │   │   │   ├── NoTrailingWhitespaceFixer.php
│   │   │   │   │   ├── NoWhitespaceInBlankLineFixer.php
│   │   │   │   │   └── SingleBlankLineAtEofFixer.php
│   │   │   │   └── WhitespacesAwareFixerInterface.php
│   │   │   ├── FixerConfiguration
│   │   │   │   ├── AliasedFixerOptionBuilder.php
│   │   │   │   ├── AliasedFixerOption.php
│   │   │   │   ├── AllowedValueSubset.php
│   │   │   │   ├── DeprecatedFixerOptionInterface.php
│   │   │   │   ├── DeprecatedFixerOption.php
│   │   │   │   ├── FixerConfigurationResolverInterface.php
│   │   │   │   ├── FixerConfigurationResolver.php
│   │   │   │   ├── FixerConfigurationResolverRootless.php
│   │   │   │   ├── FixerOptionBuilder.php
│   │   │   │   ├── FixerOptionInterface.php
│   │   │   │   ├── FixerOption.php
│   │   │   │   └── InvalidOptionsForEnvException.php
│   │   │   ├── FixerDefinition
│   │   │   │   ├── CodeSampleInterface.php
│   │   │   │   ├── CodeSample.php
│   │   │   │   ├── FileSpecificCodeSampleInterface.php
│   │   │   │   ├── FileSpecificCodeSample.php
│   │   │   │   ├── FixerDefinitionInterface.php
│   │   │   │   ├── FixerDefinition.php
│   │   │   │   ├── VersionSpecificationInterface.php
│   │   │   │   ├── VersionSpecification.php
│   │   │   │   ├── VersionSpecificCodeSampleInterface.php
│   │   │   │   └── VersionSpecificCodeSample.php
│   │   │   ├── FixerFactory.php
│   │   │   ├── FixerFileProcessedEvent.php
│   │   │   ├── FixerNameValidator.php
│   │   │   ├── Indicator
│   │   │   │   └── PhpUnitTestCaseIndicator.php
│   │   │   ├── Linter
│   │   │   │   ├── CachingLinter.php
│   │   │   │   ├── LinterInterface.php
│   │   │   │   ├── Linter.php
│   │   │   │   ├── LintingException.php
│   │   │   │   ├── LintingResultInterface.php
│   │   │   │   ├── ProcessLinter.php
│   │   │   │   ├── ProcessLinterProcessBuilder.php
│   │   │   │   ├── ProcessLintingResult.php
│   │   │   │   ├── TokenizerLinter.php
│   │   │   │   ├── TokenizerLintingResult.php
│   │   │   │   └── UnavailableLinterException.php
│   │   │   ├── PharCheckerInterface.php
│   │   │   ├── PharChecker.php
│   │   │   ├── PregException.php
│   │   │   ├── Preg.php
│   │   │   ├── Report
│   │   │   │   ├── CheckstyleReporter.php
│   │   │   │   ├── JsonReporter.php
│   │   │   │   ├── JunitReporter.php
│   │   │   │   ├── ReporterFactory.php
│   │   │   │   ├── ReporterInterface.php
│   │   │   │   ├── ReportSummary.php
│   │   │   │   ├── TextReporter.php
│   │   │   │   └── XmlReporter.php
│   │   │   ├── RuleSetInterface.php
│   │   │   ├── RuleSet.php
│   │   │   ├── Runner
│   │   │   │   ├── FileCachingLintingIterator.php
│   │   │   │   ├── FileFilterIterator.php
│   │   │   │   ├── FileLintingIterator.php
│   │   │   │   └── Runner.php
│   │   │   ├── StdinFileInfo.php
│   │   │   ├── Test
│   │   │   │   ├── AbstractFixerTestCase.php
│   │   │   │   ├── AbstractIntegrationTestCase.php
│   │   │   │   ├── AccessibleObject.php
│   │   │   │   └── IntegrationCase.php
│   │   │   ├── Tokenizer
│   │   │   │   ├── AbstractTransformer.php
│   │   │   │   ├── Analyzer
│   │   │   │   │   ├── Analysis
│   │   │   │   │   │   ├── ArgumentAnalysis.php
│   │   │   │   │   │   ├── NamespaceAnalysis.php
│   │   │   │   │   │   ├── NamespaceUseAnalysis.php
│   │   │   │   │   │   ├── StartEndTokenAwareAnalysis.php
│   │   │   │   │   │   └── TypeAnalysis.php
│   │   │   │   │   ├── ArgumentsAnalyzer.php
│   │   │   │   │   ├── CommentsAnalyzer.php
│   │   │   │   │   ├── FunctionsAnalyzer.php
│   │   │   │   │   ├── NamespacesAnalyzer.php
│   │   │   │   │   └── NamespaceUsesAnalyzer.php
│   │   │   │   ├── CodeHasher.php
│   │   │   │   ├── CT.php
│   │   │   │   ├── Generator
│   │   │   │   │   └── NamespacedStringTokenGenerator.php
│   │   │   │   ├── Resolver
│   │   │   │   │   └── TypeShortNameResolver.php
│   │   │   │   ├── Token.php
│   │   │   │   ├── TokensAnalyzer.php
│   │   │   │   ├── Tokens.php
│   │   │   │   ├── Transformer
│   │   │   │   │   ├── ArrayTypehintTransformer.php
│   │   │   │   │   ├── BraceClassInstantiationTransformer.php
│   │   │   │   │   ├── ClassConstantTransformer.php
│   │   │   │   │   ├── CurlyBraceTransformer.php
│   │   │   │   │   ├── ImportTransformer.php
│   │   │   │   │   ├── NamespaceOperatorTransformer.php
│   │   │   │   │   ├── NullableTypeTransformer.php
│   │   │   │   │   ├── ReturnRefTransformer.php
│   │   │   │   │   ├── SquareBraceTransformer.php
│   │   │   │   │   ├── TypeAlternationTransformer.php
│   │   │   │   │   ├── TypeColonTransformer.php
│   │   │   │   │   ├── UseTransformer.php
│   │   │   │   │   └── WhitespacyCommentTransformer.php
│   │   │   │   ├── TransformerInterface.php
│   │   │   │   └── Transformers.php
│   │   │   ├── ToolInfoInterface.php
│   │   │   ├── ToolInfo.php
│   │   │   ├── Utils.php
│   │   │   ├── WhitespacesFixerConfig.php
│   │   │   └── WordMatcher.php
│   │   ├── tests
│   │   │   ├── Test
│   │   │   │   ├── AbstractFixerTestCase.php
│   │   │   │   ├── AbstractIntegrationCaseFactory.php
│   │   │   │   ├── AbstractIntegrationTestCase.php
│   │   │   │   ├── Assert
│   │   │   │   │   └── AssertTokensTrait.php
│   │   │   │   ├── IntegrationCaseFactoryInterface.php
│   │   │   │   ├── IntegrationCaseFactory.php
│   │   │   │   ├── IntegrationCase.php
│   │   │   │   └── InternalIntegrationCaseFactory.php
│   │   │   └── TestCase.php
│   │   └── UPGRADE.md
│   ├── guzzlehttp
│   │   ├── guzzle
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── ClientInterface.php
│   │   │   │   ├── Client.php
│   │   │   │   ├── Cookie
│   │   │   │   │   ├── CookieJarInterface.php
│   │   │   │   │   ├── CookieJar.php
│   │   │   │   │   ├── FileCookieJar.php
│   │   │   │   │   ├── SessionCookieJar.php
│   │   │   │   │   └── SetCookie.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── BadResponseException.php
│   │   │   │   │   ├── ClientException.php
│   │   │   │   │   ├── ConnectException.php
│   │   │   │   │   ├── GuzzleException.php
│   │   │   │   │   ├── RequestException.php
│   │   │   │   │   ├── SeekException.php
│   │   │   │   │   ├── ServerException.php
│   │   │   │   │   ├── TooManyRedirectsException.php
│   │   │   │   │   └── TransferException.php
│   │   │   │   ├── functions_include.php
│   │   │   │   ├── functions.php
│   │   │   │   ├── Handler
│   │   │   │   │   ├── CurlFactoryInterface.php
│   │   │   │   │   ├── CurlFactory.php
│   │   │   │   │   ├── CurlHandler.php
│   │   │   │   │   ├── CurlMultiHandler.php
│   │   │   │   │   ├── EasyHandle.php
│   │   │   │   │   ├── MockHandler.php
│   │   │   │   │   ├── Proxy.php
│   │   │   │   │   └── StreamHandler.php
│   │   │   │   ├── HandlerStack.php
│   │   │   │   ├── MessageFormatter.php
│   │   │   │   ├── Middleware.php
│   │   │   │   ├── Pool.php
│   │   │   │   ├── PrepareBodyMiddleware.php
│   │   │   │   ├── RedirectMiddleware.php
│   │   │   │   ├── RequestOptions.php
│   │   │   │   ├── RetryMiddleware.php
│   │   │   │   ├── TransferStats.php
│   │   │   │   └── UriTemplate.php
│   │   │   └── UPGRADING.md
│   │   ├── promises
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── Makefile
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── AggregateException.php
│   │   │   ├── CancellationException.php
│   │   │   ├── Coroutine.php
│   │   │   ├── EachPromise.php
│   │   │   ├── FulfilledPromise.php
│   │   │   ├── functions_include.php
│   │   │   ├── functions.php
│   │   │   ├── PromiseInterface.php
│   │   │   ├── Promise.php
│   │   │   ├── PromisorInterface.php
│   │   │   ├── RejectedPromise.php
│   │   │   ├── RejectionException.php
│   │   │   ├── TaskQueueInterface.php
│   │   │   └── TaskQueue.php
│   │   └── psr7
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── AppendStream.php
│   │   ├── BufferStream.php
│   │   ├── CachingStream.php
│   │   ├── DroppingStream.php
│   │   ├── FnStream.php
│   │   ├── functions_include.php
│   │   ├── functions.php
│   │   ├── InflateStream.php
│   │   ├── LazyOpenStream.php
│   │   ├── LimitStream.php
│   │   ├── MessageTrait.php
│   │   ├── MultipartStream.php
│   │   ├── NoSeekStream.php
│   │   ├── PumpStream.php
│   │   ├── Request.php
│   │   ├── Response.php
│   │   ├── Rfc7230.php
│   │   ├── ServerRequest.php
│   │   ├── StreamDecoratorTrait.php
│   │   ├── Stream.php
│   │   ├── StreamWrapper.php
│   │   ├── UploadedFile.php
│   │   ├── UriNormalizer.php
│   │   ├── Uri.php
│   │   └── UriResolver.php
│   ├── mpdf
│   │   └── mpdf
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── CREDITS.txt
│   │   ├── data
│   │   │   ├── CJKdata.php
│   │   │   ├── collations
│   │   │   │   ├── Afrikaans_South_Africa.php
│   │   │   │   ├── Albanian_Albania.php
│   │   │   │   ├── Alsatian_France.php
│   │   │   │   ├── Arabic_Algeria.php
│   │   │   │   ├── Arabic_Bahrain.php
│   │   │   │   ├── Arabic_Egypt.php
│   │   │   │   ├── Arabic_Iraq.php
│   │   │   │   ├── Arabic_Jordan.php
│   │   │   │   ├── Arabic_Kuwait.php
│   │   │   │   ├── Arabic_Lebanon.php
│   │   │   │   ├── Arabic_Libya.php
│   │   │   │   ├── Arabic_Morocco.php
│   │   │   │   ├── Arabic_Oman.php
│   │   │   │   ├── Arabic_Pseudo_RTL.php
│   │   │   │   ├── Arabic_Qatar.php
│   │   │   │   ├── Arabic_Saudi_Arabia.php
│   │   │   │   ├── Arabic_Syria.php
│   │   │   │   ├── Arabic_Tunisia.php
│   │   │   │   ├── Arabic_Yemen.php
│   │   │   │   ├── Azeri_(Cyrillic)_Azerbaijan.php
│   │   │   │   ├── Azeri_(Latin)_Azerbaijan.php
│   │   │   │   ├── Bashkir_Russia.php
│   │   │   │   ├── Basque_Spain.php
│   │   │   │   ├── Belarusian_Belarus.php
│   │   │   │   ├── Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php
│   │   │   │   ├── Bosnian_(Latin)_Bosnia_and_Herzegovina.php
│   │   │   │   ├── Breton_France.php
│   │   │   │   ├── Bulgarian_Bulgaria.php
│   │   │   │   ├── Catalan_Spain.php
│   │   │   │   ├── Corsican_France.php
│   │   │   │   ├── Croatian_Croatia.php
│   │   │   │   ├── Croatian_(Latin)_Bosnia_and_Herzegovina.php
│   │   │   │   ├── Czech_Czech_Republic.php
│   │   │   │   ├── Danish_Denmark.php
│   │   │   │   ├── Dari_Afghanistan.php
│   │   │   │   ├── Dutch_Belgium.php
│   │   │   │   ├── Dutch_Netherlands.php
│   │   │   │   ├── English_Australia.php
│   │   │   │   ├── English_Belize.php
│   │   │   │   ├── English_Canada.php
│   │   │   │   ├── English_Caribbean.php
│   │   │   │   ├── English_India.php
│   │   │   │   ├── English_Ireland.php
│   │   │   │   ├── English_Jamaica.php
│   │   │   │   ├── English_Malaysia.php
│   │   │   │   ├── English_New_Zealand.php
│   │   │   │   ├── English_Republic_of_the_Philippines.php
│   │   │   │   ├── English_Singapore.php
│   │   │   │   ├── English_South_Africa.php
│   │   │   │   ├── English_Trinidad_and_Tobago.php
│   │   │   │   ├── English_United_Kingdom.php
│   │   │   │   ├── English_United_States.php
│   │   │   │   ├── English_Zimbabwe.php
│   │   │   │   ├── Estonian_Estonia.php
│   │   │   │   ├── Faroese_Faroe_Islands.php
│   │   │   │   ├── Filipino_Philippines.php
│   │   │   │   ├── Finnish_Finland.php
│   │   │   │   ├── French_Belgium.php
│   │   │   │   ├── French_Canada.php
│   │   │   │   ├── French_France.php
│   │   │   │   ├── French_Luxembourg.php
│   │   │   │   ├── French_Principality_of_Monaco.php
│   │   │   │   ├── French_Switzerland.php
│   │   │   │   ├── Frisian_Netherlands.php
│   │   │   │   ├── Galician_Spain.php
│   │   │   │   ├── German_Austria.php
│   │   │   │   ├── German_Germany.php
│   │   │   │   ├── German_Liechtenstein.php
│   │   │   │   ├── German_Luxembourg.php
│   │   │   │   ├── German_Switzerland.php
│   │   │   │   ├── Greek_Greece.php
│   │   │   │   ├── Greenlandic_Greenland.php
│   │   │   │   ├── Hausa_(Latin)_Nigeria.php
│   │   │   │   ├── Hebrew_Israel.php
│   │   │   │   ├── Hungarian_Hungary.php
│   │   │   │   ├── Icelandic_Iceland.php
│   │   │   │   ├── Igbo_Nigeria.php
│   │   │   │   ├── Indonesian_Indonesia.php
│   │   │   │   ├── Inuktitut_(Latin)_Canada.php
│   │   │   │   ├── Invariant_Language_Invariant_Country.php
│   │   │   │   ├── Irish_Ireland.php
│   │   │   │   ├── isiXhosa_South_Africa.php
│   │   │   │   ├── isiZulu_South_Africa.php
│   │   │   │   ├── Italian_Italy.php
│   │   │   │   ├── Italian_Switzerland.php
│   │   │   │   ├── Kinyarwanda_Rwanda.php
│   │   │   │   ├── Kiswahili_Kenya.php
│   │   │   │   ├── Kyrgyz_Kyrgyzstan.php
│   │   │   │   ├── Latvian_Latvia.php
│   │   │   │   ├── Lithuanian_Lithuania.php
│   │   │   │   ├── Lower_Sorbian_Germany.php
│   │   │   │   ├── Luxembourgish_Luxembourg.php
│   │   │   │   ├── Macedonian_(FYROM)_Macedonia_(FYROM).php
│   │   │   │   ├── Malay_Brunei_Darussalam.php
│   │   │   │   ├── Malay_Malaysia.php
│   │   │   │   ├── Mapudungun_Chile.php
│   │   │   │   ├── Mohawk_Canada.php
│   │   │   │   ├── Mongolian_(Cyrillic)_Mongolia.php
│   │   │   │   ├── Norwegian_(Nynorsk)_Norway.php
│   │   │   │   ├── Occitan_France.php
│   │   │   │   ├── Persian_Iran.php
│   │   │   │   ├── Polish_Poland.php
│   │   │   │   ├── Portuguese_Brazil.php
│   │   │   │   ├── Portuguese_Portugal.php
│   │   │   │   ├── Quechua_Bolivia.php
│   │   │   │   ├── Quechua_Ecuador.php
│   │   │   │   ├── Quechua_Peru.php
│   │   │   │   ├── Romanian_Romania.php
│   │   │   │   ├── Romansh_Switzerland.php
│   │   │   │   ├── Russian_Russia.php
│   │   │   │   ├── Sami_(Inari)_Finland.php
│   │   │   │   ├── Sami_(Lule)_Norway.php
│   │   │   │   ├── Sami_(Lule)_Sweden.php
│   │   │   │   ├── Sami_(Northern)_Finland.php
│   │   │   │   ├── Sami_(Northern)_Norway.php
│   │   │   │   ├── Sami_(Northern)_Sweden.php
│   │   │   │   ├── Sami_(Skolt)_Finland.php
│   │   │   │   ├── Sami_(Southern)_Norway.php
│   │   │   │   ├── Sami_(Southern)_Sweden.php
│   │   │   │   ├── Serbian_(Cyrillic)_Bosnia_and_Herzegovina.php
│   │   │   │   ├── Serbian_(Cyrillic)_Serbia.php
│   │   │   │   ├── Serbian_(Latin)_Bosnia_and_Herzegovina.php
│   │   │   │   ├── Serbian_(Latin)_Serbia.php
│   │   │   │   ├── Sesotho_sa_Leboa_South_Africa.php
│   │   │   │   ├── Setswana_South_Africa.php
│   │   │   │   ├── Slovak_Slovakia.php
│   │   │   │   ├── Slovenian_Slovenia.php
│   │   │   │   ├── Spanish_Argentina.php
│   │   │   │   ├── Spanish_Bolivia.php
│   │   │   │   ├── Spanish_Chile.php
│   │   │   │   ├── Spanish_Colombia.php
│   │   │   │   ├── Spanish_Costa_Rica.php
│   │   │   │   ├── Spanish_Dominican_Republic.php
│   │   │   │   ├── Spanish_Ecuador.php
│   │   │   │   ├── Spanish_El_Salvador.php
│   │   │   │   ├── Spanish_Guatemala.php
│   │   │   │   ├── Spanish_Honduras.php
│   │   │   │   ├── Spanish_Mexico.php
│   │   │   │   ├── Spanish_Nicaragua.php
│   │   │   │   ├── Spanish_Panama.php
│   │   │   │   ├── Spanish_Paraguay.php
│   │   │   │   ├── Spanish_Peru.php
│   │   │   │   ├── Spanish_Puerto_Rico.php
│   │   │   │   ├── Spanish_Spain.php
│   │   │   │   ├── Spanish_United_States.php
│   │   │   │   ├── Spanish_Uruguay.php
│   │   │   │   ├── Spanish_Venezuela.php
│   │   │   │   ├── Swedish_Finland.php
│   │   │   │   ├── Swedish_Sweden.php
│   │   │   │   ├── Tajik_(Cyrillic)_Tajikistan.php
│   │   │   │   ├── Tamazight_(Latin)_Algeria.php
│   │   │   │   ├── Tatar_Russia.php
│   │   │   │   ├── Turkish_Turkey.php
│   │   │   │   ├── Turkmen_Turkmenistan.php
│   │   │   │   ├── Ukrainian_Ukraine.php
│   │   │   │   ├── Upper_Sorbian_Germany.php
│   │   │   │   ├── Urdu_Islamic_Republic_of_Pakistan.php
│   │   │   │   ├── Uzbek_(Cyrillic)_Uzbekistan.php
│   │   │   │   ├── Uzbek_(Latin)_Uzbekistan.php
│   │   │   │   ├── Vietnamese_Vietnam.php
│   │   │   │   ├── Welsh_United_Kingdom.php
│   │   │   │   ├── Wolof_Senegal.php
│   │   │   │   ├── Yakut_Russia.php
│   │   │   │   └── Yoruba_Nigeria.php
│   │   │   ├── entity_substitutions.php
│   │   │   ├── font
│   │   │   │   ├── ccourierbi.php
│   │   │   │   ├── ccourierb.php
│   │   │   │   ├── ccourieri.php
│   │   │   │   ├── ccourier.php
│   │   │   │   ├── chelveticabi.php
│   │   │   │   ├── chelveticab.php
│   │   │   │   ├── chelveticai.php
│   │   │   │   ├── chelvetica.php
│   │   │   │   ├── csymbol.php
│   │   │   │   ├── ctimesbi.php
│   │   │   │   ├── ctimesb.php
│   │   │   │   ├── ctimesi.php
│   │   │   │   ├── ctimes.php
│   │   │   │   └── czapfdingbats.php
│   │   │   ├── iccprofiles
│   │   │   │   └── sRGB_IEC61966-2-1.icc
│   │   │   ├── lang2fonts.css
│   │   │   ├── linebrdictK.dat
│   │   │   ├── linebrdictL.dat
│   │   │   ├── linebrdictT.dat
│   │   │   ├── mpdf.css
│   │   │   ├── no_image.jpg
│   │   │   ├── out.php
│   │   │   ├── patterns
│   │   │   │   ├── de.php
│   │   │   │   ├── dictionary.txt
│   │   │   │   ├── en.php
│   │   │   │   ├── es.php
│   │   │   │   ├── fi.php
│   │   │   │   ├── fr.php
│   │   │   │   ├── it.php
│   │   │   │   ├── nl.php
│   │   │   │   ├── NOTES.txt
│   │   │   │   ├── pl.php
│   │   │   │   ├── ru.php
│   │   │   │   └── sv.php
│   │   │   ├── subs_core.php
│   │   │   ├── subs_win-1252.php
│   │   │   └── upperCase.php
│   │   ├── LICENSE.txt
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── ruleset.xml
│   │   ├── src
│   │   │   ├── Barcode
│   │   │   │   ├── AbstractBarcode.php
│   │   │   │   ├── BarcodeException.php
│   │   │   │   ├── BarcodeInterface.php
│   │   │   │   ├── Codabar.php
│   │   │   │   ├── Code11.php
│   │   │   │   ├── Code128.php
│   │   │   │   ├── Code39.php
│   │   │   │   ├── Code93.php
│   │   │   │   ├── EanExt.php
│   │   │   │   ├── EanUpc.php
│   │   │   │   ├── I25.php
│   │   │   │   ├── Imb.php
│   │   │   │   ├── Msi.php
│   │   │   │   ├── Postnet.php
│   │   │   │   ├── Rm4Scc.php
│   │   │   │   └── S25.php
│   │   │   ├── Barcode.php
│   │   │   ├── Cache.php
│   │   │   ├── Color
│   │   │   │   ├── ColorConverter.php
│   │   │   │   ├── ColorModeConverter.php
│   │   │   │   ├── ColorSpaceRestrictor.php
│   │   │   │   └── NamedColors.php
│   │   │   ├── Config
│   │   │   │   ├── ConfigVariables.php
│   │   │   │   └── FontVariables.php
│   │   │   ├── Conversion
│   │   │   │   ├── DecToAlpha.php
│   │   │   │   ├── DecToCjk.php
│   │   │   │   ├── DecToHebrew.php
│   │   │   │   ├── DecToOther.php
│   │   │   │   └── DecToRoman.php
│   │   │   ├── Css
│   │   │   │   ├── Border.php
│   │   │   │   ├── DefaultCss.php
│   │   │   │   └── TextVars.php
│   │   │   ├── CssManager.php
│   │   │   ├── DirectWrite.php
│   │   │   ├── Exception
│   │   │   │   └── InvalidArgumentException.php
│   │   │   ├── Fonts
│   │   │   │   ├── FontCache.php
│   │   │   │   ├── FontFileFinder.php
│   │   │   │   ├── GlyphOperator.php
│   │   │   │   └── MetricsGenerator.php
│   │   │   ├── Form.php
│   │   │   ├── functions-dev.php
│   │   │   ├── Gif
│   │   │   │   ├── ColorTable.php
│   │   │   │   ├── FileHeader.php
│   │   │   │   ├── Gif.php
│   │   │   │   ├── ImageHeader.php
│   │   │   │   ├── Image.php
│   │   │   │   └── Lzw.php
│   │   │   ├── Gradient.php
│   │   │   ├── HTMLParserMode.php
│   │   │   ├── Hyphenator.php
│   │   │   ├── Image
│   │   │   │   ├── Bmp.php
│   │   │   │   ├── ImageProcessor.php
│   │   │   │   ├── ImageTypeGuesser.php
│   │   │   │   ├── Svg.php
│   │   │   │   └── Wmf.php
│   │   │   ├── Language
│   │   │   │   ├── LanguageToFontInterface.php
│   │   │   │   ├── LanguageToFont.php
│   │   │   │   ├── ScriptToLanguageInterface.php
│   │   │   │   └── ScriptToLanguage.php
│   │   │   ├── Log
│   │   │   │   └── Context.php
│   │   │   ├── MpdfException.php
│   │   │   ├── MpdfImageException.php
│   │   │   ├── Mpdf.php
│   │   │   ├── OtlDump.php
│   │   │   ├── Otl.php
│   │   │   ├── Output
│   │   │   │   └── Destination.php
│   │   │   ├── PageFormat.php
│   │   │   ├── Pdf
│   │   │   │   ├── Protection
│   │   │   │   │   └── UniqidGenerator.php
│   │   │   │   └── Protection.php
│   │   │   ├── QrCode
│   │   │   │   ├── data
│   │   │   │   │   ├── modele10.dat
│   │   │   │   │   ├── modele11.dat
│   │   │   │   │   ├── modele12.dat
│   │   │   │   │   ├── modele13.dat
│   │   │   │   │   ├── modele14.dat
│   │   │   │   │   ├── modele15.dat
│   │   │   │   │   ├── modele16.dat
│   │   │   │   │   ├── modele17.dat
│   │   │   │   │   ├── modele18.dat
│   │   │   │   │   ├── modele19.dat
│   │   │   │   │   ├── modele1.dat
│   │   │   │   │   ├── modele20.dat
│   │   │   │   │   ├── modele21.dat
│   │   │   │   │   ├── modele22.dat
│   │   │   │   │   ├── modele23.dat
│   │   │   │   │   ├── modele24.dat
│   │   │   │   │   ├── modele25.dat
│   │   │   │   │   ├── modele26.dat
│   │   │   │   │   ├── modele27.dat
│   │   │   │   │   ├── modele28.dat
│   │   │   │   │   ├── modele29.dat
│   │   │   │   │   ├── modele2.dat
│   │   │   │   │   ├── modele30.dat
│   │   │   │   │   ├── modele31.dat
│   │   │   │   │   ├── modele32.dat
│   │   │   │   │   ├── modele33.dat
│   │   │   │   │   ├── modele34.dat
│   │   │   │   │   ├── modele35.dat
│   │   │   │   │   ├── modele36.dat
│   │   │   │   │   ├── modele37.dat
│   │   │   │   │   ├── modele38.dat
│   │   │   │   │   ├── modele39.dat
│   │   │   │   │   ├── modele3.dat
│   │   │   │   │   ├── modele40.dat
│   │   │   │   │   ├── modele4.dat
│   │   │   │   │   ├── modele5.dat
│   │   │   │   │   ├── modele6.dat
│   │   │   │   │   ├── modele7.dat
│   │   │   │   │   ├── modele8.dat
│   │   │   │   │   ├── modele9.dat
│   │   │   │   │   ├── qrv10_0.dat
│   │   │   │   │   ├── qrv10_1.dat
│   │   │   │   │   ├── qrv10_2.dat
│   │   │   │   │   ├── qrv10_3.dat
│   │   │   │   │   ├── qrv1_0.dat
│   │   │   │   │   ├── qrv11_0.dat
│   │   │   │   │   ├── qrv11_1.dat
│   │   │   │   │   ├── qrv11_2.dat
│   │   │   │   │   ├── qrv11_3.dat
│   │   │   │   │   ├── qrv1_1.dat
│   │   │   │   │   ├── qrv12_0.dat
│   │   │   │   │   ├── qrv12_1.dat
│   │   │   │   │   ├── qrv12_2.dat
│   │   │   │   │   ├── qrv12_3.dat
│   │   │   │   │   ├── qrv1_2.dat
│   │   │   │   │   ├── qrv13_0.dat
│   │   │   │   │   ├── qrv13_1.dat
│   │   │   │   │   ├── qrv13_2.dat
│   │   │   │   │   ├── qrv13_3.dat
│   │   │   │   │   ├── qrv1_3.dat
│   │   │   │   │   ├── qrv14_0.dat
│   │   │   │   │   ├── qrv14_1.dat
│   │   │   │   │   ├── qrv14_2.dat
│   │   │   │   │   ├── qrv14_3.dat
│   │   │   │   │   ├── qrv15_0.dat
│   │   │   │   │   ├── qrv15_1.dat
│   │   │   │   │   ├── qrv15_2.dat
│   │   │   │   │   ├── qrv15_3.dat
│   │   │   │   │   ├── qrv16_0.dat
│   │   │   │   │   ├── qrv16_1.dat
│   │   │   │   │   ├── qrv16_2.dat
│   │   │   │   │   ├── qrv16_3.dat
│   │   │   │   │   ├── qrv17_0.dat
│   │   │   │   │   ├── qrv17_1.dat
│   │   │   │   │   ├── qrv17_2.dat
│   │   │   │   │   ├── qrv17_3.dat
│   │   │   │   │   ├── qrv18_0.dat
│   │   │   │   │   ├── qrv18_1.dat
│   │   │   │   │   ├── qrv18_2.dat
│   │   │   │   │   ├── qrv18_3.dat
│   │   │   │   │   ├── qrv19_0.dat
│   │   │   │   │   ├── qrv19_1.dat
│   │   │   │   │   ├── qrv19_2.dat
│   │   │   │   │   ├── qrv19_3.dat
│   │   │   │   │   ├── qrv20_0.dat
│   │   │   │   │   ├── qrv20_1.dat
│   │   │   │   │   ├── qrv20_2.dat
│   │   │   │   │   ├── qrv20_3.dat
│   │   │   │   │   ├── qrv2_0.dat
│   │   │   │   │   ├── qrv21_0.dat
│   │   │   │   │   ├── qrv21_1.dat
│   │   │   │   │   ├── qrv21_2.dat
│   │   │   │   │   ├── qrv21_3.dat
│   │   │   │   │   ├── qrv2_1.dat
│   │   │   │   │   ├── qrv22_0.dat
│   │   │   │   │   ├── qrv22_1.dat
│   │   │   │   │   ├── qrv22_2.dat
│   │   │   │   │   ├── qrv22_3.dat
│   │   │   │   │   ├── qrv2_2.dat
│   │   │   │   │   ├── qrv23_0.dat
│   │   │   │   │   ├── qrv23_1.dat
│   │   │   │   │   ├── qrv23_2.dat
│   │   │   │   │   ├── qrv23_3.dat
│   │   │   │   │   ├── qrv2_3.dat
│   │   │   │   │   ├── qrv24_0.dat
│   │   │   │   │   ├── qrv24_1.dat
│   │   │   │   │   ├── qrv24_2.dat
│   │   │   │   │   ├── qrv24_3.dat
│   │   │   │   │   ├── qrv25_0.dat
│   │   │   │   │   ├── qrv25_1.dat
│   │   │   │   │   ├── qrv25_2.dat
│   │   │   │   │   ├── qrv25_3.dat
│   │   │   │   │   ├── qrv26_0.dat
│   │   │   │   │   ├── qrv26_1.dat
│   │   │   │   │   ├── qrv26_2.dat
│   │   │   │   │   ├── qrv26_3.dat
│   │   │   │   │   ├── qrv27_0.dat
│   │   │   │   │   ├── qrv27_1.dat
│   │   │   │   │   ├── qrv27_2.dat
│   │   │   │   │   ├── qrv27_3.dat
│   │   │   │   │   ├── qrv28_0.dat
│   │   │   │   │   ├── qrv28_1.dat
│   │   │   │   │   ├── qrv28_2.dat
│   │   │   │   │   ├── qrv28_3.dat
│   │   │   │   │   ├── qrv29_0.dat
│   │   │   │   │   ├── qrv29_1.dat
│   │   │   │   │   ├── qrv29_2.dat
│   │   │   │   │   ├── qrv29_3.dat
│   │   │   │   │   ├── qrv30_0.dat
│   │   │   │   │   ├── qrv30_1.dat
│   │   │   │   │   ├── qrv30_2.dat
│   │   │   │   │   ├── qrv30_3.dat
│   │   │   │   │   ├── qrv3_0.dat
│   │   │   │   │   ├── qrv31_0.dat
│   │   │   │   │   ├── qrv31_1.dat
│   │   │   │   │   ├── qrv31_2.dat
│   │   │   │   │   ├── qrv31_3.dat
│   │   │   │   │   ├── qrv3_1.dat
│   │   │   │   │   ├── qrv32_0.dat
│   │   │   │   │   ├── qrv32_1.dat
│   │   │   │   │   ├── qrv32_2.dat
│   │   │   │   │   ├── qrv32_3.dat
│   │   │   │   │   ├── qrv3_2.dat
│   │   │   │   │   ├── qrv33_0.dat
│   │   │   │   │   ├── qrv33_1.dat
│   │   │   │   │   ├── qrv33_2.dat
│   │   │   │   │   ├── qrv33_3.dat
│   │   │   │   │   ├── qrv3_3.dat
│   │   │   │   │   ├── qrv34_0.dat
│   │   │   │   │   ├── qrv34_1.dat
│   │   │   │   │   ├── qrv34_2.dat
│   │   │   │   │   ├── qrv34_3.dat
│   │   │   │   │   ├── qrv35_0.dat
│   │   │   │   │   ├── qrv35_1.dat
│   │   │   │   │   ├── qrv35_2.dat
│   │   │   │   │   ├── qrv35_3.dat
│   │   │   │   │   ├── qrv36_0.dat
│   │   │   │   │   ├── qrv36_1.dat
│   │   │   │   │   ├── qrv36_2.dat
│   │   │   │   │   ├── qrv36_3.dat
│   │   │   │   │   ├── qrv37_0.dat
│   │   │   │   │   ├── qrv37_1.dat
│   │   │   │   │   ├── qrv37_2.dat
│   │   │   │   │   ├── qrv37_3.dat
│   │   │   │   │   ├── qrv38_0.dat
│   │   │   │   │   ├── qrv38_1.dat
│   │   │   │   │   ├── qrv38_2.dat
│   │   │   │   │   ├── qrv38_3.dat
│   │   │   │   │   ├── qrv39_0.dat
│   │   │   │   │   ├── qrv39_1.dat
│   │   │   │   │   ├── qrv39_2.dat
│   │   │   │   │   ├── qrv39_3.dat
│   │   │   │   │   ├── qrv40_0.dat
│   │   │   │   │   ├── qrv40_1.dat
│   │   │   │   │   ├── qrv40_2.dat
│   │   │   │   │   ├── qrv40_3.dat
│   │   │   │   │   ├── qrv4_0.dat
│   │   │   │   │   ├── qrv4_1.dat
│   │   │   │   │   ├── qrv4_2.dat
│   │   │   │   │   ├── qrv4_3.dat
│   │   │   │   │   ├── qrv5_0.dat
│   │   │   │   │   ├── qrv5_1.dat
│   │   │   │   │   ├── qrv5_2.dat
│   │   │   │   │   ├── qrv5_3.dat
│   │   │   │   │   ├── qrv6_0.dat
│   │   │   │   │   ├── qrv6_1.dat
│   │   │   │   │   ├── qrv6_2.dat
│   │   │   │   │   ├── qrv6_3.dat
│   │   │   │   │   ├── qrv7_0.dat
│   │   │   │   │   ├── qrv7_1.dat
│   │   │   │   │   ├── qrv7_2.dat
│   │   │   │   │   ├── qrv7_3.dat
│   │   │   │   │   ├── qrv8_0.dat
│   │   │   │   │   ├── qrv8_1.dat
│   │   │   │   │   ├── qrv8_2.dat
│   │   │   │   │   ├── qrv8_3.dat
│   │   │   │   │   ├── qrv9_0.dat
│   │   │   │   │   ├── qrv9_1.dat
│   │   │   │   │   ├── qrv9_2.dat
│   │   │   │   │   ├── qrv9_3.dat
│   │   │   │   │   ├── qrvfr10.dat
│   │   │   │   │   ├── qrvfr11.dat
│   │   │   │   │   ├── qrvfr12.dat
│   │   │   │   │   ├── qrvfr13.dat
│   │   │   │   │   ├── qrvfr14.dat
│   │   │   │   │   ├── qrvfr15.dat
│   │   │   │   │   ├── qrvfr16.dat
│   │   │   │   │   ├── qrvfr17.dat
│   │   │   │   │   ├── qrvfr18.dat
│   │   │   │   │   ├── qrvfr19.dat
│   │   │   │   │   ├── qrvfr1.dat
│   │   │   │   │   ├── qrvfr20.dat
│   │   │   │   │   ├── qrvfr21.dat
│   │   │   │   │   ├── qrvfr22.dat
│   │   │   │   │   ├── qrvfr23.dat
│   │   │   │   │   ├── qrvfr24.dat
│   │   │   │   │   ├── qrvfr25.dat
│   │   │   │   │   ├── qrvfr26.dat
│   │   │   │   │   ├── qrvfr27.dat
│   │   │   │   │   ├── qrvfr28.dat
│   │   │   │   │   ├── qrvfr29.dat
│   │   │   │   │   ├── qrvfr2.dat
│   │   │   │   │   ├── qrvfr30.dat
│   │   │   │   │   ├── qrvfr31.dat
│   │   │   │   │   ├── qrvfr32.dat
│   │   │   │   │   ├── qrvfr33.dat
│   │   │   │   │   ├── qrvfr34.dat
│   │   │   │   │   ├── qrvfr35.dat
│   │   │   │   │   ├── qrvfr36.dat
│   │   │   │   │   ├── qrvfr37.dat
│   │   │   │   │   ├── qrvfr38.dat
│   │   │   │   │   ├── qrvfr39.dat
│   │   │   │   │   ├── qrvfr3.dat
│   │   │   │   │   ├── qrvfr40.dat
│   │   │   │   │   ├── qrvfr4.dat
│   │   │   │   │   ├── qrvfr5.dat
│   │   │   │   │   ├── qrvfr6.dat
│   │   │   │   │   ├── qrvfr7.dat
│   │   │   │   │   ├── qrvfr8.dat
│   │   │   │   │   ├── qrvfr9.dat
│   │   │   │   │   ├── rsc10.dat
│   │   │   │   │   ├── rsc13.dat
│   │   │   │   │   ├── rsc15.dat
│   │   │   │   │   ├── rsc16.dat
│   │   │   │   │   ├── rsc17.dat
│   │   │   │   │   ├── rsc18.dat
│   │   │   │   │   ├── rsc20.dat
│   │   │   │   │   ├── rsc22.dat
│   │   │   │   │   ├── rsc24.dat
│   │   │   │   │   ├── rsc26.dat
│   │   │   │   │   ├── rsc28.dat
│   │   │   │   │   ├── rsc30.dat
│   │   │   │   │   ├── rsc32.dat
│   │   │   │   │   ├── rsc34.dat
│   │   │   │   │   ├── rsc36.dat
│   │   │   │   │   ├── rsc40.dat
│   │   │   │   │   ├── rsc42.dat
│   │   │   │   │   ├── rsc44.dat
│   │   │   │   │   ├── rsc46.dat
│   │   │   │   │   ├── rsc48.dat
│   │   │   │   │   ├── rsc50.dat
│   │   │   │   │   ├── rsc52.dat
│   │   │   │   │   ├── rsc54.dat
│   │   │   │   │   ├── rsc56.dat
│   │   │   │   │   ├── rsc58.dat
│   │   │   │   │   ├── rsc60.dat
│   │   │   │   │   ├── rsc62.dat
│   │   │   │   │   ├── rsc64.dat
│   │   │   │   │   ├── rsc66.dat
│   │   │   │   │   ├── rsc68.dat
│   │   │   │   │   └── rsc7.dat
│   │   │   │   ├── QrCodeException.php
│   │   │   │   └── QrCode.php
│   │   │   ├── RemoteContentFetcher.php
│   │   │   ├── ServiceFactory.php
│   │   │   ├── Shaper
│   │   │   │   ├── Indic.php
│   │   │   │   ├── Myanmar.php
│   │   │   │   └── Sea.php
│   │   │   ├── SizeConverter.php
│   │   │   ├── Strict.php
│   │   │   ├── TableOfContents.php
│   │   │   ├── Tag
│   │   │   │   ├── Acronym.php
│   │   │   │   ├── Address.php
│   │   │   │   ├── Annotation.php
│   │   │   │   ├── A.php
│   │   │   │   ├── Article.php
│   │   │   │   ├── Aside.php
│   │   │   │   ├── BarCode.php
│   │   │   │   ├── Bdi.php
│   │   │   │   ├── Bdo.php
│   │   │   │   ├── Big.php
│   │   │   │   ├── BlockQuote.php
│   │   │   │   ├── BlockTag.php
│   │   │   │   ├── Bookmark.php
│   │   │   │   ├── B.php
│   │   │   │   ├── Br.php
│   │   │   │   ├── Caption.php
│   │   │   │   ├── Center.php
│   │   │   │   ├── Cite.php
│   │   │   │   ├── Code.php
│   │   │   │   ├── ColumnBreak.php
│   │   │   │   ├── Columns.php
│   │   │   │   ├── Dd.php
│   │   │   │   ├── Del.php
│   │   │   │   ├── Details.php
│   │   │   │   ├── Div.php
│   │   │   │   ├── Dl.php
│   │   │   │   ├── DotTab.php
│   │   │   │   ├── Dt.php
│   │   │   │   ├── Em.php
│   │   │   │   ├── FieldSet.php
│   │   │   │   ├── FigCaption.php
│   │   │   │   ├── Figure.php
│   │   │   │   ├── Font.php
│   │   │   │   ├── Footer.php
│   │   │   │   ├── FormFeed.php
│   │   │   │   ├── Form.php
│   │   │   │   ├── H1.php
│   │   │   │   ├── H2.php
│   │   │   │   ├── H3.php
│   │   │   │   ├── H4.php
│   │   │   │   ├── H5.php
│   │   │   │   ├── H6.php
│   │   │   │   ├── Header.php
│   │   │   │   ├── HGroup.php
│   │   │   │   ├── Hr.php
│   │   │   │   ├── Img.php
│   │   │   │   ├── IndexEntry.php
│   │   │   │   ├── IndexInsert.php
│   │   │   │   ├── InlineTag.php
│   │   │   │   ├── Input.php
│   │   │   │   ├── Ins.php
│   │   │   │   ├── I.php
│   │   │   │   ├── Kbd.php
│   │   │   │   ├── Legend.php
│   │   │   │   ├── Li.php
│   │   │   │   ├── Main.php
│   │   │   │   ├── Mark.php
│   │   │   │   ├── Meter.php
│   │   │   │   ├── Nav.php
│   │   │   │   ├── NewColumn.php
│   │   │   │   ├── NewPage.php
│   │   │   │   ├── Ol.php
│   │   │   │   ├── Option.php
│   │   │   │   ├── PageBreak.php
│   │   │   │   ├── PageFooter.php
│   │   │   │   ├── PageHeader.php
│   │   │   │   ├── P.php
│   │   │   │   ├── Pre.php
│   │   │   │   ├── Progress.php
│   │   │   │   ├── Q.php
│   │   │   │   ├── Samp.php
│   │   │   │   ├── Section.php
│   │   │   │   ├── Select.php
│   │   │   │   ├── SetHtmlPageFooter.php
│   │   │   │   ├── SetHtmlPageHeader.php
│   │   │   │   ├── SetPageFooter.php
│   │   │   │   ├── SetPageHeader.php
│   │   │   │   ├── Small.php
│   │   │   │   ├── Span.php
│   │   │   │   ├── S.php
│   │   │   │   ├── Strike.php
│   │   │   │   ├── Strong.php
│   │   │   │   ├── Sub.php
│   │   │   │   ├── SubstituteTag.php
│   │   │   │   ├── Summary.php
│   │   │   │   ├── Sup.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── Tag.php
│   │   │   │   ├── TBody.php
│   │   │   │   ├── Td.php
│   │   │   │   ├── TextArea.php
│   │   │   │   ├── TextCircle.php
│   │   │   │   ├── TFoot.php
│   │   │   │   ├── THead.php
│   │   │   │   ├── Th.php
│   │   │   │   ├── Time.php
│   │   │   │   ├── TocEntry.php
│   │   │   │   ├── TocPageBreak.php
│   │   │   │   ├── Toc.php
│   │   │   │   ├── Tr.php
│   │   │   │   ├── Tta.php
│   │   │   │   ├── Tt.php
│   │   │   │   ├── Tts.php
│   │   │   │   ├── Ttz.php
│   │   │   │   ├── Ul.php
│   │   │   │   ├── U.php
│   │   │   │   ├── VarTag.php
│   │   │   │   ├── WatermarkImage.php
│   │   │   │   └── WatermarkText.php
│   │   │   ├── Tag.php
│   │   │   ├── TTFontFileAnalysis.php
│   │   │   ├── TTFontFile.php
│   │   │   ├── Ucdn.php
│   │   │   ├── Utils
│   │   │   │   ├── Arrays.php
│   │   │   │   ├── NumericString.php
│   │   │   │   ├── PdfDate.php
│   │   │   │   └── UtfString.php
│   │   │   └── Writer
│   │   │   ├── BackgroundWriter.php
│   │   │   ├── BaseWriter.php
│   │   │   ├── BookmarkWriter.php
│   │   │   ├── ColorWriter.php
│   │   │   ├── FontWriter.php
│   │   │   ├── FormWriter.php
│   │   │   ├── ImageWriter.php
│   │   │   ├── JavaScriptWriter.php
│   │   │   ├── MetadataWriter.php
│   │   │   ├── ObjectWriter.php
│   │   │   ├── OptionalContentWriter.php
│   │   │   ├── PageWriter.php
│   │   │   └── ResourceWriter.php
│   │   ├── tmp
│   │   └── ttfonts
│   │   ├── AboriginalSansREGULAR.ttf
│   │   ├── Abyssinica_SIL.ttf
│   │   ├── Aegean.otf
│   │   ├── Aegyptus.otf
│   │   ├── Akkadian.otf
│   │   ├── ayar.ttf
│   │   ├── damase_v.2.ttf
│   │   ├── DBSILBR.ttf
│   │   ├── DejaVuinfo.txt
│   │   ├── DejaVuSans-BoldOblique.ttf
│   │   ├── DejaVuSans-Bold.ttf
│   │   ├── DejaVuSansCondensed-BoldOblique.ttf
│   │   ├── DejaVuSansCondensed-Bold.ttf
│   │   ├── DejaVuSansCondensed-Oblique.ttf
│   │   ├── DejaVuSansCondensed.ttf
│   │   ├── DejaVuSansMono-BoldOblique.ttf
│   │   ├── DejaVuSansMono-Bold.ttf
│   │   ├── DejaVuSansMono-Oblique.ttf
│   │   ├── DejaVuSansMono.ttf
│   │   ├── DejaVuSans-Oblique.ttf
│   │   ├── DejaVuSans.ttf
│   │   ├── DejaVuSerif-BoldItalic.ttf
│   │   ├── DejaVuSerif-Bold.ttf
│   │   ├── DejaVuSerifCondensed-BoldItalic.ttf
│   │   ├── DejaVuSerifCondensed-Bold.ttf
│   │   ├── DejaVuSerifCondensed-Italic.ttf
│   │   ├── DejaVuSerifCondensed.ttf
│   │   ├── DejaVuSerif-Italic.ttf
│   │   ├── DejaVuSerif.ttf
│   │   ├── Dhyana-Bold.ttf
│   │   ├── DhyanaOFL.txt
│   │   ├── Dhyana-Regular.ttf
│   │   ├── FreeMonoBoldOblique.ttf
│   │   ├── FreeMonoBold.ttf
│   │   ├── FreeMonoOblique.ttf
│   │   ├── FreeMono.ttf
│   │   ├── FreeSansBoldOblique.ttf
│   │   ├── FreeSansBold.ttf
│   │   ├── FreeSansOblique.ttf
│   │   ├── FreeSans.ttf
│   │   ├── FreeSerifBoldItalic.ttf
│   │   ├── FreeSerifBold.ttf
│   │   ├── FreeSerifItalic.ttf
│   │   ├── FreeSerif.ttf
│   │   ├── Garuda-BoldOblique.ttf
│   │   ├── Garuda-Bold.ttf
│   │   ├── Garuda-Oblique.ttf
│   │   ├── Garuda.ttf
│   │   ├── GNUFreeFontinfo.txt
│   │   ├── Jomolhari-OFL.txt
│   │   ├── Jomolhari.ttf
│   │   ├── kaputaunicode.ttf
│   │   ├── KhmerOFL.txt
│   │   ├── KhmerOS.ttf
│   │   ├── lannaalif-v1-03.ttf
│   │   ├── Lateef font OFL.txt
│   │   ├── LateefRegOT.ttf
│   │   ├── LohitKannadaOFL.txt
│   │   ├── Lohit-Kannada.ttf
│   │   ├── ocrb10.ttf
│   │   ├── ocrbinfo.txt
│   │   ├── Padauk-book.ttf
│   │   ├── Pothana2000.ttf
│   │   ├── Quivira.otf
│   │   ├── SundaneseUnicode-1.0.5.ttf
│   │   ├── Sun-ExtA.ttf
│   │   ├── Sun-ExtB.ttf
│   │   ├── SyrCOMEdessa_license.txt
│   │   ├── SyrCOMEdessa.otf
│   │   ├── TaameyDavidCLM-LICENSE.txt
│   │   ├── TaameyDavidCLM-Medium.ttf
│   │   ├── TaiHeritagePro.ttf
│   │   ├── TharlonOFL.txt
│   │   ├── Tharlon-Regular.ttf
│   │   ├── UnBatang_0613.ttf
│   │   ├── Uthman.otf
│   │   ├── XB RiyazBdIt.ttf
│   │   ├── XB RiyazBd.ttf
│   │   ├── XB RiyazIt.ttf
│   │   ├── XB Riyaz.ttf
│   │   ├── XW Zar Font Info.txt
│   │   └── ZawgyiOne.ttf
│   ├── myclabs
│   │   └── deep-copy
│   │   ├── composer.json
│   │   ├── doc
│   │   │   ├── clone.png
│   │   │   ├── deep-clone.png
│   │   │   ├── deep-copy.png
│   │   │   └── graph.png
│   │   ├── fixtures
│   │   │   ├── f001
│   │   │   │   ├── A.php
│   │   │   │   └── B.php
│   │   │   ├── f002
│   │   │   │   └── A.php
│   │   │   ├── f003
│   │   │   │   └── Foo.php
│   │   │   ├── f004
│   │   │   │   └── UnclonableItem.php
│   │   │   ├── f005
│   │   │   │   └── Foo.php
│   │   │   ├── f006
│   │   │   │   ├── A.php
│   │   │   │   └── B.php
│   │   │   ├── f007
│   │   │   │   ├── FooDateInterval.php
│   │   │   │   └── FooDateTimeZone.php
│   │   │   └── f008
│   │   │   ├── A.php
│   │   │   └── B.php
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── DeepCopy
│   │   ├── deep_copy.php
│   │   ├── DeepCopy.php
│   │   ├── Exception
│   │   │   ├── CloneException.php
│   │   │   └── PropertyException.php
│   │   ├── Filter
│   │   │   ├── Doctrine
│   │   │   │   ├── DoctrineCollectionFilter.php
│   │   │   │   ├── DoctrineEmptyCollectionFilter.php
│   │   │   │   └── DoctrineProxyFilter.php
│   │   │   ├── Filter.php
│   │   │   ├── KeepFilter.php
│   │   │   ├── ReplaceFilter.php
│   │   │   └── SetNullFilter.php
│   │   ├── Matcher
│   │   │   ├── Doctrine
│   │   │   │   └── DoctrineProxyMatcher.php
│   │   │   ├── Matcher.php
│   │   │   ├── PropertyMatcher.php
│   │   │   ├── PropertyNameMatcher.php
│   │   │   └── PropertyTypeMatcher.php
│   │   ├── Reflection
│   │   │   └── ReflectionHelper.php
│   │   ├── TypeFilter
│   │   │   ├── Date
│   │   │   │   └── DateIntervalFilter.php
│   │   │   ├── ReplaceFilter.php
│   │   │   ├── ShallowCopyFilter.php
│   │   │   ├── Spl
│   │   │   │   ├── SplDoublyLinkedListFilter.php
│   │   │   │   └── SplDoublyLinkedList.php
│   │   │   └── TypeFilter.php
│   │   └── TypeMatcher
│   │   └── TypeMatcher.php
│   ├── paragonie
│   │   └── random_compat
│   │   ├── build-phar.sh
│   │   ├── composer.json
│   │   ├── dist
│   │   │   ├── random_compat.phar.pubkey
│   │   │   └── random_compat.phar.pubkey.asc
│   │   ├── lib
│   │   │   └── random.php
│   │   ├── LICENSE
│   │   ├── other
│   │   │   └── build_phar.php
│   │   ├── psalm-autoload.php
│   │   └── psalm.xml
│   ├── pclzip
│   │   └── pclzip
│   │   ├── composer.json
│   │   ├── gnu-lgpl.txt
│   │   ├── pclzip.lib.php
│   │   └── readme.txt
│   ├── pdepend
│   │   └── pdepend
│   │   ├── build.properties
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── scripts
│   │   │   ├── compare.sh
│   │   │   ├── php-keywords.php
│   │   │   └── update-version.php
│   │   ├── src
│   │   │   ├── bin
│   │   │   │   ├── pdepend
│   │   │   │   ├── pdepend.bat
│   │   │   │   └── pdepend.php
│   │   │   ├── conf
│   │   │   │   └── phar_bootstrap.stub
│   │   │   └── main
│   │   │   ├── php
│   │   │   │   └── PDepend
│   │   │   │   ├── Application.php
│   │   │   │   ├── DbusUI
│   │   │   │   │   └── ResultPrinter.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── Compiler
│   │   │   │   │   │   └── ProcessListenerPass.php
│   │   │   │   │   ├── Configuration.php
│   │   │   │   │   ├── ExtensionManager.php
│   │   │   │   │   ├── Extension.php
│   │   │   │   │   └── PdependExtension.php
│   │   │   │   ├── Engine.php
│   │   │   │   ├── Input
│   │   │   │   │   ├── CompositeFilter.php
│   │   │   │   │   ├── ExcludePathFilter.php
│   │   │   │   │   ├── ExtensionFilter.php
│   │   │   │   │   ├── Filter.php
│   │   │   │   │   └── Iterator.php
│   │   │   │   ├── Metrics
│   │   │   │   │   ├── AbstractAnalyzer.php
│   │   │   │   │   ├── AbstractCachingAnalyzer.php
│   │   │   │   │   ├── AggregateAnalyzer.php
│   │   │   │   │   ├── Analyzer
│   │   │   │   │   │   ├── ClassDependencyAnalyzer.php
│   │   │   │   │   │   ├── ClassLevelAnalyzer.php
│   │   │   │   │   │   ├── CodeRankAnalyzer
│   │   │   │   │   │   │   ├── CodeRankStrategyI.php
│   │   │   │   │   │   │   ├── InheritanceStrategy.php
│   │   │   │   │   │   │   ├── MethodStrategy.php
│   │   │   │   │   │   │   ├── PropertyStrategy.php
│   │   │   │   │   │   │   └── StrategyFactory.php
│   │   │   │   │   │   ├── CodeRankAnalyzer.php
│   │   │   │   │   │   ├── CohesionAnalyzer.php
│   │   │   │   │   │   ├── CouplingAnalyzer.php
│   │   │   │   │   │   ├── CrapIndexAnalyzer.php
│   │   │   │   │   │   ├── CyclomaticComplexityAnalyzer.php
│   │   │   │   │   │   ├── DependencyAnalyzer.php
│   │   │   │   │   │   ├── HalsteadAnalyzer.php
│   │   │   │   │   │   ├── HierarchyAnalyzer.php
│   │   │   │   │   │   ├── InheritanceAnalyzer.php
│   │   │   │   │   │   ├── MaintainabilityIndexAnalyzer.php
│   │   │   │   │   │   ├── NodeCountAnalyzer.php
│   │   │   │   │   │   ├── NodeLocAnalyzer.php
│   │   │   │   │   │   └── NPathComplexityAnalyzer.php
│   │   │   │   │   ├── AnalyzerCacheAware.php
│   │   │   │   │   ├── AnalyzerFactory.php
│   │   │   │   │   ├── AnalyzerFilterAware.php
│   │   │   │   │   ├── AnalyzerIterator.php
│   │   │   │   │   ├── AnalyzerListener.php
│   │   │   │   │   ├── AnalyzerNodeAware.php
│   │   │   │   │   ├── Analyzer.php
│   │   │   │   │   └── AnalyzerProjectAware.php
│   │   │   │   ├── ProcessListener.php
│   │   │   │   ├── Report
│   │   │   │   │   ├── CodeAwareGenerator.php
│   │   │   │   │   ├── Dependencies
│   │   │   │   │   │   └── Xml.php
│   │   │   │   │   ├── FileAwareGenerator.php
│   │   │   │   │   ├── Jdepend
│   │   │   │   │   │   ├── Chart.php
│   │   │   │   │   │   ├── chart.svg
│   │   │   │   │   │   └── Xml.php
│   │   │   │   │   ├── NoLogOutputException.php
│   │   │   │   │   ├── Overview
│   │   │   │   │   │   ├── Pyramid.php
│   │   │   │   │   │   └── pyramid.svg
│   │   │   │   │   ├── ReportGeneratorFactory.php
│   │   │   │   │   ├── ReportGenerator.php
│   │   │   │   │   └── Summary
│   │   │   │   │   └── Xml.php
│   │   │   │   ├── Source
│   │   │   │   │   ├── AST
│   │   │   │   │   │   ├── AbstractASTArtifact.php
│   │   │   │   │   │   ├── AbstractASTCallable.php
│   │   │   │   │   │   ├── AbstractASTClassOrInterface.php
│   │   │   │   │   │   ├── AbstractASTNode.php
│   │   │   │   │   │   ├── AbstractASTType.php
│   │   │   │   │   │   ├── ASTAllocationExpression.php
│   │   │   │   │   │   ├── ASTAnonymousClass.php
│   │   │   │   │   │   ├── ASTArguments.php
│   │   │   │   │   │   ├── ASTArrayElement.php
│   │   │   │   │   │   ├── ASTArrayIndexExpression.php
│   │   │   │   │   │   ├── ASTArray.php
│   │   │   │   │   │   ├── ASTArtifactList
│   │   │   │   │   │   │   ├── ArtifactFilter.php
│   │   │   │   │   │   │   ├── CollectionArtifactFilter.php
│   │   │   │   │   │   │   ├── NullArtifactFilter.php
│   │   │   │   │   │   │   └── PackageArtifactFilter.php
│   │   │   │   │   │   ├── ASTArtifactList.php
│   │   │   │   │   │   ├── ASTArtifact.php
│   │   │   │   │   │   ├── ASTAssignmentExpression.php
│   │   │   │   │   │   ├── ASTBooleanAndExpression.php
│   │   │   │   │   │   ├── ASTBooleanOrExpression.php
│   │   │   │   │   │   ├── ASTBreakStatement.php
│   │   │   │   │   │   ├── ASTCallable.php
│   │   │   │   │   │   ├── ASTCastExpression.php
│   │   │   │   │   │   ├── ASTCatchStatement.php
│   │   │   │   │   │   ├── ASTClassFqnPostfix.php
│   │   │   │   │   │   ├── ASTClassOrInterfaceRecursiveInheritanceException.php
│   │   │   │   │   │   ├── ASTClassOrInterfaceReferenceIterator.php
│   │   │   │   │   │   ├── ASTClassOrInterfaceReference.php
│   │   │   │   │   │   ├── ASTClass.php
│   │   │   │   │   │   ├── ASTClassReference.php
│   │   │   │   │   │   ├── ASTCloneExpression.php
│   │   │   │   │   │   ├── ASTClosure.php
│   │   │   │   │   │   ├── ASTComment.php
│   │   │   │   │   │   ├── ASTCompilationUnitNotFoundException.php
│   │   │   │   │   │   ├── ASTCompilationUnit.php
│   │   │   │   │   │   ├── ASTCompoundExpression.php
│   │   │   │   │   │   ├── ASTCompoundVariable.php
│   │   │   │   │   │   ├── ASTConditionalExpression.php
│   │   │   │   │   │   ├── ASTConstantDeclarator.php
│   │   │   │   │   │   ├── ASTConstantDefinition.php
│   │   │   │   │   │   ├── ASTConstant.php
│   │   │   │   │   │   ├── ASTConstantPostfix.php
│   │   │   │   │   │   ├── ASTContinueStatement.php
│   │   │   │   │   │   ├── ASTDeclareStatement.php
│   │   │   │   │   │   ├── ASTDoWhileStatement.php
│   │   │   │   │   │   ├── ASTEchoStatement.php
│   │   │   │   │   │   ├── ASTElseIfStatement.php
│   │   │   │   │   │   ├── ASTEvalExpression.php
│   │   │   │   │   │   ├── ASTExitExpression.php
│   │   │   │   │   │   ├── ASTExpression.php
│   │   │   │   │   │   ├── ASTFieldDeclaration.php
│   │   │   │   │   │   ├── ASTFinallyStatement.php
│   │   │   │   │   │   ├── ASTForeachStatement.php
│   │   │   │   │   │   ├── ASTForInit.php
│   │   │   │   │   │   ├── ASTFormalParameter.php
│   │   │   │   │   │   ├── ASTFormalParameters.php
│   │   │   │   │   │   ├── ASTForStatement.php
│   │   │   │   │   │   ├── ASTForUpdate.php
│   │   │   │   │   │   ├── ASTFunction.php
│   │   │   │   │   │   ├── ASTFunctionPostfix.php
│   │   │   │   │   │   ├── ASTGlobalStatement.php
│   │   │   │   │   │   ├── ASTGotoStatement.php
│   │   │   │   │   │   ├── ASTHeredoc.php
│   │   │   │   │   │   ├── ASTIdentifier.php
│   │   │   │   │   │   ├── ASTIfStatement.php
│   │   │   │   │   │   ├── ASTIncludeExpression.php
│   │   │   │   │   │   ├── ASTIndexExpression.php
│   │   │   │   │   │   ├── ASTInstanceOfExpression.php
│   │   │   │   │   │   ├── ASTInterface.php
│   │   │   │   │   │   ├── ASTInvocation.php
│   │   │   │   │   │   ├── ASTIssetExpression.php
│   │   │   │   │   │   ├── ASTLabelStatement.php
│   │   │   │   │   │   ├── ASTListExpression.php
│   │   │   │   │   │   ├── ASTLiteral.php
│   │   │   │   │   │   ├── ASTLogicalAndExpression.php
│   │   │   │   │   │   ├── ASTLogicalOrExpression.php
│   │   │   │   │   │   ├── ASTLogicalXorExpression.php
│   │   │   │   │   │   ├── ASTMemberPrimaryPrefix.php
│   │   │   │   │   │   ├── ASTMethod.php
│   │   │   │   │   │   ├── ASTMethodPostfix.php
│   │   │   │   │   │   ├── ASTNamespace.php
│   │   │   │   │   │   ├── ASTNode.php
│   │   │   │   │   │   ├── ASTParameter.php
│   │   │   │   │   │   ├── ASTParentReference.php
│   │   │   │   │   │   ├── ASTPostfixExpression.php
│   │   │   │   │   │   ├── ASTPreDecrementExpression.php
│   │   │   │   │   │   ├── ASTPreIncrementExpression.php
│   │   │   │   │   │   ├── ASTPrintExpression.php
│   │   │   │   │   │   ├── ASTProperty.php
│   │   │   │   │   │   ├── ASTPropertyPostfix.php
│   │   │   │   │   │   ├── ASTRequireExpression.php
│   │   │   │   │   │   ├── ASTReturnStatement.php
│   │   │   │   │   │   ├── ASTScalarType.php
│   │   │   │   │   │   ├── ASTScope.php
│   │   │   │   │   │   ├── ASTScopeStatement.php
│   │   │   │   │   │   ├── ASTSelfReference.php
│   │   │   │   │   │   ├── ASTShiftLeftExpression.php
│   │   │   │   │   │   ├── ASTShiftRightExpression.php
│   │   │   │   │   │   ├── ASTStatement.php
│   │   │   │   │   │   ├── ASTStaticReference.php
│   │   │   │   │   │   ├── ASTStaticVariableDeclaration.php
│   │   │   │   │   │   ├── ASTStringIndexExpression.php
│   │   │   │   │   │   ├── ASTString.php
│   │   │   │   │   │   ├── ASTSwitchLabel.php
│   │   │   │   │   │   ├── ASTSwitchStatement.php
│   │   │   │   │   │   ├── ASTThrowStatement.php
│   │   │   │   │   │   ├── ASTTraitAdaptationAlias.php
│   │   │   │   │   │   ├── ASTTraitAdaptation.php
│   │   │   │   │   │   ├── ASTTraitAdaptationPrecedence.php
│   │   │   │   │   │   ├── ASTTraitMethodCollisionException.php
│   │   │   │   │   │   ├── ASTTrait.php
│   │   │   │   │   │   ├── ASTTraitReference.php
│   │   │   │   │   │   ├── ASTTraitUseStatement.php
│   │   │   │   │   │   ├── ASTTryStatement.php
│   │   │   │   │   │   ├── ASTTypeArray.php
│   │   │   │   │   │   ├── ASTTypeCallable.php
│   │   │   │   │   │   ├── ASTTypeIterable.php
│   │   │   │   │   │   ├── ASTType.php
│   │   │   │   │   │   ├── ASTUnaryExpression.php
│   │   │   │   │   │   ├── ASTUnsetStatement.php
│   │   │   │   │   │   ├── ASTValue.php
│   │   │   │   │   │   ├── ASTVariableDeclarator.php
│   │   │   │   │   │   ├── ASTVariable.php
│   │   │   │   │   │   ├── ASTVariableVariable.php
│   │   │   │   │   │   ├── ASTWhileStatement.php
│   │   │   │   │   │   ├── ASTYieldStatement.php
│   │   │   │   │   │   └── State.php
│   │   │   │   │   ├── ASTVisitor
│   │   │   │   │   │   ├── AbstractASTVisitListener.php
│   │   │   │   │   │   ├── AbstractASTVisitor.php
│   │   │   │   │   │   ├── ASTVisitListener.php
│   │   │   │   │   │   └── ASTVisitor.php
│   │   │   │   │   ├── Builder
│   │   │   │   │   │   ├── BuilderContext
│   │   │   │   │   │   │   └── GlobalBuilderContext.php
│   │   │   │   │   │   ├── BuilderContext.php
│   │   │   │   │   │   └── Builder.php
│   │   │   │   │   ├── Language
│   │   │   │   │   │   └── PHP
│   │   │   │   │   │   ├── AbstractPHPParser.php
│   │   │   │   │   │   ├── PHPBuilder.php
│   │   │   │   │   │   ├── PHPParserGeneric.php
│   │   │   │   │   │   ├── PHPParserVersion53.php
│   │   │   │   │   │   ├── PHPParserVersion54.php
│   │   │   │   │   │   ├── PHPParserVersion55.php
│   │   │   │   │   │   ├── PHPParserVersion56.php
│   │   │   │   │   │   ├── PHPParserVersion70.php
│   │   │   │   │   │   ├── PHPParserVersion71.php
│   │   │   │   │   │   ├── PHPTokenizerHelperVersion52.php
│   │   │   │   │   │   └── PHPTokenizerInternal.php
│   │   │   │   │   ├── Parser
│   │   │   │   │   │   ├── InvalidStateException.php
│   │   │   │   │   │   ├── MissingValueException.php
│   │   │   │   │   │   ├── NoActiveScopeException.php
│   │   │   │   │   │   ├── ParserException.php
│   │   │   │   │   │   ├── SymbolTable.php
│   │   │   │   │   │   ├── TokenException.php
│   │   │   │   │   │   ├── TokenStack.php
│   │   │   │   │   │   ├── TokenStreamEndException.php
│   │   │   │   │   │   └── UnexpectedTokenException.php
│   │   │   │   │   └── Tokenizer
│   │   │   │   │   ├── Tokenizer.php
│   │   │   │   │   ├── Token.php
│   │   │   │   │   └── Tokens.php
│   │   │   │   ├── TextUI
│   │   │   │   │   ├── Command.php
│   │   │   │   │   ├── ResultPrinter.php
│   │   │   │   │   └── Runner.php
│   │   │   │   └── Util
│   │   │   │   ├── Cache
│   │   │   │   │   ├── CacheDriver.php
│   │   │   │   │   ├── CacheFactory.php
│   │   │   │   │   └── Driver
│   │   │   │   │   ├── File
│   │   │   │   │   │   ├── FileCacheDirectory.php
│   │   │   │   │   │   └── FileCacheGarbageCollector.php
│   │   │   │   │   ├── FileCacheDriver.php
│   │   │   │   │   └── MemoryCacheDriver.php
│   │   │   │   ├── ConfigurationInstance.php
│   │   │   │   ├── Configuration.php
│   │   │   │   ├── Coverage
│   │   │   │   │   ├── CloverReport.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   └── Report.php
│   │   │   │   ├── FileUtil.php
│   │   │   │   ├── IdBuilder.php
│   │   │   │   ├── ImageConvert.php
│   │   │   │   ├── Log.php
│   │   │   │   ├── MathUtil.php
│   │   │   │   ├── Type.php
│   │   │   │   ├── Utf8Util.php
│   │   │   │   └── Workarounds.php
│   │   │   └── resources
│   │   │   ├── schema
│   │   │   │   └── configuration.xsd
│   │   │   └── services.xml
│   │   └── Vagrantfile
│   ├── phar-io
│   │   ├── manifest
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── composer.lock
│   │   │   ├── examples
│   │   │   │   └── example-01.php
│   │   │   ├── LICENSE
│   │   │   ├── phive.xml
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── exceptions
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── InvalidApplicationNameException.php
│   │   │   │   │   ├── InvalidEmailException.php
│   │   │   │   │   ├── InvalidUrlException.php
│   │   │   │   │   ├── ManifestDocumentException.php
│   │   │   │   │   ├── ManifestDocumentMapperException.php
│   │   │   │   │   ├── ManifestElementException.php
│   │   │   │   │   └── ManifestLoaderException.php
│   │   │   │   ├── ManifestDocumentMapper.php
│   │   │   │   ├── ManifestLoader.php
│   │   │   │   ├── ManifestSerializer.php
│   │   │   │   ├── values
│   │   │   │   │   ├── ApplicationName.php
│   │   │   │   │   ├── Application.php
│   │   │   │   │   ├── AuthorCollectionIterator.php
│   │   │   │   │   ├── AuthorCollection.php
│   │   │   │   │   ├── Author.php
│   │   │   │   │   ├── BundledComponentCollectionIterator.php
│   │   │   │   │   ├── BundledComponentCollection.php
│   │   │   │   │   ├── BundledComponent.php
│   │   │   │   │   ├── CopyrightInformation.php
│   │   │   │   │   ├── Email.php
│   │   │   │   │   ├── Extension.php
│   │   │   │   │   ├── Library.php
│   │   │   │   │   ├── License.php
│   │   │   │   │   ├── Manifest.php
│   │   │   │   │   ├── PhpExtensionRequirement.php
│   │   │   │   │   ├── PhpVersionRequirement.php
│   │   │   │   │   ├── RequirementCollectionIterator.php
│   │   │   │   │   ├── RequirementCollection.php
│   │   │   │   │   ├── Requirement.php
│   │   │   │   │   ├── Type.php
│   │   │   │   │   └── Url.php
│   │   │   │   └── xml
│   │   │   │   ├── AuthorElementCollection.php
│   │   │   │   ├── AuthorElement.php
│   │   │   │   ├── BundlesElement.php
│   │   │   │   ├── ComponentElementCollection.php
│   │   │   │   ├── ComponentElement.php
│   │   │   │   ├── ContainsElement.php
│   │   │   │   ├── CopyrightElement.php
│   │   │   │   ├── ElementCollection.php
│   │   │   │   ├── ExtElementCollection.php
│   │   │   │   ├── ExtElement.php
│   │   │   │   ├── ExtensionElement.php
│   │   │   │   ├── LicenseElement.php
│   │   │   │   ├── ManifestDocumentLoadingException.php
│   │   │   │   ├── ManifestDocument.php
│   │   │   │   ├── ManifestElement.php
│   │   │   │   ├── PhpElement.php
│   │   │   │   └── RequiresElement.php
│   │   │   └── tests
│   │   │   ├── exceptions
│   │   │   │   └── ManifestDocumentLoadingExceptionTest.php
│   │   │   ├── _fixture
│   │   │   │   ├── custom.xml
│   │   │   │   ├── extension-invalidcompatible.xml
│   │   │   │   ├── extension.xml
│   │   │   │   ├── invalidversionconstraint.xml
│   │   │   │   ├── invalidversion.xml
│   │   │   │   ├── library.xml
│   │   │   │   ├── manifest.xml
│   │   │   │   ├── phpunit-5.6.5.xml
│   │   │   │   └── test.phar
│   │   │   ├── ManifestDocumentMapperTest.php
│   │   │   ├── ManifestLoaderTest.php
│   │   │   ├── ManifestSerializerTest.php
│   │   │   ├── values
│   │   │   │   ├── ApplicationNameTest.php
│   │   │   │   ├── ApplicationTest.php
│   │   │   │   ├── AuthorCollectionTest.php
│   │   │   │   ├── AuthorTest.php
│   │   │   │   ├── BundledComponentCollectionTest.php
│   │   │   │   ├── BundledComponentTest.php
│   │   │   │   ├── CopyrightInformationTest.php
│   │   │   │   ├── EmailTest.php
│   │   │   │   ├── ExtensionTest.php
│   │   │   │   ├── LibraryTest.php
│   │   │   │   ├── LicenseTest.php
│   │   │   │   ├── ManifestTest.php
│   │   │   │   ├── PhpExtensionRequirementTest.php
│   │   │   │   ├── PhpVersionRequirementTest.php
│   │   │   │   ├── RequirementCollectionTest.php
│   │   │   │   └── UrlTest.php
│   │   │   └── xml
│   │   │   ├── AuthorElementCollectionTest.php
│   │   │   ├── AuthorElementTest.php
│   │   │   ├── BundlesElementTest.php
│   │   │   ├── ComponentElementCollectionTest.php
│   │   │   ├── ComponentElementTest.php
│   │   │   ├── ContainsElementTest.php
│   │   │   ├── CopyrightElementTest.php
│   │   │   ├── ExtElementCollectionTest.php
│   │   │   ├── ExtElementTest.php
│   │   │   ├── ExtensionElementTest.php
│   │   │   ├── LicenseElementTest.php
│   │   │   ├── ManifestDocumentTest.php
│   │   │   ├── PhpElementTest.php
│   │   │   └── RequiresElementTest.php
│   │   └── version
│   │   ├── build.xml
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phive.xml
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── constraints
│   │   │   │   ├── AbstractVersionConstraint.php
│   │   │   │   ├── AndVersionConstraintGroup.php
│   │   │   │   ├── AnyVersionConstraint.php
│   │   │   │   ├── ExactVersionConstraint.php
│   │   │   │   ├── GreaterThanOrEqualToVersionConstraint.php
│   │   │   │   ├── OrVersionConstraintGroup.php
│   │   │   │   ├── SpecificMajorAndMinorVersionConstraint.php
│   │   │   │   ├── SpecificMajorVersionConstraint.php
│   │   │   │   └── VersionConstraint.php
│   │   │   ├── exceptions
│   │   │   │   ├── Exception.php
│   │   │   │   ├── InvalidPreReleaseSuffixException.php
│   │   │   │   ├── InvalidVersionException.php
│   │   │   │   └── UnsupportedVersionConstraintException.php
│   │   │   ├── PreReleaseSuffix.php
│   │   │   ├── VersionConstraintParser.php
│   │   │   ├── VersionConstraintValue.php
│   │   │   ├── VersionNumber.php
│   │   │   └── Version.php
│   │   └── tests
│   │   ├── Integration
│   │   │   └── VersionConstraintParserTest.php
│   │   └── Unit
│   │   ├── AbstractVersionConstraintTest.php
│   │   ├── AndVersionConstraintGroupTest.php
│   │   ├── AnyVersionConstraintTest.php
│   │   ├── ExactVersionConstraintTest.php
│   │   ├── GreaterThanOrEqualToVersionConstraintTest.php
│   │   ├── OrVersionConstraintGroupTest.php
│   │   ├── PreReleaseSuffixTest.php
│   │   ├── SpecificMajorAndMinorVersionConstraintTest.php
│   │   ├── SpecificMajorVersionConstraintTest.php
│   │   └── VersionTest.php
│   ├── phenx
│   │   ├── php-font-lib
│   │   │   ├── bower.json
│   │   │   ├── composer.json
│   │   │   ├── index.php
│   │   │   ├── LICENSE
│   │   │   ├── maps
│   │   │   │   ├── adobe-standard-encoding.map
│   │   │   │   ├── cp1250.map
│   │   │   │   ├── cp1251.map
│   │   │   │   ├── cp1252.map
│   │   │   │   ├── cp1253.map
│   │   │   │   ├── cp1254.map
│   │   │   │   ├── cp1255.map
│   │   │   │   ├── cp1257.map
│   │   │   │   ├── cp1258.map
│   │   │   │   ├── cp874.map
│   │   │   │   ├── iso-8859-11.map
│   │   │   │   ├── iso-8859-15.map
│   │   │   │   ├── iso-8859-16.map
│   │   │   │   ├── iso-8859-1.map
│   │   │   │   ├── iso-8859-2.map
│   │   │   │   ├── iso-8859-4.map
│   │   │   │   ├── iso-8859-5.map
│   │   │   │   ├── iso-8859-7.map
│   │   │   │   ├── iso-8859-9.map
│   │   │   │   ├── koi8-r.map
│   │   │   │   └── koi8-u.map
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── sample-fonts
│   │   │   │   ├── IntelClear-Light.ttf
│   │   │   │   └── NotoSansShavian-Regular.ttf
│   │   │   ├── src
│   │   │   │   └── FontLib
│   │   │   │   ├── AdobeFontMetrics.php
│   │   │   │   ├── Autoloader.php
│   │   │   │   ├── BinaryStream.php
│   │   │   │   ├── EncodingMap.php
│   │   │   │   ├── EOT
│   │   │   │   │   ├── File.php
│   │   │   │   │   └── Header.php
│   │   │   │   ├── Exception
│   │   │   │   │   └── FontNotFoundException.php
│   │   │   │   ├── Font.php
│   │   │   │   ├── Glyph
│   │   │   │   │   ├── OutlineComponent.php
│   │   │   │   │   ├── OutlineComposite.php
│   │   │   │   │   ├── Outline.php
│   │   │   │   │   └── OutlineSimple.php
│   │   │   │   ├── Header.php
│   │   │   │   ├── OpenType
│   │   │   │   │   ├── File.php
│   │   │   │   │   └── TableDirectoryEntry.php
│   │   │   │   ├── Table
│   │   │   │   │   ├── DirectoryEntry.php
│   │   │   │   │   ├── Table.php
│   │   │   │   │   └── Type
│   │   │   │   │   ├── cmap.php
│   │   │   │   │   ├── glyf.php
│   │   │   │   │   ├── head.php
│   │   │   │   │   ├── hhea.php
│   │   │   │   │   ├── hmtx.php
│   │   │   │   │   ├── kern.php
│   │   │   │   │   ├── loca.php
│   │   │   │   │   ├── maxp.php
│   │   │   │   │   ├── name.php
│   │   │   │   │   ├── nameRecord.php
│   │   │   │   │   ├── os2.php
│   │   │   │   │   └── post.php
│   │   │   │   ├── TrueType
│   │   │   │   │   ├── Collection.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   ├── Header.php
│   │   │   │   │   └── TableDirectoryEntry.php
│   │   │   │   └── WOFF
│   │   │   │   ├── File.php
│   │   │   │   ├── Header.php
│   │   │   │   └── TableDirectoryEntry.php
│   │   │   └── tests
│   │   │   └── FontLib
│   │   │   └── FontTest.php
│   │   └── php-svg-lib
│   │   ├── composer.json
│   │   ├── COPYING
│   │   ├── COPYING.GPL
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── autoload.php
│   │   │   └── Svg
│   │   │   ├── DefaultStyle.php
│   │   │   ├── Document.php
│   │   │   ├── Gradient
│   │   │   │   └── Stop.php
│   │   │   ├── Style.php
│   │   │   ├── Surface
│   │   │   │   ├── CPdf.php
│   │   │   │   ├── SurfaceCpdf.php
│   │   │   │   ├── SurfaceGmagick.php
│   │   │   │   ├── SurfaceInterface.php
│   │   │   │   └── SurfacePDFLib.php
│   │   │   └── Tag
│   │   │   ├── AbstractTag.php
│   │   │   ├── Anchor.php
│   │   │   ├── Circle.php
│   │   │   ├── ClipPath.php
│   │   │   ├── Ellipse.php
│   │   │   ├── Group.php
│   │   │   ├── Image.php
│   │   │   ├── LinearGradient.php
│   │   │   ├── Line.php
│   │   │   ├── Path.php
│   │   │   ├── Polygon.php
│   │   │   ├── Polyline.php
│   │   │   ├── RadialGradient.php
│   │   │   ├── Rect.php
│   │   │   ├── Shape.php
│   │   │   ├── Stop.php
│   │   │   ├── StyleTag.php
│   │   │   ├── Text.php
│   │   │   └── UseTag.php
│   │   └── tests
│   │   └── Svg
│   │   └── StyleTest.php
│   ├── php-coveralls
│   │   └── php-coveralls
│   │   ├── bin
│   │   │   └── php-coveralls
│   │   ├── box.json
│   │   ├── build
│   │   │   ├── artifacts
│   │   │   └── config
│   │   │   └── phpmd.xml
│   │   ├── CHANGELOG.md
│   │   ├── circle.yml
│   │   ├── composer.json
│   │   ├── dev-tools
│   │   │   └── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Bundle
│   │   │   │   └── CoverallsBundle
│   │   │   │   ├── Api
│   │   │   │   │   ├── CoverallsApi.php
│   │   │   │   │   └── Jobs.php
│   │   │   │   ├── Collector
│   │   │   │   │   ├── CiEnvVarsCollector.php
│   │   │   │   │   ├── CloverXmlCoverageCollector.php
│   │   │   │   │   └── GitInfoCollector.php
│   │   │   │   ├── Command
│   │   │   │   │   └── CoverallsJobsCommand.php
│   │   │   │   ├── Config
│   │   │   │   │   ├── Configuration.php
│   │   │   │   │   ├── Configurator.php
│   │   │   │   │   └── CoverallsConfiguration.php
│   │   │   │   ├── Console
│   │   │   │   │   └── Application.php
│   │   │   │   ├── CoverallsBundle.php
│   │   │   │   ├── Entity
│   │   │   │   │   ├── ArrayConvertable.php
│   │   │   │   │   ├── Coveralls.php
│   │   │   │   │   ├── Exception
│   │   │   │   │   │   └── RequirementsNotSatisfiedException.php
│   │   │   │   │   ├── Git
│   │   │   │   │   │   ├── Commit.php
│   │   │   │   │   │   ├── Git.php
│   │   │   │   │   │   └── Remote.php
│   │   │   │   │   ├── JsonFile.php
│   │   │   │   │   ├── Metrics.php
│   │   │   │   │   └── SourceFile.php
│   │   │   │   ├── Repository
│   │   │   │   │   └── JobsRepository.php
│   │   │   │   └── Version.php
│   │   │   └── Component
│   │   │   ├── File
│   │   │   │   └── Path.php
│   │   │   ├── Log
│   │   │   │   └── ConsoleLogger.php
│   │   │   └── System
│   │   │   ├── Git
│   │   │   │   └── GitCommand.php
│   │   │   ├── SystemCommandExecutorInterface.php
│   │   │   └── SystemCommandExecutor.php
│   │   └── tests
│   │   ├── Bundle
│   │   │   └── CoverallsBundle
│   │   │   ├── Api
│   │   │   │   └── JobsTest.php
│   │   │   ├── Collector
│   │   │   │   ├── CiEnvVarsCollectorTest.php
│   │   │   │   ├── CloverXmlCoverageCollectorTest.php
│   │   │   │   └── GitInfoCollectorTest.php
│   │   │   ├── Command
│   │   │   │   └── CoverallsJobsCommandTest.php
│   │   │   ├── Config
│   │   │   │   ├── ConfigurationTest.php
│   │   │   │   ├── ConfiguratorTest.php
│   │   │   │   └── yaml
│   │   │   │   ├── coverage_clover_array.yml
│   │   │   │   ├── coverage_clover_glob.yml
│   │   │   │   ├── coverage_clover_invalid.yml
│   │   │   │   ├── coverage_clover_not_found.yml
│   │   │   │   ├── coverage_clover.yml
│   │   │   │   ├── empty.yml
│   │   │   │   ├── exclude_no_stmt_false.yml
│   │   │   │   ├── exclude_no_stmt_invalid.yml
│   │   │   │   ├── exclude_no_stmt_true.yml
│   │   │   │   ├── json_path_not_found.yml
│   │   │   │   ├── json_path.yml
│   │   │   │   └── src_dir.yml
│   │   │   ├── Console
│   │   │   │   └── ApplicationTest.php
│   │   │   ├── Entity
│   │   │   │   ├── Exception
│   │   │   │   │   └── RequirementsNotSatisfiedExceptionTest.php
│   │   │   │   ├── Git
│   │   │   │   │   ├── CommitTest.php
│   │   │   │   │   ├── GitTest.php
│   │   │   │   │   └── RemoteTest.php
│   │   │   │   ├── JsonFileTest.php
│   │   │   │   ├── MetricsTest.php
│   │   │   │   └── SourceFileTest.php
│   │   │   └── Repository
│   │   │   └── JobsRepositoryTest.php
│   │   ├── Component
│   │   │   ├── File
│   │   │   │   └── PathTest.php
│   │   │   ├── Log
│   │   │   │   └── ConsoleLoggerTest.php
│   │   │   └── System
│   │   │   └── Git
│   │   │   └── GitCommandTest.php
│   │   ├── Fixture
│   │   │   ├── coveralls.yml
│   │   │   └── files
│   │   │   ├── AbstractClass.php
│   │   │   ├── RepositoryTest
│   │   │   │   ├── Coverage0.php
│   │   │   │   ├── Coverage100.php
│   │   │   │   ├── Coverage10.php
│   │   │   │   ├── Coverage70.php
│   │   │   │   ├── Coverage80.php
│   │   │   │   └── Coverage90.php
│   │   │   ├── test2.php
│   │   │   ├── test3.php
│   │   │   ├── TestInterface.php
│   │   │   └── test.php
│   │   └── ProjectTestCase.php
│   ├── php-cs-fixer
│   │   └── diff
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── LICENSE_DIFF
│   │   ├── LICENSE_GECKO
│   │   ├── README.md
│   │   └── src
│   │   ├── GeckoPackages
│   │   │   └── DiffOutputBuilder
│   │   │   ├── ConfigurationException.php
│   │   │   └── UnifiedDiffOutputBuilder.php
│   │   ├── v1_4
│   │   │   ├── Chunk.php
│   │   │   ├── Differ.php
│   │   │   ├── Diff.php
│   │   │   ├── LCS
│   │   │   │   ├── LongestCommonSubsequence.php
│   │   │   │   ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│   │   │   │   └── TimeEfficientLongestCommonSubsequenceImplementation.php
│   │   │   ├── Line.php
│   │   │   └── Parser.php
│   │   ├── v2_0
│   │   │   ├── Chunk.php
│   │   │   ├── Differ.php
│   │   │   ├── Diff.php
│   │   │   ├── Exception
│   │   │   │   ├── Exception.php
│   │   │   │   └── InvalidArgumentException.php
│   │   │   ├── Line.php
│   │   │   ├── LongestCommonSubsequenceCalculator.php
│   │   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php
│   │   │   ├── Output
│   │   │   │   ├── AbstractChunkOutputBuilder.php
│   │   │   │   ├── DiffOnlyOutputBuilder.php
│   │   │   │   ├── DiffOutputBuilderInterface.php
│   │   │   │   └── UnifiedDiffOutputBuilder.php
│   │   │   ├── Parser.php
│   │   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php
│   │   └── v3_0
│   │   ├── Chunk.php
│   │   ├── Differ.php
│   │   ├── Diff.php
│   │   ├── Exception
│   │   │   ├── ConfigurationException.php
│   │   │   ├── Exception.php
│   │   │   └── InvalidArgumentException.php
│   │   ├── Line.php
│   │   ├── LongestCommonSubsequenceCalculator.php
│   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php
│   │   ├── Output
│   │   │   ├── AbstractChunkOutputBuilder.php
│   │   │   ├── DiffOnlyOutputBuilder.php
│   │   │   ├── DiffOutputBuilderInterface.php
│   │   │   ├── StrictUnifiedDiffOutputBuilder.php
│   │   │   └── UnifiedDiffOutputBuilder.php
│   │   ├── Parser.php
│   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php
│   ├── phpdocumentor
│   │   ├── reflection-common
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── Element.php
│   │   │   ├── File.php
│   │   │   ├── Fqsen.php
│   │   │   ├── Location.php
│   │   │   ├── ProjectFactory.php
│   │   │   └── Project.php
│   │   ├── reflection-docblock
│   │   │   ├── composer.json
│   │   │   ├── easy-coding-standard.neon
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── DocBlock
│   │   │   │   ├── DescriptionFactory.php
│   │   │   │   ├── Description.php
│   │   │   │   ├── ExampleFinder.php
│   │   │   │   ├── Serializer.php
│   │   │   │   ├── StandardTagFactory.php
│   │   │   │   ├── TagFactory.php
│   │   │   │   ├── Tag.php
│   │   │   │   └── Tags
│   │   │   │   ├── Author.php
│   │   │   │   ├── BaseTag.php
│   │   │   │   ├── Covers.php
│   │   │   │   ├── Deprecated.php
│   │   │   │   ├── Example.php
│   │   │   │   ├── Factory
│   │   │   │   │   ├── StaticMethod.php
│   │   │   │   │   └── Strategy.php
│   │   │   │   ├── Formatter
│   │   │   │   │   ├── AlignFormatter.php
│   │   │   │   │   └── PassthroughFormatter.php
│   │   │   │   ├── Formatter.php
│   │   │   │   ├── Generic.php
│   │   │   │   ├── Link.php
│   │   │   │   ├── Method.php
│   │   │   │   ├── Param.php
│   │   │   │   ├── Property.php
│   │   │   │   ├── PropertyRead.php
│   │   │   │   ├── PropertyWrite.php
│   │   │   │   ├── Reference
│   │   │   │   │   ├── Fqsen.php
│   │   │   │   │   ├── Reference.php
│   │   │   │   │   └── Url.php
│   │   │   │   ├── Return_.php
│   │   │   │   ├── See.php
│   │   │   │   ├── Since.php
│   │   │   │   ├── Source.php
│   │   │   │   ├── Throws.php
│   │   │   │   ├── Uses.php
│   │   │   │   ├── Var_.php
│   │   │   │   └── Version.php
│   │   │   ├── DocBlockFactoryInterface.php
│   │   │   ├── DocBlockFactory.php
│   │   │   └── DocBlock.php
│   │   └── type-resolver
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── FqsenResolver.php
│   │   ├── Type.php
│   │   ├── TypeResolver.php
│   │   └── Types
│   │   ├── Array_.php
│   │   ├── Boolean.php
│   │   ├── Callable_.php
│   │   ├── Compound.php
│   │   ├── ContextFactory.php
│   │   ├── Context.php
│   │   ├── Float_.php
│   │   ├── Integer.php
│   │   ├── Iterable_.php
│   │   ├── Mixed_.php
│   │   ├── Nullable.php
│   │   ├── Null_.php
│   │   ├── Object_.php
│   │   ├── Parent_.php
│   │   ├── Resource_.php
│   │   ├── Scalar.php
│   │   ├── Self_.php
│   │   ├── Static_.php
│   │   ├── String_.php
│   │   ├── This.php
│   │   └── Void_.php
│   ├── phploc
│   │   └── phploc
│   │   ├── build
│   │   │   ├── phar-autoload.php.in
│   │   │   └── phar-manifest.php
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phive.xml
│   │   ├── phploc
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Analyser.php
│   │   │   ├── CLI
│   │   │   │   ├── Application.php
│   │   │   │   └── Command.php
│   │   │   ├── Collector.php
│   │   │   ├── Exception
│   │   │   │   ├── Exception.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Log
│   │   │   │   ├── Csv.php
│   │   │   │   ├── Text.php
│   │   │   │   └── Xml.php
│   │   │   └── Publisher.php
│   │   └── tests
│   │   ├── AnalyzerTest.php
│   │   ├── _files
│   │   │   ├── issue_112.php
│   │   │   ├── issue_126
│   │   │   │   ├── issue_126_1.php
│   │   │   │   ├── issue_126_2.php
│   │   │   │   ├── issue_126_3.php
│   │   │   │   ├── issue_126_4.php
│   │   │   │   ├── issue_126_5.php
│   │   │   │   ├── issue_126_6.php
│   │   │   │   └── issue_126_7.php
│   │   │   ├── issue_138.php
│   │   │   ├── issue_139.php
│   │   │   ├── issue_62.php
│   │   │   ├── source.php
│   │   │   ├── tests_old.php
│   │   │   ├── tests.php
│   │   │   ├── trait.php
│   │   │   ├── twoTestsThatIndirectlyExtendOldPHPUnitTestCase.php
│   │   │   └── twoTestsThatIndirectlyExtendPHPUnitTestCase.php
│   │   └── Log
│   │   └── SingleTest.php
│   ├── phpmd
│   │   └── phpmd
│   │   ├── AUTHORS.rst
│   │   ├── build.properties
│   │   ├── CHANGELOG
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── LICENSE
│   │   ├── README.rst
│   │   └── src
│   │   ├── bin
│   │   │   ├── phpmd
│   │   │   └── phpmd.bat
│   │   ├── conf
│   │   │   └── phar_bootstrap.stub
│   │   └── main
│   │   ├── php
│   │   │   └── PHPMD
│   │   │   ├── AbstractNode.php
│   │   │   ├── AbstractRenderer.php
│   │   │   ├── AbstractRule.php
│   │   │   ├── AbstractWriter.php
│   │   │   ├── Node
│   │   │   │   ├── AbstractCallableNode.php
│   │   │   │   ├── AbstractNode.php
│   │   │   │   ├── AbstractTypeNode.php
│   │   │   │   ├── Annotation.php
│   │   │   │   ├── Annotations.php
│   │   │   │   ├── ASTNode.php
│   │   │   │   ├── ClassNode.php
│   │   │   │   ├── FunctionNode.php
│   │   │   │   ├── InterfaceNode.php
│   │   │   │   ├── MethodNode.php
│   │   │   │   └── TraitNode.php
│   │   │   ├── ParserFactory.php
│   │   │   ├── Parser.php
│   │   │   ├── PHPMD.php
│   │   │   ├── ProcessingError.php
│   │   │   ├── Renderer
│   │   │   │   ├── HTMLRenderer.php
│   │   │   │   ├── TextRenderer.php
│   │   │   │   └── XMLRenderer.php
│   │   │   ├── Report.php
│   │   │   ├── Rule
│   │   │   │   ├── AbstractLocalVariable.php
│   │   │   │   ├── ClassAware.php
│   │   │   │   ├── CleanCode
│   │   │   │   │   ├── BooleanArgumentFlag.php
│   │   │   │   │   ├── ElseExpression.php
│   │   │   │   │   └── StaticAccess.php
│   │   │   │   ├── Controversial
│   │   │   │   │   ├── CamelCaseClassName.php
│   │   │   │   │   ├── CamelCaseMethodName.php
│   │   │   │   │   ├── CamelCaseParameterName.php
│   │   │   │   │   ├── CamelCasePropertyName.php
│   │   │   │   │   ├── CamelCaseVariableName.php
│   │   │   │   │   └── Superglobals.php
│   │   │   │   ├── CyclomaticComplexity.php
│   │   │   │   ├── Design
│   │   │   │   │   ├── CouplingBetweenObjects.php
│   │   │   │   │   ├── DepthOfInheritance.php
│   │   │   │   │   ├── DevelopmentCodeFragment.php
│   │   │   │   │   ├── EvalExpression.php
│   │   │   │   │   ├── ExitExpression.php
│   │   │   │   │   ├── GotoStatement.php
│   │   │   │   │   ├── LongClass.php
│   │   │   │   │   ├── LongMethod.php
│   │   │   │   │   ├── LongParameterList.php
│   │   │   │   │   ├── NpathComplexity.php
│   │   │   │   │   ├── NumberOfChildren.php
│   │   │   │   │   ├── TooManyFields.php
│   │   │   │   │   ├── TooManyMethods.php
│   │   │   │   │   ├── TooManyPublicMethods.php
│   │   │   │   │   └── WeightedMethodCount.php
│   │   │   │   ├── ExcessivePublicCount.php
│   │   │   │   ├── FunctionAware.php
│   │   │   │   ├── InterfaceAware.php
│   │   │   │   ├── MethodAware.php
│   │   │   │   ├── Naming
│   │   │   │   │   ├── BooleanGetMethodName.php
│   │   │   │   │   ├── ConstantNamingConventions.php
│   │   │   │   │   ├── ConstructorWithNameAsEnclosingClass.php
│   │   │   │   │   ├── LongVariable.php
│   │   │   │   │   ├── ShortMethodName.php
│   │   │   │   │   └── ShortVariable.php
│   │   │   │   ├── UnusedFormalParameter.php
│   │   │   │   ├── UnusedLocalVariable.php
│   │   │   │   ├── UnusedPrivateField.php
│   │   │   │   └── UnusedPrivateMethod.php
│   │   │   ├── RuleClassFileNotFoundException.php
│   │   │   ├── RuleClassNotFoundException.php
│   │   │   ├── Rule.php
│   │   │   ├── RuleSetFactory.php
│   │   │   ├── RuleSetNotFoundException.php
│   │   │   ├── RuleSet.php
│   │   │   ├── RuleViolation.php
│   │   │   ├── TextUI
│   │   │   │   ├── CommandLineOptions.php
│   │   │   │   └── Command.php
│   │   │   └── Writer
│   │   │   └── StreamWriter.php
│   │   └── resources
│   │   └── rulesets
│   │   ├── cleancode.xml
│   │   ├── codesize.xml
│   │   ├── controversial.xml
│   │   ├── design.xml
│   │   ├── naming.xml
│   │   └── unusedcode.xml
│   ├── phpoffice
│   │   └── common
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── COPYING
│   │   ├── COPYING.LESSER
│   │   ├── LICENSE
│   │   ├── phpmd.xml.dist
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Common
│   │   │   ├── Adapter
│   │   │   │   └── Zip
│   │   │   │   ├── PclZipAdapter.php
│   │   │   │   ├── ZipArchiveAdapter.php
│   │   │   │   └── ZipInterface.php
│   │   │   ├── Autoloader.php
│   │   │   ├── Drawing.php
│   │   │   ├── File.php
│   │   │   ├── Font.php
│   │   │   ├── Microsoft
│   │   │   │   ├── OLERead.php
│   │   │   │   └── PasswordEncoder.php
│   │   │   ├── Text.php
│   │   │   ├── XMLReader.php
│   │   │   └── XMLWriter.php
│   │   ├── tests
│   │   │   ├── bootstrap.php
│   │   │   ├── Common
│   │   │   │   └── Tests
│   │   │   │   ├── Adapter
│   │   │   │   │   └── Zip
│   │   │   │   │   ├── AbstractZipAdapterTest.php
│   │   │   │   │   ├── PclZipAdapterTest.php
│   │   │   │   │   └── ZipArchiveAdapterTest.php
│   │   │   │   ├── AutoloaderTest.php
│   │   │   │   ├── DrawingTest.php
│   │   │   │   ├── FileTest.php
│   │   │   │   ├── FontTest.php
│   │   │   │   ├── _includes
│   │   │   │   │   ├── TestHelperZip.php
│   │   │   │   │   └── XmlDocument.php
│   │   │   │   ├── Microsoft
│   │   │   │   │   └── PasswordEncoderTest.php
│   │   │   │   ├── TextTest.php
│   │   │   │   ├── XMLReaderTest.php
│   │   │   │   └── XMLWriterTest.php
│   │   │   └── resources
│   │   │   ├── files
│   │   │   │   ├── reader.zip
│   │   │   │   └── Sample_01_Simple.pptx
│   │   │   └── images
│   │   │   └── PHPPowerPointLogo.png
│   │   └── VERSION
│   ├── phpspec
│   │   └── prophecy
│   │   ├── CHANGES.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── Prophecy
│   │   ├── Argument
│   │   │   ├── ArgumentsWildcard.php
│   │   │   └── Token
│   │   │   ├── AnyValuesToken.php
│   │   │   ├── AnyValueToken.php
│   │   │   ├── ApproximateValueToken.php
│   │   │   ├── ArrayCountToken.php
│   │   │   ├── ArrayEntryToken.php
│   │   │   ├── ArrayEveryEntryToken.php
│   │   │   ├── CallbackToken.php
│   │   │   ├── ExactValueToken.php
│   │   │   ├── IdenticalValueToken.php
│   │   │   ├── LogicalAndToken.php
│   │   │   ├── LogicalNotToken.php
│   │   │   ├── ObjectStateToken.php
│   │   │   ├── StringContainsToken.php
│   │   │   ├── TokenInterface.php
│   │   │   └── TypeToken.php
│   │   ├── Argument.php
│   │   ├── Call
│   │   │   ├── CallCenter.php
│   │   │   └── Call.php
│   │   ├── Comparator
│   │   │   ├── ClosureComparator.php
│   │   │   ├── Factory.php
│   │   │   └── ProphecyComparator.php
│   │   ├── Doubler
│   │   │   ├── CachedDoubler.php
│   │   │   ├── ClassPatch
│   │   │   │   ├── ClassPatchInterface.php
│   │   │   │   ├── DisableConstructorPatch.php
│   │   │   │   ├── HhvmExceptionPatch.php
│   │   │   │   ├── KeywordPatch.php
│   │   │   │   ├── MagicCallPatch.php
│   │   │   │   ├── ProphecySubjectPatch.php
│   │   │   │   ├── ReflectionClassNewInstancePatch.php
│   │   │   │   ├── SplFileInfoPatch.php
│   │   │   │   ├── ThrowablePatch.php
│   │   │   │   └── TraversablePatch.php
│   │   │   ├── DoubleInterface.php
│   │   │   ├── Doubler.php
│   │   │   ├── Generator
│   │   │   │   ├── ClassCodeGenerator.php
│   │   │   │   ├── ClassCreator.php
│   │   │   │   ├── ClassMirror.php
│   │   │   │   ├── Node
│   │   │   │   │   ├── ArgumentNode.php
│   │   │   │   │   ├── ClassNode.php
│   │   │   │   │   └── MethodNode.php
│   │   │   │   ├── ReflectionInterface.php
│   │   │   │   └── TypeHintReference.php
│   │   │   ├── LazyDouble.php
│   │   │   └── NameGenerator.php
│   │   ├── Exception
│   │   │   ├── Call
│   │   │   │   └── UnexpectedCallException.php
│   │   │   ├── Doubler
│   │   │   │   ├── ClassCreatorException.php
│   │   │   │   ├── ClassMirrorException.php
│   │   │   │   ├── ClassNotFoundException.php
│   │   │   │   ├── DoubleException.php
│   │   │   │   ├── DoublerException.php
│   │   │   │   ├── InterfaceNotFoundException.php
│   │   │   │   ├── MethodNotExtendableException.php
│   │   │   │   ├── MethodNotFoundException.php
│   │   │   │   └── ReturnByReferenceException.php
│   │   │   ├── Exception.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── Prediction
│   │   │   │   ├── AggregateException.php
│   │   │   │   ├── FailedPredictionException.php
│   │   │   │   ├── NoCallsException.php
│   │   │   │   ├── PredictionException.php
│   │   │   │   ├── UnexpectedCallsCountException.php
│   │   │   │   └── UnexpectedCallsException.php
│   │   │   └── Prophecy
│   │   │   ├── MethodProphecyException.php
│   │   │   ├── ObjectProphecyException.php
│   │   │   └── ProphecyException.php
│   │   ├── PhpDocumentor
│   │   │   ├── ClassAndInterfaceTagRetriever.php
│   │   │   ├── ClassTagRetriever.php
│   │   │   ├── LegacyClassTagRetriever.php
│   │   │   └── MethodTagRetrieverInterface.php
│   │   ├── Prediction
│   │   │   ├── CallbackPrediction.php
│   │   │   ├── CallPrediction.php
│   │   │   ├── CallTimesPrediction.php
│   │   │   ├── NoCallsPrediction.php
│   │   │   └── PredictionInterface.php
│   │   ├── Promise
│   │   │   ├── CallbackPromise.php
│   │   │   ├── PromiseInterface.php
│   │   │   ├── ReturnArgumentPromise.php
│   │   │   ├── ReturnPromise.php
│   │   │   └── ThrowPromise.php
│   │   ├── Prophecy
│   │   │   ├── MethodProphecy.php
│   │   │   ├── ObjectProphecy.php
│   │   │   ├── ProphecyInterface.php
│   │   │   ├── ProphecySubjectInterface.php
│   │   │   ├── RevealerInterface.php
│   │   │   └── Revealer.php
│   │   ├── Prophet.php
│   │   └── Util
│   │   ├── ExportUtil.php
│   │   └── StringUtil.php
│   ├── phpunit
│   │   ├── php-code-coverage
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog-6.1.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── CodeCoverage.php
│   │   │   │   ├── Driver
│   │   │   │   │   ├── Driver.php
│   │   │   │   │   ├── PHPDBG.php
│   │   │   │   │   └── Xdebug.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── CoveredCodeNotExecutedException.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   ├── MissingCoversAnnotationException.php
│   │   │   │   │   ├── RuntimeException.php
│   │   │   │   │   └── UnintentionallyCoveredCodeException.php
│   │   │   │   ├── Filter.php
│   │   │   │   ├── Node
│   │   │   │   │   ├── AbstractNode.php
│   │   │   │   │   ├── Builder.php
│   │   │   │   │   ├── Directory.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   └── Iterator.php
│   │   │   │   ├── Report
│   │   │   │   │   ├── Clover.php
│   │   │   │   │   ├── Crap4j.php
│   │   │   │   │   ├── Html
│   │   │   │   │   │   ├── Facade.php
│   │   │   │   │   │   ├── Renderer
│   │   │   │   │   │   │   ├── Dashboard.php
│   │   │   │   │   │   │   ├── Directory.php
│   │   │   │   │   │   │   ├── File.php
│   │   │   │   │   │   │   └── Template
│   │   │   │   │   │   │   ├── coverage_bar.html.dist
│   │   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   │   │   │   ├── custom.css
│   │   │   │   │   │   │   │   ├── nv.d3.min.css
│   │   │   │   │   │   │   │   ├── octicons.css
│   │   │   │   │   │   │   │   └── style.css
│   │   │   │   │   │   │   ├── dashboard.html.dist
│   │   │   │   │   │   │   ├── directory.html.dist
│   │   │   │   │   │   │   ├── directory_item.html.dist
│   │   │   │   │   │   │   ├── file.html.dist
│   │   │   │   │   │   │   ├── file_item.html.dist
│   │   │   │   │   │   │   ├── icons
│   │   │   │   │   │   │   │   ├── file-code.svg
│   │   │   │   │   │   │   │   └── file-directory.svg
│   │   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   │   │   │   ├── d3.min.js
│   │   │   │   │   │   │   │   ├── file.js
│   │   │   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   │   │   ├── nv.d3.min.js
│   │   │   │   │   │   │   │   └── popper.min.js
│   │   │   │   │   │   │   └── method_item.html.dist
│   │   │   │   │   │   └── Renderer.php
│   │   │   │   │   ├── PHP.php
│   │   │   │   │   ├── Text.php
│   │   │   │   │   └── Xml
│   │   │   │   │   ├── BuildInformation.php
│   │   │   │   │   ├── Coverage.php
│   │   │   │   │   ├── Directory.php
│   │   │   │   │   ├── Facade.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   ├── Method.php
│   │   │   │   │   ├── Node.php
│   │   │   │   │   ├── Project.php
│   │   │   │   │   ├── Report.php
│   │   │   │   │   ├── Source.php
│   │   │   │   │   ├── Tests.php
│   │   │   │   │   ├── Totals.php
│   │   │   │   │   └── Unit.php
│   │   │   │   ├── Util.php
│   │   │   │   └── Version.php
│   │   │   └── tests
│   │   │   ├── bootstrap.php
│   │   │   ├── _files
│   │   │   │   ├── BankAccount-clover.xml
│   │   │   │   ├── BankAccount-crap4j.xml
│   │   │   │   ├── BankAccount.php
│   │   │   │   ├── BankAccountTest.php
│   │   │   │   ├── BankAccount-text.txt
│   │   │   │   ├── class-with-anonymous-function-clover.xml
│   │   │   │   ├── class-with-anonymous-function-crap4j.xml
│   │   │   │   ├── class-with-anonymous-function-text.txt
│   │   │   │   ├── CoverageClassExtendedTest.php
│   │   │   │   ├── CoverageClassTest.php
│   │   │   │   ├── CoverageFunctionParenthesesTest.php
│   │   │   │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│   │   │   │   ├── CoverageFunctionTest.php
│   │   │   │   ├── CoverageMethodOneLineAnnotationTest.php
│   │   │   │   ├── CoverageMethodParenthesesTest.php
│   │   │   │   ├── CoverageMethodParenthesesWhitespaceTest.php
│   │   │   │   ├── CoverageMethodTest.php
│   │   │   │   ├── CoverageNoneTest.php
│   │   │   │   ├── CoverageNothingTest.php
│   │   │   │   ├── CoverageNotPrivateTest.php
│   │   │   │   ├── CoverageNotProtectedTest.php
│   │   │   │   ├── CoverageNotPublicTest.php
│   │   │   │   ├── CoveragePrivateTest.php
│   │   │   │   ├── CoverageProtectedTest.php
│   │   │   │   ├── CoveragePublicTest.php
│   │   │   │   ├── CoverageTwoDefaultClassAnnotations.php
│   │   │   │   ├── CoveredClass.php
│   │   │   │   ├── CoveredFunction.php
│   │   │   │   ├── Crash.php
│   │   │   │   ├── ignored-lines-clover.xml
│   │   │   │   ├── ignored-lines-crap4j.xml
│   │   │   │   ├── ignored-lines-text.txt
│   │   │   │   ├── 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
│   │   │   │   ├── Report
│   │   │   │   │   ├── HTML
│   │   │   │   │   │   ├── CoverageForBankAccount
│   │   │   │   │   │   │   ├── BankAccount.php.html
│   │   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   │   └── index.html
│   │   │   │   │   │   ├── CoverageForClassWithAnonymousFunction
│   │   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   └── source_with_class_and_anonymous_function.php.html
│   │   │   │   │   │   └── CoverageForFileWithIgnoredLines
│   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   └── source_with_ignore.php.html
│   │   │   │   │   └── XML
│   │   │   │   │   ├── CoverageForBankAccount
│   │   │   │   │   │   ├── BankAccount.php.xml
│   │   │   │   │   │   └── index.xml
│   │   │   │   │   ├── CoverageForClassWithAnonymousFunction
│   │   │   │   │   │   ├── index.xml
│   │   │   │   │   │   └── source_with_class_and_anonymous_function.php.xml
│   │   │   │   │   └── CoverageForFileWithIgnoredLines
│   │   │   │   │   ├── index.xml
│   │   │   │   │   └── source_with_ignore.php.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
│   │   │   ├── TestCase.php
│   │   │   └── tests
│   │   │   ├── BuilderTest.php
│   │   │   ├── CloverTest.php
│   │   │   ├── CodeCoverageTest.php
│   │   │   ├── Crap4jTest.php
│   │   │   ├── FilterTest.php
│   │   │   ├── HTMLTest.php
│   │   │   ├── TextTest.php
│   │   │   ├── UtilTest.php
│   │   │   └── XmlTest.php
│   │   ├── php-file-iterator
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Facade.php
│   │   │   │   ├── Factory.php
│   │   │   │   └── Iterator.php
│   │   │   └── tests
│   │   │   └── FactoryTest.php
│   │   ├── php-text-template
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   └── Template.php
│   │   ├── php-timer
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Exception.php
│   │   │   │   ├── RuntimeException.php
│   │   │   │   └── Timer.php
│   │   │   └── tests
│   │   │   └── TimerTest.php
│   │   ├── php-token-stream
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Token
│   │   │   │   │   ├── Stream
│   │   │   │   │   │   └── CachingFactory.php
│   │   │   │   │   └── Stream.php
│   │   │   │   └── Token.php
│   │   │   └── tests
│   │   │   ├── bootstrap.php
│   │   │   ├── _fixture
│   │   │   │   ├── classExtendsNamespacedClass.php
│   │   │   │   ├── classInNamespace.php
│   │   │   │   ├── classInScopedNamespace.php
│   │   │   │   ├── classUsesNamespacedFunction.php
│   │   │   │   ├── class_with_method_named_empty.php
│   │   │   │   ├── class_with_method_that_declares_anonymous_class2.php
│   │   │   │   ├── class_with_method_that_declares_anonymous_class.php
│   │   │   │   ├── class_with_multiple_anonymous_classes_and_functions.php
│   │   │   │   ├── closure.php
│   │   │   │   ├── issue19.php
│   │   │   │   ├── issue30.php
│   │   │   │   ├── multipleNamespacesWithOneClassUsingBraces.php
│   │   │   │   ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│   │   │   │   ├── php-code-coverage-issue-424.php
│   │   │   │   ├── source2.php
│   │   │   │   ├── source3.php
│   │   │   │   ├── source4.php
│   │   │   │   ├── source5.php
│   │   │   │   └── source.php
│   │   │   └── Token
│   │   │   ├── ClassTest.php
│   │   │   ├── ClosureTest.php
│   │   │   ├── FunctionTest.php
│   │   │   ├── IncludeTest.php
│   │   │   ├── InterfaceTest.php
│   │   │   └── NamespaceTest.php
│   │   └── phpunit
│   │   ├── appveyor.yml
│   │   ├── build.xml
│   │   ├── ChangeLog-7.5.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phive.xml
│   │   ├── phpunit
│   │   ├── phpunit.xml
│   │   ├── phpunit.xsd
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Exception.php
│   │   │   ├── Framework
│   │   │   │   ├── Assert
│   │   │   │   │   └── Functions.php
│   │   │   │   ├── AssertionFailedError.php
│   │   │   │   ├── Assert.php
│   │   │   │   ├── CodeCoverageException.php
│   │   │   │   ├── Constraint
│   │   │   │   │   ├── ArrayHasKey.php
│   │   │   │   │   ├── ArraySubset.php
│   │   │   │   │   ├── Attribute.php
│   │   │   │   │   ├── Callback.php
│   │   │   │   │   ├── ClassHasAttribute.php
│   │   │   │   │   ├── ClassHasStaticAttribute.php
│   │   │   │   │   ├── Composite.php
│   │   │   │   │   ├── Constraint.php
│   │   │   │   │   ├── Count.php
│   │   │   │   │   ├── DirectoryExists.php
│   │   │   │   │   ├── ExceptionCode.php
│   │   │   │   │   ├── ExceptionMessage.php
│   │   │   │   │   ├── ExceptionMessageRegularExpression.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── FileExists.php
│   │   │   │   │   ├── GreaterThan.php
│   │   │   │   │   ├── IsAnything.php
│   │   │   │   │   ├── IsEmpty.php
│   │   │   │   │   ├── IsEqual.php
│   │   │   │   │   ├── IsFalse.php
│   │   │   │   │   ├── IsFinite.php
│   │   │   │   │   ├── IsIdentical.php
│   │   │   │   │   ├── IsInfinite.php
│   │   │   │   │   ├── IsInstanceOf.php
│   │   │   │   │   ├── IsJson.php
│   │   │   │   │   ├── IsNan.php
│   │   │   │   │   ├── IsNull.php
│   │   │   │   │   ├── IsReadable.php
│   │   │   │   │   ├── IsTrue.php
│   │   │   │   │   ├── IsType.php
│   │   │   │   │   ├── IsWritable.php
│   │   │   │   │   ├── JsonMatchesErrorMessageProvider.php
│   │   │   │   │   ├── JsonMatches.php
│   │   │   │   │   ├── LessThan.php
│   │   │   │   │   ├── LogicalAnd.php
│   │   │   │   │   ├── LogicalNot.php
│   │   │   │   │   ├── LogicalOr.php
│   │   │   │   │   ├── LogicalXor.php
│   │   │   │   │   ├── ObjectHasAttribute.php
│   │   │   │   │   ├── RegularExpression.php
│   │   │   │   │   ├── SameSize.php
│   │   │   │   │   ├── StringContains.php
│   │   │   │   │   ├── StringEndsWith.php
│   │   │   │   │   ├── StringMatchesFormatDescription.php
│   │   │   │   │   ├── StringStartsWith.php
│   │   │   │   │   ├── TraversableContainsOnly.php
│   │   │   │   │   └── TraversableContains.php
│   │   │   │   ├── CoveredCodeNotExecutedException.php
│   │   │   │   ├── DataProviderTestSuite.php
│   │   │   │   ├── Error
│   │   │   │   │   ├── Deprecated.php
│   │   │   │   │   ├── Error.php
│   │   │   │   │   ├── Notice.php
│   │   │   │   │   └── Warning.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── ExceptionWrapper.php
│   │   │   │   ├── ExpectationFailedException.php
│   │   │   │   ├── IncompleteTestCase.php
│   │   │   │   ├── IncompleteTestError.php
│   │   │   │   ├── IncompleteTest.php
│   │   │   │   ├── InvalidCoversTargetException.php
│   │   │   │   ├── MissingCoversAnnotationException.php
│   │   │   │   ├── MockObject
│   │   │   │   │   ├── Builder
│   │   │   │   │   │   ├── Identity.php
│   │   │   │   │   │   ├── InvocationMocker.php
│   │   │   │   │   │   ├── Match.php
│   │   │   │   │   │   ├── MethodNameMatch.php
│   │   │   │   │   │   ├── NamespaceMatch.php
│   │   │   │   │   │   ├── ParametersMatch.php
│   │   │   │   │   │   └── Stub.php
│   │   │   │   │   ├── Exception
│   │   │   │   │   │   ├── BadMethodCallException.php
│   │   │   │   │   │   ├── Exception.php
│   │   │   │   │   │   └── RuntimeException.php
│   │   │   │   │   ├── ForwardCompatibility
│   │   │   │   │   │   └── MockObject.php
│   │   │   │   │   ├── Generator
│   │   │   │   │   │   ├── deprecation.tpl.dist
│   │   │   │   │   │   ├── mocked_class_method.tpl.dist
│   │   │   │   │   │   ├── mocked_class.tpl.dist
│   │   │   │   │   │   ├── mocked_clone.tpl.dist
│   │   │   │   │   │   ├── mocked_method.tpl.dist
│   │   │   │   │   │   ├── mocked_method_void.tpl.dist
│   │   │   │   │   │   ├── mocked_static_method.tpl.dist
│   │   │   │   │   │   ├── proxied_method.tpl.dist
│   │   │   │   │   │   ├── proxied_method_void.tpl.dist
│   │   │   │   │   │   ├── trait_class.tpl.dist
│   │   │   │   │   │   ├── unmocked_clone.tpl.dist
│   │   │   │   │   │   ├── wsdl_class.tpl.dist
│   │   │   │   │   │   └── wsdl_method.tpl.dist
│   │   │   │   │   ├── Generator.php
│   │   │   │   │   ├── Invocation
│   │   │   │   │   │   ├── Invocation.php
│   │   │   │   │   │   ├── ObjectInvocation.php
│   │   │   │   │   │   └── StaticInvocation.php
│   │   │   │   │   ├── InvocationMocker.php
│   │   │   │   │   ├── Invokable.php
│   │   │   │   │   ├── Matcher
│   │   │   │   │   │   ├── AnyInvokedCount.php
│   │   │   │   │   │   ├── AnyParameters.php
│   │   │   │   │   │   ├── ConsecutiveParameters.php
│   │   │   │   │   │   ├── DeferredError.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
│   │   │   │   │   ├── MockMethod.php
│   │   │   │   │   ├── MockMethodSet.php
│   │   │   │   │   ├── MockObject.php
│   │   │   │   │   ├── Stub
│   │   │   │   │   │   ├── ConsecutiveCalls.php
│   │   │   │   │   │   ├── Exception.php
│   │   │   │   │   │   ├── MatcherCollection.php
│   │   │   │   │   │   ├── ReturnArgument.php
│   │   │   │   │   │   ├── ReturnCallback.php
│   │   │   │   │   │   ├── ReturnReference.php
│   │   │   │   │   │   ├── ReturnSelf.php
│   │   │   │   │   │   ├── ReturnStub.php
│   │   │   │   │   │   └── ReturnValueMap.php
│   │   │   │   │   ├── Stub.php
│   │   │   │   │   └── Verifiable.php
│   │   │   │   ├── OutputError.php
│   │   │   │   ├── RiskyTestError.php
│   │   │   │   ├── RiskyTest.php
│   │   │   │   ├── SelfDescribing.php
│   │   │   │   ├── SkippedTestCase.php
│   │   │   │   ├── SkippedTestError.php
│   │   │   │   ├── SkippedTest.php
│   │   │   │   ├── SkippedTestSuiteError.php
│   │   │   │   ├── SyntheticError.php
│   │   │   │   ├── TestCase.php
│   │   │   │   ├── TestFailure.php
│   │   │   │   ├── TestListenerDefaultImplementation.php
│   │   │   │   ├── TestListener.php
│   │   │   │   ├── Test.php
│   │   │   │   ├── TestResult.php
│   │   │   │   ├── TestSuiteIterator.php
│   │   │   │   ├── TestSuite.php
│   │   │   │   ├── UnintentionallyCoveredCodeError.php
│   │   │   │   ├── Warning.php
│   │   │   │   └── WarningTestCase.php
│   │   │   ├── Runner
│   │   │   │   ├── BaseTestRunner.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── Filter
│   │   │   │   │   ├── ExcludeGroupFilterIterator.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── GroupFilterIterator.php
│   │   │   │   │   ├── IncludeGroupFilterIterator.php
│   │   │   │   │   └── NameFilterIterator.php
│   │   │   │   ├── Hook
│   │   │   │   │   ├── AfterIncompleteTestHook.php
│   │   │   │   │   ├── AfterLastTestHook.php
│   │   │   │   │   ├── AfterRiskyTestHook.php
│   │   │   │   │   ├── AfterSkippedTestHook.php
│   │   │   │   │   ├── AfterSuccessfulTestHook.php
│   │   │   │   │   ├── AfterTestErrorHook.php
│   │   │   │   │   ├── AfterTestFailureHook.php
│   │   │   │   │   ├── AfterTestHook.php
│   │   │   │   │   ├── AfterTestWarningHook.php
│   │   │   │   │   ├── BeforeFirstTestHook.php
│   │   │   │   │   ├── BeforeTestHook.php
│   │   │   │   │   ├── Hook.php
│   │   │   │   │   ├── TestHook.php
│   │   │   │   │   └── TestListenerAdapter.php
│   │   │   │   ├── PhptTestCase.php
│   │   │   │   ├── ResultCacheExtension.php
│   │   │   │   ├── StandardTestSuiteLoader.php
│   │   │   │   ├── TestSuiteLoader.php
│   │   │   │   ├── TestSuiteSorter.php
│   │   │   │   └── Version.php
│   │   │   ├── TextUI
│   │   │   │   ├── Command.php
│   │   │   │   ├── ResultPrinter.php
│   │   │   │   └── TestRunner.php
│   │   │   └── Util
│   │   │   ├── Blacklist.php
│   │   │   ├── ConfigurationGenerator.php
│   │   │   ├── Configuration.php
│   │   │   ├── ErrorHandler.php
│   │   │   ├── FileLoader.php
│   │   │   ├── Filesystem.php
│   │   │   ├── Filter.php
│   │   │   ├── Getopt.php
│   │   │   ├── GlobalState.php
│   │   │   ├── InvalidArgumentHelper.php
│   │   │   ├── Json.php
│   │   │   ├── Log
│   │   │   │   ├── JUnit.php
│   │   │   │   └── TeamCity.php
│   │   │   ├── NullTestResultCache.php
│   │   │   ├── PHP
│   │   │   │   ├── AbstractPhpProcess.php
│   │   │   │   ├── DefaultPhpProcess.php
│   │   │   │   ├── eval-stdin.php
│   │   │   │   ├── Template
│   │   │   │   │   ├── PhptTestCase.tpl.dist
│   │   │   │   │   ├── TestCaseClass.tpl.dist
│   │   │   │   │   └── TestCaseMethod.tpl.dist
│   │   │   │   └── WindowsPhpProcess.php
│   │   │   ├── Printer.php
│   │   │   ├── RegularExpression.php
│   │   │   ├── TestDox
│   │   │   │   ├── CliTestDoxPrinter.php
│   │   │   │   ├── HtmlResultPrinter.php
│   │   │   │   ├── NamePrettifier.php
│   │   │   │   ├── ResultPrinter.php
│   │   │   │   ├── TestResult.php
│   │   │   │   ├── TextResultPrinter.php
│   │   │   │   └── XmlResultPrinter.php
│   │   │   ├── Test.php
│   │   │   ├── TestResultCacheInterface.php
│   │   │   ├── TestResultCache.php
│   │   │   ├── TextTestListRenderer.php
│   │   │   ├── Type.php
│   │   │   ├── XdebugFilterScriptGenerator.php
│   │   │   ├── Xml.php
│   │   │   └── XmlTestListRenderer.php
│   │   └── tests
│   │   ├── bootstrap.php
│   │   ├── end-to-end
│   │   │   ├── abstract-test-class.phpt
│   │   │   ├── assertion.phpt
│   │   │   ├── cache-result.phpt
│   │   │   ├── code-coverage-ignore.phpt
│   │   │   ├── code-coverage-phpt.phpt
│   │   │   ├── colors-always.phpt
│   │   │   ├── concrete-test-class.phpt
│   │   │   ├── custom-printer-debug.phpt
│   │   │   ├── custom-printer-verbose.phpt
│   │   │   ├── dataprovider-debug.phpt
│   │   │   ├── dataprovider-issue-2833.phpt
│   │   │   ├── dataprovider-issue-2859.phpt
│   │   │   ├── dataprovider-issue-2922.phpt
│   │   │   ├── dataprovider-log-xml-isolation.phpt
│   │   │   ├── dataprovider-log-xml.phpt
│   │   │   ├── dataprovider-testdox.phpt
│   │   │   ├── debug.phpt
│   │   │   ├── default-isolation.phpt
│   │   │   ├── default.phpt
│   │   │   ├── defaulttestsuite.phpt
│   │   │   ├── defaulttestsuite-using-testsuite.phpt
│   │   │   ├── defects-first-order-via-cli.phpt
│   │   │   ├── dependencies2-isolation.phpt
│   │   │   ├── dependencies2.phpt
│   │   │   ├── dependencies3-isolation.phpt
│   │   │   ├── dependencies3.phpt
│   │   │   ├── dependencies-clone.phpt
│   │   │   ├── dependencies-isolation.phpt
│   │   │   ├── dependencies.phpt
│   │   │   ├── disable-code-coverage-ignore.phpt
│   │   │   ├── dump-xdebug-filter.phpt
│   │   │   ├── empty-testcase.phpt
│   │   │   ├── exception-stack.phpt
│   │   │   ├── exclude-group-isolation.phpt
│   │   │   ├── exclude-group.phpt
│   │   │   ├── execution-order-options-via-config.phpt
│   │   │   ├── failure-isolation.phpt
│   │   │   ├── failure.phpt
│   │   │   ├── failure-reverse-list.phpt
│   │   │   ├── fatal-isolation.phpt
│   │   │   ├── _files
│   │   │   │   ├── expect_external.txt
│   │   │   │   ├── Extension.php
│   │   │   │   ├── hooks.xml
│   │   │   │   ├── HookTest.php
│   │   │   │   ├── NullPrinter.php
│   │   │   │   ├── phpt-env.expected.txt
│   │   │   │   └── phpt_external.php
│   │   │   ├── 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
│   │   │   ├── forward-compatibility.phpt
│   │   │   ├── group-isolation.phpt
│   │   │   ├── group.phpt
│   │   │   ├── help2.phpt
│   │   │   ├── help.phpt
│   │   │   ├── hooks.phpt
│   │   │   ├── ini-isolation.phpt
│   │   │   ├── list-groups.phpt
│   │   │   ├── list-suites.phpt
│   │   │   ├── list-tests-dataprovider.phpt
│   │   │   ├── list-tests-xml-dataprovider.phpt
│   │   │   ├── log-junit.phpt
│   │   │   ├── log-junit-phpt.phpt
│   │   │   ├── log-teamcity.phpt
│   │   │   ├── log-teamcity-phpt.phpt
│   │   │   ├── mock-objects
│   │   │   │   ├── generator
│   │   │   │   │   ├── 232.phpt
│   │   │   │   │   ├── 3154_namespaced_constant_resolving.phpt
│   │   │   │   │   ├── 3530.phpt
│   │   │   │   │   ├── 397.phpt
│   │   │   │   │   ├── abstract_class.phpt
│   │   │   │   │   ├── class_call_parent_clone.phpt
│   │   │   │   │   ├── class_call_parent_constructor.phpt
│   │   │   │   │   ├── class_dont_call_parent_clone.phpt
│   │   │   │   │   ├── class_dont_call_parent_constructor.phpt
│   │   │   │   │   ├── class_implementing_interface_call_parent_constructor.phpt
│   │   │   │   │   ├── class_implementing_interface_dont_call_parent_constructor.phpt
│   │   │   │   │   ├── class_nonexistent_method.phpt
│   │   │   │   │   ├── class_partial.phpt
│   │   │   │   │   ├── class.phpt
│   │   │   │   │   ├── class_with_deprecated_method.phpt
│   │   │   │   │   ├── class_with_final_method.phpt
│   │   │   │   │   ├── class_with_method_named_method.phpt
│   │   │   │   │   ├── class_with_method_with_nullable_typehinted_variadic_arguments.phpt
│   │   │   │   │   ├── class_with_method_with_typehinted_variadic_arguments.phpt
│   │   │   │   │   ├── class_with_method_with_variadic_arguments.phpt
│   │   │   │   │   ├── constant_as_parameter_default_value.phpt
│   │   │   │   │   ├── interface.phpt
│   │   │   │   │   ├── invocation_object_clone_object.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_class.phpt
│   │   │   │   │   ├── namespaced_interface.phpt
│   │   │   │   │   ├── nonexistent_class.phpt
│   │   │   │   │   ├── nonexistent_class_with_namespace.phpt
│   │   │   │   │   ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│   │   │   │   │   ├── nullable_types.phpt
│   │   │   │   │   ├── proxy.phpt
│   │   │   │   │   ├── return_type_declarations_closure.phpt
│   │   │   │   │   ├── return_type_declarations_final.phpt
│   │   │   │   │   ├── return_type_declarations_generator.phpt
│   │   │   │   │   ├── return_type_declarations_nullable.phpt
│   │   │   │   │   ├── return_type_declarations_object_method.phpt
│   │   │   │   │   ├── return_type_declarations_parent.phpt
│   │   │   │   │   ├── return_type_declarations_self.phpt
│   │   │   │   │   ├── return_type_declarations_static_method.phpt
│   │   │   │   │   ├── return_type_declarations_void.phpt
│   │   │   │   │   ├── scalar_type_declarations.phpt
│   │   │   │   │   ├── wsdl_class_namespace.phpt
│   │   │   │   │   ├── wsdl_class_partial.phpt
│   │   │   │   │   └── wsdl_class.phpt
│   │   │   │   └── mock-method
│   │   │   │   ├── call_original.phpt
│   │   │   │   ├── call_original_with_argument.phpt
│   │   │   │   ├── call_original_with_argument_variadic.phpt
│   │   │   │   ├── call_original_with_return_type_void.phpt
│   │   │   │   ├── clone_method_arguments.phpt
│   │   │   │   ├── deprecated_with_description.phpt
│   │   │   │   ├── deprecated_without_description.phpt
│   │   │   │   ├── private_method.phpt
│   │   │   │   ├── protected_method.phpt
│   │   │   │   ├── return_by_reference.phpt
│   │   │   │   ├── return_by_reference_with_return_type.phpt
│   │   │   │   ├── return_type_parent.phpt
│   │   │   │   ├── return_type.phpt
│   │   │   │   ├── return_type_self.phpt
│   │   │   │   ├── static_method.phpt
│   │   │   │   ├── static_method_with_return_type.phpt
│   │   │   │   ├── with_argument_default_constant.phpt
│   │   │   │   ├── with_argument_default_null.phpt
│   │   │   │   ├── with_argument_default.phpt
│   │   │   │   ├── with_argument_nullable.phpt
│   │   │   │   ├── with_argument.phpt
│   │   │   │   ├── with_argument_reference.phpt
│   │   │   │   ├── with_arguments.phpt
│   │   │   │   ├── with_argument_typed_array.phpt
│   │   │   │   ├── with_argument_typed_callable.phpt
│   │   │   │   ├── with_argument_typed_class.phpt
│   │   │   │   ├── with_argument_typed_scalar.phpt
│   │   │   │   ├── with_argument_typed_self.phpt
│   │   │   │   ├── with_argument_typed_unkown_class.phpt
│   │   │   │   ├── with_argument_typed_variadic.phpt
│   │   │   │   └── with_argument_variadic.phpt
│   │   │   ├── mycommand.phpt
│   │   │   ├── options-after-arguments.phpt
│   │   │   ├── order-by-default-invalid-via-cli.phpt
│   │   │   ├── output-isolation.phpt
│   │   │   ├── phar-extension.phpt
│   │   │   ├── phar-extension-suppressed.phpt
│   │   │   ├── phpt-args.phpt
│   │   │   ├── phpt-env.phpt
│   │   │   ├── phpt-external.phpt
│   │   │   ├── phpt-parsing.phpt
│   │   │   ├── phpt-stderr.phpt
│   │   │   ├── phpt-stdin.phpt
│   │   │   ├── phpt-xfail.phpt
│   │   │   ├── regression
│   │   │   │   ├── GitHub
│   │   │   │   │   ├── 1149
│   │   │   │   │   │   └── Issue1149Test.php
│   │   │   │   │   ├── 1149.phpt
│   │   │   │   │   ├── 1216
│   │   │   │   │   │   ├── bootstrap1216.php
│   │   │   │   │   │   ├── Issue1216Test.php
│   │   │   │   │   │   └── phpunit1216.xml
│   │   │   │   │   ├── 1216.phpt
│   │   │   │   │   ├── 1265
│   │   │   │   │   │   ├── Issue1265Test.php
│   │   │   │   │   │   └── phpunit1265.xml
│   │   │   │   │   ├── 1265.phpt
│   │   │   │   │   ├── 1330
│   │   │   │   │   │   ├── Issue1330Test.php
│   │   │   │   │   │   └── phpunit1330.xml
│   │   │   │   │   ├── 1330.phpt
│   │   │   │   │   ├── 1335
│   │   │   │   │   │   ├── bootstrap1335.php
│   │   │   │   │   │   └── Issue1335Test.php
│   │   │   │   │   ├── 1335.phpt
│   │   │   │   │   ├── 1337
│   │   │   │   │   │   └── Issue1337Test.php
│   │   │   │   │   ├── 1337.phpt
│   │   │   │   │   ├── 1348
│   │   │   │   │   │   └── Issue1348Test.php
│   │   │   │   │   ├── 1348.phpt
│   │   │   │   │   ├── 1351
│   │   │   │   │   │   ├── ChildProcessClass1351.php
│   │   │   │   │   │   └── Issue1351Test.php
│   │   │   │   │   ├── 1351.phpt
│   │   │   │   │   ├── 1374
│   │   │   │   │   │   └── Issue1374Test.php
│   │   │   │   │   ├── 1374.phpt
│   │   │   │   │   ├── 1437
│   │   │   │   │   │   └── Issue1437Test.php
│   │   │   │   │   ├── 1437.phpt
│   │   │   │   │   ├── 1468
│   │   │   │   │   │   └── Issue1468Test.php
│   │   │   │   │   ├── 1468.phpt
│   │   │   │   │   ├── 1471
│   │   │   │   │   │   └── Issue1471Test.php
│   │   │   │   │   ├── 1471.phpt
│   │   │   │   │   ├── 1472
│   │   │   │   │   │   └── Issue1472Test.php
│   │   │   │   │   ├── 1472.phpt
│   │   │   │   │   ├── 1570
│   │   │   │   │   │   └── Issue1570Test.php
│   │   │   │   │   ├── 1570.phpt
│   │   │   │   │   ├── 2085
│   │   │   │   │   │   ├── configuration_enforce_time_limit_options.xml
│   │   │   │   │   │   └── Issue2085Test.php
│   │   │   │   │   ├── 2085-enforce-time-limit-options-via-config-without-invoker.phpt
│   │   │   │   │   ├── 2085.phpt
│   │   │   │   │   ├── 2085-without-invoker.phpt
│   │   │   │   │   ├── 2137
│   │   │   │   │   │   └── Issue2137Test.php
│   │   │   │   │   ├── 2137-filter.phpt
│   │   │   │   │   ├── 2137-no_filter.phpt
│   │   │   │   │   ├── 2145
│   │   │   │   │   │   └── Issue2145Test.php
│   │   │   │   │   ├── 2145.phpt
│   │   │   │   │   ├── 2158
│   │   │   │   │   │   ├── constant.inc
│   │   │   │   │   │   └── Issue2158Test.php
│   │   │   │   │   ├── 2158.phpt
│   │   │   │   │   ├── 2366
│   │   │   │   │   │   └── Issue2366Test.php
│   │   │   │   │   ├── 2366.phpt
│   │   │   │   │   ├── 2380
│   │   │   │   │   │   └── Issue2380Test.php
│   │   │   │   │   ├── 2380.phpt
│   │   │   │   │   ├── 2382
│   │   │   │   │   │   └── Issue2382Test.php
│   │   │   │   │   ├── 2382.phpt
│   │   │   │   │   ├── 2435
│   │   │   │   │   │   └── Issue2435Test.php
│   │   │   │   │   ├── 2435.phpt
│   │   │   │   │   ├── 244
│   │   │   │   │   │   └── Issue244Test.php
│   │   │   │   │   ├── 2448
│   │   │   │   │   │   └── Test.php
│   │   │   │   │   ├── 2448-existing-test.phpt
│   │   │   │   │   ├── 2448-not-existing-test.phpt
│   │   │   │   │   ├── 244.phpt
│   │   │   │   │   ├── 2591
│   │   │   │   │   │   ├── bootstrapNoBootstrap.php
│   │   │   │   │   │   ├── bootstrapWithBootstrapNoGlobal.php
│   │   │   │   │   │   ├── bootstrapWithBootstrap.php
│   │   │   │   │   │   ├── SeparateClassPreserveTest.php
│   │   │   │   │   │   ├── SeparateFunctionNoPreserveTest.php
│   │   │   │   │   │   └── SeparateFunctionPreserveTest.php
│   │   │   │   │   ├── 2591-separate-class-preserve-no-bootstrap.phpt
│   │   │   │   │   ├── 2591-separate-class-preserve.phpt
│   │   │   │   │   ├── 2591-separate-function-no-preserve-no-bootstrap-php73.phpt
│   │   │   │   │   ├── 2591-separate-function-no-preserve-no-bootstrap.phpt
│   │   │   │   │   ├── 2591-separate-function-no-preserve-no-bootstrap-xdebug.phpt
│   │   │   │   │   ├── 2591-separate-function-no-preserve.phpt
│   │   │   │   │   ├── 2591-separate-function-preserve.phpt
│   │   │   │   │   ├── 2724
│   │   │   │   │   │   └── SeparateClassRunMethodInNewProcessTest.php
│   │   │   │   │   ├── 2724-diff-pid-from-master-process.phpt
│   │   │   │   │   ├── 2725
│   │   │   │   │   │   └── BeforeAfterClassPidTest.php
│   │   │   │   │   ├── 2725-separate-class-before-after-pid.phpt
│   │   │   │   │   ├── 2731
│   │   │   │   │   │   └── Issue2731Test.php
│   │   │   │   │   ├── 2731.phpt
│   │   │   │   │   ├── 2811
│   │   │   │   │   │   └── Issue2811Test.php
│   │   │   │   │   ├── 2811.phpt
│   │   │   │   │   ├── 2830
│   │   │   │   │   │   └── Issue2830Test.php
│   │   │   │   │   ├── 2830.phpt
│   │   │   │   │   ├── 2972
│   │   │   │   │   │   ├── issue-2972-test.phpt
│   │   │   │   │   │   └── unconventiallyNamedIssue2972Test.php
│   │   │   │   │   ├── 2972.phpt
│   │   │   │   │   ├── 3093
│   │   │   │   │   │   ├── Issue3093Test.php
│   │   │   │   │   │   └── issue-3093-test.phpt
│   │   │   │   │   ├── 3107
│   │   │   │   │   │   ├── Issue3107Test.php
│   │   │   │   │   │   └── issue-3107-test.phpt
│   │   │   │   │   ├── 3156
│   │   │   │   │   │   └── Issue3156Test.php
│   │   │   │   │   ├── 322
│   │   │   │   │   │   ├── Issue322Test.php
│   │   │   │   │   │   └── phpunit322.xml
│   │   │   │   │   ├── 322.phpt
│   │   │   │   │   ├── 3364
│   │   │   │   │   │   ├── issue-3364-test.phpt
│   │   │   │   │   │   └── tests
│   │   │   │   │   │   ├── Issue3364SetupBeforeClassTest.php
│   │   │   │   │   │   └── Issue3364SetupTest.php
│   │   │   │   │   ├── 3379
│   │   │   │   │   │   ├── Issue3379TestListener.php
│   │   │   │   │   │   ├── Issue3379Test.php
│   │   │   │   │   │   └── phpunit.xml
│   │   │   │   │   ├── 3379.phpt
│   │   │   │   │   ├── 3380
│   │   │   │   │   │   └── issue-3380-test.phpt
│   │   │   │   │   ├── 3396
│   │   │   │   │   │   └── issue-3396-test.phpt
│   │   │   │   │   ├── 433
│   │   │   │   │   │   └── Issue433Test.php
│   │   │   │   │   ├── 433.phpt
│   │   │   │   │   ├── 445
│   │   │   │   │   │   └── Issue445Test.php
│   │   │   │   │   ├── 445.phpt
│   │   │   │   │   ├── 498
│   │   │   │   │   │   └── Issue498Test.php
│   │   │   │   │   ├── 498.phpt
│   │   │   │   │   ├── 503
│   │   │   │   │   │   └── Issue503Test.php
│   │   │   │   │   ├── 503.phpt
│   │   │   │   │   ├── 581
│   │   │   │   │   │   └── Issue581Test.php
│   │   │   │   │   ├── 581.phpt
│   │   │   │   │   ├── 74
│   │   │   │   │   │   ├── Issue74Test.php
│   │   │   │   │   │   └── NewException.php
│   │   │   │   │   ├── 74.phpt
│   │   │   │   │   ├── 765
│   │   │   │   │   │   └── Issue765Test.php
│   │   │   │   │   ├── 765.phpt
│   │   │   │   │   ├── 797
│   │   │   │   │   │   ├── bootstrap797.php
│   │   │   │   │   │   └── Issue797Test.php
│   │   │   │   │   ├── 797.phpt
│   │   │   │   │   ├── 863.phpt
│   │   │   │   │   ├── 873
│   │   │   │   │   │   └── Issue873Test.php
│   │   │   │   │   └── 873.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
│   │   │   ├── repeat.phpt
│   │   │   ├── report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt
│   │   │   ├── report-useless-tests-incomplete.phpt
│   │   │   ├── report-useless-tests-isolation.phpt
│   │   │   ├── report-useless-tests.phpt
│   │   │   ├── stop-on-defect-via-cli.phpt
│   │   │   ├── stop-on-defect-via-config.phpt
│   │   │   ├── stop-on-error-via-cli.phpt
│   │   │   ├── stop-on-error-via-config.phpt
│   │   │   ├── stop-on-incomplete-via-cli.phpt
│   │   │   ├── stop-on-incomplete-via-config.phpt
│   │   │   ├── stop-on-warning-via-cli.phpt
│   │   │   ├── stop-on-warning-via-config.phpt
│   │   │   ├── teamcity-inner-exceptions.phpt
│   │   │   ├── teamcity.phpt
│   │   │   ├── testdox-dataprovider-placeholder.phpt
│   │   │   ├── testdox-exclude-group.phpt
│   │   │   ├── testdox-group.phpt
│   │   │   ├── testdox-html.phpt
│   │   │   ├── testdox.phpt
│   │   │   ├── testdox-text.phpt
│   │   │   ├── testdox-verbose.phpt
│   │   │   ├── testdox-xml.phpt
│   │   │   ├── test-order-randomized-seed-with-dependency-resolution.phpt
│   │   │   ├── test-order-randomized-with-dependency-resolution.phpt
│   │   │   ├── test-order-reversed-with-dependency-resolution.phpt
│   │   │   ├── test-order-reversed-without-dependency-resolution.phpt
│   │   │   ├── test-suffix-multiple.phpt
│   │   │   └── test-suffix-single.phpt
│   │   ├── fail
│   │   │   └── fail.phpt
│   │   ├── _files
│   │   │   ├── 3194.php
│   │   │   ├── 3530.wsdl
│   │   │   ├── AbstractMockTestClass.php
│   │   │   ├── AbstractTest.php
│   │   │   ├── AbstractTrait.php
│   │   │   ├── AnInterface.php
│   │   │   ├── AnInterfaceWithReturnType.php
│   │   │   ├── AnotherInterface.php
│   │   │   ├── ArrayAccessible.php
│   │   │   ├── AssertionExample.php
│   │   │   ├── AssertionExampleTest.php
│   │   │   ├── Author.php
│   │   │   ├── BankAccount.php
│   │   │   ├── BankAccountTest2.php
│   │   │   ├── BankAccountTest.php
│   │   │   ├── BankAccountTest.test.php
│   │   │   ├── Bar.php
│   │   │   ├── bar.xml
│   │   │   ├── BeforeAndAfterTest.php
│   │   │   ├── BeforeClassAndAfterClassTest.php
│   │   │   ├── BeforeClassWithOnlyDataProviderTest.php
│   │   │   ├── Book.php
│   │   │   ├── Calculator.php
│   │   │   ├── ChangeCurrentWorkingDirectoryTest.php
│   │   │   ├── ClassThatImplementsSerializable.php
│   │   │   ├── ClassWithAllPossibleReturnTypes.php
│   │   │   ├── ClassWithNonPublicAttributes.php
│   │   │   ├── ClassWithScalarTypeDeclarations.php
│   │   │   ├── ClassWithSelfTypeHint.php
│   │   │   ├── ClassWithStaticMethod.php
│   │   │   ├── ClassWithToString.php
│   │   │   ├── ClassWithVariadicArgumentMethod.php
│   │   │   ├── ClonedDependencyTest.php
│   │   │   ├── ConcreteTest.my.php
│   │   │   ├── ConcreteTest.php
│   │   │   ├── configuration.colors.empty.xml
│   │   │   ├── configuration.colors.false.xml
│   │   │   ├── configuration.colors.invalid.xml
│   │   │   ├── configuration.colors.true.xml
│   │   │   ├── configuration.columns.default.xml
│   │   │   ├── configuration.custom-printer.xml
│   │   │   ├── configuration.defaulttestsuite.xml
│   │   │   ├── configuration_empty.xml
│   │   │   ├── configuration_execution_order_options.xml
│   │   │   ├── configuration.one-file-suite.xml
│   │   │   ├── configuration_stop_on_defect.xml
│   │   │   ├── configuration_stop_on_error.xml
│   │   │   ├── configuration_stop_on_incomplete.xml
│   │   │   ├── configuration_stop_on_warning.xml
│   │   │   ├── configuration.suites.xml
│   │   │   ├── configuration_whitelist.xml
│   │   │   ├── configuration_xinclude.xml
│   │   │   ├── configuration.xml
│   │   │   ├── CountConstraint.php
│   │   │   ├── CoverageClassExtendedTest.php
│   │   │   ├── CoverageClassTest.php
│   │   │   ├── CoverageCoversOverridesCoversNothingTest.php
│   │   │   ├── CoverageFunctionParenthesesTest.php
│   │   │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│   │   │   ├── CoverageFunctionTest.php
│   │   │   ├── CoverageMethodOneLineAnnotationTest.php
│   │   │   ├── CoverageMethodParenthesesTest.php
│   │   │   ├── CoverageMethodParenthesesWhitespaceTest.php
│   │   │   ├── CoverageMethodTest.php
│   │   │   ├── CoverageNamespacedFunctionTest.php
│   │   │   ├── CoverageNoneTest.php
│   │   │   ├── CoverageNothingTest.php
│   │   │   ├── CoverageNotPrivateTest.php
│   │   │   ├── CoverageNotProtectedTest.php
│   │   │   ├── CoverageNotPublicTest.php
│   │   │   ├── CoveragePrivateTest.php
│   │   │   ├── CoverageProtectedTest.php
│   │   │   ├── CoveragePublicTest.php
│   │   │   ├── CoverageTwoDefaultClassAnnotations.php
│   │   │   ├── CoveredClass.php
│   │   │   ├── CoveredFunction.php
│   │   │   ├── CustomPrinter.php
│   │   │   ├── DataProviderDebugTest.php
│   │   │   ├── DataProviderDependencyTest.php
│   │   │   ├── DataproviderExecutionOrderTest.php
│   │   │   ├── DataproviderExecutionOrderTest_result_cache.txt
│   │   │   ├── DataProviderFilterTest.php
│   │   │   ├── DataProviderIncompleteTest.php
│   │   │   ├── DataProviderIssue2833
│   │   │   │   ├── FirstTest.php
│   │   │   │   └── SecondTest.php
│   │   │   ├── DataProviderIssue2859
│   │   │   │   ├── phpunit.xml
│   │   │   │   └── tests
│   │   │   │   └── another
│   │   │   │   └── TestWithDataProviderTest.php
│   │   │   ├── DataProviderIssue2922
│   │   │   │   ├── FirstTest.php
│   │   │   │   └── SecondTest.php
│   │   │   ├── DataProviderSkippedTest.php
│   │   │   ├── DataProviderTestDoxTest.php
│   │   │   ├── DataProviderTest.php
│   │   │   ├── DependencyFailureTest.php
│   │   │   ├── DependencySuccessTest.php
│   │   │   ├── DependencyTestSuite.php
│   │   │   ├── DoesNotPerformAssertionsButPerformingAssertionsTest.php
│   │   │   ├── DoNoAssertionTestCase.php
│   │   │   ├── DoubleTestCase.php
│   │   │   ├── DummyBarTest.php
│   │   │   ├── DummyException.php
│   │   │   ├── DummyFooTest.php
│   │   │   ├── EmptyTestCaseTest.php
│   │   │   ├── ExampleTrait.php
│   │   │   ├── ExceptionInAssertPostConditionsTest.php
│   │   │   ├── ExceptionInAssertPreConditionsTest.php
│   │   │   ├── ExceptionInSetUpTest.php
│   │   │   ├── ExceptionInTearDownAfterClassTest.php
│   │   │   ├── ExceptionInTearDownTest.php
│   │   │   ├── ExceptionInTestDetectedInTeardown.php
│   │   │   ├── ExceptionInTest.php
│   │   │   ├── ExceptionNamespaceTest.php
│   │   │   ├── ExceptionStackTest.php
│   │   │   ├── ExceptionTest.php
│   │   │   ├── ExceptionWithThrowable.php
│   │   │   ├── expectedFileFormat.txt
│   │   │   ├── Failure.php
│   │   │   ├── FailureTest.php
│   │   │   ├── FalsyConstraint.php
│   │   │   ├── FatalTest.php
│   │   │   ├── Foo.php
│   │   │   ├── foo.xml
│   │   │   ├── FunctionCallback.php
│   │   │   ├── Go ogle-Sea.rch.wsdl
│   │   │   ├── GoogleSearch.wsdl
│   │   │   ├── IgnoreCodeCoverageClass.php
│   │   │   ├── IgnoreCodeCoverageClassTest.php
│   │   │   ├── IncompleteTest.php
│   │   │   ├── Inheritance
│   │   │   │   ├── InheritanceA.php
│   │   │   │   └── InheritanceB.php
│   │   │   ├── InheritedTestCase.php
│   │   │   ├── IniTest.php
│   │   │   ├── InterfaceWithSemiReservedMethodName.php
│   │   │   ├── InterfaceWithStaticMethod.php
│   │   │   ├── IsolationTest.php
│   │   │   ├── JsonData
│   │   │   │   ├── arrayObject.json
│   │   │   │   └── simpleObject.json
│   │   │   ├── MethodCallbackByReference.php
│   │   │   ├── MethodCallback.php
│   │   │   ├── Mockable.php
│   │   │   ├── MockRunner.php
│   │   │   ├── MockTestInterface.php
│   │   │   ├── MultiDependencyTest.php
│   │   │   ├── MultiDependencyTest_result_cache.txt
│   │   │   ├── MultipleDataProviderTest.php
│   │   │   ├── MyCommand.php
│   │   │   ├── MyTestListener.php
│   │   │   ├── NamedConstraint.php
│   │   │   ├── NamespaceCoverageClassExtendedTest.php
│   │   │   ├── NamespaceCoverageClassTest.php
│   │   │   ├── NamespaceCoverageCoversClassPublicTest.php
│   │   │   ├── NamespaceCoverageCoversClassTest.php
│   │   │   ├── NamespaceCoverageMethodTest.php
│   │   │   ├── NamespaceCoverageNotPrivateTest.php
│   │   │   ├── NamespaceCoverageNotProtectedTest.php
│   │   │   ├── NamespaceCoverageNotPublicTest.php
│   │   │   ├── NamespaceCoveragePrivateTest.php
│   │   │   ├── NamespaceCoverageProtectedTest.php
│   │   │   ├── NamespaceCoveragePublicTest.php
│   │   │   ├── NamespaceCoveredClass.php
│   │   │   ├── NamespaceCoveredFunction.php
│   │   │   ├── NoArgTestCaseTest.php
│   │   │   ├── NonStatic.php
│   │   │   ├── NoTestCaseClass.php
│   │   │   ├── NoTestCases.php
│   │   │   ├── NotExistingCoveredElementTest.php
│   │   │   ├── NothingTest.php
│   │   │   ├── NotPublicTestCase.php
│   │   │   ├── NotSelfDescribingTest.php
│   │   │   ├── NotVoidTestCase.php
│   │   │   ├── NumericGroupAnnotationTest.php
│   │   │   ├── OneTestCase.php
│   │   │   ├── OutputTestCase.php
│   │   │   ├── OverrideTestCase.php
│   │   │   ├── ParseTestMethodAnnotationsMock.php
│   │   │   ├── PartialMockTestClass.php
│   │   │   ├── phpt-for-coverage.phpt
│   │   │   ├── phpt-unsupported-section.phpt
│   │   │   ├── phpt-xfail.phpt
│   │   │   ├── phpunit-example-extension
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── tests
│   │   │   │   │   └── OneTest.php
│   │   │   │   └── tools
│   │   │   │   └── phpunit.d
│   │   │   │   └── phpunit-example-extension-3.0.3.phar
│   │   │   ├── RequirementsClassBeforeClassHookTest.php
│   │   │   ├── RequirementsClassDocBlockTest.php
│   │   │   ├── RequirementsTest.php
│   │   │   ├── RouterTest.php
│   │   │   ├── SampleArrayAccess.php
│   │   │   ├── SampleClass.php
│   │   │   ├── SingletonClass.php
│   │   │   ├── Singleton.php
│   │   │   ├── SomeClass.php
│   │   │   ├── StackTest.php
│   │   │   ├── StaticMockTestClass.php
│   │   │   ├── StatusTest.php
│   │   │   ├── StopOnErrorTestSuite.php
│   │   │   ├── StopOnWarningTestSuite.php
│   │   │   ├── StopsOnWarningTest.php
│   │   │   ├── StringableClass.php
│   │   │   ├── Struct.php
│   │   │   ├── structureAttributesAreSameButValuesAreNot.xml
│   │   │   ├── structureExpected.xml
│   │   │   ├── structureIgnoreTextNodes.xml
│   │   │   ├── structureIsSameButDataIsNot.xml
│   │   │   ├── structureWrongNumberOfAttributes.xml
│   │   │   ├── structureWrongNumberOfNodes.xml
│   │   │   ├── Success.php
│   │   │   ├── TemplateMethodsTest.php
│   │   │   ├── TestableCliTestDoxPrinter.php
│   │   │   ├── TestAutoreferenced.php
│   │   │   ├── TestDoxGroupTest.php
│   │   │   ├── TestGeneratorMaker.php
│   │   │   ├── TestIncomplete.php
│   │   │   ├── TestIterator2.php
│   │   │   ├── TestIteratorAggregate2.php
│   │   │   ├── TestIteratorAggregate.php
│   │   │   ├── TestIterator.php
│   │   │   ├── TestRisky.php
│   │   │   ├── TestSkipped.php
│   │   │   ├── TestTestError.php
│   │   │   ├── TestWarning.php
│   │   │   ├── TestWithTest.php
│   │   │   ├── ThrowExceptionTestCase.php
│   │   │   ├── ThrowNoExceptionTestCase.php
│   │   │   ├── TraversableMockTestInterface.php
│   │   │   ├── TruthyConstraint.php
│   │   │   ├── VariousIterableDataProviderTest.php
│   │   │   ├── WasRun.php
│   │   │   └── WrapperIteratorAggregate.php
│   │   └── unit
│   │   ├── Framework
│   │   │   ├── AssertTest.php
│   │   │   ├── Constraint
│   │   │   │   ├── ArrayHasKeyTest.php
│   │   │   │   ├── ArraySubsetTest.php
│   │   │   │   ├── AttributeTest.php
│   │   │   │   ├── CallbackTest.php
│   │   │   │   ├── ClassHasAttributeTest.php
│   │   │   │   ├── ClassHasStaticAttributeTest.php
│   │   │   │   ├── ConstraintTestCase.php
│   │   │   │   ├── CountTest.php
│   │   │   │   ├── DirectoryExistsTest.php
│   │   │   │   ├── ExceptionMessageRegExpTest.php
│   │   │   │   ├── ExceptionMessageTest.php
│   │   │   │   ├── FileExistsTest.php
│   │   │   │   ├── GreaterThanTest.php
│   │   │   │   ├── IsEmptyTest.php
│   │   │   │   ├── IsEqualTest.php
│   │   │   │   ├── IsIdenticalTest.php
│   │   │   │   ├── IsInstanceOfTest.php
│   │   │   │   ├── IsJsonTest.php
│   │   │   │   ├── IsNullTest.php
│   │   │   │   ├── IsReadableTest.php
│   │   │   │   ├── IsTypeTest.php
│   │   │   │   ├── IsWritableTest.php
│   │   │   │   ├── JsonMatchesErrorMessageProviderTest.php
│   │   │   │   ├── JsonMatchesTest.php
│   │   │   │   ├── LessThanTest.php
│   │   │   │   ├── LogicalAndTest.php
│   │   │   │   ├── LogicalOrTest.php
│   │   │   │   ├── LogicalXorTest.php
│   │   │   │   ├── ObjectHasAttributeTest.php
│   │   │   │   ├── RegularExpressionTest.php
│   │   │   │   ├── SameSizeTest.php
│   │   │   │   ├── StringContainsTest.php
│   │   │   │   ├── StringEndsWithTest.php
│   │   │   │   ├── StringMatchesFormatDescriptionTest.php
│   │   │   │   ├── StringStartsWithTest.php
│   │   │   │   └── TraversableContainsTest.php
│   │   │   ├── ConstraintTest.php
│   │   │   ├── ExceptionWrapperTest.php
│   │   │   ├── MockObject
│   │   │   │   ├── Builder
│   │   │   │   │   └── InvocationMockerTest.php
│   │   │   │   ├── GeneratorTest.php
│   │   │   │   ├── Invocation
│   │   │   │   │   ├── ObjectInvocationTest.php
│   │   │   │   │   └── StaticInvocationTest.php
│   │   │   │   ├── Matcher
│   │   │   │   │   └── ConsecutiveParametersTest.php
│   │   │   │   ├── MockBuilderTest.php
│   │   │   │   ├── MockMethodTest.php
│   │   │   │   ├── MockObjectTest.php
│   │   │   │   └── ProxyObjectTest.php
│   │   │   ├── TestCaseTest.php
│   │   │   ├── TestFailureTest.php
│   │   │   ├── TestImplementorTest.php
│   │   │   ├── TestListenerTest.php
│   │   │   ├── TestResultTest.php
│   │   │   └── TestSuiteTest.php
│   │   ├── Runner
│   │   │   ├── Filter
│   │   │   │   └── NameFilterIteratorTest.php
│   │   │   ├── PhptTestCaseTest.php
│   │   │   ├── ResultCacheExtensionTest.php
│   │   │   └── TestSuiteSorterTest.php
│   │   ├── TextUI
│   │   │   └── TestRunnerTest.php
│   │   └── Util
│   │   ├── ConfigurationGeneratorTest.php
│   │   ├── ConfigurationTest.php
│   │   ├── GetoptTest.php
│   │   ├── GlobalStateTest.php
│   │   ├── JsonTest.php
│   │   ├── NullTestResultCacheTest.php
│   │   ├── PHP
│   │   │   └── AbstractPhpProcessTest.php
│   │   ├── RegularExpressionTest.php
│   │   ├── TestDox
│   │   │   ├── CliTestDoxPrinterTest.php
│   │   │   └── NamePrettifierTest.php
│   │   ├── TestResultCacheTest.php
│   │   ├── TestTest.php
│   │   ├── XDebugFilterScriptGeneratorTest.php
│   │   └── XmlTest.php
│   ├── psr
│   │   ├── container
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── ContainerExceptionInterface.php
│   │   │   ├── ContainerInterface.php
│   │   │   └── NotFoundExceptionInterface.php
│   │   ├── http-message
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── MessageInterface.php
│   │   │   ├── RequestInterface.php
│   │   │   ├── ResponseInterface.php
│   │   │   ├── ServerRequestInterface.php
│   │   │   ├── StreamInterface.php
│   │   │   ├── UploadedFileInterface.php
│   │   │   └── UriInterface.php
│   │   └── log
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── Psr
│   │   │   └── Log
│   │   │   ├── AbstractLogger.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── LoggerAwareInterface.php
│   │   │   ├── LoggerAwareTrait.php
│   │   │   ├── LoggerInterface.php
│   │   │   ├── LoggerTrait.php
│   │   │   ├── LogLevel.php
│   │   │   ├── NullLogger.php
│   │   │   └── Test
│   │   │   ├── LoggerInterfaceTest.php
│   │   │   └── TestLogger.php
│   │   └── README.md
│   ├── ralouphie
│   │   └── getallheaders
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   └── getallheaders.php
│   │   └── tests
│   │   └── GetAllHeadersTest.php
│   ├── sabberworm
│   │   └── php-css-parser
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── composer.lock
│   │   ├── Doxyfile
│   │   ├── lib
│   │   │   └── Sabberworm
│   │   │   └── CSS
│   │   │   ├── Comment
│   │   │   │   ├── Commentable.php
│   │   │   │   └── Comment.php
│   │   │   ├── CSSList
│   │   │   │   ├── AtRuleBlockList.php
│   │   │   │   ├── CSSBlockList.php
│   │   │   │   ├── CSSList.php
│   │   │   │   ├── Document.php
│   │   │   │   └── KeyFrame.php
│   │   │   ├── OutputFormat.php
│   │   │   ├── Parser.php
│   │   │   ├── Parsing
│   │   │   │   ├── OutputException.php
│   │   │   │   ├── SourceException.php
│   │   │   │   └── UnexpectedTokenException.php
│   │   │   ├── Property
│   │   │   │   ├── AtRule.php
│   │   │   │   ├── Charset.php
│   │   │   │   ├── CSSNamespace.php
│   │   │   │   ├── Import.php
│   │   │   │   └── Selector.php
│   │   │   ├── Renderable.php
│   │   │   ├── Rule
│   │   │   │   └── Rule.php
│   │   │   ├── RuleSet
│   │   │   │   ├── AtRuleSet.php
│   │   │   │   ├── DeclarationBlock.php
│   │   │   │   └── RuleSet.php
│   │   │   ├── Settings.php
│   │   │   └── Value
│   │   │   ├── Color.php
│   │   │   ├── CSSFunction.php
│   │   │   ├── CSSString.php
│   │   │   ├── PrimitiveValue.php
│   │   │   ├── RuleValueList.php
│   │   │   ├── Size.php
│   │   │   ├── URL.php
│   │   │   ├── ValueList.php
│   │   │   └── Value.php
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   └── tests
│   │   ├── bootstrap.php
│   │   ├── files
│   │   │   ├── 1readme.css
│   │   │   ├── 2readme.css
│   │   │   ├── atrules.css
│   │   │   ├── case-insensitivity.css
│   │   │   ├── -charset-after-rule.css
│   │   │   ├── -charset-in-block.css
│   │   │   ├── colortest.css
│   │   │   ├── comments.css
│   │   │   ├── create-shorthands.css
│   │   │   ├── docuwiki.css
│   │   │   ├── -empty.css
│   │   │   ├── -end-token-2.css
│   │   │   ├── -end-token.css
│   │   │   ├── expand-shorthands.css
│   │   │   ├── -fault-tolerance.css
│   │   │   ├── functions.css
│   │   │   ├── ie.css
│   │   │   ├── ie-hacks.css
│   │   │   ├── important.css
│   │   │   ├── inner-color.css
│   │   │   ├── line-numbers.css
│   │   │   ├── namespaces.css
│   │   │   ├── nested.css
│   │   │   ├── slashed.css
│   │   │   ├── specificity.css
│   │   │   ├── -tobedone.css
│   │   │   ├── unicode.css
│   │   │   ├── url.css
│   │   │   ├── values.css
│   │   │   ├── webkit.css
│   │   │   └── whitespace.css
│   │   ├── phpunit.xml
│   │   ├── quickdump.php
│   │   └── Sabberworm
│   │   └── CSS
│   │   ├── CSSList
│   │   │   ├── AtRuleBlockListTest.php
│   │   │   └── DocumentTest.php
│   │   ├── OutputFormatTest.php
│   │   ├── ParserTest.php
│   │   └── RuleSet
│   │   ├── DeclarationBlockTest.php
│   │   └── LenientParsingTest.php
│   ├── sebastian
│   │   ├── code-unit-reverse-lookup
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   └── Wizard.php
│   │   │   └── tests
│   │   │   └── WizardTest.php
│   │   ├── comparator
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── ArrayComparator.php
│   │   │   │   ├── Comparator.php
│   │   │   │   ├── ComparisonFailure.php
│   │   │   │   ├── DateTimeComparator.php
│   │   │   │   ├── DOMNodeComparator.php
│   │   │   │   ├── DoubleComparator.php
│   │   │   │   ├── ExceptionComparator.php
│   │   │   │   ├── Factory.php
│   │   │   │   ├── MockObjectComparator.php
│   │   │   │   ├── NumericComparator.php
│   │   │   │   ├── ObjectComparator.php
│   │   │   │   ├── ResourceComparator.php
│   │   │   │   ├── ScalarComparator.php
│   │   │   │   ├── SplObjectStorageComparator.php
│   │   │   │   └── TypeComparator.php
│   │   │   └── tests
│   │   │   ├── ArrayComparatorTest.php
│   │   │   ├── ComparisonFailureTest.php
│   │   │   ├── DateTimeComparatorTest.php
│   │   │   ├── DOMNodeComparatorTest.php
│   │   │   ├── DoubleComparatorTest.php
│   │   │   ├── ExceptionComparatorTest.php
│   │   │   ├── FactoryTest.php
│   │   │   ├── _fixture
│   │   │   │   ├── Author.php
│   │   │   │   ├── Book.php
│   │   │   │   ├── ClassWithToString.php
│   │   │   │   ├── SampleClass.php
│   │   │   │   ├── Struct.php
│   │   │   │   ├── TestClassComparator.php
│   │   │   │   └── TestClass.php
│   │   │   ├── MockObjectComparatorTest.php
│   │   │   ├── NumericComparatorTest.php
│   │   │   ├── ObjectComparatorTest.php
│   │   │   ├── ResourceComparatorTest.php
│   │   │   ├── ScalarComparatorTest.php
│   │   │   ├── SplObjectStorageComparatorTest.php
│   │   │   └── TypeComparatorTest.php
│   │   ├── diff
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Chunk.php
│   │   │   │   ├── Differ.php
│   │   │   │   ├── Diff.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── ConfigurationException.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   └── InvalidArgumentException.php
│   │   │   │   ├── Line.php
│   │   │   │   ├── LongestCommonSubsequenceCalculator.php
│   │   │   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php
│   │   │   │   ├── Output
│   │   │   │   │   ├── AbstractChunkOutputBuilder.php
│   │   │   │   │   ├── DiffOnlyOutputBuilder.php
│   │   │   │   │   ├── DiffOutputBuilderInterface.php
│   │   │   │   │   ├── StrictUnifiedDiffOutputBuilder.php
│   │   │   │   │   └── UnifiedDiffOutputBuilder.php
│   │   │   │   ├── Parser.php
│   │   │   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php
│   │   │   └── tests
│   │   │   ├── ChunkTest.php
│   │   │   ├── DifferTest.php
│   │   │   ├── DiffTest.php
│   │   │   ├── Exception
│   │   │   │   ├── ConfigurationExceptionTest.php
│   │   │   │   └── InvalidArgumentExceptionTest.php
│   │   │   ├── fixtures
│   │   │   │   ├── out
│   │   │   │   ├── patch2.txt
│   │   │   │   ├── patch.txt
│   │   │   │   ├── serialized_diff.bin
│   │   │   │   └── UnifiedDiffAssertTraitIntegrationTest
│   │   │   │   ├── 1_a.txt
│   │   │   │   ├── 1_b.txt
│   │   │   │   ├── 2_a.txt
│   │   │   │   └── 2_b.txt
│   │   │   ├── LineTest.php
│   │   │   ├── LongestCommonSubsequenceTest.php
│   │   │   ├── MemoryEfficientImplementationTest.php
│   │   │   ├── Output
│   │   │   │   ├── AbstractChunkOutputBuilderTest.php
│   │   │   │   ├── DiffOnlyOutputBuilderTest.php
│   │   │   │   ├── Integration
│   │   │   │   │   ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php
│   │   │   │   │   └── UnifiedDiffOutputBuilderIntegrationTest.php
│   │   │   │   ├── StrictUnifiedDiffOutputBuilderDataProvider.php
│   │   │   │   ├── StrictUnifiedDiffOutputBuilderTest.php
│   │   │   │   ├── UnifiedDiffOutputBuilderDataProvider.php
│   │   │   │   └── UnifiedDiffOutputBuilderTest.php
│   │   │   ├── ParserTest.php
│   │   │   ├── TimeEfficientImplementationTest.php
│   │   │   └── Utils
│   │   │   ├── FileUtils.php
│   │   │   ├── UnifiedDiffAssertTraitIntegrationTest.php
│   │   │   ├── UnifiedDiffAssertTrait.php
│   │   │   └── UnifiedDiffAssertTraitTest.php
│   │   ├── environment
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Console.php
│   │   │   │   ├── OperatingSystem.php
│   │   │   │   └── Runtime.php
│   │   │   └── tests
│   │   │   ├── ConsoleTest.php
│   │   │   ├── OperatingSystemTest.php
│   │   │   └── RuntimeTest.php
│   │   ├── exporter
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   └── Exporter.php
│   │   │   └── tests
│   │   │   └── ExporterTest.php
│   │   ├── finder-facade
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Configuration.php
│   │   │   │   └── FinderFacade.php
│   │   │   └── tests
│   │   │   ├── ConfigurationTest.php
│   │   │   ├── FinderFacadeTest.php
│   │   │   └── fixture
│   │   │   ├── bar.phtml
│   │   │   ├── foo
│   │   │   │   ├── bar
│   │   │   │   │   └── baz.php
│   │   │   │   ├── bar.php
│   │   │   │   └── foo.fail.php
│   │   │   └── test.xml
│   │   ├── global-state
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Blacklist.php
│   │   │   │   ├── CodeExporter.php
│   │   │   │   ├── exceptions
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── Restorer.php
│   │   │   │   └── Snapshot.php
│   │   │   └── tests
│   │   │   ├── BlacklistTest.php
│   │   │   ├── CodeExporterTest.php
│   │   │   ├── _fixture
│   │   │   │   ├── BlacklistedChildClass.php
│   │   │   │   ├── BlacklistedClass.php
│   │   │   │   ├── BlacklistedImplementor.php
│   │   │   │   ├── BlacklistedInterface.php
│   │   │   │   ├── SnapshotClass.php
│   │   │   │   ├── SnapshotDomDocument.php
│   │   │   │   ├── SnapshotFunctions.php
│   │   │   │   └── SnapshotTrait.php
│   │   │   ├── RestorerTest.php
│   │   │   └── SnapshotTest.php
│   │   ├── object-enumerator
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Enumerator.php
│   │   │   │   ├── Exception.php
│   │   │   │   └── InvalidArgumentException.php
│   │   │   └── tests
│   │   │   ├── EnumeratorTest.php
│   │   │   └── _fixture
│   │   │   └── ExceptionThrower.php
│   │   ├── object-reflector
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Exception.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   └── ObjectReflector.php
│   │   │   └── tests
│   │   │   ├── _fixture
│   │   │   │   ├── ChildClass.php
│   │   │   │   ├── ClassWithIntegerAttributeName.php
│   │   │   │   └── ParentClass.php
│   │   │   └── ObjectReflectorTest.php
│   │   ├── recursion-context
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Context.php
│   │   │   │   ├── Exception.php
│   │   │   │   └── InvalidArgumentException.php
│   │   │   └── tests
│   │   │   └── ContextTest.php
│   │   ├── resource-operations
│   │   │   ├── build
│   │   │   │   └── generate.php
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   └── ResourceOperations.php
│   │   │   └── tests
│   │   │   └── ResourceOperationsTest.php
│   │   └── version
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── Version.php
│   ├── setasign
│   │   └── fpdi
│   │   ├── composer.json
│   │   ├── filters
│   │   │   ├── FilterASCII85.php
│   │   │   ├── FilterASCIIHexDecode.php
│   │   │   └── FilterLZW.php
│   │   ├── fpdf_tpl.php
│   │   ├── fpdi_bridge.php
│   │   ├── fpdi_pdf_parser.php
│   │   ├── fpdi.php
│   │   ├── LICENSE
│   │   ├── pdf_context.php
│   │   ├── pdf_parser.php
│   │   └── README.md
│   ├── squizlabs
│   │   └── php_codesniffer
│   │   ├── CodeSniffer
│   │   │   ├── CLI.php
│   │   │   ├── DocGenerators
│   │   │   │   ├── Generator.php
│   │   │   │   ├── HTML.php
│   │   │   │   ├── Markdown.php
│   │   │   │   └── Text.php
│   │   │   ├── Exception.php
│   │   │   ├── File.php
│   │   │   ├── Fixer.php
│   │   │   ├── Reporting.php
│   │   │   ├── Report.php
│   │   │   ├── Reports
│   │   │   │   ├── Cbf.php
│   │   │   │   ├── Checkstyle.php
│   │   │   │   ├── Csv.php
│   │   │   │   ├── Diff.php
│   │   │   │   ├── Emacs.php
│   │   │   │   ├── Full.php
│   │   │   │   ├── Gitblame.php
│   │   │   │   ├── Hgblame.php
│   │   │   │   ├── Info.php
│   │   │   │   ├── Json.php
│   │   │   │   ├── Junit.php
│   │   │   │   ├── Notifysend.php
│   │   │   │   ├── Source.php
│   │   │   │   ├── Summary.php
│   │   │   │   ├── Svnblame.php
│   │   │   │   ├── VersionControl.php
│   │   │   │   └── Xml.php
│   │   │   ├── Sniff.php
│   │   │   ├── Standards
│   │   │   │   ├── AbstractPatternSniff.php
│   │   │   │   ├── AbstractScopeSniff.php
│   │   │   │   ├── AbstractVariableSniff.php
│   │   │   │   ├── Generic
│   │   │   │   │   ├── Docs
│   │   │   │   │   │   ├── Classes
│   │   │   │   │   │   │   ├── DuplicateClassNameStandard.xml
│   │   │   │   │   │   │   └── OpeningBraceSameLineStandard.xml
│   │   │   │   │   │   ├── CodeAnalysis
│   │   │   │   │   │   │   ├── EmptyStatementStandard.xml
│   │   │   │   │   │   │   ├── ForLoopShouldBeWhileLoopStandard.xml
│   │   │   │   │   │   │   ├── ForLoopWithTestFunctionCallStandard.xml
│   │   │   │   │   │   │   ├── JumbledIncrementerStandard.xml
│   │   │   │   │   │   │   ├── UnconditionalIfStatementStandard.xml
│   │   │   │   │   │   │   ├── UnnecessaryFinalModifierStandard.xml
│   │   │   │   │   │   │   ├── UnusedFunctionParameterStandard.xml
│   │   │   │   │   │   │   └── UselessOverridingMethodStandard.xml
│   │   │   │   │   │   ├── Commenting
│   │   │   │   │   │   │   ├── FixmeStandard.xml
│   │   │   │   │   │   │   └── TodoStandard.xml
│   │   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   │   └── InlineControlStructureStandard.xml
│   │   │   │   │   │   ├── Debug
│   │   │   │   │   │   │   ├── ClosureLinterStandard.xml
│   │   │   │   │   │   │   ├── CSSLintStandard.xml
│   │   │   │   │   │   │   └── JSHintStandard.xml
│   │   │   │   │   │   ├── Files
│   │   │   │   │   │   │   ├── ByteOrderMarkStandard.xml
│   │   │   │   │   │   │   ├── EndFileNewlineStandard.xml
│   │   │   │   │   │   │   ├── EndFileNoNewlineStandard.xml
│   │   │   │   │   │   │   ├── InlineHTMLStandard.xml
│   │   │   │   │   │   │   ├── LineEndingsStandard.xml
│   │   │   │   │   │   │   ├── LineLengthStandard.xml
│   │   │   │   │   │   │   ├── LowercasedFilenameStandard.xml
│   │   │   │   │   │   │   ├── OneClassPerFileStandard.xml
│   │   │   │   │   │   │   └── OneInterfacePerFileStandard.xml
│   │   │   │   │   │   ├── Formatting
│   │   │   │   │   │   │   ├── DisallowMultipleStatementsStandard.xml
│   │   │   │   │   │   │   ├── MultipleStatementAlignmentStandard.xml
│   │   │   │   │   │   │   ├── NoSpaceAfterCastStandard.xml
│   │   │   │   │   │   │   └── SpaceAfterCastStandard.xml
│   │   │   │   │   │   ├── Functions
│   │   │   │   │   │   │   ├── CallTimePassByReferenceStandard.xml
│   │   │   │   │   │   │   ├── FunctionCallArgumentSpacingStandard.xml
│   │   │   │   │   │   │   ├── OpeningFunctionBraceBsdAllmanStandard.xml
│   │   │   │   │   │   │   └── OpeningFunctionBraceKernighanRitchieStandard.xml
│   │   │   │   │   │   ├── Metrics
│   │   │   │   │   │   │   ├── CyclomaticComplexityStandard.xml
│   │   │   │   │   │   │   └── NestingLevelStandard.xml
│   │   │   │   │   │   ├── NamingConventions
│   │   │   │   │   │   │   ├── CamelCapsFunctionNameStandard.xml
│   │   │   │   │   │   │   ├── ConstructorNameStandard.xml
│   │   │   │   │   │   │   └── UpperCaseConstantNameStandard.xml
│   │   │   │   │   │   ├── PHP
│   │   │   │   │   │   │   ├── BacktickOperatorStandard.xml
│   │   │   │   │   │   │   ├── CharacterBeforePHPOpeningTagStandard.xml
│   │   │   │   │   │   │   ├── ClosingPHPTagStandard.xml
│   │   │   │   │   │   │   ├── DeprecatedFunctionsStandard.xml
│   │   │   │   │   │   │   ├── DisallowAlternativePHPTagsStandard.xml
│   │   │   │   │   │   │   ├── DisallowShortOpenTagStandard.xml
│   │   │   │   │   │   │   ├── ForbiddenFunctionsStandard.xml
│   │   │   │   │   │   │   ├── LowerCaseConstantStandard.xml
│   │   │   │   │   │   │   ├── LowerCaseKeywordStandard.xml
│   │   │   │   │   │   │   ├── NoSilencedErrorsStandard.xml
│   │   │   │   │   │   │   ├── SAPIUsageStandard.xml
│   │   │   │   │   │   │   └── UpperCaseConstantStandard.xml
│   │   │   │   │   │   ├── Strings
│   │   │   │   │   │   │   └── UnnecessaryStringConcatStandard.xml
│   │   │   │   │   │   ├── VersionControl
│   │   │   │   │   │   │   └── SubversionPropertiesStandard.xml
│   │   │   │   │   │   └── WhiteSpace
│   │   │   │   │   │   ├── DisallowSpaceIndentStandard.xml
│   │   │   │   │   │   ├── DisallowTabIndentStandard.xml
│   │   │   │   │   │   └── ScopeIndentStandard.xml
│   │   │   │   │   ├── ruleset.xml
│   │   │   │   │   └── Sniffs
│   │   │   │   │   ├── Arrays
│   │   │   │   │   │   ├── DisallowLongArraySyntaxSniff.php
│   │   │   │   │   │   └── DisallowShortArraySyntaxSniff.php
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   ├── DuplicateClassNameSniff.php
│   │   │   │   │   │   └── OpeningBraceSameLineSniff.php
│   │   │   │   │   ├── CodeAnalysis
│   │   │   │   │   │   ├── EmptyStatementSniff.php
│   │   │   │   │   │   ├── ForLoopShouldBeWhileLoopSniff.php
│   │   │   │   │   │   ├── ForLoopWithTestFunctionCallSniff.php
│   │   │   │   │   │   ├── JumbledIncrementerSniff.php
│   │   │   │   │   │   ├── UnconditionalIfStatementSniff.php
│   │   │   │   │   │   ├── UnnecessaryFinalModifierSniff.php
│   │   │   │   │   │   ├── UnusedFunctionParameterSniff.php
│   │   │   │   │   │   └── UselessOverridingMethodSniff.php
│   │   │   │   │   ├── Commenting
│   │   │   │   │   │   ├── DocCommentSniff.php
│   │   │   │   │   │   ├── FixmeSniff.php
│   │   │   │   │   │   └── TodoSniff.php
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   └── InlineControlStructureSniff.php
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── ClosureLinterSniff.php
│   │   │   │   │   │   ├── CSSLintSniff.php
│   │   │   │   │   │   ├── ESLintSniff.php
│   │   │   │   │   │   └── JSHintSniff.php
│   │   │   │   │   ├── Files
│   │   │   │   │   │   ├── ByteOrderMarkSniff.php
│   │   │   │   │   │   ├── EndFileNewlineSniff.php
│   │   │   │   │   │   ├── EndFileNoNewlineSniff.php
│   │   │   │   │   │   ├── InlineHTMLSniff.php
│   │   │   │   │   │   ├── LineEndingsSniff.php
│   │   │   │   │   │   ├── LineLengthSniff.php
│   │   │   │   │   │   ├── LowercasedFilenameSniff.php
│   │   │   │   │   │   ├── OneClassPerFileSniff.php
│   │   │   │   │   │   ├── OneInterfacePerFileSniff.php
│   │   │   │   │   │   └── OneTraitPerFileSniff.php
│   │   │   │   │   ├── Formatting
│   │   │   │   │   │   ├── DisallowMultipleStatementsSniff.php
│   │   │   │   │   │   ├── MultipleStatementAlignmentSniff.php
│   │   │   │   │   │   ├── NoSpaceAfterCastSniff.php
│   │   │   │   │   │   ├── SpaceAfterCastSniff.php
│   │   │   │   │   │   └── SpaceAfterNotSniff.php
│   │   │   │   │   ├── Functions
│   │   │   │   │   │   ├── CallTimePassByReferenceSniff.php
│   │   │   │   │   │   ├── FunctionCallArgumentSpacingSniff.php
│   │   │   │   │   │   ├── OpeningFunctionBraceBsdAllmanSniff.php
│   │   │   │   │   │   └── OpeningFunctionBraceKernighanRitchieSniff.php
│   │   │   │   │   ├── Metrics
│   │   │   │   │   │   ├── CyclomaticComplexitySniff.php
│   │   │   │   │   │   └── NestingLevelSniff.php
│   │   │   │   │   ├── NamingConventions
│   │   │   │   │   │   ├── CamelCapsFunctionNameSniff.php
│   │   │   │   │   │   ├── ConstructorNameSniff.php
│   │   │   │   │   │   └── UpperCaseConstantNameSniff.php
│   │   │   │   │   ├── PHP
│   │   │   │   │   │   ├── BacktickOperatorSniff.php
│   │   │   │   │   │   ├── CharacterBeforePHPOpeningTagSniff.php
│   │   │   │   │   │   ├── ClosingPHPTagSniff.php
│   │   │   │   │   │   ├── DeprecatedFunctionsSniff.php
│   │   │   │   │   │   ├── DisallowAlternativePHPTagsSniff.php
│   │   │   │   │   │   ├── DisallowShortOpenTagSniff.php
│   │   │   │   │   │   ├── ForbiddenFunctionsSniff.php
│   │   │   │   │   │   ├── LowerCaseConstantSniff.php
│   │   │   │   │   │   ├── LowerCaseKeywordSniff.php
│   │   │   │   │   │   ├── NoSilencedErrorsSniff.php
│   │   │   │   │   │   ├── SAPIUsageSniff.php
│   │   │   │   │   │   ├── SyntaxSniff.php
│   │   │   │   │   │   └── UpperCaseConstantSniff.php
│   │   │   │   │   ├── Strings
│   │   │   │   │   │   └── UnnecessaryStringConcatSniff.php
│   │   │   │   │   ├── VersionControl
│   │   │   │   │   │   └── SubversionPropertiesSniff.php
│   │   │   │   │   └── WhiteSpace
│   │   │   │   │   ├── DisallowSpaceIndentSniff.php
│   │   │   │   │   ├── DisallowTabIndentSniff.php
│   │   │   │   │   └── ScopeIndentSniff.php
│   │   │   │   ├── IncorrectPatternException.php
│   │   │   │   ├── MySource
│   │   │   │   │   ├── ruleset.xml
│   │   │   │   │   └── Sniffs
│   │   │   │   │   ├── Channels
│   │   │   │   │   │   ├── DisallowSelfActionsSniff.php
│   │   │   │   │   │   ├── IncludeOwnSystemSniff.php
│   │   │   │   │   │   ├── IncludeSystemSniff.php
│   │   │   │   │   │   └── UnusedSystemSniff.php
│   │   │   │   │   ├── Commenting
│   │   │   │   │   │   └── FunctionCommentSniff.php
│   │   │   │   │   ├── CSS
│   │   │   │   │   │   └── BrowserSpecificStylesSniff.php
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── DebugCodeSniff.php
│   │   │   │   │   │   └── FirebugConsoleSniff.php
│   │   │   │   │   ├── Objects
│   │   │   │   │   │   ├── AssignThisSniff.php
│   │   │   │   │   │   ├── CreateWidgetTypeCallbackSniff.php
│   │   │   │   │   │   └── DisallowNewWidgetSniff.php
│   │   │   │   │   ├── PHP
│   │   │   │   │   │   ├── AjaxNullComparisonSniff.php
│   │   │   │   │   │   ├── EvalObjectFactorySniff.php
│   │   │   │   │   │   ├── GetRequestDataSniff.php
│   │   │   │   │   │   └── ReturnFunctionValueSniff.php
│   │   │   │   │   └── Strings
│   │   │   │   │   └── JoinStringsSniff.php
│   │   │   │   ├── PEAR
│   │   │   │   │   ├── Docs
│   │   │   │   │   │   ├── Classes
│   │   │   │   │   │   │   └── ClassDeclarationStandard.xml
│   │   │   │   │   │   ├── Commenting
│   │   │   │   │   │   │   ├── ClassCommentStandard.xml
│   │   │   │   │   │   │   ├── FileCommentStandard.xml
│   │   │   │   │   │   │   ├── FunctionCommentStandard.xml
│   │   │   │   │   │   │   └── InlineCommentStandard.xml
│   │   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   │   ├── ControlSignatureStandard.xml
│   │   │   │   │   │   │   └── MultiLineConditionStandard.xml
│   │   │   │   │   │   ├── Files
│   │   │   │   │   │   │   ├── IncludingFileStandard.xml
│   │   │   │   │   │   │   └── LineLengthStandard.xml
│   │   │   │   │   │   ├── Formatting
│   │   │   │   │   │   │   └── MultiLineAssignmentStandard.xml
│   │   │   │   │   │   ├── Functions
│   │   │   │   │   │   │   ├── FunctionCallSignatureStandard.xml
│   │   │   │   │   │   │   ├── FunctionDeclarationStandard.xml
│   │   │   │   │   │   │   └── ValidDefaultValueStandard.xml
│   │   │   │   │   │   ├── NamingConventions
│   │   │   │   │   │   │   ├── ValidClassNameStandard.xml
│   │   │   │   │   │   │   ├── ValidFunctionNameStandard.xml
│   │   │   │   │   │   │   └── ValidVariableNameStandard.xml
│   │   │   │   │   │   └── WhiteSpace
│   │   │   │   │   │   ├── ObjectOperatorIndentStandard.xml
│   │   │   │   │   │   ├── ScopeClosingBraceStandard.xml
│   │   │   │   │   │   └── ScopeIndentStandard.xml
│   │   │   │   │   ├── ruleset.xml
│   │   │   │   │   └── Sniffs
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   └── ClassDeclarationSniff.php
│   │   │   │   │   ├── Commenting
│   │   │   │   │   │   ├── ClassCommentSniff.php
│   │   │   │   │   │   ├── FileCommentSniff.php
│   │   │   │   │   │   ├── FunctionCommentSniff.php
│   │   │   │   │   │   └── InlineCommentSniff.php
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   ├── ControlSignatureSniff.php
│   │   │   │   │   │   └── MultiLineConditionSniff.php
│   │   │   │   │   ├── Files
│   │   │   │   │   │   └── IncludingFileSniff.php
│   │   │   │   │   ├── Formatting
│   │   │   │   │   │   └── MultiLineAssignmentSniff.php
│   │   │   │   │   ├── Functions
│   │   │   │   │   │   ├── FunctionCallSignatureSniff.php
│   │   │   │   │   │   ├── FunctionDeclarationSniff.php
│   │   │   │   │   │   └── ValidDefaultValueSniff.php
│   │   │   │   │   ├── NamingConventions
│   │   │   │   │   │   ├── ValidClassNameSniff.php
│   │   │   │   │   │   ├── ValidFunctionNameSniff.php
│   │   │   │   │   │   └── ValidVariableNameSniff.php
│   │   │   │   │   └── WhiteSpace
│   │   │   │   │   ├── ObjectOperatorIndentSniff.php
│   │   │   │   │   ├── ScopeClosingBraceSniff.php
│   │   │   │   │   └── ScopeIndentSniff.php
│   │   │   │   ├── PHPCS
│   │   │   │   │   └── ruleset.xml
│   │   │   │   ├── PSR1
│   │   │   │   │   ├── Docs
│   │   │   │   │   │   ├── Classes
│   │   │   │   │   │   │   └── ClassDeclarationStandard.xml
│   │   │   │   │   │   └── Files
│   │   │   │   │   │   └── SideEffectsStandard.xml
│   │   │   │   │   ├── ruleset.xml
│   │   │   │   │   └── Sniffs
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   └── ClassDeclarationSniff.php
│   │   │   │   │   ├── Files
│   │   │   │   │   │   └── SideEffectsSniff.php
│   │   │   │   │   └── Methods
│   │   │   │   │   └── CamelCapsMethodNameSniff.php
│   │   │   │   ├── PSR2
│   │   │   │   │   ├── Docs
│   │   │   │   │   │   ├── Classes
│   │   │   │   │   │   │   ├── ClassDeclarationStandard.xml
│   │   │   │   │   │   │   └── PropertyDeclarationStandard.xml
│   │   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   │   ├── ControlStructureSpacingStandard.xml
│   │   │   │   │   │   │   ├── ElseIfDeclarationStandard.xml
│   │   │   │   │   │   │   └── SwitchDeclarationStandard.xml
│   │   │   │   │   │   ├── Files
│   │   │   │   │   │   │   └── EndFileNewlineStandard.xml
│   │   │   │   │   │   ├── Methods
│   │   │   │   │   │   │   └── MethodDeclarationStandard.xml
│   │   │   │   │   │   └── Namespaces
│   │   │   │   │   │   ├── NamespaceDeclarationStandard.xml
│   │   │   │   │   │   └── UseDeclarationStandard.xml
│   │   │   │   │   ├── ruleset.xml
│   │   │   │   │   └── Sniffs
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   ├── ClassDeclarationSniff.php
│   │   │   │   │   │   └── PropertyDeclarationSniff.php
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   ├── ControlStructureSpacingSniff.php
│   │   │   │   │   │   ├── ElseIfDeclarationSniff.php
│   │   │   │   │   │   └── SwitchDeclarationSniff.php
│   │   │   │   │   ├── Files
│   │   │   │   │   │   ├── ClosingTagSniff.php
│   │   │   │   │   │   └── EndFileNewlineSniff.php
│   │   │   │   │   ├── Methods
│   │   │   │   │   │   ├── FunctionCallSignatureSniff.php
│   │   │   │   │   │   ├── FunctionClosingBraceSniff.php
│   │   │   │   │   │   └── MethodDeclarationSniff.php
│   │   │   │   │   └── Namespaces
│   │   │   │   │   ├── NamespaceDeclarationSniff.php
│   │   │   │   │   └── UseDeclarationSniff.php
│   │   │   │   ├── Squiz
│   │   │   │   │   ├── Docs
│   │   │   │   │   │   ├── Arrays
│   │   │   │   │   │   │   ├── ArrayBracketSpacingStandard.xml
│   │   │   │   │   │   │   └── ArrayDeclarationStandard.xml
│   │   │   │   │   │   ├── Classes
│   │   │   │   │   │   │   ├── LowercaseClassKeywordsStandard.xml
│   │   │   │   │   │   │   └── SelfMemberReferenceStandard.xml
│   │   │   │   │   │   ├── Commenting
│   │   │   │   │   │   │   ├── DocCommentAlignmentStandard.xml
│   │   │   │   │   │   │   └── FunctionCommentThrowTagStandard.xml
│   │   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   │   ├── ForEachLoopDeclarationStandard.xml
│   │   │   │   │   │   │   ├── ForLoopDeclarationStandard.xml
│   │   │   │   │   │   │   └── LowercaseDeclarationStandard.xml
│   │   │   │   │   │   ├── Functions
│   │   │   │   │   │   │   ├── FunctionDuplicateArgumentStandard.xml
│   │   │   │   │   │   │   └── LowercaseFunctionKeywordsStandard.xml
│   │   │   │   │   │   ├── Scope
│   │   │   │   │   │   │   └── StaticThisUsageStandard.xml
│   │   │   │   │   │   ├── Strings
│   │   │   │   │   │   │   └── EchoedStringsStandard.xml
│   │   │   │   │   │   └── WhiteSpace
│   │   │   │   │   │   ├── CastSpacingStandard.xml
│   │   │   │   │   │   ├── FunctionOpeningBraceStandard.xml
│   │   │   │   │   │   ├── LanguageConstructSpacingStandard.xml
│   │   │   │   │   │   ├── ObjectOperatorSpacingStandard.xml
│   │   │   │   │   │   ├── ScopeKeywordSpacingStandard.xml
│   │   │   │   │   │   └── SemicolonSpacingStandard.xml
│   │   │   │   │   ├── ruleset.xml
│   │   │   │   │   └── Sniffs
│   │   │   │   │   ├── Arrays
│   │   │   │   │   │   ├── ArrayBracketSpacingSniff.php
│   │   │   │   │   │   └── ArrayDeclarationSniff.php
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   ├── ClassDeclarationSniff.php
│   │   │   │   │   │   ├── ClassFileNameSniff.php
│   │   │   │   │   │   ├── DuplicatePropertySniff.php
│   │   │   │   │   │   ├── LowercaseClassKeywordsSniff.php
│   │   │   │   │   │   ├── SelfMemberReferenceSniff.php
│   │   │   │   │   │   └── ValidClassNameSniff.php
│   │   │   │   │   ├── Commenting
│   │   │   │   │   │   ├── BlockCommentSniff.php
│   │   │   │   │   │   ├── ClassCommentSniff.php
│   │   │   │   │   │   ├── ClosingDeclarationCommentSniff.php
│   │   │   │   │   │   ├── DocCommentAlignmentSniff.php
│   │   │   │   │   │   ├── EmptyCatchCommentSniff.php
│   │   │   │   │   │   ├── FileCommentSniff.php
│   │   │   │   │   │   ├── FunctionCommentSniff.php
│   │   │   │   │   │   ├── FunctionCommentThrowTagSniff.php
│   │   │   │   │   │   ├── InlineCommentSniff.php
│   │   │   │   │   │   ├── LongConditionClosingCommentSniff.php
│   │   │   │   │   │   ├── PostStatementCommentSniff.php
│   │   │   │   │   │   └── VariableCommentSniff.php
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   ├── ControlSignatureSniff.php
│   │   │   │   │   │   ├── ElseIfDeclarationSniff.php
│   │   │   │   │   │   ├── ForEachLoopDeclarationSniff.php
│   │   │   │   │   │   ├── ForLoopDeclarationSniff.php
│   │   │   │   │   │   ├── InlineIfDeclarationSniff.php
│   │   │   │   │   │   ├── LowercaseDeclarationSniff.php
│   │   │   │   │   │   └── SwitchDeclarationSniff.php
│   │   │   │   │   ├── CSS
│   │   │   │   │   │   ├── ClassDefinitionClosingBraceSpaceSniff.php
│   │   │   │   │   │   ├── ClassDefinitionNameSpacingSniff.php
│   │   │   │   │   │   ├── ClassDefinitionOpeningBraceSpaceSniff.php
│   │   │   │   │   │   ├── ColonSpacingSniff.php
│   │   │   │   │   │   ├── ColourDefinitionSniff.php
│   │   │   │   │   │   ├── DisallowMultipleStyleDefinitionsSniff.php
│   │   │   │   │   │   ├── DuplicateClassDefinitionSniff.php
│   │   │   │   │   │   ├── DuplicateStyleDefinitionSniff.php
│   │   │   │   │   │   ├── EmptyClassDefinitionSniff.php
│   │   │   │   │   │   ├── EmptyStyleDefinitionSniff.php
│   │   │   │   │   │   ├── ForbiddenStylesSniff.php
│   │   │   │   │   │   ├── IndentationSniff.php
│   │   │   │   │   │   ├── LowercaseStyleDefinitionSniff.php
│   │   │   │   │   │   ├── MissingColonSniff.php
│   │   │   │   │   │   ├── NamedColoursSniff.php
│   │   │   │   │   │   ├── OpacitySniff.php
│   │   │   │   │   │   ├── SemicolonSpacingSniff.php
│   │   │   │   │   │   └── ShorthandSizeSniff.php
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── JavaScriptLintSniff.php
│   │   │   │   │   │   └── JSLintSniff.php
│   │   │   │   │   ├── Files
│   │   │   │   │   │   └── FileExtensionSniff.php
│   │   │   │   │   ├── Formatting
│   │   │   │   │   │   └── OperatorBracketSniff.php
│   │   │   │   │   ├── Functions
│   │   │   │   │   │   ├── FunctionDeclarationArgumentSpacingSniff.php
│   │   │   │   │   │   ├── FunctionDeclarationSniff.php
│   │   │   │   │   │   ├── FunctionDuplicateArgumentSniff.php
│   │   │   │   │   │   ├── GlobalFunctionSniff.php
│   │   │   │   │   │   ├── LowercaseFunctionKeywordsSniff.php
│   │   │   │   │   │   └── MultiLineFunctionDeclarationSniff.php
│   │   │   │   │   ├── NamingConventions
│   │   │   │   │   │   ├── ValidFunctionNameSniff.php
│   │   │   │   │   │   └── ValidVariableNameSniff.php
│   │   │   │   │   ├── Objects
│   │   │   │   │   │   ├── DisallowObjectStringIndexSniff.php
│   │   │   │   │   │   ├── ObjectInstantiationSniff.php
│   │   │   │   │   │   └── ObjectMemberCommaSniff.php
│   │   │   │   │   ├── Operators
│   │   │   │   │   │   ├── ComparisonOperatorUsageSniff.php
│   │   │   │   │   │   ├── IncrementDecrementUsageSniff.php
│   │   │   │   │   │   └── ValidLogicalOperatorsSniff.php
│   │   │   │   │   ├── PHP
│   │   │   │   │   │   ├── CommentedOutCodeSniff.php
│   │   │   │   │   │   ├── DisallowBooleanStatementSniff.php
│   │   │   │   │   │   ├── DisallowComparisonAssignmentSniff.php
│   │   │   │   │   │   ├── DisallowInlineIfSniff.php
│   │   │   │   │   │   ├── DisallowMultipleAssignmentsSniff.php
│   │   │   │   │   │   ├── DisallowObEndFlushSniff.php
│   │   │   │   │   │   ├── DisallowSizeFunctionsInLoopsSniff.php
│   │   │   │   │   │   ├── DiscouragedFunctionsSniff.php
│   │   │   │   │   │   ├── EmbeddedPhpSniff.php
│   │   │   │   │   │   ├── EvalSniff.php
│   │   │   │   │   │   ├── ForbiddenFunctionsSniff.php
│   │   │   │   │   │   ├── GlobalKeywordSniff.php
│   │   │   │   │   │   ├── HeredocSniff.php
│   │   │   │   │   │   ├── InnerFunctionsSniff.php
│   │   │   │   │   │   ├── LowercasePHPFunctionsSniff.php
│   │   │   │   │   │   └── NonExecutableCodeSniff.php
│   │   │   │   │   ├── Scope
│   │   │   │   │   │   ├── MemberVarScopeSniff.php
│   │   │   │   │   │   ├── MethodScopeSniff.php
│   │   │   │   │   │   └── StaticThisUsageSniff.php
│   │   │   │   │   ├── Strings
│   │   │   │   │   │   ├── ConcatenationSpacingSniff.php
│   │   │   │   │   │   ├── DoubleQuoteUsageSniff.php
│   │   │   │   │   │   └── EchoedStringsSniff.php
│   │   │   │   │   └── WhiteSpace
│   │   │   │   │   ├── CastSpacingSniff.php
│   │   │   │   │   ├── ControlStructureSpacingSniff.php
│   │   │   │   │   ├── FunctionClosingBraceSpaceSniff.php
│   │   │   │   │   ├── FunctionOpeningBraceSpaceSniff.php
│   │   │   │   │   ├── FunctionSpacingSniff.php
│   │   │   │   │   ├── LanguageConstructSpacingSniff.php
│   │   │   │   │   ├── LogicalOperatorSpacingSniff.php
│   │   │   │   │   ├── MemberVarSpacingSniff.php
│   │   │   │   │   ├── ObjectOperatorSpacingSniff.php
│   │   │   │   │   ├── OperatorSpacingSniff.php
│   │   │   │   │   ├── PropertyLabelSpacingSniff.php
│   │   │   │   │   ├── ScopeClosingBraceSniff.php
│   │   │   │   │   ├── ScopeKeywordSpacingSniff.php
│   │   │   │   │   ├── SemicolonSpacingSniff.php
│   │   │   │   │   └── SuperfluousWhitespaceSniff.php
│   │   │   │   └── Zend
│   │   │   │   ├── Docs
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   └── CodeAnalyzerStandard.xml
│   │   │   │   │   ├── Files
│   │   │   │   │   │   └── ClosingTagStandard.xml
│   │   │   │   │   └── NamingConventions
│   │   │   │   │   └── ValidVariableNameStandard.xml
│   │   │   │   ├── ruleset.xml
│   │   │   │   └── Sniffs
│   │   │   │   ├── Debug
│   │   │   │   │   └── CodeAnalyzerSniff.php
│   │   │   │   ├── Files
│   │   │   │   │   └── ClosingTagSniff.php
│   │   │   │   └── NamingConventions
│   │   │   │   └── ValidVariableNameSniff.php
│   │   │   ├── Tokenizers
│   │   │   │   ├── Comment.php
│   │   │   │   ├── CSS.php
│   │   │   │   ├── JS.php
│   │   │   │   └── PHP.php
│   │   │   └── Tokens.php
│   │   ├── CodeSniffer.conf.dist
│   │   ├── CodeSniffer.php
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── licence.txt
│   │   ├── phpcs.xml.dist
│   │   ├── README.md
│   │   └── scripts
│   │   ├── build-phar.php
│   │   ├── phpcbf
│   │   ├── phpcbf.bat
│   │   ├── phpcs
│   │   ├── phpcs.bat
│   │   └── phpcs-svn-pre-commit
│   ├── symfony
│   │   ├── config
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── ConfigCacheFactoryInterface.php
│   │   │   ├── ConfigCacheFactory.php
│   │   │   ├── ConfigCacheInterface.php
│   │   │   ├── ConfigCache.php
│   │   │   ├── Definition
│   │   │   │   ├── ArrayNode.php
│   │   │   │   ├── BaseNode.php
│   │   │   │   ├── BooleanNode.php
│   │   │   │   ├── Builder
│   │   │   │   │   ├── ArrayNodeDefinition.php
│   │   │   │   │   ├── BooleanNodeDefinition.php
│   │   │   │   │   ├── BuilderAwareInterface.php
│   │   │   │   │   ├── EnumNodeDefinition.php
│   │   │   │   │   ├── ExprBuilder.php
│   │   │   │   │   ├── FloatNodeDefinition.php
│   │   │   │   │   ├── IntegerNodeDefinition.php
│   │   │   │   │   ├── MergeBuilder.php
│   │   │   │   │   ├── NodeBuilder.php
│   │   │   │   │   ├── NodeDefinition.php
│   │   │   │   │   ├── NodeParentInterface.php
│   │   │   │   │   ├── NormalizationBuilder.php
│   │   │   │   │   ├── NumericNodeDefinition.php
│   │   │   │   │   ├── ParentNodeDefinitionInterface.php
│   │   │   │   │   ├── ScalarNodeDefinition.php
│   │   │   │   │   ├── TreeBuilder.php
│   │   │   │   │   ├── ValidationBuilder.php
│   │   │   │   │   └── VariableNodeDefinition.php
│   │   │   │   ├── ConfigurationInterface.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── XmlReferenceDumper.php
│   │   │   │   │   └── YamlReferenceDumper.php
│   │   │   │   ├── EnumNode.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── DuplicateKeyException.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── ForbiddenOverwriteException.php
│   │   │   │   │   ├── InvalidConfigurationException.php
│   │   │   │   │   ├── InvalidDefinitionException.php
│   │   │   │   │   ├── InvalidTypeException.php
│   │   │   │   │   ├── TreeWithoutRootNodeException.php
│   │   │   │   │   └── UnsetKeyException.php
│   │   │   │   ├── FloatNode.php
│   │   │   │   ├── IntegerNode.php
│   │   │   │   ├── NodeInterface.php
│   │   │   │   ├── NumericNode.php
│   │   │   │   ├── Processor.php
│   │   │   │   ├── PrototypedArrayNode.php
│   │   │   │   ├── PrototypeNodeInterface.php
│   │   │   │   ├── ScalarNode.php
│   │   │   │   └── VariableNode.php
│   │   │   ├── Exception
│   │   │   │   ├── FileLoaderImportCircularReferenceException.php
│   │   │   │   ├── FileLoaderLoadException.php
│   │   │   │   ├── FileLocatorFileNotFoundException.php
│   │   │   │   └── LoaderLoadException.php
│   │   │   ├── FileLocatorInterface.php
│   │   │   ├── FileLocator.php
│   │   │   ├── LICENSE
│   │   │   ├── Loader
│   │   │   │   ├── DelegatingLoader.php
│   │   │   │   ├── FileLoader.php
│   │   │   │   ├── GlobFileLoader.php
│   │   │   │   ├── LoaderInterface.php
│   │   │   │   ├── Loader.php
│   │   │   │   ├── LoaderResolverInterface.php
│   │   │   │   └── LoaderResolver.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── Resource
│   │   │   │   ├── ClassExistenceResource.php
│   │   │   │   ├── ComposerResource.php
│   │   │   │   ├── DirectoryResource.php
│   │   │   │   ├── FileExistenceResource.php
│   │   │   │   ├── FileResource.php
│   │   │   │   ├── GlobResource.php
│   │   │   │   ├── ReflectionClassResource.php
│   │   │   │   ├── ResourceInterface.php
│   │   │   │   ├── SelfCheckingResourceChecker.php
│   │   │   │   └── SelfCheckingResourceInterface.php
│   │   │   ├── ResourceCheckerConfigCacheFactory.php
│   │   │   ├── ResourceCheckerConfigCache.php
│   │   │   ├── ResourceCheckerInterface.php
│   │   │   ├── Tests
│   │   │   │   ├── ConfigCacheFactoryTest.php
│   │   │   │   ├── ConfigCacheTest.php
│   │   │   │   ├── Definition
│   │   │   │   │   ├── ArrayNodeTest.php
│   │   │   │   │   ├── BaseNodeTest.php
│   │   │   │   │   ├── BooleanNodeTest.php
│   │   │   │   │   ├── Builder
│   │   │   │   │   │   ├── ArrayNodeDefinitionTest.php
│   │   │   │   │   │   ├── BooleanNodeDefinitionTest.php
│   │   │   │   │   │   ├── EnumNodeDefinitionTest.php
│   │   │   │   │   │   ├── ExprBuilderTest.php
│   │   │   │   │   │   ├── NodeBuilderTest.php
│   │   │   │   │   │   ├── NodeDefinitionTest.php
│   │   │   │   │   │   ├── NumericNodeDefinitionTest.php
│   │   │   │   │   │   └── TreeBuilderTest.php
│   │   │   │   │   ├── Dumper
│   │   │   │   │   │   ├── XmlReferenceDumperTest.php
│   │   │   │   │   │   └── YamlReferenceDumperTest.php
│   │   │   │   │   ├── EnumNodeTest.php
│   │   │   │   │   ├── FinalizationTest.php
│   │   │   │   │   ├── FloatNodeTest.php
│   │   │   │   │   ├── IntegerNodeTest.php
│   │   │   │   │   ├── MergeTest.php
│   │   │   │   │   ├── NormalizationTest.php
│   │   │   │   │   ├── PrototypedArrayNodeTest.php
│   │   │   │   │   └── ScalarNodeTest.php
│   │   │   │   ├── Exception
│   │   │   │   │   └── LoaderLoadExceptionTest.php
│   │   │   │   ├── FileLocatorTest.php
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── Again
│   │   │   │   │   │   └── foo.xml
│   │   │   │   │   ├── BadParent.php
│   │   │   │   │   ├── BarNode.php
│   │   │   │   │   ├── Builder
│   │   │   │   │   │   ├── BarNodeDefinition.php
│   │   │   │   │   │   ├── NodeBuilder.php
│   │   │   │   │   │   └── VariableNodeDefinition.php
│   │   │   │   │   ├── Configuration
│   │   │   │   │   │   └── ExampleConfiguration.php
│   │   │   │   │   ├── Exclude
│   │   │   │   │   │   ├── AnExcludedFile.txt
│   │   │   │   │   │   └── ExcludeToo
│   │   │   │   │   │   └── AnotheExcludedFile.txt
│   │   │   │   │   ├── foo.xml
│   │   │   │   │   ├── Resource
│   │   │   │   │   │   └── ConditionalClass.php
│   │   │   │   │   └── Util
│   │   │   │   │   ├── document_type.xml
│   │   │   │   │   ├── invalid_schema.xml
│   │   │   │   │   ├── invalid.xml
│   │   │   │   │   ├── schema.xsd
│   │   │   │   │   └── valid.xml
│   │   │   │   ├── Loader
│   │   │   │   │   ├── DelegatingLoaderTest.php
│   │   │   │   │   ├── FileLoaderTest.php
│   │   │   │   │   ├── LoaderResolverTest.php
│   │   │   │   │   └── LoaderTest.php
│   │   │   │   ├── Resource
│   │   │   │   │   ├── ClassExistenceResourceTest.php
│   │   │   │   │   ├── ComposerResourceTest.php
│   │   │   │   │   ├── DirectoryResourceTest.php
│   │   │   │   │   ├── FileExistenceResourceTest.php
│   │   │   │   │   ├── FileResourceTest.php
│   │   │   │   │   ├── GlobResourceTest.php
│   │   │   │   │   ├── ReflectionClassResourceTest.php
│   │   │   │   │   └── ResourceStub.php
│   │   │   │   ├── ResourceCheckerConfigCacheTest.php
│   │   │   │   └── Util
│   │   │   │   └── XmlUtilsTest.php
│   │   │   └── Util
│   │   │   ├── Exception
│   │   │   │   ├── InvalidXmlException.php
│   │   │   │   └── XmlParsingException.php
│   │   │   └── XmlUtils.php
│   │   ├── console
│   │   │   ├── Application.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Command
│   │   │   │   ├── Command.php
│   │   │   │   ├── HelpCommand.php
│   │   │   │   ├── ListCommand.php
│   │   │   │   └── LockableTrait.php
│   │   │   ├── CommandLoader
│   │   │   │   ├── CommandLoaderInterface.php
│   │   │   │   ├── ContainerCommandLoader.php
│   │   │   │   └── FactoryCommandLoader.php
│   │   │   ├── composer.json
│   │   │   ├── ConsoleEvents.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── AddConsoleCommandPass.php
│   │   │   ├── Descriptor
│   │   │   │   ├── ApplicationDescription.php
│   │   │   │   ├── DescriptorInterface.php
│   │   │   │   ├── Descriptor.php
│   │   │   │   ├── JsonDescriptor.php
│   │   │   │   ├── MarkdownDescriptor.php
│   │   │   │   ├── TextDescriptor.php
│   │   │   │   └── XmlDescriptor.php
│   │   │   ├── Event
│   │   │   │   ├── ConsoleCommandEvent.php
│   │   │   │   ├── ConsoleErrorEvent.php
│   │   │   │   ├── ConsoleEvent.php
│   │   │   │   └── ConsoleTerminateEvent.php
│   │   │   ├── EventListener
│   │   │   │   └── ErrorListener.php
│   │   │   ├── Exception
│   │   │   │   ├── CommandNotFoundException.php
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── InvalidOptionException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── NamespaceNotFoundException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Formatter
│   │   │   │   ├── OutputFormatterInterface.php
│   │   │   │   ├── OutputFormatter.php
│   │   │   │   ├── OutputFormatterStyleInterface.php
│   │   │   │   ├── OutputFormatterStyle.php
│   │   │   │   ├── OutputFormatterStyleStack.php
│   │   │   │   └── WrappableOutputFormatterInterface.php
│   │   │   ├── Helper
│   │   │   │   ├── DebugFormatterHelper.php
│   │   │   │   ├── DescriptorHelper.php
│   │   │   │   ├── FormatterHelper.php
│   │   │   │   ├── HelperInterface.php
│   │   │   │   ├── Helper.php
│   │   │   │   ├── HelperSet.php
│   │   │   │   ├── InputAwareHelper.php
│   │   │   │   ├── ProcessHelper.php
│   │   │   │   ├── ProgressBar.php
│   │   │   │   ├── ProgressIndicator.php
│   │   │   │   ├── QuestionHelper.php
│   │   │   │   ├── SymfonyQuestionHelper.php
│   │   │   │   ├── TableCell.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TableRows.php
│   │   │   │   ├── TableSeparator.php
│   │   │   │   └── TableStyle.php
│   │   │   ├── Input
│   │   │   │   ├── ArgvInput.php
│   │   │   │   ├── ArrayInput.php
│   │   │   │   ├── InputArgument.php
│   │   │   │   ├── InputAwareInterface.php
│   │   │   │   ├── InputDefinition.php
│   │   │   │   ├── InputInterface.php
│   │   │   │   ├── InputOption.php
│   │   │   │   ├── Input.php
│   │   │   │   ├── StreamableInputInterface.php
│   │   │   │   └── StringInput.php
│   │   │   ├── LICENSE
│   │   │   ├── Logger
│   │   │   │   └── ConsoleLogger.php
│   │   │   ├── Output
│   │   │   │   ├── BufferedOutput.php
│   │   │   │   ├── ConsoleOutputInterface.php
│   │   │   │   ├── ConsoleOutput.php
│   │   │   │   ├── ConsoleSectionOutput.php
│   │   │   │   ├── NullOutput.php
│   │   │   │   ├── OutputInterface.php
│   │   │   │   ├── Output.php
│   │   │   │   └── StreamOutput.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── Question
│   │   │   │   ├── ChoiceQuestion.php
│   │   │   │   ├── ConfirmationQuestion.php
│   │   │   │   └── Question.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── bin
│   │   │   │   └── hiddeninput.exe
│   │   │   ├── Style
│   │   │   │   ├── OutputStyle.php
│   │   │   │   ├── StyleInterface.php
│   │   │   │   └── SymfonyStyle.php
│   │   │   ├── Terminal.php
│   │   │   ├── Tester
│   │   │   │   ├── ApplicationTester.php
│   │   │   │   ├── CommandTester.php
│   │   │   │   └── TesterTrait.php
│   │   │   └── Tests
│   │   │   ├── ApplicationTest.php
│   │   │   ├── Command
│   │   │   │   ├── CommandTest.php
│   │   │   │   ├── HelpCommandTest.php
│   │   │   │   ├── ListCommandTest.php
│   │   │   │   └── LockableTraitTest.php
│   │   │   ├── CommandLoader
│   │   │   │   ├── ContainerCommandLoaderTest.php
│   │   │   │   └── FactoryCommandLoaderTest.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── AddConsoleCommandPassTest.php
│   │   │   ├── Descriptor
│   │   │   │   ├── AbstractDescriptorTest.php
│   │   │   │   ├── JsonDescriptorTest.php
│   │   │   │   ├── MarkdownDescriptorTest.php
│   │   │   │   ├── ObjectsProvider.php
│   │   │   │   ├── TextDescriptorTest.php
│   │   │   │   └── XmlDescriptorTest.php
│   │   │   ├── EventListener
│   │   │   │   └── ErrorListenerTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── application_1.json
│   │   │   │   ├── application_1.md
│   │   │   │   ├── application_1.txt
│   │   │   │   ├── application_1.xml
│   │   │   │   ├── application_2.json
│   │   │   │   ├── application_2.md
│   │   │   │   ├── application_2.txt
│   │   │   │   ├── application_2.xml
│   │   │   │   ├── application_filtered_namespace.txt
│   │   │   │   ├── application_gethelp.txt
│   │   │   │   ├── application_mbstring.md
│   │   │   │   ├── application_mbstring.txt
│   │   │   │   ├── application_renderexception1.txt
│   │   │   │   ├── application_renderexception2.txt
│   │   │   │   ├── application_renderexception3decorated.txt
│   │   │   │   ├── application_renderexception3.txt
│   │   │   │   ├── application_renderexception4.txt
│   │   │   │   ├── application_renderexception_doublewidth1decorated.txt
│   │   │   │   ├── application_renderexception_doublewidth1.txt
│   │   │   │   ├── application_renderexception_doublewidth2.txt
│   │   │   │   ├── application_renderexception_escapeslines.txt
│   │   │   │   ├── application_renderexception_linebreaks.txt
│   │   │   │   ├── application_run1.txt
│   │   │   │   ├── application_run2.txt
│   │   │   │   ├── application_run3.txt
│   │   │   │   ├── application_run4.txt
│   │   │   │   ├── BarBucCommand.php
│   │   │   │   ├── command_1.json
│   │   │   │   ├── command_1.md
│   │   │   │   ├── command_1.txt
│   │   │   │   ├── command_1.xml
│   │   │   │   ├── command_2.json
│   │   │   │   ├── command_2.md
│   │   │   │   ├── command_2.txt
│   │   │   │   ├── command_2.xml
│   │   │   │   ├── command_mbstring.md
│   │   │   │   ├── command_mbstring.txt
│   │   │   │   ├── DescriptorApplication1.php
│   │   │   │   ├── DescriptorApplication2.php
│   │   │   │   ├── DescriptorApplicationMbString.php
│   │   │   │   ├── DescriptorCommand1.php
│   │   │   │   ├── DescriptorCommand2.php
│   │   │   │   ├── DescriptorCommand3.php
│   │   │   │   ├── DescriptorCommand4.php
│   │   │   │   ├── DescriptorCommandMbString.php
│   │   │   │   ├── DummyOutput.php
│   │   │   │   ├── Foo1Command.php
│   │   │   │   ├── Foo2Command.php
│   │   │   │   ├── Foo3Command.php
│   │   │   │   ├── Foo4Command.php
│   │   │   │   ├── Foo5Command.php
│   │   │   │   ├── Foo6Command.php
│   │   │   │   ├── FoobarCommand.php
│   │   │   │   ├── FooCommand.php
│   │   │   │   ├── FooLock2Command.php
│   │   │   │   ├── FooLockCommand.php
│   │   │   │   ├── FooOptCommand.php
│   │   │   │   ├── FooSameCaseLowercaseCommand.php
│   │   │   │   ├── FooSameCaseUppercaseCommand.php
│   │   │   │   ├── FooSubnamespaced1Command.php
│   │   │   │   ├── FooSubnamespaced2Command.php
│   │   │   │   ├── FooWithoutAliasCommand.php
│   │   │   │   ├── input_argument_1.json
│   │   │   │   ├── input_argument_1.md
│   │   │   │   ├── input_argument_1.txt
│   │   │   │   ├── input_argument_1.xml
│   │   │   │   ├── input_argument_2.json
│   │   │   │   ├── input_argument_2.md
│   │   │   │   ├── input_argument_2.txt
│   │   │   │   ├── input_argument_2.xml
│   │   │   │   ├── input_argument_3.json
│   │   │   │   ├── input_argument_3.md
│   │   │   │   ├── input_argument_3.txt
│   │   │   │   ├── input_argument_3.xml
│   │   │   │   ├── input_argument_4.json
│   │   │   │   ├── input_argument_4.md
│   │   │   │   ├── input_argument_4.txt
│   │   │   │   ├── input_argument_4.xml
│   │   │   │   ├── input_argument_with_default_inf_value.json
│   │   │   │   ├── input_argument_with_default_inf_value.md
│   │   │   │   ├── input_argument_with_default_inf_value.txt
│   │   │   │   ├── input_argument_with_default_inf_value.xml
│   │   │   │   ├── input_argument_with_style.json
│   │   │   │   ├── input_argument_with_style.md
│   │   │   │   ├── input_argument_with_style.txt
│   │   │   │   ├── input_argument_with_style.xml
│   │   │   │   ├── input_definition_1.json
│   │   │   │   ├── input_definition_1.md
│   │   │   │   ├── input_definition_1.txt
│   │   │   │   ├── input_definition_1.xml
│   │   │   │   ├── input_definition_2.json
│   │   │   │   ├── input_definition_2.md
│   │   │   │   ├── input_definition_2.txt
│   │   │   │   ├── input_definition_2.xml
│   │   │   │   ├── input_definition_3.json
│   │   │   │   ├── input_definition_3.md
│   │   │   │   ├── input_definition_3.txt
│   │   │   │   ├── input_definition_3.xml
│   │   │   │   ├── input_definition_4.json
│   │   │   │   ├── input_definition_4.md
│   │   │   │   ├── input_definition_4.txt
│   │   │   │   ├── input_definition_4.xml
│   │   │   │   ├── input_option_1.json
│   │   │   │   ├── input_option_1.md
│   │   │   │   ├── input_option_1.txt
│   │   │   │   ├── input_option_1.xml
│   │   │   │   ├── input_option_2.json
│   │   │   │   ├── input_option_2.md
│   │   │   │   ├── input_option_2.txt
│   │   │   │   ├── input_option_2.xml
│   │   │   │   ├── input_option_3.json
│   │   │   │   ├── input_option_3.md
│   │   │   │   ├── input_option_3.txt
│   │   │   │   ├── input_option_3.xml
│   │   │   │   ├── input_option_4.json
│   │   │   │   ├── input_option_4.md
│   │   │   │   ├── input_option_4.txt
│   │   │   │   ├── input_option_4.xml
│   │   │   │   ├── input_option_5.json
│   │   │   │   ├── input_option_5.md
│   │   │   │   ├── input_option_5.txt
│   │   │   │   ├── input_option_5.xml
│   │   │   │   ├── input_option_6.json
│   │   │   │   ├── input_option_6.md
│   │   │   │   ├── input_option_6.txt
│   │   │   │   ├── input_option_6.xml
│   │   │   │   ├── input_option_with_default_inf_value.json
│   │   │   │   ├── input_option_with_default_inf_value.md
│   │   │   │   ├── input_option_with_default_inf_value.txt
│   │   │   │   ├── input_option_with_default_inf_value.xml
│   │   │   │   ├── input_option_with_style_array.json
│   │   │   │   ├── input_option_with_style_array.md
│   │   │   │   ├── input_option_with_style_array.txt
│   │   │   │   ├── input_option_with_style_array.xml
│   │   │   │   ├── input_option_with_style.json
│   │   │   │   ├── input_option_with_style.md
│   │   │   │   ├── input_option_with_style.txt
│   │   │   │   ├── input_option_with_style.xml
│   │   │   │   ├── Style
│   │   │   │   │   └── SymfonyStyle
│   │   │   │   │   ├── command
│   │   │   │   │   │   ├── command_0.php
│   │   │   │   │   │   ├── command_10.php
│   │   │   │   │   │   ├── command_11.php
│   │   │   │   │   │   ├── command_12.php
│   │   │   │   │   │   ├── command_13.php
│   │   │   │   │   │   ├── command_14.php
│   │   │   │   │   │   ├── command_15.php
│   │   │   │   │   │   ├── command_16.php
│   │   │   │   │   │   ├── command_17.php
│   │   │   │   │   │   ├── command_1.php
│   │   │   │   │   │   ├── command_2.php
│   │   │   │   │   │   ├── command_3.php
│   │   │   │   │   │   ├── command_4.php
│   │   │   │   │   │   ├── command_4_with_iterators.php
│   │   │   │   │   │   ├── command_5.php
│   │   │   │   │   │   ├── command_6.php
│   │   │   │   │   │   ├── command_7.php
│   │   │   │   │   │   ├── command_8.php
│   │   │   │   │   │   ├── command_9.php
│   │   │   │   │   │   └── interactive_command_1.php
│   │   │   │   │   └── output
│   │   │   │   │   ├── interactive_output_1.txt
│   │   │   │   │   ├── output_0.txt
│   │   │   │   │   ├── output_10.txt
│   │   │   │   │   ├── output_11.txt
│   │   │   │   │   ├── output_12.txt
│   │   │   │   │   ├── output_13.txt
│   │   │   │   │   ├── output_14.txt
│   │   │   │   │   ├── output_15.txt
│   │   │   │   │   ├── output_16.txt
│   │   │   │   │   ├── output_17.txt
│   │   │   │   │   ├── output_1.txt
│   │   │   │   │   ├── output_2.txt
│   │   │   │   │   ├── output_3.txt
│   │   │   │   │   ├── output_4.txt
│   │   │   │   │   ├── output_4_with_iterators.txt
│   │   │   │   │   ├── output_5.txt
│   │   │   │   │   ├── output_6.txt
│   │   │   │   │   ├── output_7.txt
│   │   │   │   │   ├── output_8.txt
│   │   │   │   │   └── output_9.txt
│   │   │   │   ├── TestCommand.php
│   │   │   │   ├── TestTiti.php
│   │   │   │   └── TestToto.php
│   │   │   ├── Formatter
│   │   │   │   ├── OutputFormatterStyleStackTest.php
│   │   │   │   ├── OutputFormatterStyleTest.php
│   │   │   │   └── OutputFormatterTest.php
│   │   │   ├── Helper
│   │   │   │   ├── AbstractQuestionHelperTest.php
│   │   │   │   ├── FormatterHelperTest.php
│   │   │   │   ├── HelperSetTest.php
│   │   │   │   ├── HelperTest.php
│   │   │   │   ├── ProcessHelperTest.php
│   │   │   │   ├── ProgressBarTest.php
│   │   │   │   ├── ProgressIndicatorTest.php
│   │   │   │   ├── QuestionHelperTest.php
│   │   │   │   ├── SymfonyQuestionHelperTest.php
│   │   │   │   ├── TableStyleTest.php
│   │   │   │   └── TableTest.php
│   │   │   ├── Input
│   │   │   │   ├── ArgvInputTest.php
│   │   │   │   ├── ArrayInputTest.php
│   │   │   │   ├── InputArgumentTest.php
│   │   │   │   ├── InputDefinitionTest.php
│   │   │   │   ├── InputOptionTest.php
│   │   │   │   ├── InputTest.php
│   │   │   │   └── StringInputTest.php
│   │   │   ├── Logger
│   │   │   │   └── ConsoleLoggerTest.php
│   │   │   ├── Output
│   │   │   │   ├── ConsoleOutputTest.php
│   │   │   │   ├── ConsoleSectionOutputTest.php
│   │   │   │   ├── NullOutputTest.php
│   │   │   │   ├── OutputTest.php
│   │   │   │   └── StreamOutputTest.php
│   │   │   ├── Question
│   │   │   │   └── ConfirmationQuestionTest.php
│   │   │   ├── Style
│   │   │   │   └── SymfonyStyleTest.php
│   │   │   ├── TerminalTest.php
│   │   │   └── Tester
│   │   │   ├── ApplicationTesterTest.php
│   │   │   └── CommandTesterTest.php
│   │   ├── contracts
│   │   │   ├── Cache
│   │   │   │   ├── CacheInterface.php
│   │   │   │   ├── CacheTrait.php
│   │   │   │   ├── CallbackInterface.php
│   │   │   │   ├── ItemInterface.php
│   │   │   │   └── TagAwareCacheInterface.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── Service
│   │   │   │   ├── ResetInterface.php
│   │   │   │   ├── ServiceLocatorTrait.php
│   │   │   │   ├── ServiceSubscriberInterface.php
│   │   │   │   └── ServiceSubscriberTrait.php
│   │   │   ├── Tests
│   │   │   │   ├── Cache
│   │   │   │   │   └── CacheTraitTest.php
│   │   │   │   ├── Service
│   │   │   │   │   ├── ServiceLocatorTest.php
│   │   │   │   │   └── ServiceSubscriberTraitTest.php
│   │   │   │   └── Translation
│   │   │   │   └── TranslatorTest.php
│   │   │   └── Translation
│   │   │   ├── LocaleAwareInterface.php
│   │   │   ├── TranslatorInterface.php
│   │   │   └── TranslatorTrait.php
│   │   ├── dependency-injection
│   │   │   ├── Alias.php
│   │   │   ├── Argument
│   │   │   │   ├── ArgumentInterface.php
│   │   │   │   ├── BoundArgument.php
│   │   │   │   ├── IteratorArgument.php
│   │   │   │   ├── ReferenceSetArgumentTrait.php
│   │   │   │   ├── RewindableGenerator.php
│   │   │   │   ├── ServiceClosureArgument.php
│   │   │   │   ├── ServiceLocatorArgument.php
│   │   │   │   ├── ServiceLocator.php
│   │   │   │   └── TaggedIteratorArgument.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── ChildDefinition.php
│   │   │   ├── Compiler
│   │   │   │   ├── AbstractRecursivePass.php
│   │   │   │   ├── AnalyzeServiceReferencesPass.php
│   │   │   │   ├── AutoAliasServicePass.php
│   │   │   │   ├── AutowirePass.php
│   │   │   │   ├── AutowireRequiredMethodsPass.php
│   │   │   │   ├── CheckArgumentsValidityPass.php
│   │   │   │   ├── CheckCircularReferencesPass.php
│   │   │   │   ├── CheckDefinitionValidityPass.php
│   │   │   │   ├── CheckExceptionOnInvalidReferenceBehaviorPass.php
│   │   │   │   ├── CheckReferenceValidityPass.php
│   │   │   │   ├── CompilerPassInterface.php
│   │   │   │   ├── Compiler.php
│   │   │   │   ├── DecoratorServicePass.php
│   │   │   │   ├── DefinitionErrorExceptionPass.php
│   │   │   │   ├── ExtensionCompilerPass.php
│   │   │   │   ├── InlineServiceDefinitionsPass.php
│   │   │   │   ├── MergeExtensionConfigurationPass.php
│   │   │   │   ├── PassConfig.php
│   │   │   │   ├── PriorityTaggedServiceTrait.php
│   │   │   │   ├── RegisterEnvVarProcessorsPass.php
│   │   │   │   ├── RegisterServiceSubscribersPass.php
│   │   │   │   ├── RemoveAbstractDefinitionsPass.php
│   │   │   │   ├── RemovePrivateAliasesPass.php
│   │   │   │   ├── RemoveUnusedDefinitionsPass.php
│   │   │   │   ├── RepeatablePassInterface.php
│   │   │   │   ├── RepeatedPass.php
│   │   │   │   ├── ReplaceAliasByActualDefinitionPass.php
│   │   │   │   ├── ResolveBindingsPass.php
│   │   │   │   ├── ResolveChildDefinitionsPass.php
│   │   │   │   ├── ResolveClassPass.php
│   │   │   │   ├── ResolveEnvPlaceholdersPass.php
│   │   │   │   ├── ResolveFactoryClassPass.php
│   │   │   │   ├── ResolveHotPathPass.php
│   │   │   │   ├── ResolveInstanceofConditionalsPass.php
│   │   │   │   ├── ResolveInvalidReferencesPass.php
│   │   │   │   ├── ResolveNamedArgumentsPass.php
│   │   │   │   ├── ResolveParameterPlaceHoldersPass.php
│   │   │   │   ├── ResolvePrivatesPass.php
│   │   │   │   ├── ResolveReferencesToAliasesPass.php
│   │   │   │   ├── ResolveServiceSubscribersPass.php
│   │   │   │   ├── ResolveTaggedIteratorArgumentPass.php
│   │   │   │   ├── ServiceLocatorTagPass.php
│   │   │   │   ├── ServiceReferenceGraphEdge.php
│   │   │   │   ├── ServiceReferenceGraphNode.php
│   │   │   │   ├── ServiceReferenceGraph.php
│   │   │   │   └── ValidateEnvPlaceholdersPass.php
│   │   │   ├── composer.json
│   │   │   ├── Config
│   │   │   │   ├── ContainerParametersResourceChecker.php
│   │   │   │   └── ContainerParametersResource.php
│   │   │   ├── ContainerAwareInterface.php
│   │   │   ├── ContainerAwareTrait.php
│   │   │   ├── ContainerBuilder.php
│   │   │   ├── ContainerInterface.php
│   │   │   ├── Container.php
│   │   │   ├── Definition.php
│   │   │   ├── Dumper
│   │   │   │   ├── DumperInterface.php
│   │   │   │   ├── Dumper.php
│   │   │   │   ├── GraphvizDumper.php
│   │   │   │   ├── PhpDumper.php
│   │   │   │   ├── XmlDumper.php
│   │   │   │   └── YamlDumper.php
│   │   │   ├── EnvVarProcessorInterface.php
│   │   │   ├── EnvVarProcessor.php
│   │   │   ├── Exception
│   │   │   │   ├── AutowiringFailedException.php
│   │   │   │   ├── BadMethodCallException.php
│   │   │   │   ├── EnvNotFoundException.php
│   │   │   │   ├── EnvParameterException.php
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── OutOfBoundsException.php
│   │   │   │   ├── ParameterCircularReferenceException.php
│   │   │   │   ├── ParameterNotFoundException.php
│   │   │   │   ├── RuntimeException.php
│   │   │   │   ├── ServiceCircularReferenceException.php
│   │   │   │   └── ServiceNotFoundException.php
│   │   │   ├── ExpressionLanguage.php
│   │   │   ├── ExpressionLanguageProvider.php
│   │   │   ├── Extension
│   │   │   │   ├── ConfigurationExtensionInterface.php
│   │   │   │   ├── ExtensionInterface.php
│   │   │   │   ├── Extension.php
│   │   │   │   └── PrependExtensionInterface.php
│   │   │   ├── LazyProxy
│   │   │   │   ├── Instantiator
│   │   │   │   │   ├── InstantiatorInterface.php
│   │   │   │   │   └── RealServiceInstantiator.php
│   │   │   │   ├── PhpDumper
│   │   │   │   │   ├── DumperInterface.php
│   │   │   │   │   └── NullDumper.php
│   │   │   │   └── ProxyHelper.php
│   │   │   ├── LICENSE
│   │   │   ├── Loader
│   │   │   │   ├── ClosureLoader.php
│   │   │   │   ├── Configurator
│   │   │   │   │   ├── AbstractConfigurator.php
│   │   │   │   │   ├── AbstractServiceConfigurator.php
│   │   │   │   │   ├── AliasConfigurator.php
│   │   │   │   │   ├── ContainerConfigurator.php
│   │   │   │   │   ├── DefaultsConfigurator.php
│   │   │   │   │   ├── InlineServiceConfigurator.php
│   │   │   │   │   ├── InstanceofConfigurator.php
│   │   │   │   │   ├── ParametersConfigurator.php
│   │   │   │   │   ├── PrototypeConfigurator.php
│   │   │   │   │   ├── ReferenceConfigurator.php
│   │   │   │   │   ├── ServiceConfigurator.php
│   │   │   │   │   ├── ServicesConfigurator.php
│   │   │   │   │   └── Traits
│   │   │   │   │   ├── AbstractTrait.php
│   │   │   │   │   ├── ArgumentTrait.php
│   │   │   │   │   ├── AutoconfigureTrait.php
│   │   │   │   │   ├── AutowireTrait.php
│   │   │   │   │   ├── BindTrait.php
│   │   │   │   │   ├── CallTrait.php
│   │   │   │   │   ├── ClassTrait.php
│   │   │   │   │   ├── ConfiguratorTrait.php
│   │   │   │   │   ├── DecorateTrait.php
│   │   │   │   │   ├── DeprecateTrait.php
│   │   │   │   │   ├── FactoryTrait.php
│   │   │   │   │   ├── FileTrait.php
│   │   │   │   │   ├── LazyTrait.php
│   │   │   │   │   ├── ParentTrait.php
│   │   │   │   │   ├── PropertyTrait.php
│   │   │   │   │   ├── PublicTrait.php
│   │   │   │   │   ├── ShareTrait.php
│   │   │   │   │   ├── SyntheticTrait.php
│   │   │   │   │   └── TagTrait.php
│   │   │   │   ├── DirectoryLoader.php
│   │   │   │   ├── FileLoader.php
│   │   │   │   ├── GlobFileLoader.php
│   │   │   │   ├── IniFileLoader.php
│   │   │   │   ├── PhpFileLoader.php
│   │   │   │   ├── schema
│   │   │   │   │   └── dic
│   │   │   │   │   └── services
│   │   │   │   │   └── services-1.0.xsd
│   │   │   │   ├── XmlFileLoader.php
│   │   │   │   └── YamlFileLoader.php
│   │   │   ├── ParameterBag
│   │   │   │   ├── ContainerBagInterface.php
│   │   │   │   ├── ContainerBag.php
│   │   │   │   ├── EnvPlaceholderParameterBag.php
│   │   │   │   ├── FrozenParameterBag.php
│   │   │   │   ├── ParameterBagInterface.php
│   │   │   │   └── ParameterBag.php
│   │   │   ├── Parameter.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── Reference.php
│   │   │   ├── ResettableContainerInterface.php
│   │   │   ├── ServiceLocator.php
│   │   │   ├── ServiceSubscriberInterface.php
│   │   │   ├── TaggedContainerInterface.php
│   │   │   ├── Tests
│   │   │   │   ├── Argument
│   │   │   │   │   └── RewindableGeneratorTest.php
│   │   │   │   ├── ChildDefinitionTest.php
│   │   │   │   ├── Compiler
│   │   │   │   │   ├── AnalyzeServiceReferencesPassTest.php
│   │   │   │   │   ├── AutoAliasServicePassTest.php
│   │   │   │   │   ├── AutowirePassTest.php
│   │   │   │   │   ├── AutowireRequiredMethodsPassTest.php
│   │   │   │   │   ├── CheckArgumentsValidityPassTest.php
│   │   │   │   │   ├── CheckCircularReferencesPassTest.php
│   │   │   │   │   ├── CheckDefinitionValidityPassTest.php
│   │   │   │   │   ├── CheckExceptionOnInvalidReferenceBehaviorPassTest.php
│   │   │   │   │   ├── CheckReferenceValidityPassTest.php
│   │   │   │   │   ├── CustomExpressionLanguageFunctionTest.php
│   │   │   │   │   ├── DecoratorServicePassTest.php
│   │   │   │   │   ├── DefinitionErrorExceptionPassTest.php
│   │   │   │   │   ├── ExtensionCompilerPassTest.php
│   │   │   │   │   ├── InlineServiceDefinitionsPassTest.php
│   │   │   │   │   ├── IntegrationTest.php
│   │   │   │   │   ├── MergeExtensionConfigurationPassTest.php
│   │   │   │   │   ├── OptionalServiceClass.php
│   │   │   │   │   ├── PassConfigTest.php
│   │   │   │   │   ├── PriorityTaggedServiceTraitTest.php
│   │   │   │   │   ├── RegisterEnvVarProcessorsPassTest.php
│   │   │   │   │   ├── RegisterServiceSubscribersPassTest.php
│   │   │   │   │   ├── RemoveUnusedDefinitionsPassTest.php
│   │   │   │   │   ├── ReplaceAliasByActualDefinitionPassTest.php
│   │   │   │   │   ├── ResolveBindingsPassTest.php
│   │   │   │   │   ├── ResolveChildDefinitionsPassTest.php
│   │   │   │   │   ├── ResolveClassPassTest.php
│   │   │   │   │   ├── ResolveFactoryClassPassTest.php
│   │   │   │   │   ├── ResolveHotPathPassTest.php
│   │   │   │   │   ├── ResolveInstanceofConditionalsPassTest.php
│   │   │   │   │   ├── ResolveInvalidReferencesPassTest.php
│   │   │   │   │   ├── ResolveNamedArgumentsPassTest.php
│   │   │   │   │   ├── ResolveParameterPlaceHoldersPassTest.php
│   │   │   │   │   ├── ResolvePrivatesPassTest.php
│   │   │   │   │   ├── ResolveReferencesToAliasesPassTest.php
│   │   │   │   │   ├── ResolveTaggedIteratorArgumentPassTest.php
│   │   │   │   │   ├── ServiceLocatorTagPassTest.php
│   │   │   │   │   └── ValidateEnvPlaceholdersPassTest.php
│   │   │   │   ├── Config
│   │   │   │   │   ├── ContainerParametersResourceCheckerTest.php
│   │   │   │   │   └── ContainerParametersResourceTest.php
│   │   │   │   ├── ContainerBuilderTest.php
│   │   │   │   ├── ContainerTest.php
│   │   │   │   ├── CrossCheckTest.php
│   │   │   │   ├── DefinitionTest.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── GraphvizDumperTest.php
│   │   │   │   │   ├── PhpDumperTest.php
│   │   │   │   │   ├── XmlDumperTest.php
│   │   │   │   │   └── YamlDumperTest.php
│   │   │   │   ├── EnvVarProcessorTest.php
│   │   │   │   ├── Extension
│   │   │   │   │   └── ExtensionTest.php
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── array.json
│   │   │   │   │   ├── BarInterface.php
│   │   │   │   │   ├── Bar.php
│   │   │   │   │   ├── CaseSensitiveClass.php
│   │   │   │   │   ├── config
│   │   │   │   │   │   ├── anonymous.expected.yml
│   │   │   │   │   │   ├── anonymous.php
│   │   │   │   │   │   ├── basic.expected.yml
│   │   │   │   │   │   ├── basic.php
│   │   │   │   │   │   ├── child.expected.yml
│   │   │   │   │   │   ├── child.php
│   │   │   │   │   │   ├── defaults.expected.yml
│   │   │   │   │   │   ├── defaults.php
│   │   │   │   │   │   ├── factory_short_notation.php
│   │   │   │   │   │   ├── instanceof.expected.yml
│   │   │   │   │   │   ├── instanceof.php
│   │   │   │   │   │   ├── lazy_fqcn.expected.yml
│   │   │   │   │   │   ├── lazy_fqcn.php
│   │   │   │   │   │   ├── object.expected.yml
│   │   │   │   │   │   ├── object.php
│   │   │   │   │   │   ├── php7.expected.yml
│   │   │   │   │   │   ├── php7.php
│   │   │   │   │   │   ├── prototype_array.expected.yml
│   │   │   │   │   │   ├── prototype_array.php
│   │   │   │   │   │   ├── prototype.expected.yml
│   │   │   │   │   │   ├── prototype.php
│   │   │   │   │   │   ├── services9.php
│   │   │   │   │   │   └── services_autoconfigure_with_parent.php
│   │   │   │   │   ├── Container
│   │   │   │   │   │   ├── ConstructorWithMandatoryArgumentsContainer.php
│   │   │   │   │   │   ├── ConstructorWithOptionalArgumentsContainer.php
│   │   │   │   │   │   ├── ConstructorWithoutArgumentsContainer.php
│   │   │   │   │   │   └── NoConstructorContainer.php
│   │   │   │   │   ├── containers
│   │   │   │   │   │   ├── container10.php
│   │   │   │   │   │   ├── container11.php
│   │   │   │   │   │   ├── container12.php
│   │   │   │   │   │   ├── container13.php
│   │   │   │   │   │   ├── container14.php
│   │   │   │   │   │   ├── container15.php
│   │   │   │   │   │   ├── container16.php
│   │   │   │   │   │   ├── container17.php
│   │   │   │   │   │   ├── container19.php
│   │   │   │   │   │   ├── container21.php
│   │   │   │   │   │   ├── container24.php
│   │   │   │   │   │   ├── container33.php
│   │   │   │   │   │   ├── container8.php
│   │   │   │   │   │   ├── container9.php
│   │   │   │   │   │   ├── container_abstract.php
│   │   │   │   │   │   ├── container_almost_circular.php
│   │   │   │   │   │   ├── container_env_in_id.php
│   │   │   │   │   │   ├── container_inline_requires.php
│   │   │   │   │   │   ├── container_non_shared_lazy.php
│   │   │   │   │   │   ├── container_service_locator_argument.php
│   │   │   │   │   │   ├── container_uninitialized_ref.php
│   │   │   │   │   │   └── CustomContainer.php
│   │   │   │   │   ├── CustomDefinition.php
│   │   │   │   │   ├── DeprecatedClass.php
│   │   │   │   │   ├── directory
│   │   │   │   │   │   ├── import
│   │   │   │   │   │   │   └── import.yml
│   │   │   │   │   │   ├── recurse
│   │   │   │   │   │   │   ├── simple.ini
│   │   │   │   │   │   │   └── simple.yml
│   │   │   │   │   │   └── simple.php
│   │   │   │   │   ├── FactoryDummy.php
│   │   │   │   │   ├── FactoryDummyWithoutReturnTypes.php
│   │   │   │   │   ├── FooForCircularWithAddCalls.php
│   │   │   │   │   ├── graphviz
│   │   │   │   │   │   ├── services10-1.dot
│   │   │   │   │   │   ├── services10.dot
│   │   │   │   │   │   ├── services13.dot
│   │   │   │   │   │   ├── services14.dot
│   │   │   │   │   │   ├── services17.dot
│   │   │   │   │   │   ├── services18.dot
│   │   │   │   │   │   ├── services1.dot
│   │   │   │   │   │   ├── services9.dot
│   │   │   │   │   │   └── services_inline.dot
│   │   │   │   │   ├── includes
│   │   │   │   │   │   ├── autowiring_classes.php
│   │   │   │   │   │   ├── classes.php
│   │   │   │   │   │   ├── createphar.php
│   │   │   │   │   │   ├── foo_lazy.php
│   │   │   │   │   │   ├── foo.php
│   │   │   │   │   │   ├── FooVariadic.php
│   │   │   │   │   │   ├── HotPath
│   │   │   │   │   │   │   ├── C1.php
│   │   │   │   │   │   │   ├── C2.php
│   │   │   │   │   │   │   ├── C3.php
│   │   │   │   │   │   │   ├── I1.php
│   │   │   │   │   │   │   ├── P1.php
│   │   │   │   │   │   │   └── T1.php
│   │   │   │   │   │   ├── ProjectExtension.php
│   │   │   │   │   │   ├── ProjectWithXsdExtensionInPhar.phar
│   │   │   │   │   │   ├── ProjectWithXsdExtension.php
│   │   │   │   │   │   └── schema
│   │   │   │   │   │   └── project-1.0.xsd
│   │   │   │   │   ├── ini
│   │   │   │   │   │   ├── almostvalid.ini
│   │   │   │   │   │   ├── ini_with_wrong_ext.xml
│   │   │   │   │   │   ├── nonvalid.ini
│   │   │   │   │   │   ├── parameters1.ini
│   │   │   │   │   │   ├── parameters2.ini
│   │   │   │   │   │   ├── parameters.ini
│   │   │   │   │   │   └── types.ini
│   │   │   │   │   ├── NamedArgumentsDummy.php
│   │   │   │   │   ├── NamedArgumentsVariadicsDummy.php
│   │   │   │   │   ├── ParentNotExists.php
│   │   │   │   │   ├── php
│   │   │   │   │   │   ├── custom_container_class_constructor_without_arguments.php
│   │   │   │   │   │   ├── custom_container_class_with_mandatory_constructor_arguments.php
│   │   │   │   │   │   ├── custom_container_class_with_optional_constructor_arguments.php
│   │   │   │   │   │   ├── custom_container_class_without_constructor.php
│   │   │   │   │   │   ├── php_with_wrong_ext.yml
│   │   │   │   │   │   ├── services10.php
│   │   │   │   │   │   ├── services1-1.php
│   │   │   │   │   │   ├── services12.php
│   │   │   │   │   │   ├── services13.php
│   │   │   │   │   │   ├── services19.php
│   │   │   │   │   │   ├── services1.php
│   │   │   │   │   │   ├── services24.php
│   │   │   │   │   │   ├── services26.php
│   │   │   │   │   │   ├── services33.php
│   │   │   │   │   │   ├── services8.php
│   │   │   │   │   │   ├── services9_as_files.txt
│   │   │   │   │   │   ├── services9_compiled.php
│   │   │   │   │   │   ├── services_adawson.php
│   │   │   │   │   │   ├── services_almost_circular_private.php
│   │   │   │   │   │   ├── services_almost_circular_public.php
│   │   │   │   │   │   ├── services_array_params.php
│   │   │   │   │   │   ├── services_base64_env.php
│   │   │   │   │   │   ├── services_csv_env.php
│   │   │   │   │   │   ├── services_dedup_lazy_proxy.php
│   │   │   │   │   │   ├── services_deep_graph.php
│   │   │   │   │   │   ├── services_env_in_id.php
│   │   │   │   │   │   ├── services_errored_definition.php
│   │   │   │   │   │   ├── services_inline_requires.php
│   │   │   │   │   │   ├── services_inline_self_ref.php
│   │   │   │   │   │   ├── services_json_env.php
│   │   │   │   │   │   ├── services_locator.php
│   │   │   │   │   │   ├── services_non_shared_lazy_as_files.txt
│   │   │   │   │   │   ├── services_non_shared_lazy.php
│   │   │   │   │   │   ├── services_private_frozen.php
│   │   │   │   │   │   ├── services_private_in_expression.php
│   │   │   │   │   │   ├── services_rot13_env.php
│   │   │   │   │   │   ├── services_service_locator_argument.php
│   │   │   │   │   │   ├── services_subscriber.php
│   │   │   │   │   │   ├── services_tsantos.php
│   │   │   │   │   │   ├── services_uninitialized_ref.php
│   │   │   │   │   │   └── simple.php
│   │   │   │   │   ├── Prototype
│   │   │   │   │   │   ├── BadClasses
│   │   │   │   │   │   │   └── MissingParent.php
│   │   │   │   │   │   ├── FooInterface.php
│   │   │   │   │   │   ├── Foo.php
│   │   │   │   │   │   ├── OtherDir
│   │   │   │   │   │   │   ├── AnotherSub
│   │   │   │   │   │   │   │   └── DeeperBaz.php
│   │   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   │   ├── Component1
│   │   │   │   │   │   │   │   ├── Dir1
│   │   │   │   │   │   │   │   │   └── Service1.php
│   │   │   │   │   │   │   │   ├── Dir2
│   │   │   │   │   │   │   │   │   └── Service2.php
│   │   │   │   │   │   │   │   └── Dir3
│   │   │   │   │   │   │   │   └── Service3.php
│   │   │   │   │   │   │   └── Component2
│   │   │   │   │   │   │   ├── Dir1
│   │   │   │   │   │   │   │   └── Service4.php
│   │   │   │   │   │   │   └── Dir2
│   │   │   │   │   │   │   └── Service5.php
│   │   │   │   │   │   └── Sub
│   │   │   │   │   │   ├── BarInterface.php
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   ├── NoLoadAbstractBar.php
│   │   │   │   │   │   ├── NoLoadBarInterface.php
│   │   │   │   │   │   └── NoLoadBarTrait.php
│   │   │   │   │   ├── SimilarArgumentsDummy.php
│   │   │   │   │   ├── StdClassDecorator.php
│   │   │   │   │   ├── StubbedTranslator.php
│   │   │   │   │   ├── TestDefinition1.php
│   │   │   │   │   ├── TestDefinition2.php
│   │   │   │   │   ├── TestDefinition3.php
│   │   │   │   │   ├── TestServiceSubscriberChild.php
│   │   │   │   │   ├── TestServiceSubscriberParent.php
│   │   │   │   │   ├── TestServiceSubscriber.php
│   │   │   │   │   ├── TestServiceSubscriberTrait.php
│   │   │   │   │   ├── xml
│   │   │   │   │   │   ├── class_from_id.xml
│   │   │   │   │   │   ├── extension1
│   │   │   │   │   │   │   └── services.xml
│   │   │   │   │   │   ├── extension2
│   │   │   │   │   │   │   └── services.xml
│   │   │   │   │   │   ├── extensions
│   │   │   │   │   │   │   ├── services1.xml
│   │   │   │   │   │   │   ├── services2.xml
│   │   │   │   │   │   │   ├── services3.xml
│   │   │   │   │   │   │   ├── services4.xml
│   │   │   │   │   │   │   ├── services5.xml
│   │   │   │   │   │   │   ├── services6.xml
│   │   │   │   │   │   │   └── services7.xml
│   │   │   │   │   │   ├── invalid_alias_definition.xml
│   │   │   │   │   │   ├── namespaces.xml
│   │   │   │   │   │   ├── nested_service_without_id.xml
│   │   │   │   │   │   ├── nonvalid.xml
│   │   │   │   │   │   ├── services10.xml
│   │   │   │   │   │   ├── services13.xml
│   │   │   │   │   │   ├── services14.xml
│   │   │   │   │   │   ├── services1.xml
│   │   │   │   │   │   ├── services21.xml
│   │   │   │   │   │   ├── services23.xml
│   │   │   │   │   │   ├── services24.xml
│   │   │   │   │   │   ├── services28.xml
│   │   │   │   │   │   ├── services2.xml
│   │   │   │   │   │   ├── services3.xml
│   │   │   │   │   │   ├── services4_bad_import.xml
│   │   │   │   │   │   ├── services4.xml
│   │   │   │   │   │   ├── services5.xml
│   │   │   │   │   │   ├── services6.xml
│   │   │   │   │   │   ├── services7.xml
│   │   │   │   │   │   ├── services8.xml
│   │   │   │   │   │   ├── services9.xml
│   │   │   │   │   │   ├── services_abstract.xml
│   │   │   │   │   │   ├── services_autoconfigure_with_parent.xml
│   │   │   │   │   │   ├── services_autoconfigure.xml
│   │   │   │   │   │   ├── services_bindings.xml
│   │   │   │   │   │   ├── services_case.xml
│   │   │   │   │   │   ├── services_defaults_with_parent.xml
│   │   │   │   │   │   ├── services_deprecated.xml
│   │   │   │   │   │   ├── services_dump_load.xml
│   │   │   │   │   │   ├── services_inline_not_candidate.xml
│   │   │   │   │   │   ├── services_instanceof_with_parent.xml
│   │   │   │   │   │   ├── services_instanceof.xml
│   │   │   │   │   │   ├── services_lazy_fqcn.xml
│   │   │   │   │   │   ├── services_named_args.xml
│   │   │   │   │   │   ├── services_prototype_array.xml
│   │   │   │   │   │   ├── services_prototype.xml
│   │   │   │   │   │   ├── services_tsantos.xml
│   │   │   │   │   │   ├── services_without_id.xml
│   │   │   │   │   │   ├── tag_with_empty_name.xml
│   │   │   │   │   │   ├── tag_without_name.xml
│   │   │   │   │   │   ├── withdoctype.xml
│   │   │   │   │   │   ├── with_key_outside_collection.xml
│   │   │   │   │   │   └── xml_with_wrong_ext.php
│   │   │   │   │   └── yaml
│   │   │   │   │   ├── anonymous_services_alias.yml
│   │   │   │   │   ├── anonymous_services_in_instanceof.yml
│   │   │   │   │   ├── anonymous_services_in_parameters.yml
│   │   │   │   │   ├── anonymous_services.yml
│   │   │   │   │   ├── bad_alias.yml
│   │   │   │   │   ├── bad_calls.yml
│   │   │   │   │   ├── bad_decorates.yml
│   │   │   │   │   ├── bad_empty_defaults.yml
│   │   │   │   │   ├── bad_empty_instanceof.yml
│   │   │   │   │   ├── bad_format.yml
│   │   │   │   │   ├── bad_imports.yml
│   │   │   │   │   ├── bad_import.yml
│   │   │   │   │   ├── bad_keyword.yml
│   │   │   │   │   ├── bad_parameters.yml
│   │   │   │   │   ├── bad_parent.yml
│   │   │   │   │   ├── bad_services.yml
│   │   │   │   │   ├── bad_service.yml
│   │   │   │   │   ├── badtag1.yml
│   │   │   │   │   ├── badtag2.yml
│   │   │   │   │   ├── badtag3.yml
│   │   │   │   │   ├── bar
│   │   │   │   │   │   └── services.yml
│   │   │   │   │   ├── class_from_id.yml
│   │   │   │   │   ├── foo
│   │   │   │   │   │   └── services.yml
│   │   │   │   │   ├── integration
│   │   │   │   │   │   ├── autoconfigure_child_not_applied
│   │   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   ├── autoconfigure_parent_child
│   │   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   ├── autoconfigure_parent_child_tags
│   │   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   ├── child_parent
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   ├── defaults_child_tags
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   ├── defaults_instanceof_importance
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   ├── defaults_parent_child
│   │   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   ├── instanceof_and_calls
│   │   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   │   └── main.yml
│   │   │   │   │   │   └── instanceof_parent_child
│   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── legacy_invalid_alias_definition.yml
│   │   │   │   │   ├── nonvalid1.yml
│   │   │   │   │   ├── nonvalid2.yml
│   │   │   │   │   ├── null_config.yml
│   │   │   │   │   ├── services10.yml
│   │   │   │   │   ├── services11.yml
│   │   │   │   │   ├── services13.yml
│   │   │   │   │   ├── services14.yml
│   │   │   │   │   ├── services1.yml
│   │   │   │   │   ├── services21.yml
│   │   │   │   │   ├── services23.yml
│   │   │   │   │   ├── services24.yml
│   │   │   │   │   ├── services26.yml
│   │   │   │   │   ├── services28.yml
│   │   │   │   │   ├── services2.yml
│   │   │   │   │   ├── services31_invalid_tags.yml
│   │   │   │   │   ├── services3.yml
│   │   │   │   │   ├── services4_bad_import.yml
│   │   │   │   │   ├── services4.yml
│   │   │   │   │   ├── services6.yml
│   │   │   │   │   ├── services7.yml
│   │   │   │   │   ├── services8.yml
│   │   │   │   │   ├── services9.yml
│   │   │   │   │   ├── services_adawson.yml
│   │   │   │   │   ├── services_autoconfigure_with_parent.yml
│   │   │   │   │   ├── services_autoconfigure.yml
│   │   │   │   │   ├── services_bindings.yml
│   │   │   │   │   ├── services_case.yml
│   │   │   │   │   ├── services_configurator_short_syntax.yml
│   │   │   │   │   ├── services_deep_graph.yml
│   │   │   │   │   ├── services_defaults_with_parent.yml
│   │   │   │   │   ├── services_dump_load.yml
│   │   │   │   │   ├── services_inline.yml
│   │   │   │   │   ├── services_instanceof_with_parent.yml
│   │   │   │   │   ├── services_instanceof.yml
│   │   │   │   │   ├── services_lazy_fqcn.yml
│   │   │   │   │   ├── services_named_args.yml
│   │   │   │   │   ├── services_prototype_namespace_without_resource.yml
│   │   │   │   │   ├── services_prototype_namespace.yml
│   │   │   │   │   ├── services_prototype.yml
│   │   │   │   │   ├── services_underscore.yml
│   │   │   │   │   ├── tag_name_empty_string.yml
│   │   │   │   │   ├── tag_name_no_string.yml
│   │   │   │   │   ├── tag_name_only.yml
│   │   │   │   │   └── yaml_with_wrong_ext.ini
│   │   │   │   ├── LazyProxy
│   │   │   │   │   ├── Instantiator
│   │   │   │   │   │   └── RealServiceInstantiatorTest.php
│   │   │   │   │   └── PhpDumper
│   │   │   │   │   └── NullDumperTest.php
│   │   │   │   ├── Loader
│   │   │   │   │   ├── ClosureLoaderTest.php
│   │   │   │   │   ├── DirectoryLoaderTest.php
│   │   │   │   │   ├── FileLoaderTest.php
│   │   │   │   │   ├── GlobFileLoaderTest.php
│   │   │   │   │   ├── IniFileLoaderTest.php
│   │   │   │   │   ├── LoaderResolverTest.php
│   │   │   │   │   ├── PhpFileLoaderTest.php
│   │   │   │   │   ├── XmlFileLoaderTest.php
│   │   │   │   │   └── YamlFileLoaderTest.php
│   │   │   │   ├── ParameterBag
│   │   │   │   │   ├── ContainerBagTest.php
│   │   │   │   │   ├── EnvPlaceholderParameterBagTest.php
│   │   │   │   │   ├── FrozenParameterBagTest.php
│   │   │   │   │   └── ParameterBagTest.php
│   │   │   │   ├── ParameterTest.php
│   │   │   │   ├── ReferenceTest.php
│   │   │   │   └── ServiceLocatorTest.php
│   │   │   ├── TypedReference.php
│   │   │   └── Variable.php
│   │   ├── event-dispatcher
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── Debug
│   │   │   │   ├── TraceableEventDispatcherInterface.php
│   │   │   │   ├── TraceableEventDispatcher.php
│   │   │   │   └── WrappedListener.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── RegisterListenersPass.php
│   │   │   ├── EventDispatcherInterface.php
│   │   │   ├── EventDispatcher.php
│   │   │   ├── Event.php
│   │   │   ├── EventSubscriberInterface.php
│   │   │   ├── GenericEvent.php
│   │   │   ├── ImmutableEventDispatcher.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   └── Tests
│   │   │   ├── AbstractEventDispatcherTest.php
│   │   │   ├── Debug
│   │   │   │   ├── TraceableEventDispatcherTest.php
│   │   │   │   └── WrappedListenerTest.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── RegisterListenersPassTest.php
│   │   │   ├── EventDispatcherTest.php
│   │   │   ├── EventTest.php
│   │   │   ├── GenericEventTest.php
│   │   │   └── ImmutableEventDispatcherTest.php
│   │   ├── filesystem
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── FileNotFoundException.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── IOExceptionInterface.php
│   │   │   │   └── IOException.php
│   │   │   ├── Filesystem.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   └── Tests
│   │   │   ├── ExceptionTest.php
│   │   │   ├── FilesystemTestCase.php
│   │   │   ├── FilesystemTest.php
│   │   │   └── Fixtures
│   │   │   └── MockStream
│   │   │   └── MockStream.php
│   │   ├── finder
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Comparator
│   │   │   │   ├── Comparator.php
│   │   │   │   ├── DateComparator.php
│   │   │   │   └── NumberComparator.php
│   │   │   ├── composer.json
│   │   │   ├── Exception
│   │   │   │   └── AccessDeniedException.php
│   │   │   ├── Finder.php
│   │   │   ├── Glob.php
│   │   │   ├── Iterator
│   │   │   │   ├── CustomFilterIterator.php
│   │   │   │   ├── DateRangeFilterIterator.php
│   │   │   │   ├── DepthRangeFilterIterator.php
│   │   │   │   ├── ExcludeDirectoryFilterIterator.php
│   │   │   │   ├── FilecontentFilterIterator.php
│   │   │   │   ├── FilenameFilterIterator.php
│   │   │   │   ├── FileTypeFilterIterator.php
│   │   │   │   ├── MultiplePcreFilterIterator.php
│   │   │   │   ├── PathFilterIterator.php
│   │   │   │   ├── RecursiveDirectoryIterator.php
│   │   │   │   ├── SizeRangeFilterIterator.php
│   │   │   │   └── SortableIterator.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── SplFileInfo.php
│   │   │   └── Tests
│   │   │   ├── Comparator
│   │   │   │   ├── ComparatorTest.php
│   │   │   │   ├── DateComparatorTest.php
│   │   │   │   └── NumberComparatorTest.php
│   │   │   ├── FinderTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── A
│   │   │   │   │   ├── a.dat
│   │   │   │   │   └── B
│   │   │   │   │   ├── ab.dat
│   │   │   │   │   └── C
│   │   │   │   │   └── abc.dat
│   │   │   │   ├── copy
│   │   │   │   │   └── A
│   │   │   │   │   ├── a.dat.copy
│   │   │   │   │   └── B
│   │   │   │   │   ├── ab.dat.copy
│   │   │   │   │   └── C
│   │   │   │   │   └── abc.dat.copy
│   │   │   │   ├── dolor.txt
│   │   │   │   ├── ipsum.txt
│   │   │   │   ├── lorem.txt
│   │   │   │   ├── one
│   │   │   │   │   ├── a
│   │   │   │   │   └── b
│   │   │   │   │   ├── c.neon
│   │   │   │   │   └── d.neon
│   │   │   │   ├── r+e.gex[c]a(r)s
│   │   │   │   │   └── dir
│   │   │   │   │   └── bar.dat
│   │   │   │   └── with space
│   │   │   │   └── foo.txt
│   │   │   ├── GlobTest.php
│   │   │   └── Iterator
│   │   │   ├── CustomFilterIteratorTest.php
│   │   │   ├── DateRangeFilterIteratorTest.php
│   │   │   ├── DepthRangeFilterIteratorTest.php
│   │   │   ├── ExcludeDirectoryFilterIteratorTest.php
│   │   │   ├── FilecontentFilterIteratorTest.php
│   │   │   ├── FilenameFilterIteratorTest.php
│   │   │   ├── FileTypeFilterIteratorTest.php
│   │   │   ├── Iterator.php
│   │   │   ├── IteratorTestCase.php
│   │   │   ├── MockFileListIterator.php
│   │   │   ├── MockSplFileInfo.php
│   │   │   ├── MultiplePcreFilterIteratorTest.php
│   │   │   ├── PathFilterIteratorTest.php
│   │   │   ├── RealIteratorTestCase.php
│   │   │   ├── RecursiveDirectoryIteratorTest.php
│   │   │   ├── SizeRangeFilterIteratorTest.php
│   │   │   └── SortableIteratorTest.php
│   │   ├── options-resolver
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── Debug
│   │   │   │   └── OptionsResolverIntrospector.php
│   │   │   ├── Exception
│   │   │   │   ├── AccessException.php
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── InvalidOptionsException.php
│   │   │   │   ├── MissingOptionsException.php
│   │   │   │   ├── NoConfigurationException.php
│   │   │   │   ├── NoSuchOptionException.php
│   │   │   │   ├── OptionDefinitionException.php
│   │   │   │   └── UndefinedOptionsException.php
│   │   │   ├── LICENSE
│   │   │   ├── Options.php
│   │   │   ├── OptionsResolver.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   └── Tests
│   │   │   ├── Debug
│   │   │   │   └── OptionsResolverIntrospectorTest.php
│   │   │   └── OptionsResolverTest.php
│   │   ├── polyfill-ctype
│   │   │   ├── bootstrap.php
│   │   │   ├── composer.json
│   │   │   ├── Ctype.php
│   │   │   ├── LICENSE
│   │   │   └── README.md
│   │   ├── polyfill-mbstring
│   │   │   ├── bootstrap.php
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── Mbstring.php
│   │   │   ├── README.md
│   │   │   └── Resources
│   │   │   └── unidata
│   │   │   ├── lowerCase.php
│   │   │   ├── titleCaseRegexp.php
│   │   │   └── upperCase.php
│   │   ├── polyfill-php70
│   │   │   ├── bootstrap.php
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── Php70.php
│   │   │   ├── README.md
│   │   │   └── Resources
│   │   │   └── stubs
│   │   │   ├── ArithmeticError.php
│   │   │   ├── AssertionError.php
│   │   │   ├── DivisionByZeroError.php
│   │   │   ├── Error.php
│   │   │   ├── ParseError.php
│   │   │   ├── SessionUpdateTimestampHandlerInterface.php
│   │   │   └── TypeError.php
│   │   ├── polyfill-php72
│   │   │   ├── bootstrap.php
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── Php72.php
│   │   │   └── README.md
│   │   ├── process
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── ProcessFailedException.php
│   │   │   │   ├── ProcessSignaledException.php
│   │   │   │   ├── ProcessTimedOutException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── ExecutableFinder.php
│   │   │   ├── InputStream.php
│   │   │   ├── LICENSE
│   │   │   ├── PhpExecutableFinder.php
│   │   │   ├── PhpProcess.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── Pipes
│   │   │   │   ├── AbstractPipes.php
│   │   │   │   ├── PipesInterface.php
│   │   │   │   ├── UnixPipes.php
│   │   │   │   └── WindowsPipes.php
│   │   │   ├── Process.php
│   │   │   ├── ProcessUtils.php
│   │   │   ├── README.md
│   │   │   └── Tests
│   │   │   ├── ExecutableFinderTest.php
│   │   │   ├── KillableProcessWithOutput.php
│   │   │   ├── NonStopableProcess.php
│   │   │   ├── PhpExecutableFinderTest.php
│   │   │   ├── PhpProcessTest.php
│   │   │   ├── PipeStdinInStdoutStdErrStreamSelect.php
│   │   │   ├── ProcessFailedExceptionTest.php
│   │   │   ├── ProcessTest.php
│   │   │   └── SignalListener.php
│   │   ├── stopwatch
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── Section.php
│   │   │   ├── StopwatchEvent.php
│   │   │   ├── StopwatchPeriod.php
│   │   │   ├── Stopwatch.php
│   │   │   └── Tests
│   │   │   ├── StopwatchEventTest.php
│   │   │   ├── StopwatchPeriodTest.php
│   │   │   └── StopwatchTest.php
│   │   └── yaml
│   │   ├── CHANGELOG.md
│   │   ├── Command
│   │   │   └── LintCommand.php
│   │   ├── composer.json
│   │   ├── Dumper.php
│   │   ├── Escaper.php
│   │   ├── Exception
│   │   │   ├── DumpException.php
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── ParseException.php
│   │   │   └── RuntimeException.php
│   │   ├── Inline.php
│   │   ├── LICENSE
│   │   ├── Parser.php
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── Tag
│   │   │   └── TaggedValue.php
│   │   ├── Tests
│   │   │   ├── Command
│   │   │   │   └── LintCommandTest.php
│   │   │   ├── DumperTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── arrow.gif
│   │   │   │   ├── booleanMappingKeys.yml
│   │   │   │   ├── embededPhp.yml
│   │   │   │   ├── escapedCharacters.yml
│   │   │   │   ├── index.yml
│   │   │   │   ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml
│   │   │   │   ├── multiple_lines_as_literal_block.yml
│   │   │   │   ├── nonStringKeys.yml
│   │   │   │   ├── not_readable.yml
│   │   │   │   ├── nullMappingKey.yml
│   │   │   │   ├── numericMappingKeys.yml
│   │   │   │   ├── sfComments.yml
│   │   │   │   ├── sfCompact.yml
│   │   │   │   ├── sfMergeKey.yml
│   │   │   │   ├── sfObjects.yml
│   │   │   │   ├── sfQuotes.yml
│   │   │   │   ├── sfTests.yml
│   │   │   │   ├── unindentedCollections.yml
│   │   │   │   ├── YtsAnchorAlias.yml
│   │   │   │   ├── YtsBasicTests.yml
│   │   │   │   ├── YtsBlockMapping.yml
│   │   │   │   ├── YtsDocumentSeparator.yml
│   │   │   │   ├── YtsErrorTests.yml
│   │   │   │   ├── YtsFlowCollections.yml
│   │   │   │   ├── YtsFoldedScalars.yml
│   │   │   │   ├── YtsNullsAndEmpties.yml
│   │   │   │   ├── YtsSpecificationExamples.yml
│   │   │   │   └── YtsTypeTransfers.yml
│   │   │   ├── InlineTest.php
│   │   │   ├── ParseExceptionTest.php
│   │   │   ├── ParserTest.php
│   │   │   └── YamlTest.php
│   │   ├── Unescaper.php
│   │   └── Yaml.php
│   ├── tecnickcom
│   │   └── tcpdf
│   │   ├── CHANGELOG.TXT
│   │   ├── composer.json
│   │   ├── config
│   │   │   └── tcpdf_config.php
│   │   ├── examples
│   │   │   ├── barcodes
│   │   │   │   ├── example_1d_html.php
│   │   │   │   ├── example_1d_png.php
│   │   │   │   ├── example_1d_svgi.php
│   │   │   │   ├── example_1d_svg.php
│   │   │   │   ├── example_2d_datamatrix_html.php
│   │   │   │   ├── example_2d_datamatrix_png.php
│   │   │   │   ├── example_2d_datamatrix_svgi.php
│   │   │   │   ├── example_2d_datamatrix_svg.php
│   │   │   │   ├── example_2d_pdf417_html.php
│   │   │   │   ├── example_2d_pdf417_png.php
│   │   │   │   ├── example_2d_pdf417_svgi.php
│   │   │   │   ├── example_2d_pdf417_svg.php
│   │   │   │   ├── example_2d_qrcode_html.php
│   │   │   │   ├── example_2d_qrcode_png.php
│   │   │   │   ├── example_2d_qrcode_svgi.php
│   │   │   │   ├── example_2d_qrcode_svg.php
│   │   │   │   ├── tcpdf_barcodes_1d_include.php
│   │   │   │   └── tcpdf_barcodes_2d_include.php
│   │   │   ├── config
│   │   │   │   └── tcpdf_config_alt.php
│   │   │   ├── data
│   │   │   │   ├── cert
│   │   │   │   │   ├── tcpdf.crt
│   │   │   │   │   ├── tcpdf.fdf
│   │   │   │   │   └── tcpdf.p12
│   │   │   │   ├── chapter_demo_1.txt
│   │   │   │   ├── chapter_demo_2.txt
│   │   │   │   ├── table_data_demo.txt
│   │   │   │   └── utf8test.txt
│   │   │   ├── example_001.php
│   │   │   ├── example_002.php
│   │   │   ├── example_003.php
│   │   │   ├── example_004.php
│   │   │   ├── example_005.php
│   │   │   ├── example_006.php
│   │   │   ├── example_007.php
│   │   │   ├── example_008.php
│   │   │   ├── example_009.php
│   │   │   ├── example_010.php
│   │   │   ├── example_011.php
│   │   │   ├── example_012.pdf
│   │   │   ├── example_012.php
│   │   │   ├── example_013.php
│   │   │   ├── example_014.php
│   │   │   ├── example_015.php
│   │   │   ├── example_016.php
│   │   │   ├── example_017.php
│   │   │   ├── example_018.php
│   │   │   ├── example_019.php
│   │   │   ├── example_020.php
│   │   │   ├── example_021.php
│   │   │   ├── example_022.php
│   │   │   ├── example_023.php
│   │   │   ├── example_024.php
│   │   │   ├── example_025.php
│   │   │   ├── example_026.php
│   │   │   ├── example_027.php
│   │   │   ├── example_028.php
│   │   │   ├── example_029.php
│   │   │   ├── example_030.php
│   │   │   ├── example_031.php
│   │   │   ├── example_032.php
│   │   │   ├── example_033.php
│   │   │   ├── example_034.php
│   │   │   ├── example_035.php
│   │   │   ├── example_036.php
│   │   │   ├── example_037.php
│   │   │   ├── example_038.php
│   │   │   ├── example_039.php
│   │   │   ├── example_040.php
│   │   │   ├── example_041.php
│   │   │   ├── example_042.php
│   │   │   ├── example_043.php
│   │   │   ├── example_044.php
│   │   │   ├── example_045.php
│   │   │   ├── example_046.php
│   │   │   ├── example_047.php
│   │   │   ├── example_048.php
│   │   │   ├── example_049.php
│   │   │   ├── example_050.php
│   │   │   ├── example_051.php
│   │   │   ├── example_052.php
│   │   │   ├── example_053.php
│   │   │   ├── example_054.php
│   │   │   ├── example_055.php
│   │   │   ├── example_056.php
│   │   │   ├── example_057.php
│   │   │   ├── example_058.php
│   │   │   ├── example_059.php
│   │   │   ├── example_060.php
│   │   │   ├── example_061.php
│   │   │   ├── example_062.php
│   │   │   ├── example_063.php
│   │   │   ├── example_064.php
│   │   │   ├── example_065.php
│   │   │   ├── images
│   │   │   │   ├── alpha.png
│   │   │   │   ├── _blank.png
│   │   │   │   ├── image_demo.jpg
│   │   │   │   ├── image_with_alpha.png
│   │   │   │   ├── img.png
│   │   │   │   ├── logo_example.gif
│   │   │   │   ├── logo_example.jpg
│   │   │   │   ├── logo_example.png
│   │   │   │   ├── tcpdf_box.ai
│   │   │   │   ├── tcpdf_box.svg
│   │   │   │   ├── tcpdf_cell.png
│   │   │   │   ├── tcpdf_logo.jpg
│   │   │   │   ├── tcpdf_signature.png
│   │   │   │   ├── testsvg.svg
│   │   │   │   └── tux.svg
│   │   │   ├── index.php
│   │   │   ├── lang
│   │   │   │   ├── afr.php
│   │   │   │   ├── ara.php
│   │   │   │   ├── aze.php
│   │   │   │   ├── bel.php
│   │   │   │   ├── bra.php
│   │   │   │   ├── bul.php
│   │   │   │   ├── cat.php
│   │   │   │   ├── ces.php
│   │   │   │   ├── chi.php
│   │   │   │   ├── cym.php
│   │   │   │   ├── dan.php
│   │   │   │   ├── eng.php
│   │   │   │   ├── est.php
│   │   │   │   ├── eus.php
│   │   │   │   ├── far.php
│   │   │   │   ├── fra.php
│   │   │   │   ├── ger.php
│   │   │   │   ├── gle.php
│   │   │   │   ├── glg.php
│   │   │   │   ├── hat.php
│   │   │   │   ├── heb.php
│   │   │   │   ├── hrv.php
│   │   │   │   ├── hun.php
│   │   │   │   ├── hye.php
│   │   │   │   ├── ind.php
│   │   │   │   ├── ita.php
│   │   │   │   ├── jpn.php
│   │   │   │   ├── kat.php
│   │   │   │   ├── kor.php
│   │   │   │   ├── mkd.php
│   │   │   │   ├── mlt.php
│   │   │   │   ├── msa.php
│   │   │   │   ├── nld.php
│   │   │   │   ├── nob.php
│   │   │   │   ├── pol.php
│   │   │   │   ├── por.php
│   │   │   │   ├── ron.php
│   │   │   │   ├── rus.php
│   │   │   │   ├── slv.php
│   │   │   │   ├── spa.php
│   │   │   │   ├── sqi.php
│   │   │   │   ├── srp.php
│   │   │   │   ├── swa.php
│   │   │   │   ├── swe.php
│   │   │   │   ├── ukr.php
│   │   │   │   ├── urd.php
│   │   │   │   ├── yid.php
│   │   │   │   └── zho.php
│   │   │   └── tcpdf_include.php
│   │   ├── fonts
│   │   │   ├── aealarabiya.ctg.z
│   │   │   ├── aealarabiya.php
│   │   │   ├── aealarabiya.z
│   │   │   ├── ae_fonts_2.0
│   │   │   │   ├── ChangeLog
│   │   │   │   ├── ChangeLog.9745.BAK
│   │   │   │   ├── COPYING
│   │   │   │   └── README
│   │   │   ├── aefurat.ctg.z
│   │   │   ├── aefurat.php
│   │   │   ├── aefurat.z
│   │   │   ├── cid0cs.php
│   │   │   ├── cid0ct.php
│   │   │   ├── cid0jp.php
│   │   │   ├── cid0kr.php
│   │   │   ├── courierbi.php
│   │   │   ├── courierb.php
│   │   │   ├── courieri.php
│   │   │   ├── courier.php
│   │   │   ├── dejavu-fonts-ttf-2.33
│   │   │   │   ├── AUTHORS
│   │   │   │   ├── BUGS
│   │   │   │   ├── langcover.txt
│   │   │   │   ├── LICENSE
│   │   │   │   ├── NEWS
│   │   │   │   ├── README
│   │   │   │   ├── status.txt
│   │   │   │   └── unicover.txt
│   │   │   ├── dejavu-fonts-ttf-2.34
│   │   │   │   ├── AUTHORS
│   │   │   │   ├── BUGS
│   │   │   │   ├── langcover.txt
│   │   │   │   ├── LICENSE
│   │   │   │   ├── NEWS
│   │   │   │   ├── README
│   │   │   │   ├── status.txt
│   │   │   │   └── unicover.txt
│   │   │   ├── dejavusansb.ctg.z
│   │   │   ├── dejavusansbi.ctg.z
│   │   │   ├── dejavusansbi.php
│   │   │   ├── dejavusansbi.z
│   │   │   ├── dejavusansb.php
│   │   │   ├── dejavusansb.z
│   │   │   ├── dejavusanscondensedb.ctg.z
│   │   │   ├── dejavusanscondensedbi.ctg.z
│   │   │   ├── dejavusanscondensedbi.php
│   │   │   ├── dejavusanscondensedbi.z
│   │   │   ├── dejavusanscondensedb.php
│   │   │   ├── dejavusanscondensedb.z
│   │   │   ├── dejavusanscondensed.ctg.z
│   │   │   ├── dejavusanscondensedi.ctg.z
│   │   │   ├── dejavusanscondensedi.php
│   │   │   ├── dejavusanscondensedi.z
│   │   │   ├── dejavusanscondensed.php
│   │   │   ├── dejavusanscondensed.z
│   │   │   ├── dejavusans.ctg.z
│   │   │   ├── dejavusansextralight.ctg.z
│   │   │   ├── dejavusansextralight.php
│   │   │   ├── dejavusansextralight.z
│   │   │   ├── dejavusansi.ctg.z
│   │   │   ├── dejavusansi.php
│   │   │   ├── dejavusansi.z
│   │   │   ├── dejavusansmonob.ctg.z
│   │   │   ├── dejavusansmonobi.ctg.z
│   │   │   ├── dejavusansmonobi.php
│   │   │   ├── dejavusansmonobi.z
│   │   │   ├── dejavusansmonob.php
│   │   │   ├── dejavusansmonob.z
│   │   │   ├── dejavusansmono.ctg.z
│   │   │   ├── dejavusansmonoi.ctg.z
│   │   │   ├── dejavusansmonoi.php
│   │   │   ├── dejavusansmonoi.z
│   │   │   ├── dejavusansmono.php
│   │   │   ├── dejavusansmono.z
│   │   │   ├── dejavusans.php
│   │   │   ├── dejavusans.z
│   │   │   ├── dejavuserifb.ctg.z
│   │   │   ├── dejavuserifbi.ctg.z
│   │   │   ├── dejavuserifbi.php
│   │   │   ├── dejavuserifbi.z
│   │   │   ├── dejavuserifb.php
│   │   │   ├── dejavuserifb.z
│   │   │   ├── dejavuserifcondensedb.ctg.z
│   │   │   ├── dejavuserifcondensedbi.ctg.z
│   │   │   ├── dejavuserifcondensedbi.php
│   │   │   ├── dejavuserifcondensedbi.z
│   │   │   ├── dejavuserifcondensedb.php
│   │   │   ├── dejavuserifcondensedb.z
│   │   │   ├── dejavuserifcondensed.ctg.z
│   │   │   ├── dejavuserifcondensedi.ctg.z
│   │   │   ├── dejavuserifcondensedi.php
│   │   │   ├── dejavuserifcondensedi.z
│   │   │   ├── dejavuserifcondensed.php
│   │   │   ├── dejavuserifcondensed.z
│   │   │   ├── dejavuserif.ctg.z
│   │   │   ├── dejavuserifi.ctg.z
│   │   │   ├── dejavuserifi.php
│   │   │   ├── dejavuserifi.z
│   │   │   ├── dejavuserif.php
│   │   │   ├── dejavuserif.z
│   │   │   ├── freefont-20100919
│   │   │   │   ├── AUTHORS
│   │   │   │   ├── ChangeLog
│   │   │   │   ├── COPYING
│   │   │   │   ├── CREDITS
│   │   │   │   ├── INSTALL
│   │   │   │   └── README
│   │   │   ├── freefont-20120503
│   │   │   │   ├── AUTHORS
│   │   │   │   ├── ChangeLog
│   │   │   │   ├── ChangeLog.10070.BAK
│   │   │   │   ├── COPYING
│   │   │   │   ├── CREDITS
│   │   │   │   ├── INSTALL
│   │   │   │   ├── README
│   │   │   │   ├── TROUBLESHOOTING
│   │   │   │   └── USAGE
│   │   │   ├── freemonob.ctg.z
│   │   │   ├── freemonobi.ctg.z
│   │   │   ├── freemonobi.php
│   │   │   ├── freemonobi.z
│   │   │   ├── freemonob.php
│   │   │   ├── freemonob.z
│   │   │   ├── freemono.ctg.z
│   │   │   ├── freemonoi.ctg.z
│   │   │   ├── freemonoi.php
│   │   │   ├── freemonoi.z
│   │   │   ├── freemono.php
│   │   │   ├── freemono.z
│   │   │   ├── freesansb.ctg.z
│   │   │   ├── freesansbi.ctg.z
│   │   │   ├── freesansbi.php
│   │   │   ├── freesansbi.z
│   │   │   ├── freesansb.php
│   │   │   ├── freesansb.z
│   │   │   ├── freesans.ctg.z
│   │   │   ├── freesansi.ctg.z
│   │   │   ├── freesansi.php
│   │   │   ├── freesansi.z
│   │   │   ├── freesans.php
│   │   │   ├── freesans.z
│   │   │   ├── freeserifb.ctg.z
│   │   │   ├── freeserifbi.ctg.z
│   │   │   ├── freeserifbi.php
│   │   │   ├── freeserifbi.z
│   │   │   ├── freeserifb.php
│   │   │   ├── freeserifb.z
│   │   │   ├── freeserif.ctg.z
│   │   │   ├── freeserifi.ctg.z
│   │   │   ├── freeserifi.php
│   │   │   ├── freeserifi.z
│   │   │   ├── freeserif.php
│   │   │   ├── freeserif.z
│   │   │   ├── helveticabi.php
│   │   │   ├── helveticab.php
│   │   │   ├── helveticai.php
│   │   │   ├── helvetica.php
│   │   │   ├── hysmyeongjostdmedium.php
│   │   │   ├── kozgopromedium.php
│   │   │   ├── kozminproregular.php
│   │   │   ├── msungstdlight.php
│   │   │   ├── pdfacourierbi.php
│   │   │   ├── pdfacourierbi.z
│   │   │   ├── pdfacourierb.php
│   │   │   ├── pdfacourierb.z
│   │   │   ├── pdfacourieri.php
│   │   │   ├── pdfacourieri.z
│   │   │   ├── pdfacourier.php
│   │   │   ├── pdfacourier.z
│   │   │   ├── pdfahelveticabi.php
│   │   │   ├── pdfahelveticabi.z
│   │   │   ├── pdfahelveticab.php
│   │   │   ├── pdfahelveticab.z
│   │   │   ├── pdfahelveticai.php
│   │   │   ├── pdfahelveticai.z
│   │   │   ├── pdfahelvetica.php
│   │   │   ├── pdfahelvetica.z
│   │   │   ├── pdfasymbol.php
│   │   │   ├── pdfasymbol.z
│   │   │   ├── pdfatimesbi.php
│   │   │   ├── pdfatimesbi.z
│   │   │   ├── pdfatimesb.php
│   │   │   ├── pdfatimesb.z
│   │   │   ├── pdfatimesi.php
│   │   │   ├── pdfatimesi.z
│   │   │   ├── pdfatimes.php
│   │   │   ├── pdfatimes.z
│   │   │   ├── pdfazapfdingbats.php
│   │   │   ├── pdfazapfdingbats.z
│   │   │   ├── stsongstdlight.php
│   │   │   ├── symbol.php
│   │   │   ├── timesbi.php
│   │   │   ├── timesb.php
│   │   │   ├── timesi.php
│   │   │   ├── times.php
│   │   │   ├── uni2cid_ac15.php
│   │   │   ├── uni2cid_ag15.php
│   │   │   ├── uni2cid_aj16.php
│   │   │   ├── uni2cid_ak12.php
│   │   │   └── zapfdingbats.php
│   │   ├── include
│   │   │   ├── barcodes
│   │   │   │   ├── datamatrix.php
│   │   │   │   ├── pdf417.php
│   │   │   │   └── qrcode.php
│   │   │   ├── sRGB.icc
│   │   │   ├── tcpdf_colors.php
│   │   │   ├── tcpdf_filters.php
│   │   │   ├── tcpdf_font_data.php
│   │   │   ├── tcpdf_fonts.php
│   │   │   ├── tcpdf_images.php
│   │   │   └── tcpdf_static.php
│   │   ├── LICENSE.TXT
│   │   ├── README.md
│   │   ├── tcpdf_autoconfig.php
│   │   ├── tcpdf_barcodes_1d.php
│   │   ├── tcpdf_barcodes_2d.php
│   │   ├── tcpdf_import.php
│   │   ├── tcpdf_parser.php
│   │   ├── tcpdf.php
│   │   └── tools
│   │   ├── convert_fonts_examples.txt
│   │   └── tcpdf_addfont.php
│   ├── theseer
│   │   ├── fdomdocument
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── fDOMDocument.spec
│   │   │   ├── LICENSE
│   │   │   ├── phpcs.xml
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── autoload.php
│   │   │   │   ├── css
│   │   │   │   │   ├── DollarEqualRule.php
│   │   │   │   │   ├── NotRule.php
│   │   │   │   │   ├── NthChildRule.php
│   │   │   │   │   ├── RegexRule.php
│   │   │   │   │   ├── RuleInterface.php
│   │   │   │   │   └── Translator.php
│   │   │   │   ├── fDOMDocumentFragment.php
│   │   │   │   ├── fDOMDocument.php
│   │   │   │   ├── fDOMElement.php
│   │   │   │   ├── fDOMException.php
│   │   │   │   ├── fDOMNode.php
│   │   │   │   ├── fDOMXPath.php
│   │   │   │   ├── XPathQueryException.php
│   │   │   │   └── XPathQuery.php
│   │   │   └── tests
│   │   │   ├── _data
│   │   │   │   ├── broken.xml
│   │   │   │   ├── selector.xml
│   │   │   │   ├── undefentity.xml
│   │   │   │   └── valid.xml
│   │   │   ├── fDOMDocumentFragment.test.php
│   │   │   ├── fDOMDocument.test.php
│   │   │   ├── fDOMElement.test.php
│   │   │   ├── fDOMXPath.test.php
│   │   │   ├── Translator.test.php
│   │   │   └── XPathQuery.test.php
│   │   └── tokenizer
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phive.xml
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Exception.php
│   │   │   ├── NamespaceUriException.php
│   │   │   ├── NamespaceUri.php
│   │   │   ├── TokenCollectionException.php
│   │   │   ├── TokenCollection.php
│   │   │   ├── Tokenizer.php
│   │   │   ├── Token.php
│   │   │   └── XMLSerializer.php
│   │   └── tests
│   │   ├── _files
│   │   │   ├── customns.xml
│   │   │   ├── test.php
│   │   │   ├── test.php.tokens
│   │   │   └── test.php.xml
│   │   ├── NamespaceUriTest.php
│   │   ├── TokenCollectionTest.php
│   │   ├── TokenizerTest.php
│   │   ├── TokenTest.php
│   │   └── XMLSerializerTest.php
│   ├── webmozart
│   │   └── assert
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── Assert.php
│   └── zendframework
│   └── zend-escaper
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE.md
│   ├── README.md
│   └── src
│   ├── Escaper.php
│   └── Exception
│   ├── ExceptionInterface.php
│   ├── InvalidArgumentException.php
│   └── RuntimeException.php
├── phpword.ini.dist
├── README.md
├── samples
│   ├── bootstrap
│   │   ├── css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── font-awesome.min.css
│   │   │   └── phpword.css
│   │   ├── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.svg
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   └── fontawesome-webfont.woff
│   │   └── js
│   │   ├── bootstrap.min.js
│   │   └── jquery.min.js
│   ├── index.php
│   ├── resources
│   │   ├── _earth.jpg
│   │   ├── _mars.jpg
│   │   ├── PhpWord.png
│   │   ├── Sample_07_TemplateCloneRow.docx
│   │   ├── Sample_11_ReadWord2007.docx
│   │   ├── Sample_11_ReadWord97.doc
│   │   ├── Sample_23_TemplateBlock.docx
│   │   ├── Sample_24_ReadODText.odt
│   │   ├── Sample_28_ReadRTF.rtf
│   │   ├── Sample_30_ReadHTML.html
│   │   └── _sheet.xls
│   ├── results
│   │   ├── Sample_01_SimpleText.docx
│   │   ├── Sample_01_SimpleText.html
│   │   ├── Sample_01_SimpleText.odt
│   │   ├── Sample_01_SimpleText.pdf
│   │   ├── Sample_01_SimpleText.rtf
│   │   ├── Sample_02_TabStops.docx
│   │   ├── Sample_02_TabStops.html
│   │   ├── Sample_02_TabStops.odt
│   │   ├── Sample_02_TabStops.pdf
│   │   ├── Sample_02_TabStops.rtf
│   │   ├── Sample_08_ParagraphPagination.docx
│   │   ├── Sample_08_ParagraphPagination.html
│   │   ├── Sample_08_ParagraphPagination.odt
│   │   ├── Sample_08_ParagraphPagination.pdf
│   │   ├── Sample_08_ParagraphPagination.rtf
│   │   ├── Sample_11_ReadWord2007.docx
│   │   ├── Sample_11_ReadWord2007.html
│   │   ├── Sample_11_ReadWord2007.odt
│   │   ├── Sample_11_ReadWord2007.pdf
│   │   ├── Sample_11_ReadWord2007.rtf
│   │   ├── Sample_12_HeaderFooter.docx
│   │   ├── Sample_12_HeaderFooter.html
│   │   ├── Sample_12_HeaderFooter.odt
│   │   ├── Sample_12_HeaderFooter.pdf
│   │   ├── Sample_12_HeaderFooter.rtf
│   │   ├── Sample_13_Images.docx
│   │   ├── Sample_13_Images.html
│   │   ├── Sample_13_Images.odt
│   │   ├── Sample_13_Images.pdf
│   │   ├── Sample_13_Images.rtf
│   │   ├── Sample_14_ListItem.docx
│   │   ├── Sample_14_ListItem.html
│   │   ├── Sample_14_ListItem.odt
│   │   ├── Sample_14_ListItem.pdf
│   │   ├── Sample_14_ListItem.rtf
│   │   ├── Sample_16_Object.docx
│   │   ├── Sample_16_Object.html
│   │   ├── Sample_16_Object.odt
│   │   ├── Sample_16_Object.pdf
│   │   ├── Sample_16_Object.rtf
│   │   ├── Sample_26_Html.docx
│   │   ├── Sample_26_Html.html
│   │   ├── Sample_26_Html.odt
│   │   ├── Sample_26_Html.pdf
│   │   └── Sample_26_Html.rtf
│   ├── Sample_01_SimpleText.php
│   ├── Sample_02_TabStops.php
│   ├── Sample_03_Sections.php
│   ├── Sample_04_Textrun.php
│   ├── Sample_05_Multicolumn.php
│   ├── Sample_06_Footnote.php
│   ├── Sample_07_TemplateCloneRow.php
│   ├── Sample_08_ParagraphPagination.php
│   ├── Sample_09_Tables.php
│   ├── Sample_10_EastAsianFontStyle.php
│   ├── Sample_11_ReadWord2007.php
│   ├── Sample_11_ReadWord97.php
│   ├── Sample_12_HeaderFooter.php
│   ├── Sample_13_Images.php
│   ├── Sample_14_ListItem.php
│   ├── Sample_15_Link.php
│   ├── Sample_16_Object.php
│   ├── Sample_17_TitleTOC.php
│   ├── Sample_18_Watermark.php
│   ├── Sample_19_TextBreak.php
│   ├── Sample_20_BGColor.php
│   ├── Sample_21_TableRowRules.php
│   ├── Sample_22_CheckBox.php
│   ├── Sample_23_TemplateBlock.php
│   ├── Sample_24_ReadODText.php
│   ├── Sample_25_TextBox.php
│   ├── Sample_26_Html.php
│   ├── Sample_27_Field.php
│   ├── Sample_28_ReadRTF.php
│   ├── Sample_29_Line.php
│   ├── Sample_30_ReadHTML.php
│   ├── Sample_31_Shape.php
│   ├── Sample_32_Chart.php
│   ├── Sample_33_FormField.php
│   ├── Sample_34_SDT.php
│   ├── Sample_35_InternalLink.php
│   ├── Sample_36_RTL.php
│   ├── Sample_37_Comments.php
│   ├── Sample_38_Protection.php
│   ├── Sample_39_TrackChanges.php
│   ├── Sample_Footer.php
│   └── Sample_Header.php
├── sonar-project.properties
├── src
│   └── PhpWord
│   ├── Collection
│   │   ├── AbstractCollection.php
│   │   ├── Bookmarks.php
│   │   ├── Charts.php
│   │   ├── Comments.php
│   │   ├── Endnotes.php
│   │   ├── Footnotes.php
│   │   └── Titles.php
│   ├── ComplexType
│   │   ├── FootnoteProperties.php
│   │   ├── ProofState.php
│   │   ├── TblWidth.php
│   │   └── TrackChangesView.php
│   ├── Element
│   │   ├── AbstractContainer.php
│   │   ├── AbstractElement.php
│   │   ├── Bookmark.php
│   │   ├── Cell.php
│   │   ├── Chart.php
│   │   ├── CheckBox.php
│   │   ├── Comment.php
│   │   ├── Endnote.php
│   │   ├── Field.php
│   │   ├── Footer.php
│   │   ├── Footnote.php
│   │   ├── FormField.php
│   │   ├── Header.php
│   │   ├── Image.php
│   │   ├── Line.php
│   │   ├── Link.php
│   │   ├── ListItem.php
│   │   ├── ListItemRun.php
│   │   ├── OLEObject.php
│   │   ├── PageBreak.php
│   │   ├── PreserveText.php
│   │   ├── Row.php
│   │   ├── SDT.php
│   │   ├── Section.php
│   │   ├── Shape.php
│   │   ├── Table.php
│   │   ├── TextBox.php
│   │   ├── TextBreak.php
│   │   ├── Text.php
│   │   ├── TextRun.php
│   │   ├── Title.php
│   │   ├── TOC.php
│   │   └── TrackChange.php
│   ├── Escaper
│   │   ├── AbstractEscaper.php
│   │   ├── EscaperInterface.php
│   │   ├── RegExp.php
│   │   ├── Rtf.php
│   │   └── Xml.php
│   ├── Exception
│   │   ├── CopyFileException.php
│   │   ├── CreateTemporaryFileException.php
│   │   ├── Exception.php
│   │   ├── InvalidImageException.php
│   │   ├── InvalidObjectException.php
│   │   ├── InvalidStyleException.php
│   │   └── UnsupportedImageTypeException.php
│   ├── IOFactory.php
│   ├── Media.php
│   ├── Metadata
│   │   ├── Compatibility.php
│   │   ├── DocInfo.php
│   │   ├── Protection.php
│   │   └── Settings.php
│   ├── PhpWord.php
│   ├── Reader
│   │   ├── AbstractReader.php
│   │   ├── HTML.php
│   │   ├── MsDoc.php
│   │   ├── ODText
│   │   │   ├── AbstractPart.php
│   │   │   ├── Content.php
│   │   │   └── Meta.php
│   │   ├── ODText.php
│   │   ├── ReaderInterface.php
│   │   ├── RTF
│   │   │   └── Document.php
│   │   ├── RTF.php
│   │   ├── Word2007
│   │   │   ├── AbstractPart.php
│   │   │   ├── DocPropsApp.php
│   │   │   ├── DocPropsCore.php
│   │   │   ├── DocPropsCustom.php
│   │   │   ├── Document.php
│   │   │   ├── Endnotes.php
│   │   │   ├── Footnotes.php
│   │   │   ├── Numbering.php
│   │   │   ├── Settings.php
│   │   │   └── Styles.php
│   │   └── Word2007.php
│   ├── resources
│   │   ├── doc.png
│   │   ├── ppt.png
│   │   └── xls.png
│   ├── Settings.php
│   ├── Shared
│   │   ├── AbstractEnum.php
│   │   ├── Converter.php
│   │   ├── Html.php
│   │   ├── OLERead.php
│   │   ├── PCLZip
│   │   │   └── pclzip.lib.php
│   │   └── ZipArchive.php
│   ├── SimpleType
│   │   ├── DocProtect.php
│   │   ├── Jc.php
│   │   ├── JcTable.php
│   │   ├── LineSpacingRule.php
│   │   ├── NumberFormat.php
│   │   ├── TblWidth.php
│   │   ├── TextAlignment.php
│   │   └── Zoom.php
│   ├── Style
│   │   ├── AbstractStyle.php
│   │   ├── Border.php
│   │   ├── Cell.php
│   │   ├── Chart.php
│   │   ├── Extrusion.php
│   │   ├── Fill.php
│   │   ├── Font.php
│   │   ├── Frame.php
│   │   ├── Image.php
│   │   ├── Indentation.php
│   │   ├── Language.php
│   │   ├── LineNumbering.php
│   │   ├── Line.php
│   │   ├── ListItem.php
│   │   ├── NumberingLevel.php
│   │   ├── Numbering.php
│   │   ├── Outline.php
│   │   ├── Paper.php
│   │   ├── Paragraph.php
│   │   ├── Row.php
│   │   ├── Section.php
│   │   ├── Shading.php
│   │   ├── Shadow.php
│   │   ├── Shape.php
│   │   ├── Spacing.php
│   │   ├── Table.php
│   │   ├── TablePosition.php
│   │   ├── Tab.php
│   │   ├── TextBox.php
│   │   └── TOC.php
│   ├── Style.php
│   ├── Template.php
│   ├── TemplateProcessor.php
│   └── Writer
│   ├── AbstractWriter.php
│   ├── HTML
│   │   ├── Element
│   │   │   ├── AbstractElement.php
│   │   │   ├── Bookmark.php
│   │   │   ├── Container.php
│   │   │   ├── Endnote.php
│   │   │   ├── Footnote.php
│   │   │   ├── Image.php
│   │   │   ├── Link.php
│   │   │   ├── ListItem.php
│   │   │   ├── PageBreak.php
│   │   │   ├── Table.php
│   │   │   ├── TextBreak.php
│   │   │   ├── Text.php
│   │   │   ├── TextRun.php
│   │   │   └── Title.php
│   │   ├── Part
│   │   │   ├── AbstractPart.php
│   │   │   ├── Body.php
│   │   │   └── Head.php
│   │   └── Style
│   │   ├── AbstractStyle.php
│   │   ├── Font.php
│   │   ├── Generic.php
│   │   ├── Image.php
│   │   └── Paragraph.php
│   ├── HTML.php
│   ├── ODText
│   │   ├── Element
│   │   │   ├── AbstractElement.php
│   │   │   ├── Container.php
│   │   │   ├── Image.php
│   │   │   ├── Link.php
│   │   │   ├── PageBreak.php
│   │   │   ├── Table.php
│   │   │   ├── TextBreak.php
│   │   │   ├── Text.php
│   │   │   ├── TextRun.php
│   │   │   └── Title.php
│   │   ├── Part
│   │   │   ├── AbstractPart.php
│   │   │   ├── Content.php
│   │   │   ├── Manifest.php
│   │   │   ├── Meta.php
│   │   │   ├── Mimetype.php
│   │   │   └── Styles.php
│   │   └── Style
│   │   ├── AbstractStyle.php
│   │   ├── Font.php
│   │   ├── Image.php
│   │   ├── Paragraph.php
│   │   ├── Section.php
│   │   └── Table.php
│   ├── ODText.php
│   ├── PDF
│   │   ├── AbstractRenderer.php
│   │   ├── DomPDF.php
│   │   ├── MPDF.php
│   │   └── TCPDF.php
│   ├── PDF.php
│   ├── RTF
│   │   ├── Element
│   │   │   ├── AbstractElement.php
│   │   │   ├── Container.php
│   │   │   ├── Image.php
│   │   │   ├── Link.php
│   │   │   ├── ListItem.php
│   │   │   ├── PageBreak.php
│   │   │   ├── Table.php
│   │   │   ├── TextBreak.php
│   │   │   ├── Text.php
│   │   │   ├── TextRun.php
│   │   │   └── Title.php
│   │   ├── Part
│   │   │   ├── AbstractPart.php
│   │   │   ├── Document.php
│   │   │   └── Header.php
│   │   └── Style
│   │   ├── AbstractStyle.php
│   │   ├── Border.php
│   │   ├── Font.php
│   │   ├── Indentation.php
│   │   ├── Paragraph.php
│   │   ├── Section.php
│   │   └── Tab.php
│   ├── RTF.php
│   ├── Word2007
│   │   ├── Element
│   │   │   ├── AbstractElement.php
│   │   │   ├── Bookmark.php
│   │   │   ├── Chart.php
│   │   │   ├── CheckBox.php
│   │   │   ├── Container.php
│   │   │   ├── Endnote.php
│   │   │   ├── Field.php
│   │   │   ├── Footnote.php
│   │   │   ├── FormField.php
│   │   │   ├── Image.php
│   │   │   ├── Line.php
│   │   │   ├── Link.php
│   │   │   ├── ListItem.php
│   │   │   ├── ListItemRun.php
│   │   │   ├── OLEObject.php
│   │   │   ├── PageBreak.php
│   │   │   ├── ParagraphAlignment.php
│   │   │   ├── PreserveText.php
│   │   │   ├── SDT.php
│   │   │   ├── Shape.php
│   │   │   ├── TableAlignment.php
│   │   │   ├── Table.php
│   │   │   ├── TextBox.php
│   │   │   ├── TextBreak.php
│   │   │   ├── Text.php
│   │   │   ├── TextRun.php
│   │   │   ├── Title.php
│   │   │   └── TOC.php
│   │   ├── Part
│   │   │   ├── AbstractPart.php
│   │   │   ├── Chart.php
│   │   │   ├── Comments.php
│   │   │   ├── ContentTypes.php
│   │   │   ├── DocPropsApp.php
│   │   │   ├── DocPropsCore.php
│   │   │   ├── DocPropsCustom.php
│   │   │   ├── Document.php
│   │   │   ├── Endnotes.php
│   │   │   ├── FontTable.php
│   │   │   ├── Footer.php
│   │   │   ├── Footnotes.php
│   │   │   ├── Header.php
│   │   │   ├── Numbering.php
│   │   │   ├── RelsDocument.php
│   │   │   ├── RelsPart.php
│   │   │   ├── Rels.php
│   │   │   ├── Settings.php
│   │   │   ├── Styles.php
│   │   │   ├── Theme.php
│   │   │   └── WebSettings.php
│   │   └── Style
│   │   ├── AbstractStyle.php
│   │   ├── Cell.php
│   │   ├── Extrusion.php
│   │   ├── Fill.php
│   │   ├── Font.php
│   │   ├── Frame.php
│   │   ├── Image.php
│   │   ├── Indentation.php
│   │   ├── LineNumbering.php
│   │   ├── Line.php
│   │   ├── MarginBorder.php
│   │   ├── Outline.php
│   │   ├── Paragraph.php
│   │   ├── Row.php
│   │   ├── Section.php
│   │   ├── Shading.php
│   │   ├── Shadow.php
│   │   ├── Shape.php
│   │   ├── Spacing.php
│   │   ├── Table.php
│   │   ├── TablePosition.php
│   │   ├── Tab.php
│   │   └── TextBox.php
│   ├── Word2007.php
│   └── WriterInterface.php
└── vendor
├── autoload.php
├── bin
│   ├── pdepend
│   ├── pdepend.bat
│   ├── phpcbf
│   ├── phpcbf.bat
│   ├── php-coveralls
│   ├── php-coveralls.bat
│   ├── phpcs
│   ├── phpcs.bat
│   ├── php-cs-fixer
│   ├── php-cs-fixer.bat
│   ├── phploc
│   ├── phploc.bat
│   ├── phpmd
│   ├── phpmd.bat
│   ├── phpunit
│   └── phpunit.bat
├── composer
│   ├── autoload_classmap.php
│   ├── autoload_files.php
│   ├── autoload_namespaces.php
│   ├── autoload_psr4.php
│   ├── autoload_real.php
│   ├── autoload_static.php
│   ├── ClassLoader.php
│   ├── installed.json
│   ├── LICENSE
│   ├── semver
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── Comparator.php
│   │   ├── Constraint
│   │   │   ├── AbstractConstraint.php
│   │   │   ├── ConstraintInterface.php
│   │   │   ├── Constraint.php
│   │   │   ├── EmptyConstraint.php
│   │   │   └── MultiConstraint.php
│   │   ├── Semver.php
│   │   └── VersionParser.php
│   └── xdebug-handler
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   ├── PhpConfig.php
│   ├── Process.php
│   ├── Status.php
│   └── XdebugHandler.php
├── doctrine
│   ├── annotations
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── docs
│   │   │   └── en
│   │   │   ├── annotations.rst
│   │   │   ├── custom.rst
│   │   │   ├── index.rst
│   │   │   └── sidebar.rst
│   │   ├── lib
│   │   │   └── Doctrine
│   │   │   └── Common
│   │   │   └── Annotations
│   │   │   ├── Annotation
│   │   │   │   ├── Attribute.php
│   │   │   │   ├── Attributes.php
│   │   │   │   ├── Enum.php
│   │   │   │   ├── IgnoreAnnotation.php
│   │   │   │   ├── Required.php
│   │   │   │   └── Target.php
│   │   │   ├── AnnotationException.php
│   │   │   ├── Annotation.php
│   │   │   ├── AnnotationReader.php
│   │   │   ├── AnnotationRegistry.php
│   │   │   ├── CachedReader.php
│   │   │   ├── DocLexer.php
│   │   │   ├── DocParser.php
│   │   │   ├── FileCacheReader.php
│   │   │   ├── IndexedReader.php
│   │   │   ├── PhpParser.php
│   │   │   ├── Reader.php
│   │   │   ├── SimpleAnnotationReader.php
│   │   │   └── TokenParser.php
│   │   ├── LICENSE
│   │   ├── phpstan.neon
│   │   └── README.md
│   ├── instantiator
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── docs
│   │   │   └── en
│   │   │   ├── index.rst
│   │   │   └── sidebar.rst
│   │   ├── LICENSE
│   │   ├── phpbench.json
│   │   ├── phpcs.xml.dist
│   │   ├── phpstan.neon.dist
│   │   ├── README.md
│   │   └── src
│   │   └── Doctrine
│   │   └── Instantiator
│   │   ├── Exception
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   └── UnexpectedValueException.php
│   │   ├── InstantiatorInterface.php
│   │   └── Instantiator.php
│   └── lexer
│   ├── composer.json
│   ├── lib
│   │   └── Doctrine
│   │   └── Common
│   │   └── Lexer
│   │   └── AbstractLexer.php
│   ├── LICENSE
│   └── README.md
├── dompdf
│   └── dompdf
│   ├── composer.json
│   ├── CONTRIBUTING.md
│   ├── lib
│   │   ├── Cpdf.php
│   │   ├── fonts
│   │   │   ├── Courier.afm
│   │   │   ├── Courier-Bold.afm
│   │   │   ├── Courier-BoldOblique.afm
│   │   │   ├── Courier-Oblique.afm
│   │   │   ├── DejaVuSans-BoldOblique.ttf
│   │   │   ├── DejaVuSans-BoldOblique.ufm
│   │   │   ├── DejaVuSans-Bold.ttf
│   │   │   ├── DejaVuSans-Bold.ufm
│   │   │   ├── DejaVuSansMono-BoldOblique.ttf
│   │   │   ├── DejaVuSansMono-BoldOblique.ufm
│   │   │   ├── DejaVuSansMono-Bold.ttf
│   │   │   ├── DejaVuSansMono-Bold.ufm
│   │   │   ├── DejaVuSansMono-Oblique.ttf
│   │   │   ├── DejaVuSansMono-Oblique.ufm
│   │   │   ├── DejaVuSansMono.ttf
│   │   │   ├── DejaVuSansMono.ufm
│   │   │   ├── DejaVuSans-Oblique.ttf
│   │   │   ├── DejaVuSans-Oblique.ufm
│   │   │   ├── DejaVuSans.ttf
│   │   │   ├── DejaVuSans.ufm
│   │   │   ├── DejaVuSerif-BoldItalic.ttf
│   │   │   ├── DejaVuSerif-BoldItalic.ufm
│   │   │   ├── DejaVuSerif-Bold.ttf
│   │   │   ├── DejaVuSerif-Bold.ufm
│   │   │   ├── DejaVuSerif-Italic.ttf
│   │   │   ├── DejaVuSerif-Italic.ufm
│   │   │   ├── DejaVuSerif.ttf
│   │   │   ├── DejaVuSerif.ufm
│   │   │   ├── dompdf_font_family_cache.dist.php
│   │   │   ├── Helvetica.afm
│   │   │   ├── Helvetica-Bold.afm
│   │   │   ├── Helvetica-BoldOblique.afm
│   │   │   ├── Helvetica-Oblique.afm
│   │   │   ├── mustRead.html
│   │   │   ├── Symbol.afm
│   │   │   ├── Times-Bold.afm
│   │   │   ├── Times-Bold.afm.php
│   │   │   ├── Times-BoldItalic.afm
│   │   │   ├── Times-BoldItalic.afm.php
│   │   │   ├── Times-Italic.afm
│   │   │   ├── Times-Italic.afm.php
│   │   │   ├── Times-Roman.afm
│   │   │   ├── Times-Roman.afm.php
│   │   │   └── ZapfDingbats.afm
│   │   ├── html5lib
│   │   │   ├── Data.php
│   │   │   ├── InputStream.php
│   │   │   ├── named-character-references.ser
│   │   │   ├── Parser.php
│   │   │   ├── Tokenizer.php
│   │   │   └── TreeBuilder.php
│   │   └── res
│   │   ├── broken_image.png
│   │   ├── broken_image.svg
│   │   └── html.css
│   ├── LICENSE.LGPL
│   ├── phpcs.xml
│   ├── README.md
│   ├── src
│   │   ├── Adapter
│   │   │   ├── CPDF.php
│   │   │   ├── GD.php
│   │   │   └── PDFLib.php
│   │   ├── Autoloader.php
│   │   ├── CanvasFactory.php
│   │   ├── Canvas.php
│   │   ├── Cellmap.php
│   │   ├── Css
│   │   │   ├── AttributeTranslator.php
│   │   │   ├── Color.php
│   │   │   ├── Style.php
│   │   │   └── Stylesheet.php
│   │   ├── Dompdf.php
│   │   ├── Exception
│   │   │   └── ImageException.php
│   │   ├── Exception.php
│   │   ├── FontMetrics.php
│   │   ├── Frame
│   │   │   ├── Factory.php
│   │   │   ├── FrameListIterator.php
│   │   │   ├── FrameList.php
│   │   │   ├── FrameTreeIterator.php
│   │   │   ├── FrameTreeList.php
│   │   │   └── FrameTree.php
│   │   ├── FrameDecorator
│   │   │   ├── AbstractFrameDecorator.php
│   │   │   ├── Block.php
│   │   │   ├── Image.php
│   │   │   ├── Inline.php
│   │   │   ├── ListBulletImage.php
│   │   │   ├── ListBullet.php
│   │   │   ├── NullFrameDecorator.php
│   │   │   ├── Page.php
│   │   │   ├── TableCell.php
│   │   │   ├── Table.php
│   │   │   ├── TableRowGroup.php
│   │   │   ├── TableRow.php
│   │   │   └── Text.php
│   │   ├── Frame.php
│   │   ├── FrameReflower
│   │   │   ├── AbstractFrameReflower.php
│   │   │   ├── Block.php
│   │   │   ├── Image.php
│   │   │   ├── Inline.php
│   │   │   ├── ListBullet.php
│   │   │   ├── NullFrameReflower.php
│   │   │   ├── Page.php
│   │   │   ├── TableCell.php
│   │   │   ├── Table.php
│   │   │   ├── TableRowGroup.php
│   │   │   ├── TableRow.php
│   │   │   └── Text.php
│   │   ├── Helpers.php
│   │   ├── Image
│   │   │   └── Cache.php
│   │   ├── JavascriptEmbedder.php
│   │   ├── LineBox.php
│   │   ├── Options.php
│   │   ├── PhpEvaluator.php
│   │   ├── Positioner
│   │   │   ├── Absolute.php
│   │   │   ├── AbstractPositioner.php
│   │   │   ├── Block.php
│   │   │   ├── Fixed.php
│   │   │   ├── Inline.php
│   │   │   ├── ListBullet.php
│   │   │   ├── NullPositioner.php
│   │   │   ├── TableCell.php
│   │   │   └── TableRow.php
│   │   ├── Renderer
│   │   │   ├── AbstractRenderer.php
│   │   │   ├── Block.php
│   │   │   ├── Image.php
│   │   │   ├── Inline.php
│   │   │   ├── ListBullet.php
│   │   │   ├── TableCell.php
│   │   │   ├── TableRowGroup.php
│   │   │   └── Text.php
│   │   └── Renderer.php
│   └── VERSION
├── friendsofphp
│   └── php-cs-fixer
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── CONTRIBUTING.md
│   ├── dev-tools
│   │   ├── build.sh
│   │   ├── check-shell-scripts.sh
│   │   ├── ci-integration.sh
│   │   ├── composer.json
│   │   ├── info-extractor.php
│   │   └── trigger-website.sh
│   ├── doc
│   │   ├── checkstyle.xsd
│   │   ├── COOKBOOK-FIXERS.md
│   │   ├── junit-10.xsd
│   │   ├── schema.json
│   │   └── xml.xsd
│   ├── LICENSE
│   ├── php-cs-fixer
│   ├── README.rst
│   ├── src
│   │   ├── AbstractAlignFixerHelper.php
│   │   ├── AbstractDoctrineAnnotationFixer.php
│   │   ├── AbstractFixer.php
│   │   ├── AbstractFopenFlagFixer.php
│   │   ├── AbstractFunctionReferenceFixer.php
│   │   ├── AbstractLinesBeforeNamespaceFixer.php
│   │   ├── AbstractNoUselessElseFixer.php
│   │   ├── AbstractPhpdocTypesFixer.php
│   │   ├── AbstractProxyFixer.php
│   │   ├── AbstractPsrAutoloadingFixer.php
│   │   ├── Cache
│   │   │   ├── CacheInterface.php
│   │   │   ├── CacheManagerInterface.php
│   │   │   ├── Cache.php
│   │   │   ├── DirectoryInterface.php
│   │   │   ├── Directory.php
│   │   │   ├── FileCacheManager.php
│   │   │   ├── FileHandlerInterface.php
│   │   │   ├── FileHandler.php
│   │   │   ├── NullCacheManager.php
│   │   │   ├── SignatureInterface.php
│   │   │   └── Signature.php
│   │   ├── ConfigInterface.php
│   │   ├── Config.php
│   │   ├── ConfigurationException
│   │   │   ├── InvalidConfigurationException.php
│   │   │   ├── InvalidFixerConfigurationException.php
│   │   │   ├── InvalidForEnvFixerConfigurationException.php
│   │   │   └── RequiredFixerConfigurationException.php
│   │   ├── Console
│   │   │   ├── Application.php
│   │   │   ├── Command
│   │   │   │   ├── DescribeCommand.php
│   │   │   │   ├── DescribeNameNotFoundException.php
│   │   │   │   ├── FixCommandExitStatusCalculator.php
│   │   │   │   ├── FixCommand.php
│   │   │   │   ├── HelpCommand.php
│   │   │   │   ├── ReadmeCommand.php
│   │   │   │   └── SelfUpdateCommand.php
│   │   │   ├── ConfigurationResolver.php
│   │   │   ├── Output
│   │   │   │   ├── ErrorOutput.php
│   │   │   │   ├── NullOutput.php
│   │   │   │   ├── ProcessOutputInterface.php
│   │   │   │   └── ProcessOutput.php
│   │   │   ├── SelfUpdate
│   │   │   │   ├── GithubClientInterface.php
│   │   │   │   ├── GithubClient.php
│   │   │   │   ├── NewVersionCheckerInterface.php
│   │   │   │   └── NewVersionChecker.php
│   │   │   └── WarningsDetector.php
│   │   ├── Differ
│   │   │   ├── DiffConsoleFormatter.php
│   │   │   ├── DifferInterface.php
│   │   │   ├── FullDiffer.php
│   │   │   ├── NullDiffer.php
│   │   │   ├── SebastianBergmannDiffer.php
│   │   │   ├── SebastianBergmannShortDiffer.php
│   │   │   └── UnifiedDiffer.php
│   │   ├── DocBlock
│   │   │   ├── Annotation.php
│   │   │   ├── DocBlock.php
│   │   │   ├── Line.php
│   │   │   ├── ShortDescription.php
│   │   │   ├── TagComparator.php
│   │   │   └── Tag.php
│   │   ├── Doctrine
│   │   │   └── Annotation
│   │   │   ├── Token.php
│   │   │   └── Tokens.php
│   │   ├── Error
│   │   │   ├── Error.php
│   │   │   └── ErrorsManager.php
│   │   ├── FileReader.php
│   │   ├── FileRemoval.php
│   │   ├── Finder.php
│   │   ├── Fixer
│   │   │   ├── Alias
│   │   │   │   ├── BacktickToShellExecFixer.php
│   │   │   │   ├── EregToPregFixer.php
│   │   │   │   ├── MbStrFunctionsFixer.php
│   │   │   │   ├── NoAliasFunctionsFixer.php
│   │   │   │   ├── NoMixedEchoPrintFixer.php
│   │   │   │   ├── PowToExponentiationFixer.php
│   │   │   │   ├── RandomApiMigrationFixer.php
│   │   │   │   └── SetTypeToCastFixer.php
│   │   │   ├── ArrayNotation
│   │   │   │   ├── ArraySyntaxFixer.php
│   │   │   │   ├── NoMultilineWhitespaceAroundDoubleArrowFixer.php
│   │   │   │   ├── NormalizeIndexBraceFixer.php
│   │   │   │   ├── NoTrailingCommaInSinglelineArrayFixer.php
│   │   │   │   ├── NoWhitespaceBeforeCommaInArrayFixer.php
│   │   │   │   ├── TrailingCommaInMultilineArrayFixer.php
│   │   │   │   ├── TrimArraySpacesFixer.php
│   │   │   │   └── WhitespaceAfterCommaInArrayFixer.php
│   │   │   ├── Basic
│   │   │   │   ├── BracesFixer.php
│   │   │   │   ├── EncodingFixer.php
│   │   │   │   ├── NonPrintableCharacterFixer.php
│   │   │   │   ├── Psr0Fixer.php
│   │   │   │   └── Psr4Fixer.php
│   │   │   ├── Casing
│   │   │   │   ├── LowercaseConstantsFixer.php
│   │   │   │   ├── LowercaseKeywordsFixer.php
│   │   │   │   ├── LowercaseStaticReferenceFixer.php
│   │   │   │   ├── MagicConstantCasingFixer.php
│   │   │   │   ├── MagicMethodCasingFixer.php
│   │   │   │   └── NativeFunctionCasingFixer.php
│   │   │   ├── CastNotation
│   │   │   │   ├── CastSpacesFixer.php
│   │   │   │   ├── LowercaseCastFixer.php
│   │   │   │   ├── ModernizeTypesCastingFixer.php
│   │   │   │   ├── NoShortBoolCastFixer.php
│   │   │   │   ├── NoUnsetCastFixer.php
│   │   │   │   └── ShortScalarCastFixer.php
│   │   │   ├── ClassNotation
│   │   │   │   ├── ClassAttributesSeparationFixer.php
│   │   │   │   ├── ClassDefinitionFixer.php
│   │   │   │   ├── FinalInternalClassFixer.php
│   │   │   │   ├── MethodSeparationFixer.php
│   │   │   │   ├── NoBlankLinesAfterClassOpeningFixer.php
│   │   │   │   ├── NoNullPropertyInitializationFixer.php
│   │   │   │   ├── NoPhp4ConstructorFixer.php
│   │   │   │   ├── NoUnneededFinalMethodFixer.php
│   │   │   │   ├── OrderedClassElementsFixer.php
│   │   │   │   ├── ProtectedToPrivateFixer.php
│   │   │   │   ├── SelfAccessorFixer.php
│   │   │   │   ├── SingleClassElementPerStatementFixer.php
│   │   │   │   └── VisibilityRequiredFixer.php
│   │   │   ├── ClassUsage
│   │   │   │   └── DateTimeImmutableFixer.php
│   │   │   ├── Comment
│   │   │   │   ├── CommentToPhpdocFixer.php
│   │   │   │   ├── HashToSlashCommentFixer.php
│   │   │   │   ├── HeaderCommentFixer.php
│   │   │   │   ├── MultilineCommentOpeningClosingFixer.php
│   │   │   │   ├── NoEmptyCommentFixer.php
│   │   │   │   ├── NoTrailingWhitespaceInCommentFixer.php
│   │   │   │   └── SingleLineCommentStyleFixer.php
│   │   │   ├── ConfigurableFixerInterface.php
│   │   │   ├── ConfigurationDefinitionFixerInterface.php
│   │   │   ├── ConstantNotation
│   │   │   │   └── NativeConstantInvocationFixer.php
│   │   │   ├── ControlStructure
│   │   │   │   ├── ElseifFixer.php
│   │   │   │   ├── IncludeFixer.php
│   │   │   │   ├── NoAlternativeSyntaxFixer.php
│   │   │   │   ├── NoBreakCommentFixer.php
│   │   │   │   ├── NoSuperfluousElseifFixer.php
│   │   │   │   ├── NoTrailingCommaInListCallFixer.php
│   │   │   │   ├── NoUnneededControlParenthesesFixer.php
│   │   │   │   ├── NoUnneededCurlyBracesFixer.php
│   │   │   │   ├── NoUselessElseFixer.php
│   │   │   │   ├── SwitchCaseSemicolonToColonFixer.php
│   │   │   │   ├── SwitchCaseSpaceFixer.php
│   │   │   │   └── YodaStyleFixer.php
│   │   │   ├── DefinedFixerInterface.php
│   │   │   ├── DeprecatedFixerInterface.php
│   │   │   ├── DoctrineAnnotation
│   │   │   │   ├── DoctrineAnnotationArrayAssignmentFixer.php
│   │   │   │   ├── DoctrineAnnotationBracesFixer.php
│   │   │   │   ├── DoctrineAnnotationIndentationFixer.php
│   │   │   │   └── DoctrineAnnotationSpacesFixer.php
│   │   │   ├── FixerInterface.php
│   │   │   ├── FunctionNotation
│   │   │   │   ├── CombineNestedDirnameFixer.php
│   │   │   │   ├── FopenFlagOrderFixer.php
│   │   │   │   ├── FopenFlagsFixer.php
│   │   │   │   ├── FunctionDeclarationFixer.php
│   │   │   │   ├── FunctionTypehintSpaceFixer.php
│   │   │   │   ├── ImplodeCallFixer.php
│   │   │   │   ├── MethodArgumentSpaceFixer.php
│   │   │   │   ├── NativeFunctionInvocationFixer.php
│   │   │   │   ├── NoSpacesAfterFunctionNameFixer.php
│   │   │   │   ├── NoUnreachableDefaultArgumentValueFixer.php
│   │   │   │   ├── PhpdocToReturnTypeFixer.php
│   │   │   │   ├── ReturnTypeDeclarationFixer.php
│   │   │   │   ├── StaticLambdaFixer.php
│   │   │   │   └── VoidReturnFixer.php
│   │   │   ├── Import
│   │   │   │   ├── FullyQualifiedStrictTypesFixer.php
│   │   │   │   ├── NoLeadingImportSlashFixer.php
│   │   │   │   ├── NoUnusedImportsFixer.php
│   │   │   │   ├── OrderedImportsFixer.php
│   │   │   │   ├── SingleImportPerStatementFixer.php
│   │   │   │   └── SingleLineAfterImportsFixer.php
│   │   │   ├── LanguageConstruct
│   │   │   │   ├── ClassKeywordRemoveFixer.php
│   │   │   │   ├── CombineConsecutiveIssetsFixer.php
│   │   │   │   ├── CombineConsecutiveUnsetsFixer.php
│   │   │   │   ├── DeclareEqualNormalizeFixer.php
│   │   │   │   ├── DirConstantFixer.php
│   │   │   │   ├── ErrorSuppressionFixer.php
│   │   │   │   ├── ExplicitIndirectVariableFixer.php
│   │   │   │   ├── FunctionToConstantFixer.php
│   │   │   │   ├── IsNullFixer.php
│   │   │   │   ├── NoUnsetOnPropertyFixer.php
│   │   │   │   └── SilencedDeprecationErrorFixer.php
│   │   │   ├── ListNotation
│   │   │   │   └── ListSyntaxFixer.php
│   │   │   ├── NamespaceNotation
│   │   │   │   ├── BlankLineAfterNamespaceFixer.php
│   │   │   │   ├── NoBlankLinesBeforeNamespaceFixer.php
│   │   │   │   ├── NoLeadingNamespaceWhitespaceFixer.php
│   │   │   │   └── SingleBlankLineBeforeNamespaceFixer.php
│   │   │   ├── Naming
│   │   │   │   └── NoHomoglyphNamesFixer.php
│   │   │   ├── Operator
│   │   │   │   ├── AlignDoubleArrowFixerHelper.php
│   │   │   │   ├── AlignEqualsFixerHelper.php
│   │   │   │   ├── BinaryOperatorSpacesFixer.php
│   │   │   │   ├── ConcatSpaceFixer.php
│   │   │   │   ├── IncrementStyleFixer.php
│   │   │   │   ├── LogicalOperatorsFixer.php
│   │   │   │   ├── NewWithBracesFixer.php
│   │   │   │   ├── NotOperatorWithSpaceFixer.php
│   │   │   │   ├── NotOperatorWithSuccessorSpaceFixer.php
│   │   │   │   ├── ObjectOperatorWithoutWhitespaceFixer.php
│   │   │   │   ├── PreIncrementFixer.php
│   │   │   │   ├── StandardizeIncrementFixer.php
│   │   │   │   ├── StandardizeNotEqualsFixer.php
│   │   │   │   ├── TernaryOperatorSpacesFixer.php
│   │   │   │   ├── TernaryToNullCoalescingFixer.php
│   │   │   │   └── UnaryOperatorSpacesFixer.php
│   │   │   ├── Phpdoc
│   │   │   │   ├── AlignMultilineCommentFixer.php
│   │   │   │   ├── GeneralPhpdocAnnotationRemoveFixer.php
│   │   │   │   ├── NoBlankLinesAfterPhpdocFixer.php
│   │   │   │   ├── NoEmptyPhpdocFixer.php
│   │   │   │   ├── NoSuperfluousPhpdocTagsFixer.php
│   │   │   │   ├── PhpdocAddMissingParamAnnotationFixer.php
│   │   │   │   ├── PhpdocAlignFixer.php
│   │   │   │   ├── PhpdocAnnotationWithoutDotFixer.php
│   │   │   │   ├── PhpdocIndentFixer.php
│   │   │   │   ├── PhpdocInlineTagFixer.php
│   │   │   │   ├── PhpdocNoAccessFixer.php
│   │   │   │   ├── PhpdocNoAliasTagFixer.php
│   │   │   │   ├── PhpdocNoEmptyReturnFixer.php
│   │   │   │   ├── PhpdocNoPackageFixer.php
│   │   │   │   ├── PhpdocNoUselessInheritdocFixer.php
│   │   │   │   ├── PhpdocOrderFixer.php
│   │   │   │   ├── PhpdocReturnSelfReferenceFixer.php
│   │   │   │   ├── PhpdocScalarFixer.php
│   │   │   │   ├── PhpdocSeparationFixer.php
│   │   │   │   ├── PhpdocSingleLineVarSpacingFixer.php
│   │   │   │   ├── PhpdocSummaryFixer.php
│   │   │   │   ├── PhpdocToCommentFixer.php
│   │   │   │   ├── PhpdocTrimConsecutiveBlankLineSeparationFixer.php
│   │   │   │   ├── PhpdocTrimFixer.php
│   │   │   │   ├── PhpdocTypesFixer.php
│   │   │   │   ├── PhpdocTypesOrderFixer.php
│   │   │   │   ├── PhpdocVarAnnotationCorrectOrderFixer.php
│   │   │   │   └── PhpdocVarWithoutNameFixer.php
│   │   │   ├── PhpTag
│   │   │   │   ├── BlankLineAfterOpeningTagFixer.php
│   │   │   │   ├── FullOpeningTagFixer.php
│   │   │   │   ├── LinebreakAfterOpeningTagFixer.php
│   │   │   │   ├── NoClosingTagFixer.php
│   │   │   │   └── NoShortEchoTagFixer.php
│   │   │   ├── PhpUnit
│   │   │   │   ├── PhpUnitConstructFixer.php
│   │   │   │   ├── PhpUnitDedicateAssertFixer.php
│   │   │   │   ├── PhpUnitExpectationFixer.php
│   │   │   │   ├── PhpUnitFqcnAnnotationFixer.php
│   │   │   │   ├── PhpUnitInternalClassFixer.php
│   │   │   │   ├── PhpUnitMethodCasingFixer.php
│   │   │   │   ├── PhpUnitMockFixer.php
│   │   │   │   ├── PhpUnitNamespacedFixer.php
│   │   │   │   ├── PhpUnitNoExpectationAnnotationFixer.php
│   │   │   │   ├── PhpUnitOrderedCoversFixer.php
│   │   │   │   ├── PhpUnitSetUpTearDownVisibilityFixer.php
│   │   │   │   ├── PhpUnitStrictFixer.php
│   │   │   │   ├── PhpUnitTargetVersion.php
│   │   │   │   ├── PhpUnitTestAnnotationFixer.php
│   │   │   │   ├── PhpUnitTestCaseStaticMethodCallsFixer.php
│   │   │   │   └── PhpUnitTestClassRequiresCoversFixer.php
│   │   │   ├── ReturnNotation
│   │   │   │   ├── BlankLineBeforeReturnFixer.php
│   │   │   │   ├── NoUselessReturnFixer.php
│   │   │   │   ├── ReturnAssignmentFixer.php
│   │   │   │   └── SimplifiedNullReturnFixer.php
│   │   │   ├── Semicolon
│   │   │   │   ├── MultilineWhitespaceBeforeSemicolonsFixer.php
│   │   │   │   ├── NoEmptyStatementFixer.php
│   │   │   │   ├── NoMultilineWhitespaceBeforeSemicolonsFixer.php
│   │   │   │   ├── NoSinglelineWhitespaceBeforeSemicolonsFixer.php
│   │   │   │   ├── SemicolonAfterInstructionFixer.php
│   │   │   │   └── SpaceAfterSemicolonFixer.php
│   │   │   ├── Strict
│   │   │   │   ├── DeclareStrictTypesFixer.php
│   │   │   │   ├── StrictComparisonFixer.php
│   │   │   │   └── StrictParamFixer.php
│   │   │   ├── StringNotation
│   │   │   │   ├── EscapeImplicitBackslashesFixer.php
│   │   │   │   ├── ExplicitStringVariableFixer.php
│   │   │   │   ├── HeredocToNowdocFixer.php
│   │   │   │   ├── NoBinaryStringFixer.php
│   │   │   │   ├── SingleQuoteFixer.php
│   │   │   │   └── StringLineEndingFixer.php
│   │   │   ├── Whitespace
│   │   │   │   ├── ArrayIndentationFixer.php
│   │   │   │   ├── BlankLineBeforeStatementFixer.php
│   │   │   │   ├── CompactNullableTypehintFixer.php
│   │   │   │   ├── HeredocIndentationFixer.php
│   │   │   │   ├── IndentationTypeFixer.php
│   │   │   │   ├── LineEndingFixer.php
│   │   │   │   ├── MethodChainingIndentationFixer.php
│   │   │   │   ├── NoExtraBlankLinesFixer.php
│   │   │   │   ├── NoExtraConsecutiveBlankLinesFixer.php
│   │   │   │   ├── NoSpacesAroundOffsetFixer.php
│   │   │   │   ├── NoSpacesInsideParenthesisFixer.php
│   │   │   │   ├── NoTrailingWhitespaceFixer.php
│   │   │   │   ├── NoWhitespaceInBlankLineFixer.php
│   │   │   │   └── SingleBlankLineAtEofFixer.php
│   │   │   └── WhitespacesAwareFixerInterface.php
│   │   ├── FixerConfiguration
│   │   │   ├── AliasedFixerOptionBuilder.php
│   │   │   ├── AliasedFixerOption.php
│   │   │   ├── AllowedValueSubset.php
│   │   │   ├── DeprecatedFixerOptionInterface.php
│   │   │   ├── DeprecatedFixerOption.php
│   │   │   ├── FixerConfigurationResolverInterface.php
│   │   │   ├── FixerConfigurationResolver.php
│   │   │   ├── FixerConfigurationResolverRootless.php
│   │   │   ├── FixerOptionBuilder.php
│   │   │   ├── FixerOptionInterface.php
│   │   │   ├── FixerOption.php
│   │   │   └── InvalidOptionsForEnvException.php
│   │   ├── FixerDefinition
│   │   │   ├── CodeSampleInterface.php
│   │   │   ├── CodeSample.php
│   │   │   ├── FileSpecificCodeSampleInterface.php
│   │   │   ├── FileSpecificCodeSample.php
│   │   │   ├── FixerDefinitionInterface.php
│   │   │   ├── FixerDefinition.php
│   │   │   ├── VersionSpecificationInterface.php
│   │   │   ├── VersionSpecification.php
│   │   │   ├── VersionSpecificCodeSampleInterface.php
│   │   │   └── VersionSpecificCodeSample.php
│   │   ├── FixerFactory.php
│   │   ├── FixerFileProcessedEvent.php
│   │   ├── FixerNameValidator.php
│   │   ├── Indicator
│   │   │   └── PhpUnitTestCaseIndicator.php
│   │   ├── Linter
│   │   │   ├── CachingLinter.php
│   │   │   ├── LinterInterface.php
│   │   │   ├── Linter.php
│   │   │   ├── LintingException.php
│   │   │   ├── LintingResultInterface.php
│   │   │   ├── ProcessLinter.php
│   │   │   ├── ProcessLinterProcessBuilder.php
│   │   │   ├── ProcessLintingResult.php
│   │   │   ├── TokenizerLinter.php
│   │   │   ├── TokenizerLintingResult.php
│   │   │   └── UnavailableLinterException.php
│   │   ├── PharCheckerInterface.php
│   │   ├── PharChecker.php
│   │   ├── PregException.php
│   │   ├── Preg.php
│   │   ├── Report
│   │   │   ├── CheckstyleReporter.php
│   │   │   ├── JsonReporter.php
│   │   │   ├── JunitReporter.php
│   │   │   ├── ReporterFactory.php
│   │   │   ├── ReporterInterface.php
│   │   │   ├── ReportSummary.php
│   │   │   ├── TextReporter.php
│   │   │   └── XmlReporter.php
│   │   ├── RuleSetInterface.php
│   │   ├── RuleSet.php
│   │   ├── Runner
│   │   │   ├── FileCachingLintingIterator.php
│   │   │   ├── FileFilterIterator.php
│   │   │   ├── FileLintingIterator.php
│   │   │   └── Runner.php
│   │   ├── StdinFileInfo.php
│   │   ├── Test
│   │   │   ├── AbstractFixerTestCase.php
│   │   │   ├── AbstractIntegrationTestCase.php
│   │   │   ├── AccessibleObject.php
│   │   │   └── IntegrationCase.php
│   │   ├── Tokenizer
│   │   │   ├── AbstractTransformer.php
│   │   │   ├── Analyzer
│   │   │   │   ├── Analysis
│   │   │   │   │   ├── ArgumentAnalysis.php
│   │   │   │   │   ├── NamespaceAnalysis.php
│   │   │   │   │   ├── NamespaceUseAnalysis.php
│   │   │   │   │   ├── StartEndTokenAwareAnalysis.php
│   │   │   │   │   └── TypeAnalysis.php
│   │   │   │   ├── ArgumentsAnalyzer.php
│   │   │   │   ├── CommentsAnalyzer.php
│   │   │   │   ├── FunctionsAnalyzer.php
│   │   │   │   ├── NamespacesAnalyzer.php
│   │   │   │   └── NamespaceUsesAnalyzer.php
│   │   │   ├── CodeHasher.php
│   │   │   ├── CT.php
│   │   │   ├── Generator
│   │   │   │   └── NamespacedStringTokenGenerator.php
│   │   │   ├── Resolver
│   │   │   │   └── TypeShortNameResolver.php
│   │   │   ├── Token.php
│   │   │   ├── TokensAnalyzer.php
│   │   │   ├── Tokens.php
│   │   │   ├── Transformer
│   │   │   │   ├── ArrayTypehintTransformer.php
│   │   │   │   ├── BraceClassInstantiationTransformer.php
│   │   │   │   ├── ClassConstantTransformer.php
│   │   │   │   ├── CurlyBraceTransformer.php
│   │   │   │   ├── ImportTransformer.php
│   │   │   │   ├── NamespaceOperatorTransformer.php
│   │   │   │   ├── NullableTypeTransformer.php
│   │   │   │   ├── ReturnRefTransformer.php
│   │   │   │   ├── SquareBraceTransformer.php
│   │   │   │   ├── TypeAlternationTransformer.php
│   │   │   │   ├── TypeColonTransformer.php
│   │   │   │   ├── UseTransformer.php
│   │   │   │   └── WhitespacyCommentTransformer.php
│   │   │   ├── TransformerInterface.php
│   │   │   └── Transformers.php
│   │   ├── ToolInfoInterface.php
│   │   ├── ToolInfo.php
│   │   ├── Utils.php
│   │   ├── WhitespacesFixerConfig.php
│   │   └── WordMatcher.php
│   ├── tests
│   │   ├── Test
│   │   │   ├── AbstractFixerTestCase.php
│   │   │   ├── AbstractIntegrationCaseFactory.php
│   │   │   ├── AbstractIntegrationTestCase.php
│   │   │   ├── Assert
│   │   │   │   └── AssertTokensTrait.php
│   │   │   ├── IntegrationCaseFactoryInterface.php
│   │   │   ├── IntegrationCaseFactory.php
│   │   │   ├── IntegrationCase.php
│   │   │   └── InternalIntegrationCaseFactory.php
│   │   └── TestCase.php
│   └── UPGRADE.md
├── guzzlehttp
│   ├── guzzle
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── ClientInterface.php
│   │   │   ├── Client.php
│   │   │   ├── Cookie
│   │   │   │   ├── CookieJarInterface.php
│   │   │   │   ├── CookieJar.php
│   │   │   │   ├── FileCookieJar.php
│   │   │   │   ├── SessionCookieJar.php
│   │   │   │   └── SetCookie.php
│   │   │   ├── Exception
│   │   │   │   ├── BadResponseException.php
│   │   │   │   ├── ClientException.php
│   │   │   │   ├── ConnectException.php
│   │   │   │   ├── GuzzleException.php
│   │   │   │   ├── RequestException.php
│   │   │   │   ├── SeekException.php
│   │   │   │   ├── ServerException.php
│   │   │   │   ├── TooManyRedirectsException.php
│   │   │   │   └── TransferException.php
│   │   │   ├── functions_include.php
│   │   │   ├── functions.php
│   │   │   ├── Handler
│   │   │   │   ├── CurlFactoryInterface.php
│   │   │   │   ├── CurlFactory.php
│   │   │   │   ├── CurlHandler.php
│   │   │   │   ├── CurlMultiHandler.php
│   │   │   │   ├── EasyHandle.php
│   │   │   │   ├── MockHandler.php
│   │   │   │   ├── Proxy.php
│   │   │   │   └── StreamHandler.php
│   │   │   ├── HandlerStack.php
│   │   │   ├── MessageFormatter.php
│   │   │   ├── Middleware.php
│   │   │   ├── Pool.php
│   │   │   ├── PrepareBodyMiddleware.php
│   │   │   ├── RedirectMiddleware.php
│   │   │   ├── RequestOptions.php
│   │   │   ├── RetryMiddleware.php
│   │   │   ├── TransferStats.php
│   │   │   └── UriTemplate.php
│   │   └── UPGRADING.md
│   ├── promises
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── Makefile
│   │   ├── README.md
│   │   └── src
│   │   ├── AggregateException.php
│   │   ├── CancellationException.php
│   │   ├── Coroutine.php
│   │   ├── EachPromise.php
│   │   ├── FulfilledPromise.php
│   │   ├── functions_include.php
│   │   ├── functions.php
│   │   ├── PromiseInterface.php
│   │   ├── Promise.php
│   │   ├── PromisorInterface.php
│   │   ├── RejectedPromise.php
│   │   ├── RejectionException.php
│   │   ├── TaskQueueInterface.php
│   │   └── TaskQueue.php
│   └── psr7
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   ├── AppendStream.php
│   ├── BufferStream.php
│   ├── CachingStream.php
│   ├── DroppingStream.php
│   ├── FnStream.php
│   ├── functions_include.php
│   ├── functions.php
│   ├── InflateStream.php
│   ├── LazyOpenStream.php
│   ├── LimitStream.php
│   ├── MessageTrait.php
│   ├── MultipartStream.php
│   ├── NoSeekStream.php
│   ├── PumpStream.php
│   ├── Request.php
│   ├── Response.php
│   ├── Rfc7230.php
│   ├── ServerRequest.php
│   ├── StreamDecoratorTrait.php
│   ├── Stream.php
│   ├── StreamWrapper.php
│   ├── UploadedFile.php
│   ├── UriNormalizer.php
│   ├── Uri.php
│   └── UriResolver.php
├── mpdf
│   └── mpdf
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── CREDITS.txt
│   ├── data
│   │   ├── CJKdata.php
│   │   ├── collations
│   │   │   ├── Afrikaans_South_Africa.php
│   │   │   ├── Albanian_Albania.php
│   │   │   ├── Alsatian_France.php
│   │   │   ├── Arabic_Algeria.php
│   │   │   ├── Arabic_Bahrain.php
│   │   │   ├── Arabic_Egypt.php
│   │   │   ├── Arabic_Iraq.php
│   │   │   ├── Arabic_Jordan.php
│   │   │   ├── Arabic_Kuwait.php
│   │   │   ├── Arabic_Lebanon.php
│   │   │   ├── Arabic_Libya.php
│   │   │   ├── Arabic_Morocco.php
│   │   │   ├── Arabic_Oman.php
│   │   │   ├── Arabic_Pseudo_RTL.php
│   │   │   ├── Arabic_Qatar.php
│   │   │   ├── Arabic_Saudi_Arabia.php
│   │   │   ├── Arabic_Syria.php
│   │   │   ├── Arabic_Tunisia.php
│   │   │   ├── Arabic_Yemen.php
│   │   │   ├── Azeri_(Cyrillic)_Azerbaijan.php
│   │   │   ├── Azeri_(Latin)_Azerbaijan.php
│   │   │   ├── Bashkir_Russia.php
│   │   │   ├── Basque_Spain.php
│   │   │   ├── Belarusian_Belarus.php
│   │   │   ├── Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php
│   │   │   ├── Bosnian_(Latin)_Bosnia_and_Herzegovina.php
│   │   │   ├── Breton_France.php
│   │   │   ├── Bulgarian_Bulgaria.php
│   │   │   ├── Catalan_Spain.php
│   │   │   ├── Corsican_France.php
│   │   │   ├── Croatian_Croatia.php
│   │   │   ├── Croatian_(Latin)_Bosnia_and_Herzegovina.php
│   │   │   ├── Czech_Czech_Republic.php
│   │   │   ├── Danish_Denmark.php
│   │   │   ├── Dari_Afghanistan.php
│   │   │   ├── Dutch_Belgium.php
│   │   │   ├── Dutch_Netherlands.php
│   │   │   ├── English_Australia.php
│   │   │   ├── English_Belize.php
│   │   │   ├── English_Canada.php
│   │   │   ├── English_Caribbean.php
│   │   │   ├── English_India.php
│   │   │   ├── English_Ireland.php
│   │   │   ├── English_Jamaica.php
│   │   │   ├── English_Malaysia.php
│   │   │   ├── English_New_Zealand.php
│   │   │   ├── English_Republic_of_the_Philippines.php
│   │   │   ├── English_Singapore.php
│   │   │   ├── English_South_Africa.php
│   │   │   ├── English_Trinidad_and_Tobago.php
│   │   │   ├── English_United_Kingdom.php
│   │   │   ├── English_United_States.php
│   │   │   ├── English_Zimbabwe.php
│   │   │   ├── Estonian_Estonia.php
│   │   │   ├── Faroese_Faroe_Islands.php
│   │   │   ├── Filipino_Philippines.php
│   │   │   ├── Finnish_Finland.php
│   │   │   ├── French_Belgium.php
│   │   │   ├── French_Canada.php
│   │   │   ├── French_France.php
│   │   │   ├── French_Luxembourg.php
│   │   │   ├── French_Principality_of_Monaco.php
│   │   │   ├── French_Switzerland.php
│   │   │   ├── Frisian_Netherlands.php
│   │   │   ├── Galician_Spain.php
│   │   │   ├── German_Austria.php
│   │   │   ├── German_Germany.php
│   │   │   ├── German_Liechtenstein.php
│   │   │   ├── German_Luxembourg.php
│   │   │   ├── German_Switzerland.php
│   │   │   ├── Greek_Greece.php
│   │   │   ├── Greenlandic_Greenland.php
│   │   │   ├── Hausa_(Latin)_Nigeria.php
│   │   │   ├── Hebrew_Israel.php
│   │   │   ├── Hungarian_Hungary.php
│   │   │   ├── Icelandic_Iceland.php
│   │   │   ├── Igbo_Nigeria.php
│   │   │   ├── Indonesian_Indonesia.php
│   │   │   ├── Inuktitut_(Latin)_Canada.php
│   │   │   ├── Invariant_Language_Invariant_Country.php
│   │   │   ├── Irish_Ireland.php
│   │   │   ├── isiXhosa_South_Africa.php
│   │   │   ├── isiZulu_South_Africa.php
│   │   │   ├── Italian_Italy.php
│   │   │   ├── Italian_Switzerland.php
│   │   │   ├── Kinyarwanda_Rwanda.php
│   │   │   ├── Kiswahili_Kenya.php
│   │   │   ├── Kyrgyz_Kyrgyzstan.php
│   │   │   ├── Latvian_Latvia.php
│   │   │   ├── Lithuanian_Lithuania.php
│   │   │   ├── Lower_Sorbian_Germany.php
│   │   │   ├── Luxembourgish_Luxembourg.php
│   │   │   ├── Macedonian_(FYROM)_Macedonia_(FYROM).php
│   │   │   ├── Malay_Brunei_Darussalam.php
│   │   │   ├── Malay_Malaysia.php
│   │   │   ├── Mapudungun_Chile.php
│   │   │   ├── Mohawk_Canada.php
│   │   │   ├── Mongolian_(Cyrillic)_Mongolia.php
│   │   │   ├── Norwegian_(Nynorsk)_Norway.php
│   │   │   ├── Occitan_France.php
│   │   │   ├── Persian_Iran.php
│   │   │   ├── Polish_Poland.php
│   │   │   ├── Portuguese_Brazil.php
│   │   │   ├── Portuguese_Portugal.php
│   │   │   ├── Quechua_Bolivia.php
│   │   │   ├── Quechua_Ecuador.php
│   │   │   ├── Quechua_Peru.php
│   │   │   ├── Romanian_Romania.php
│   │   │   ├── Romansh_Switzerland.php
│   │   │   ├── Russian_Russia.php
│   │   │   ├── Sami_(Inari)_Finland.php
│   │   │   ├── Sami_(Lule)_Norway.php
│   │   │   ├── Sami_(Lule)_Sweden.php
│   │   │   ├── Sami_(Northern)_Finland.php
│   │   │   ├── Sami_(Northern)_Norway.php
│   │   │   ├── Sami_(Northern)_Sweden.php
│   │   │   ├── Sami_(Skolt)_Finland.php
│   │   │   ├── Sami_(Southern)_Norway.php
│   │   │   ├── Sami_(Southern)_Sweden.php
│   │   │   ├── Serbian_(Cyrillic)_Bosnia_and_Herzegovina.php
│   │   │   ├── Serbian_(Cyrillic)_Serbia.php
│   │   │   ├── Serbian_(Latin)_Bosnia_and_Herzegovina.php
│   │   │   ├── Serbian_(Latin)_Serbia.php
│   │   │   ├── Sesotho_sa_Leboa_South_Africa.php
│   │   │   ├── Setswana_South_Africa.php
│   │   │   ├── Slovak_Slovakia.php
│   │   │   ├── Slovenian_Slovenia.php
│   │   │   ├── Spanish_Argentina.php
│   │   │   ├── Spanish_Bolivia.php
│   │   │   ├── Spanish_Chile.php
│   │   │   ├── Spanish_Colombia.php
│   │   │   ├── Spanish_Costa_Rica.php
│   │   │   ├── Spanish_Dominican_Republic.php
│   │   │   ├── Spanish_Ecuador.php
│   │   │   ├── Spanish_El_Salvador.php
│   │   │   ├── Spanish_Guatemala.php
│   │   │   ├── Spanish_Honduras.php
│   │   │   ├── Spanish_Mexico.php
│   │   │   ├── Spanish_Nicaragua.php
│   │   │   ├── Spanish_Panama.php
│   │   │   ├── Spanish_Paraguay.php
│   │   │   ├── Spanish_Peru.php
│   │   │   ├── Spanish_Puerto_Rico.php
│   │   │   ├── Spanish_Spain.php
│   │   │   ├── Spanish_United_States.php
│   │   │   ├── Spanish_Uruguay.php
│   │   │   ├── Spanish_Venezuela.php
│   │   │   ├── Swedish_Finland.php
│   │   │   ├── Swedish_Sweden.php
│   │   │   ├── Tajik_(Cyrillic)_Tajikistan.php
│   │   │   ├── Tamazight_(Latin)_Algeria.php
│   │   │   ├── Tatar_Russia.php
│   │   │   ├── Turkish_Turkey.php
│   │   │   ├── Turkmen_Turkmenistan.php
│   │   │   ├── Ukrainian_Ukraine.php
│   │   │   ├── Upper_Sorbian_Germany.php
│   │   │   ├── Urdu_Islamic_Republic_of_Pakistan.php
│   │   │   ├── Uzbek_(Cyrillic)_Uzbekistan.php
│   │   │   ├── Uzbek_(Latin)_Uzbekistan.php
│   │   │   ├── Vietnamese_Vietnam.php
│   │   │   ├── Welsh_United_Kingdom.php
│   │   │   ├── Wolof_Senegal.php
│   │   │   ├── Yakut_Russia.php
│   │   │   └── Yoruba_Nigeria.php
│   │   ├── entity_substitutions.php
│   │   ├── font
│   │   │   ├── ccourierbi.php
│   │   │   ├── ccourierb.php
│   │   │   ├── ccourieri.php
│   │   │   ├── ccourier.php
│   │   │   ├── chelveticabi.php
│   │   │   ├── chelveticab.php
│   │   │   ├── chelveticai.php
│   │   │   ├── chelvetica.php
│   │   │   ├── csymbol.php
│   │   │   ├── ctimesbi.php
│   │   │   ├── ctimesb.php
│   │   │   ├── ctimesi.php
│   │   │   ├── ctimes.php
│   │   │   └── czapfdingbats.php
│   │   ├── iccprofiles
│   │   │   └── sRGB_IEC61966-2-1.icc
│   │   ├── lang2fonts.css
│   │   ├── linebrdictK.dat
│   │   ├── linebrdictL.dat
│   │   ├── linebrdictT.dat
│   │   ├── mpdf.css
│   │   ├── no_image.jpg
│   │   ├── out.php
│   │   ├── patterns
│   │   │   ├── de.php
│   │   │   ├── dictionary.txt
│   │   │   ├── en.php
│   │   │   ├── es.php
│   │   │   ├── fi.php
│   │   │   ├── fr.php
│   │   │   ├── it.php
│   │   │   ├── nl.php
│   │   │   ├── NOTES.txt
│   │   │   ├── pl.php
│   │   │   ├── ru.php
│   │   │   └── sv.php
│   │   ├── subs_core.php
│   │   ├── subs_win-1252.php
│   │   └── upperCase.php
│   ├── LICENSE.txt
│   ├── phpunit.xml
│   ├── README.md
│   ├── ruleset.xml
│   ├── src
│   │   ├── Barcode
│   │   │   ├── AbstractBarcode.php
│   │   │   ├── BarcodeException.php
│   │   │   ├── BarcodeInterface.php
│   │   │   ├── Codabar.php
│   │   │   ├── Code11.php
│   │   │   ├── Code128.php
│   │   │   ├── Code39.php
│   │   │   ├── Code93.php
│   │   │   ├── EanExt.php
│   │   │   ├── EanUpc.php
│   │   │   ├── I25.php
│   │   │   ├── Imb.php
│   │   │   ├── Msi.php
│   │   │   ├── Postnet.php
│   │   │   ├── Rm4Scc.php
│   │   │   └── S25.php
│   │   ├── Barcode.php
│   │   ├── Cache.php
│   │   ├── Color
│   │   │   ├── ColorConverter.php
│   │   │   ├── ColorModeConverter.php
│   │   │   ├── ColorSpaceRestrictor.php
│   │   │   └── NamedColors.php
│   │   ├── Config
│   │   │   ├── ConfigVariables.php
│   │   │   └── FontVariables.php
│   │   ├── Conversion
│   │   │   ├── DecToAlpha.php
│   │   │   ├── DecToCjk.php
│   │   │   ├── DecToHebrew.php
│   │   │   ├── DecToOther.php
│   │   │   └── DecToRoman.php
│   │   ├── Css
│   │   │   ├── Border.php
│   │   │   ├── DefaultCss.php
│   │   │   └── TextVars.php
│   │   ├── CssManager.php
│   │   ├── DirectWrite.php
│   │   ├── Exception
│   │   │   └── InvalidArgumentException.php
│   │   ├── Fonts
│   │   │   ├── FontCache.php
│   │   │   ├── FontFileFinder.php
│   │   │   ├── GlyphOperator.php
│   │   │   └── MetricsGenerator.php
│   │   ├── Form.php
│   │   ├── functions-dev.php
│   │   ├── Gif
│   │   │   ├── ColorTable.php
│   │   │   ├── FileHeader.php
│   │   │   ├── Gif.php
│   │   │   ├── ImageHeader.php
│   │   │   ├── Image.php
│   │   │   └── Lzw.php
│   │   ├── Gradient.php
│   │   ├── HTMLParserMode.php
│   │   ├── Hyphenator.php
│   │   ├── Image
│   │   │   ├── Bmp.php
│   │   │   ├── ImageProcessor.php
│   │   │   ├── ImageTypeGuesser.php
│   │   │   ├── Svg.php
│   │   │   └── Wmf.php
│   │   ├── Language
│   │   │   ├── LanguageToFontInterface.php
│   │   │   ├── LanguageToFont.php
│   │   │   ├── ScriptToLanguageInterface.php
│   │   │   └── ScriptToLanguage.php
│   │   ├── Log
│   │   │   └── Context.php
│   │   ├── MpdfException.php
│   │   ├── MpdfImageException.php
│   │   ├── Mpdf.php
│   │   ├── OtlDump.php
│   │   ├── Otl.php
│   │   ├── Output
│   │   │   └── Destination.php
│   │   ├── PageFormat.php
│   │   ├── Pdf
│   │   │   ├── Protection
│   │   │   │   └── UniqidGenerator.php
│   │   │   └── Protection.php
│   │   ├── QrCode
│   │   │   ├── data
│   │   │   │   ├── modele10.dat
│   │   │   │   ├── modele11.dat
│   │   │   │   ├── modele12.dat
│   │   │   │   ├── modele13.dat
│   │   │   │   ├── modele14.dat
│   │   │   │   ├── modele15.dat
│   │   │   │   ├── modele16.dat
│   │   │   │   ├── modele17.dat
│   │   │   │   ├── modele18.dat
│   │   │   │   ├── modele19.dat
│   │   │   │   ├── modele1.dat
│   │   │   │   ├── modele20.dat
│   │   │   │   ├── modele21.dat
│   │   │   │   ├── modele22.dat
│   │   │   │   ├── modele23.dat
│   │   │   │   ├── modele24.dat
│   │   │   │   ├── modele25.dat
│   │   │   │   ├── modele26.dat
│   │   │   │   ├── modele27.dat
│   │   │   │   ├── modele28.dat
│   │   │   │   ├── modele29.dat
│   │   │   │   ├── modele2.dat
│   │   │   │   ├── modele30.dat
│   │   │   │   ├── modele31.dat
│   │   │   │   ├── modele32.dat
│   │   │   │   ├── modele33.dat
│   │   │   │   ├── modele34.dat
│   │   │   │   ├── modele35.dat
│   │   │   │   ├── modele36.dat
│   │   │   │   ├── modele37.dat
│   │   │   │   ├── modele38.dat
│   │   │   │   ├── modele39.dat
│   │   │   │   ├── modele3.dat
│   │   │   │   ├── modele40.dat
│   │   │   │   ├── modele4.dat
│   │   │   │   ├── modele5.dat
│   │   │   │   ├── modele6.dat
│   │   │   │   ├── modele7.dat
│   │   │   │   ├── modele8.dat
│   │   │   │   ├── modele9.dat
│   │   │   │   ├── qrv10_0.dat
│   │   │   │   ├── qrv10_1.dat
│   │   │   │   ├── qrv10_2.dat
│   │   │   │   ├── qrv10_3.dat
│   │   │   │   ├── qrv1_0.dat
│   │   │   │   ├── qrv11_0.dat
│   │   │   │   ├── qrv11_1.dat
│   │   │   │   ├── qrv11_2.dat
│   │   │   │   ├── qrv11_3.dat
│   │   │   │   ├── qrv1_1.dat
│   │   │   │   ├── qrv12_0.dat
│   │   │   │   ├── qrv12_1.dat
│   │   │   │   ├── qrv12_2.dat
│   │   │   │   ├── qrv12_3.dat
│   │   │   │   ├── qrv1_2.dat
│   │   │   │   ├── qrv13_0.dat
│   │   │   │   ├── qrv13_1.dat
│   │   │   │   ├── qrv13_2.dat
│   │   │   │   ├── qrv13_3.dat
│   │   │   │   ├── qrv1_3.dat
│   │   │   │   ├── qrv14_0.dat
│   │   │   │   ├── qrv14_1.dat
│   │   │   │   ├── qrv14_2.dat
│   │   │   │   ├── qrv14_3.dat
│   │   │   │   ├── qrv15_0.dat
│   │   │   │   ├── qrv15_1.dat
│   │   │   │   ├── qrv15_2.dat
│   │   │   │   ├── qrv15_3.dat
│   │   │   │   ├── qrv16_0.dat
│   │   │   │   ├── qrv16_1.dat
│   │   │   │   ├── qrv16_2.dat
│   │   │   │   ├── qrv16_3.dat
│   │   │   │   ├── qrv17_0.dat
│   │   │   │   ├── qrv17_1.dat
│   │   │   │   ├── qrv17_2.dat
│   │   │   │   ├── qrv17_3.dat
│   │   │   │   ├── qrv18_0.dat
│   │   │   │   ├── qrv18_1.dat
│   │   │   │   ├── qrv18_2.dat
│   │   │   │   ├── qrv18_3.dat
│   │   │   │   ├── qrv19_0.dat
│   │   │   │   ├── qrv19_1.dat
│   │   │   │   ├── qrv19_2.dat
│   │   │   │   ├── qrv19_3.dat
│   │   │   │   ├── qrv20_0.dat
│   │   │   │   ├── qrv20_1.dat
│   │   │   │   ├── qrv20_2.dat
│   │   │   │   ├── qrv20_3.dat
│   │   │   │   ├── qrv2_0.dat
│   │   │   │   ├── qrv21_0.dat
│   │   │   │   ├── qrv21_1.dat
│   │   │   │   ├── qrv21_2.dat
│   │   │   │   ├── qrv21_3.dat
│   │   │   │   ├── qrv2_1.dat
│   │   │   │   ├── qrv22_0.dat
│   │   │   │   ├── qrv22_1.dat
│   │   │   │   ├── qrv22_2.dat
│   │   │   │   ├── qrv22_3.dat
│   │   │   │   ├── qrv2_2.dat
│   │   │   │   ├── qrv23_0.dat
│   │   │   │   ├── qrv23_1.dat
│   │   │   │   ├── qrv23_2.dat
│   │   │   │   ├── qrv23_3.dat
│   │   │   │   ├── qrv2_3.dat
│   │   │   │   ├── qrv24_0.dat
│   │   │   │   ├── qrv24_1.dat
│   │   │   │   ├── qrv24_2.dat
│   │   │   │   ├── qrv24_3.dat
│   │   │   │   ├── qrv25_0.dat
│   │   │   │   ├── qrv25_1.dat
│   │   │   │   ├── qrv25_2.dat
│   │   │   │   ├── qrv25_3.dat
│   │   │   │   ├── qrv26_0.dat
│   │   │   │   ├── qrv26_1.dat
│   │   │   │   ├── qrv26_2.dat
│   │   │   │   ├── qrv26_3.dat
│   │   │   │   ├── qrv27_0.dat
│   │   │   │   ├── qrv27_1.dat
│   │   │   │   ├── qrv27_2.dat
│   │   │   │   ├── qrv27_3.dat
│   │   │   │   ├── qrv28_0.dat
│   │   │   │   ├── qrv28_1.dat
│   │   │   │   ├── qrv28_2.dat
│   │   │   │   ├── qrv28_3.dat
│   │   │   │   ├── qrv29_0.dat
│   │   │   │   ├── qrv29_1.dat
│   │   │   │   ├── qrv29_2.dat
│   │   │   │   ├── qrv29_3.dat
│   │   │   │   ├── qrv30_0.dat
│   │   │   │   ├── qrv30_1.dat
│   │   │   │   ├── qrv30_2.dat
│   │   │   │   ├── qrv30_3.dat
│   │   │   │   ├── qrv3_0.dat
│   │   │   │   ├── qrv31_0.dat
│   │   │   │   ├── qrv31_1.dat
│   │   │   │   ├── qrv31_2.dat
│   │   │   │   ├── qrv31_3.dat
│   │   │   │   ├── qrv3_1.dat
│   │   │   │   ├── qrv32_0.dat
│   │   │   │   ├── qrv32_1.dat
│   │   │   │   ├── qrv32_2.dat
│   │   │   │   ├── qrv32_3.dat
│   │   │   │   ├── qrv3_2.dat
│   │   │   │   ├── qrv33_0.dat
│   │   │   │   ├── qrv33_1.dat
│   │   │   │   ├── qrv33_2.dat
│   │   │   │   ├── qrv33_3.dat
│   │   │   │   ├── qrv3_3.dat
│   │   │   │   ├── qrv34_0.dat
│   │   │   │   ├── qrv34_1.dat
│   │   │   │   ├── qrv34_2.dat
│   │   │   │   ├── qrv34_3.dat
│   │   │   │   ├── qrv35_0.dat
│   │   │   │   ├── qrv35_1.dat
│   │   │   │   ├── qrv35_2.dat
│   │   │   │   ├── qrv35_3.dat
│   │   │   │   ├── qrv36_0.dat
│   │   │   │   ├── qrv36_1.dat
│   │   │   │   ├── qrv36_2.dat
│   │   │   │   ├── qrv36_3.dat
│   │   │   │   ├── qrv37_0.dat
│   │   │   │   ├── qrv37_1.dat
│   │   │   │   ├── qrv37_2.dat
│   │   │   │   ├── qrv37_3.dat
│   │   │   │   ├── qrv38_0.dat
│   │   │   │   ├── qrv38_1.dat
│   │   │   │   ├── qrv38_2.dat
│   │   │   │   ├── qrv38_3.dat
│   │   │   │   ├── qrv39_0.dat
│   │   │   │   ├── qrv39_1.dat
│   │   │   │   ├── qrv39_2.dat
│   │   │   │   ├── qrv39_3.dat
│   │   │   │   ├── qrv40_0.dat
│   │   │   │   ├── qrv40_1.dat
│   │   │   │   ├── qrv40_2.dat
│   │   │   │   ├── qrv40_3.dat
│   │   │   │   ├── qrv4_0.dat
│   │   │   │   ├── qrv4_1.dat
│   │   │   │   ├── qrv4_2.dat
│   │   │   │   ├── qrv4_3.dat
│   │   │   │   ├── qrv5_0.dat
│   │   │   │   ├── qrv5_1.dat
│   │   │   │   ├── qrv5_2.dat
│   │   │   │   ├── qrv5_3.dat
│   │   │   │   ├── qrv6_0.dat
│   │   │   │   ├── qrv6_1.dat
│   │   │   │   ├── qrv6_2.dat
│   │   │   │   ├── qrv6_3.dat
│   │   │   │   ├── qrv7_0.dat
│   │   │   │   ├── qrv7_1.dat
│   │   │   │   ├── qrv7_2.dat
│   │   │   │   ├── qrv7_3.dat
│   │   │   │   ├── qrv8_0.dat
│   │   │   │   ├── qrv8_1.dat
│   │   │   │   ├── qrv8_2.dat
│   │   │   │   ├── qrv8_3.dat
│   │   │   │   ├── qrv9_0.dat
│   │   │   │   ├── qrv9_1.dat
│   │   │   │   ├── qrv9_2.dat
│   │   │   │   ├── qrv9_3.dat
│   │   │   │   ├── qrvfr10.dat
│   │   │   │   ├── qrvfr11.dat
│   │   │   │   ├── qrvfr12.dat
│   │   │   │   ├── qrvfr13.dat
│   │   │   │   ├── qrvfr14.dat
│   │   │   │   ├── qrvfr15.dat
│   │   │   │   ├── qrvfr16.dat
│   │   │   │   ├── qrvfr17.dat
│   │   │   │   ├── qrvfr18.dat
│   │   │   │   ├── qrvfr19.dat
│   │   │   │   ├── qrvfr1.dat
│   │   │   │   ├── qrvfr20.dat
│   │   │   │   ├── qrvfr21.dat
│   │   │   │   ├── qrvfr22.dat
│   │   │   │   ├── qrvfr23.dat
│   │   │   │   ├── qrvfr24.dat
│   │   │   │   ├── qrvfr25.dat
│   │   │   │   ├── qrvfr26.dat
│   │   │   │   ├── qrvfr27.dat
│   │   │   │   ├── qrvfr28.dat
│   │   │   │   ├── qrvfr29.dat
│   │   │   │   ├── qrvfr2.dat
│   │   │   │   ├── qrvfr30.dat
│   │   │   │   ├── qrvfr31.dat
│   │   │   │   ├── qrvfr32.dat
│   │   │   │   ├── qrvfr33.dat
│   │   │   │   ├── qrvfr34.dat
│   │   │   │   ├── qrvfr35.dat
│   │   │   │   ├── qrvfr36.dat
│   │   │   │   ├── qrvfr37.dat
│   │   │   │   ├── qrvfr38.dat
│   │   │   │   ├── qrvfr39.dat
│   │   │   │   ├── qrvfr3.dat
│   │   │   │   ├── qrvfr40.dat
│   │   │   │   ├── qrvfr4.dat
│   │   │   │   ├── qrvfr5.dat
│   │   │   │   ├── qrvfr6.dat
│   │   │   │   ├── qrvfr7.dat
│   │   │   │   ├── qrvfr8.dat
│   │   │   │   ├── qrvfr9.dat
│   │   │   │   ├── rsc10.dat
│   │   │   │   ├── rsc13.dat
│   │   │   │   ├── rsc15.dat
│   │   │   │   ├── rsc16.dat
│   │   │   │   ├── rsc17.dat
│   │   │   │   ├── rsc18.dat
│   │   │   │   ├── rsc20.dat
│   │   │   │   ├── rsc22.dat
│   │   │   │   ├── rsc24.dat
│   │   │   │   ├── rsc26.dat
│   │   │   │   ├── rsc28.dat
│   │   │   │   ├── rsc30.dat
│   │   │   │   ├── rsc32.dat
│   │   │   │   ├── rsc34.dat
│   │   │   │   ├── rsc36.dat
│   │   │   │   ├── rsc40.dat
│   │   │   │   ├── rsc42.dat
│   │   │   │   ├── rsc44.dat
│   │   │   │   ├── rsc46.dat
│   │   │   │   ├── rsc48.dat
│   │   │   │   ├── rsc50.dat
│   │   │   │   ├── rsc52.dat
│   │   │   │   ├── rsc54.dat
│   │   │   │   ├── rsc56.dat
│   │   │   │   ├── rsc58.dat
│   │   │   │   ├── rsc60.dat
│   │   │   │   ├── rsc62.dat
│   │   │   │   ├── rsc64.dat
│   │   │   │   ├── rsc66.dat
│   │   │   │   ├── rsc68.dat
│   │   │   │   └── rsc7.dat
│   │   │   ├── QrCodeException.php
│   │   │   └── QrCode.php
│   │   ├── RemoteContentFetcher.php
│   │   ├── ServiceFactory.php
│   │   ├── Shaper
│   │   │   ├── Indic.php
│   │   │   ├── Myanmar.php
│   │   │   └── Sea.php
│   │   ├── SizeConverter.php
│   │   ├── Strict.php
│   │   ├── TableOfContents.php
│   │   ├── Tag
│   │   │   ├── Acronym.php
│   │   │   ├── Address.php
│   │   │   ├── Annotation.php
│   │   │   ├── A.php
│   │   │   ├── Article.php
│   │   │   ├── Aside.php
│   │   │   ├── BarCode.php
│   │   │   ├── Bdi.php
│   │   │   ├── Bdo.php
│   │   │   ├── Big.php
│   │   │   ├── BlockQuote.php
│   │   │   ├── BlockTag.php
│   │   │   ├── Bookmark.php
│   │   │   ├── B.php
│   │   │   ├── Br.php
│   │   │   ├── Caption.php
│   │   │   ├── Center.php
│   │   │   ├── Cite.php
│   │   │   ├── Code.php
│   │   │   ├── ColumnBreak.php
│   │   │   ├── Columns.php
│   │   │   ├── Dd.php
│   │   │   ├── Del.php
│   │   │   ├── Details.php
│   │   │   ├── Div.php
│   │   │   ├── Dl.php
│   │   │   ├── DotTab.php
│   │   │   ├── Dt.php
│   │   │   ├── Em.php
│   │   │   ├── FieldSet.php
│   │   │   ├── FigCaption.php
│   │   │   ├── Figure.php
│   │   │   ├── Font.php
│   │   │   ├── Footer.php
│   │   │   ├── FormFeed.php
│   │   │   ├── Form.php
│   │   │   ├── H1.php
│   │   │   ├── H2.php
│   │   │   ├── H3.php
│   │   │   ├── H4.php
│   │   │   ├── H5.php
│   │   │   ├── H6.php
│   │   │   ├── Header.php
│   │   │   ├── HGroup.php
│   │   │   ├── Hr.php
│   │   │   ├── Img.php
│   │   │   ├── IndexEntry.php
│   │   │   ├── IndexInsert.php
│   │   │   ├── InlineTag.php
│   │   │   ├── Input.php
│   │   │   ├── Ins.php
│   │   │   ├── I.php
│   │   │   ├── Kbd.php
│   │   │   ├── Legend.php
│   │   │   ├── Li.php
│   │   │   ├── Main.php
│   │   │   ├── Mark.php
│   │   │   ├── Meter.php
│   │   │   ├── Nav.php
│   │   │   ├── NewColumn.php
│   │   │   ├── NewPage.php
│   │   │   ├── Ol.php
│   │   │   ├── Option.php
│   │   │   ├── PageBreak.php
│   │   │   ├── PageFooter.php
│   │   │   ├── PageHeader.php
│   │   │   ├── P.php
│   │   │   ├── Pre.php
│   │   │   ├── Progress.php
│   │   │   ├── Q.php
│   │   │   ├── Samp.php
│   │   │   ├── Section.php
│   │   │   ├── Select.php
│   │   │   ├── SetHtmlPageFooter.php
│   │   │   ├── SetHtmlPageHeader.php
│   │   │   ├── SetPageFooter.php
│   │   │   ├── SetPageHeader.php
│   │   │   ├── Small.php
│   │   │   ├── Span.php
│   │   │   ├── S.php
│   │   │   ├── Strike.php
│   │   │   ├── Strong.php
│   │   │   ├── Sub.php
│   │   │   ├── SubstituteTag.php
│   │   │   ├── Summary.php
│   │   │   ├── Sup.php
│   │   │   ├── Table.php
│   │   │   ├── Tag.php
│   │   │   ├── TBody.php
│   │   │   ├── Td.php
│   │   │   ├── TextArea.php
│   │   │   ├── TextCircle.php
│   │   │   ├── TFoot.php
│   │   │   ├── THead.php
│   │   │   ├── Th.php
│   │   │   ├── Time.php
│   │   │   ├── TocEntry.php
│   │   │   ├── TocPageBreak.php
│   │   │   ├── Toc.php
│   │   │   ├── Tr.php
│   │   │   ├── Tta.php
│   │   │   ├── Tt.php
│   │   │   ├── Tts.php
│   │   │   ├── Ttz.php
│   │   │   ├── Ul.php
│   │   │   ├── U.php
│   │   │   ├── VarTag.php
│   │   │   ├── WatermarkImage.php
│   │   │   └── WatermarkText.php
│   │   ├── Tag.php
│   │   ├── TTFontFileAnalysis.php
│   │   ├── TTFontFile.php
│   │   ├── Ucdn.php
│   │   ├── Utils
│   │   │   ├── Arrays.php
│   │   │   ├── NumericString.php
│   │   │   ├── PdfDate.php
│   │   │   └── UtfString.php
│   │   └── Writer
│   │   ├── BackgroundWriter.php
│   │   ├── BaseWriter.php
│   │   ├── BookmarkWriter.php
│   │   ├── ColorWriter.php
│   │   ├── FontWriter.php
│   │   ├── FormWriter.php
│   │   ├── ImageWriter.php
│   │   ├── JavaScriptWriter.php
│   │   ├── MetadataWriter.php
│   │   ├── ObjectWriter.php
│   │   ├── OptionalContentWriter.php
│   │   ├── PageWriter.php
│   │   └── ResourceWriter.php
│   ├── tmp
│   └── ttfonts
│   ├── AboriginalSansREGULAR.ttf
│   ├── Abyssinica_SIL.ttf
│   ├── Aegean.otf
│   ├── Aegyptus.otf
│   ├── Akkadian.otf
│   ├── ayar.ttf
│   ├── damase_v.2.ttf
│   ├── DBSILBR.ttf
│   ├── DejaVuinfo.txt
│   ├── DejaVuSans-BoldOblique.ttf
│   ├── DejaVuSans-Bold.ttf
│   ├── DejaVuSansCondensed-BoldOblique.ttf
│   ├── DejaVuSansCondensed-Bold.ttf
│   ├── DejaVuSansCondensed-Oblique.ttf
│   ├── DejaVuSansCondensed.ttf
│   ├── DejaVuSansMono-BoldOblique.ttf
│   ├── DejaVuSansMono-Bold.ttf
│   ├── DejaVuSansMono-Oblique.ttf
│   ├── DejaVuSansMono.ttf
│   ├── DejaVuSans-Oblique.ttf
│   ├── DejaVuSans.ttf
│   ├── DejaVuSerif-BoldItalic.ttf
│   ├── DejaVuSerif-Bold.ttf
│   ├── DejaVuSerifCondensed-BoldItalic.ttf
│   ├── DejaVuSerifCondensed-Bold.ttf
│   ├── DejaVuSerifCondensed-Italic.ttf
│   ├── DejaVuSerifCondensed.ttf
│   ├── DejaVuSerif-Italic.ttf
│   ├── DejaVuSerif.ttf
│   ├── Dhyana-Bold.ttf
│   ├── DhyanaOFL.txt
│   ├── Dhyana-Regular.ttf
│   ├── FreeMonoBoldOblique.ttf
│   ├── FreeMonoBold.ttf
│   ├── FreeMonoOblique.ttf
│   ├── FreeMono.ttf
│   ├── FreeSansBoldOblique.ttf
│   ├── FreeSansBold.ttf
│   ├── FreeSansOblique.ttf
│   ├── FreeSans.ttf
│   ├── FreeSerifBoldItalic.ttf
│   ├── FreeSerifBold.ttf
│   ├── FreeSerifItalic.ttf
│   ├── FreeSerif.ttf
│   ├── Garuda-BoldOblique.ttf
│   ├── Garuda-Bold.ttf
│   ├── Garuda-Oblique.ttf
│   ├── Garuda.ttf
│   ├── GNUFreeFontinfo.txt
│   ├── Jomolhari-OFL.txt
│   ├── Jomolhari.ttf
│   ├── kaputaunicode.ttf
│   ├── KhmerOFL.txt
│   ├── KhmerOS.ttf
│   ├── lannaalif-v1-03.ttf
│   ├── Lateef font OFL.txt
│   ├── LateefRegOT.ttf
│   ├── LohitKannadaOFL.txt
│   ├── Lohit-Kannada.ttf
│   ├── ocrb10.ttf
│   ├── ocrbinfo.txt
│   ├── Padauk-book.ttf
│   ├── Pothana2000.ttf
│   ├── Quivira.otf
│   ├── SundaneseUnicode-1.0.5.ttf
│   ├── Sun-ExtA.ttf
│   ├── Sun-ExtB.ttf
│   ├── SyrCOMEdessa_license.txt
│   ├── SyrCOMEdessa.otf
│   ├── TaameyDavidCLM-LICENSE.txt
│   ├── TaameyDavidCLM-Medium.ttf
│   ├── TaiHeritagePro.ttf
│   ├── TharlonOFL.txt
│   ├── Tharlon-Regular.ttf
│   ├── UnBatang_0613.ttf
│   ├── Uthman.otf
│   ├── XB RiyazBdIt.ttf
│   ├── XB RiyazBd.ttf
│   ├── XB RiyazIt.ttf
│   ├── XB Riyaz.ttf
│   ├── XW Zar Font Info.txt
│   └── ZawgyiOne.ttf
├── myclabs
│   └── deep-copy
│   ├── composer.json
│   ├── doc
│   │   ├── clone.png
│   │   ├── deep-clone.png
│   │   ├── deep-copy.png
│   │   └── graph.png
│   ├── fixtures
│   │   ├── f001
│   │   │   ├── A.php
│   │   │   └── B.php
│   │   ├── f002
│   │   │   └── A.php
│   │   ├── f003
│   │   │   └── Foo.php
│   │   ├── f004
│   │   │   └── UnclonableItem.php
│   │   ├── f005
│   │   │   └── Foo.php
│   │   ├── f006
│   │   │   ├── A.php
│   │   │   └── B.php
│   │   ├── f007
│   │   │   ├── FooDateInterval.php
│   │   │   └── FooDateTimeZone.php
│   │   └── f008
│   │   ├── A.php
│   │   └── B.php
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── DeepCopy
│   ├── deep_copy.php
│   ├── DeepCopy.php
│   ├── Exception
│   │   ├── CloneException.php
│   │   └── PropertyException.php
│   ├── Filter
│   │   ├── Doctrine
│   │   │   ├── DoctrineCollectionFilter.php
│   │   │   ├── DoctrineEmptyCollectionFilter.php
│   │   │   └── DoctrineProxyFilter.php
│   │   ├── Filter.php
│   │   ├── KeepFilter.php
│   │   ├── ReplaceFilter.php
│   │   └── SetNullFilter.php
│   ├── Matcher
│   │   ├── Doctrine
│   │   │   └── DoctrineProxyMatcher.php
│   │   ├── Matcher.php
│   │   ├── PropertyMatcher.php
│   │   ├── PropertyNameMatcher.php
│   │   └── PropertyTypeMatcher.php
│   ├── Reflection
│   │   └── ReflectionHelper.php
│   ├── TypeFilter
│   │   ├── Date
│   │   │   └── DateIntervalFilter.php
│   │   ├── ReplaceFilter.php
│   │   ├── ShallowCopyFilter.php
│   │   ├── Spl
│   │   │   ├── SplDoublyLinkedListFilter.php
│   │   │   └── SplDoublyLinkedList.php
│   │   └── TypeFilter.php
│   └── TypeMatcher
│   └── TypeMatcher.php
├── paragonie
│   └── random_compat
│   ├── build-phar.sh
│   ├── composer.json
│   ├── dist
│   │   ├── random_compat.phar.pubkey
│   │   └── random_compat.phar.pubkey.asc
│   ├── lib
│   │   └── random.php
│   ├── LICENSE
│   ├── other
│   │   └── build_phar.php
│   ├── psalm-autoload.php
│   └── psalm.xml
├── pclzip
│   └── pclzip
│   ├── composer.json
│   ├── gnu-lgpl.txt
│   ├── pclzip.lib.php
│   └── readme.txt
├── pdepend
│   └── pdepend
│   ├── build.properties
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   ├── scripts
│   │   ├── compare.sh
│   │   ├── php-keywords.php
│   │   └── update-version.php
│   ├── src
│   │   ├── bin
│   │   │   ├── pdepend
│   │   │   ├── pdepend.bat
│   │   │   └── pdepend.php
│   │   ├── conf
│   │   │   └── phar_bootstrap.stub
│   │   └── main
│   │   ├── php
│   │   │   └── PDepend
│   │   │   ├── Application.php
│   │   │   ├── DbusUI
│   │   │   │   └── ResultPrinter.php
│   │   │   ├── DependencyInjection
│   │   │   │   ├── Compiler
│   │   │   │   │   └── ProcessListenerPass.php
│   │   │   │   ├── Configuration.php
│   │   │   │   ├── ExtensionManager.php
│   │   │   │   ├── Extension.php
│   │   │   │   └── PdependExtension.php
│   │   │   ├── Engine.php
│   │   │   ├── Input
│   │   │   │   ├── CompositeFilter.php
│   │   │   │   ├── ExcludePathFilter.php
│   │   │   │   ├── ExtensionFilter.php
│   │   │   │   ├── Filter.php
│   │   │   │   └── Iterator.php
│   │   │   ├── Metrics
│   │   │   │   ├── AbstractAnalyzer.php
│   │   │   │   ├── AbstractCachingAnalyzer.php
│   │   │   │   ├── AggregateAnalyzer.php
│   │   │   │   ├── Analyzer
│   │   │   │   │   ├── ClassDependencyAnalyzer.php
│   │   │   │   │   ├── ClassLevelAnalyzer.php
│   │   │   │   │   ├── CodeRankAnalyzer
│   │   │   │   │   │   ├── CodeRankStrategyI.php
│   │   │   │   │   │   ├── InheritanceStrategy.php
│   │   │   │   │   │   ├── MethodStrategy.php
│   │   │   │   │   │   ├── PropertyStrategy.php
│   │   │   │   │   │   └── StrategyFactory.php
│   │   │   │   │   ├── CodeRankAnalyzer.php
│   │   │   │   │   ├── CohesionAnalyzer.php
│   │   │   │   │   ├── CouplingAnalyzer.php
│   │   │   │   │   ├── CrapIndexAnalyzer.php
│   │   │   │   │   ├── CyclomaticComplexityAnalyzer.php
│   │   │   │   │   ├── DependencyAnalyzer.php
│   │   │   │   │   ├── HalsteadAnalyzer.php
│   │   │   │   │   ├── HierarchyAnalyzer.php
│   │   │   │   │   ├── InheritanceAnalyzer.php
│   │   │   │   │   ├── MaintainabilityIndexAnalyzer.php
│   │   │   │   │   ├── NodeCountAnalyzer.php
│   │   │   │   │   ├── NodeLocAnalyzer.php
│   │   │   │   │   └── NPathComplexityAnalyzer.php
│   │   │   │   ├── AnalyzerCacheAware.php
│   │   │   │   ├── AnalyzerFactory.php
│   │   │   │   ├── AnalyzerFilterAware.php
│   │   │   │   ├── AnalyzerIterator.php
│   │   │   │   ├── AnalyzerListener.php
│   │   │   │   ├── AnalyzerNodeAware.php
│   │   │   │   ├── Analyzer.php
│   │   │   │   └── AnalyzerProjectAware.php
│   │   │   ├── ProcessListener.php
│   │   │   ├── Report
│   │   │   │   ├── CodeAwareGenerator.php
│   │   │   │   ├── Dependencies
│   │   │   │   │   └── Xml.php
│   │   │   │   ├── FileAwareGenerator.php
│   │   │   │   ├── Jdepend
│   │   │   │   │   ├── Chart.php
│   │   │   │   │   ├── chart.svg
│   │   │   │   │   └── Xml.php
│   │   │   │   ├── NoLogOutputException.php
│   │   │   │   ├── Overview
│   │   │   │   │   ├── Pyramid.php
│   │   │   │   │   └── pyramid.svg
│   │   │   │   ├── ReportGeneratorFactory.php
│   │   │   │   ├── ReportGenerator.php
│   │   │   │   └── Summary
│   │   │   │   └── Xml.php
│   │   │   ├── Source
│   │   │   │   ├── AST
│   │   │   │   │   ├── AbstractASTArtifact.php
│   │   │   │   │   ├── AbstractASTCallable.php
│   │   │   │   │   ├── AbstractASTClassOrInterface.php
│   │   │   │   │   ├── AbstractASTNode.php
│   │   │   │   │   ├── AbstractASTType.php
│   │   │   │   │   ├── ASTAllocationExpression.php
│   │   │   │   │   ├── ASTAnonymousClass.php
│   │   │   │   │   ├── ASTArguments.php
│   │   │   │   │   ├── ASTArrayElement.php
│   │   │   │   │   ├── ASTArrayIndexExpression.php
│   │   │   │   │   ├── ASTArray.php
│   │   │   │   │   ├── ASTArtifactList
│   │   │   │   │   │   ├── ArtifactFilter.php
│   │   │   │   │   │   ├── CollectionArtifactFilter.php
│   │   │   │   │   │   ├── NullArtifactFilter.php
│   │   │   │   │   │   └── PackageArtifactFilter.php
│   │   │   │   │   ├── ASTArtifactList.php
│   │   │   │   │   ├── ASTArtifact.php
│   │   │   │   │   ├── ASTAssignmentExpression.php
│   │   │   │   │   ├── ASTBooleanAndExpression.php
│   │   │   │   │   ├── ASTBooleanOrExpression.php
│   │   │   │   │   ├── ASTBreakStatement.php
│   │   │   │   │   ├── ASTCallable.php
│   │   │   │   │   ├── ASTCastExpression.php
│   │   │   │   │   ├── ASTCatchStatement.php
│   │   │   │   │   ├── ASTClassFqnPostfix.php
│   │   │   │   │   ├── ASTClassOrInterfaceRecursiveInheritanceException.php
│   │   │   │   │   ├── ASTClassOrInterfaceReferenceIterator.php
│   │   │   │   │   ├── ASTClassOrInterfaceReference.php
│   │   │   │   │   ├── ASTClass.php
│   │   │   │   │   ├── ASTClassReference.php
│   │   │   │   │   ├── ASTCloneExpression.php
│   │   │   │   │   ├── ASTClosure.php
│   │   │   │   │   ├── ASTComment.php
│   │   │   │   │   ├── ASTCompilationUnitNotFoundException.php
│   │   │   │   │   ├── ASTCompilationUnit.php
│   │   │   │   │   ├── ASTCompoundExpression.php
│   │   │   │   │   ├── ASTCompoundVariable.php
│   │   │   │   │   ├── ASTConditionalExpression.php
│   │   │   │   │   ├── ASTConstantDeclarator.php
│   │   │   │   │   ├── ASTConstantDefinition.php
│   │   │   │   │   ├── ASTConstant.php
│   │   │   │   │   ├── ASTConstantPostfix.php
│   │   │   │   │   ├── ASTContinueStatement.php
│   │   │   │   │   ├── ASTDeclareStatement.php
│   │   │   │   │   ├── ASTDoWhileStatement.php
│   │   │   │   │   ├── ASTEchoStatement.php
│   │   │   │   │   ├── ASTElseIfStatement.php
│   │   │   │   │   ├── ASTEvalExpression.php
│   │   │   │   │   ├── ASTExitExpression.php
│   │   │   │   │   ├── ASTExpression.php
│   │   │   │   │   ├── ASTFieldDeclaration.php
│   │   │   │   │   ├── ASTFinallyStatement.php
│   │   │   │   │   ├── ASTForeachStatement.php
│   │   │   │   │   ├── ASTForInit.php
│   │   │   │   │   ├── ASTFormalParameter.php
│   │   │   │   │   ├── ASTFormalParameters.php
│   │   │   │   │   ├── ASTForStatement.php
│   │   │   │   │   ├── ASTForUpdate.php
│   │   │   │   │   ├── ASTFunction.php
│   │   │   │   │   ├── ASTFunctionPostfix.php
│   │   │   │   │   ├── ASTGlobalStatement.php
│   │   │   │   │   ├── ASTGotoStatement.php
│   │   │   │   │   ├── ASTHeredoc.php
│   │   │   │   │   ├── ASTIdentifier.php
│   │   │   │   │   ├── ASTIfStatement.php
│   │   │   │   │   ├── ASTIncludeExpression.php
│   │   │   │   │   ├── ASTIndexExpression.php
│   │   │   │   │   ├── ASTInstanceOfExpression.php
│   │   │   │   │   ├── ASTInterface.php
│   │   │   │   │   ├── ASTInvocation.php
│   │   │   │   │   ├── ASTIssetExpression.php
│   │   │   │   │   ├── ASTLabelStatement.php
│   │   │   │   │   ├── ASTListExpression.php
│   │   │   │   │   ├── ASTLiteral.php
│   │   │   │   │   ├── ASTLogicalAndExpression.php
│   │   │   │   │   ├── ASTLogicalOrExpression.php
│   │   │   │   │   ├── ASTLogicalXorExpression.php
│   │   │   │   │   ├── ASTMemberPrimaryPrefix.php
│   │   │   │   │   ├── ASTMethod.php
│   │   │   │   │   ├── ASTMethodPostfix.php
│   │   │   │   │   ├── ASTNamespace.php
│   │   │   │   │   ├── ASTNode.php
│   │   │   │   │   ├── ASTParameter.php
│   │   │   │   │   ├── ASTParentReference.php
│   │   │   │   │   ├── ASTPostfixExpression.php
│   │   │   │   │   ├── ASTPreDecrementExpression.php
│   │   │   │   │   ├── ASTPreIncrementExpression.php
│   │   │   │   │   ├── ASTPrintExpression.php
│   │   │   │   │   ├── ASTProperty.php
│   │   │   │   │   ├── ASTPropertyPostfix.php
│   │   │   │   │   ├── ASTRequireExpression.php
│   │   │   │   │   ├── ASTReturnStatement.php
│   │   │   │   │   ├── ASTScalarType.php
│   │   │   │   │   ├── ASTScope.php
│   │   │   │   │   ├── ASTScopeStatement.php
│   │   │   │   │   ├── ASTSelfReference.php
│   │   │   │   │   ├── ASTShiftLeftExpression.php
│   │   │   │   │   ├── ASTShiftRightExpression.php
│   │   │   │   │   ├── ASTStatement.php
│   │   │   │   │   ├── ASTStaticReference.php
│   │   │   │   │   ├── ASTStaticVariableDeclaration.php
│   │   │   │   │   ├── ASTStringIndexExpression.php
│   │   │   │   │   ├── ASTString.php
│   │   │   │   │   ├── ASTSwitchLabel.php
│   │   │   │   │   ├── ASTSwitchStatement.php
│   │   │   │   │   ├── ASTThrowStatement.php
│   │   │   │   │   ├── ASTTraitAdaptationAlias.php
│   │   │   │   │   ├── ASTTraitAdaptation.php
│   │   │   │   │   ├── ASTTraitAdaptationPrecedence.php
│   │   │   │   │   ├── ASTTraitMethodCollisionException.php
│   │   │   │   │   ├── ASTTrait.php
│   │   │   │   │   ├── ASTTraitReference.php
│   │   │   │   │   ├── ASTTraitUseStatement.php
│   │   │   │   │   ├── ASTTryStatement.php
│   │   │   │   │   ├── ASTTypeArray.php
│   │   │   │   │   ├── ASTTypeCallable.php
│   │   │   │   │   ├── ASTTypeIterable.php
│   │   │   │   │   ├── ASTType.php
│   │   │   │   │   ├── ASTUnaryExpression.php
│   │   │   │   │   ├── ASTUnsetStatement.php
│   │   │   │   │   ├── ASTValue.php
│   │   │   │   │   ├── ASTVariableDeclarator.php
│   │   │   │   │   ├── ASTVariable.php
│   │   │   │   │   ├── ASTVariableVariable.php
│   │   │   │   │   ├── ASTWhileStatement.php
│   │   │   │   │   ├── ASTYieldStatement.php
│   │   │   │   │   └── State.php
│   │   │   │   ├── ASTVisitor
│   │   │   │   │   ├── AbstractASTVisitListener.php
│   │   │   │   │   ├── AbstractASTVisitor.php
│   │   │   │   │   ├── ASTVisitListener.php
│   │   │   │   │   └── ASTVisitor.php
│   │   │   │   ├── Builder
│   │   │   │   │   ├── BuilderContext
│   │   │   │   │   │   └── GlobalBuilderContext.php
│   │   │   │   │   ├── BuilderContext.php
│   │   │   │   │   └── Builder.php
│   │   │   │   ├── Language
│   │   │   │   │   └── PHP
│   │   │   │   │   ├── AbstractPHPParser.php
│   │   │   │   │   ├── PHPBuilder.php
│   │   │   │   │   ├── PHPParserGeneric.php
│   │   │   │   │   ├── PHPParserVersion53.php
│   │   │   │   │   ├── PHPParserVersion54.php
│   │   │   │   │   ├── PHPParserVersion55.php
│   │   │   │   │   ├── PHPParserVersion56.php
│   │   │   │   │   ├── PHPParserVersion70.php
│   │   │   │   │   ├── PHPParserVersion71.php
│   │   │   │   │   ├── PHPTokenizerHelperVersion52.php
│   │   │   │   │   └── PHPTokenizerInternal.php
│   │   │   │   ├── Parser
│   │   │   │   │   ├── InvalidStateException.php
│   │   │   │   │   ├── MissingValueException.php
│   │   │   │   │   ├── NoActiveScopeException.php
│   │   │   │   │   ├── ParserException.php
│   │   │   │   │   ├── SymbolTable.php
│   │   │   │   │   ├── TokenException.php
│   │   │   │   │   ├── TokenStack.php
│   │   │   │   │   ├── TokenStreamEndException.php
│   │   │   │   │   └── UnexpectedTokenException.php
│   │   │   │   └── Tokenizer
│   │   │   │   ├── Tokenizer.php
│   │   │   │   ├── Token.php
│   │   │   │   └── Tokens.php
│   │   │   ├── TextUI
│   │   │   │   ├── Command.php
│   │   │   │   ├── ResultPrinter.php
│   │   │   │   └── Runner.php
│   │   │   └── Util
│   │   │   ├── Cache
│   │   │   │   ├── CacheDriver.php
│   │   │   │   ├── CacheFactory.php
│   │   │   │   └── Driver
│   │   │   │   ├── File
│   │   │   │   │   ├── FileCacheDirectory.php
│   │   │   │   │   └── FileCacheGarbageCollector.php
│   │   │   │   ├── FileCacheDriver.php
│   │   │   │   └── MemoryCacheDriver.php
│   │   │   ├── ConfigurationInstance.php
│   │   │   ├── Configuration.php
│   │   │   ├── Coverage
│   │   │   │   ├── CloverReport.php
│   │   │   │   ├── Factory.php
│   │   │   │   └── Report.php
│   │   │   ├── FileUtil.php
│   │   │   ├── IdBuilder.php
│   │   │   ├── ImageConvert.php
│   │   │   ├── Log.php
│   │   │   ├── MathUtil.php
│   │   │   ├── Type.php
│   │   │   ├── Utf8Util.php
│   │   │   └── Workarounds.php
│   │   └── resources
│   │   ├── schema
│   │   │   └── configuration.xsd
│   │   └── services.xml
│   └── Vagrantfile
├── phar-io
│   ├── manifest
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── composer.lock
│   │   ├── examples
│   │   │   └── example-01.php
│   │   ├── LICENSE
│   │   ├── phive.xml
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── exceptions
│   │   │   │   ├── Exception.php
│   │   │   │   ├── InvalidApplicationNameException.php
│   │   │   │   ├── InvalidEmailException.php
│   │   │   │   ├── InvalidUrlException.php
│   │   │   │   ├── ManifestDocumentException.php
│   │   │   │   ├── ManifestDocumentMapperException.php
│   │   │   │   ├── ManifestElementException.php
│   │   │   │   └── ManifestLoaderException.php
│   │   │   ├── ManifestDocumentMapper.php
│   │   │   ├── ManifestLoader.php
│   │   │   ├── ManifestSerializer.php
│   │   │   ├── values
│   │   │   │   ├── ApplicationName.php
│   │   │   │   ├── Application.php
│   │   │   │   ├── AuthorCollectionIterator.php
│   │   │   │   ├── AuthorCollection.php
│   │   │   │   ├── Author.php
│   │   │   │   ├── BundledComponentCollectionIterator.php
│   │   │   │   ├── BundledComponentCollection.php
│   │   │   │   ├── BundledComponent.php
│   │   │   │   ├── CopyrightInformation.php
│   │   │   │   ├── Email.php
│   │   │   │   ├── Extension.php
│   │   │   │   ├── Library.php
│   │   │   │   ├── License.php
│   │   │   │   ├── Manifest.php
│   │   │   │   ├── PhpExtensionRequirement.php
│   │   │   │   ├── PhpVersionRequirement.php
│   │   │   │   ├── RequirementCollectionIterator.php
│   │   │   │   ├── RequirementCollection.php
│   │   │   │   ├── Requirement.php
│   │   │   │   ├── Type.php
│   │   │   │   └── Url.php
│   │   │   └── xml
│   │   │   ├── AuthorElementCollection.php
│   │   │   ├── AuthorElement.php
│   │   │   ├── BundlesElement.php
│   │   │   ├── ComponentElementCollection.php
│   │   │   ├── ComponentElement.php
│   │   │   ├── ContainsElement.php
│   │   │   ├── CopyrightElement.php
│   │   │   ├── ElementCollection.php
│   │   │   ├── ExtElementCollection.php
│   │   │   ├── ExtElement.php
│   │   │   ├── ExtensionElement.php
│   │   │   ├── LicenseElement.php
│   │   │   ├── ManifestDocumentLoadingException.php
│   │   │   ├── ManifestDocument.php
│   │   │   ├── ManifestElement.php
│   │   │   ├── PhpElement.php
│   │   │   └── RequiresElement.php
│   │   └── tests
│   │   ├── exceptions
│   │   │   └── ManifestDocumentLoadingExceptionTest.php
│   │   ├── _fixture
│   │   │   ├── custom.xml
│   │   │   ├── extension-invalidcompatible.xml
│   │   │   ├── extension.xml
│   │   │   ├── invalidversionconstraint.xml
│   │   │   ├── invalidversion.xml
│   │   │   ├── library.xml
│   │   │   ├── manifest.xml
│   │   │   ├── phpunit-5.6.5.xml
│   │   │   └── test.phar
│   │   ├── ManifestDocumentMapperTest.php
│   │   ├── ManifestLoaderTest.php
│   │   ├── ManifestSerializerTest.php
│   │   ├── values
│   │   │   ├── ApplicationNameTest.php
│   │   │   ├── ApplicationTest.php
│   │   │   ├── AuthorCollectionTest.php
│   │   │   ├── AuthorTest.php
│   │   │   ├── BundledComponentCollectionTest.php
│   │   │   ├── BundledComponentTest.php
│   │   │   ├── CopyrightInformationTest.php
│   │   │   ├── EmailTest.php
│   │   │   ├── ExtensionTest.php
│   │   │   ├── LibraryTest.php
│   │   │   ├── LicenseTest.php
│   │   │   ├── ManifestTest.php
│   │   │   ├── PhpExtensionRequirementTest.php
│   │   │   ├── PhpVersionRequirementTest.php
│   │   │   ├── RequirementCollectionTest.php
│   │   │   └── UrlTest.php
│   │   └── xml
│   │   ├── AuthorElementCollectionTest.php
│   │   ├── AuthorElementTest.php
│   │   ├── BundlesElementTest.php
│   │   ├── ComponentElementCollectionTest.php
│   │   ├── ComponentElementTest.php
│   │   ├── ContainsElementTest.php
│   │   ├── CopyrightElementTest.php
│   │   ├── ExtElementCollectionTest.php
│   │   ├── ExtElementTest.php
│   │   ├── ExtensionElementTest.php
│   │   ├── LicenseElementTest.php
│   │   ├── ManifestDocumentTest.php
│   │   ├── PhpElementTest.php
│   │   └── RequiresElementTest.php
│   └── version
│   ├── build.xml
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── phive.xml
│   ├── phpunit.xml
│   ├── README.md
│   ├── src
│   │   ├── constraints
│   │   │   ├── AbstractVersionConstraint.php
│   │   │   ├── AndVersionConstraintGroup.php
│   │   │   ├── AnyVersionConstraint.php
│   │   │   ├── ExactVersionConstraint.php
│   │   │   ├── GreaterThanOrEqualToVersionConstraint.php
│   │   │   ├── OrVersionConstraintGroup.php
│   │   │   ├── SpecificMajorAndMinorVersionConstraint.php
│   │   │   ├── SpecificMajorVersionConstraint.php
│   │   │   └── VersionConstraint.php
│   │   ├── exceptions
│   │   │   ├── Exception.php
│   │   │   ├── InvalidPreReleaseSuffixException.php
│   │   │   ├── InvalidVersionException.php
│   │   │   └── UnsupportedVersionConstraintException.php
│   │   ├── PreReleaseSuffix.php
│   │   ├── VersionConstraintParser.php
│   │   ├── VersionConstraintValue.php
│   │   ├── VersionNumber.php
│   │   └── Version.php
│   └── tests
│   ├── Integration
│   │   └── VersionConstraintParserTest.php
│   └── Unit
│   ├── AbstractVersionConstraintTest.php
│   ├── AndVersionConstraintGroupTest.php
│   ├── AnyVersionConstraintTest.php
│   ├── ExactVersionConstraintTest.php
│   ├── GreaterThanOrEqualToVersionConstraintTest.php
│   ├── OrVersionConstraintGroupTest.php
│   ├── PreReleaseSuffixTest.php
│   ├── SpecificMajorAndMinorVersionConstraintTest.php
│   ├── SpecificMajorVersionConstraintTest.php
│   └── VersionTest.php
├── phenx
│   ├── php-font-lib
│   │   ├── bower.json
│   │   ├── composer.json
│   │   ├── index.php
│   │   ├── LICENSE
│   │   ├── maps
│   │   │   ├── adobe-standard-encoding.map
│   │   │   ├── cp1250.map
│   │   │   ├── cp1251.map
│   │   │   ├── cp1252.map
│   │   │   ├── cp1253.map
│   │   │   ├── cp1254.map
│   │   │   ├── cp1255.map
│   │   │   ├── cp1257.map
│   │   │   ├── cp1258.map
│   │   │   ├── cp874.map
│   │   │   ├── iso-8859-11.map
│   │   │   ├── iso-8859-15.map
│   │   │   ├── iso-8859-16.map
│   │   │   ├── iso-8859-1.map
│   │   │   ├── iso-8859-2.map
│   │   │   ├── iso-8859-4.map
│   │   │   ├── iso-8859-5.map
│   │   │   ├── iso-8859-7.map
│   │   │   ├── iso-8859-9.map
│   │   │   ├── koi8-r.map
│   │   │   └── koi8-u.map
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── sample-fonts
│   │   │   ├── IntelClear-Light.ttf
│   │   │   └── NotoSansShavian-Regular.ttf
│   │   ├── src
│   │   │   └── FontLib
│   │   │   ├── AdobeFontMetrics.php
│   │   │   ├── Autoloader.php
│   │   │   ├── BinaryStream.php
│   │   │   ├── EncodingMap.php
│   │   │   ├── EOT
│   │   │   │   ├── File.php
│   │   │   │   └── Header.php
│   │   │   ├── Exception
│   │   │   │   └── FontNotFoundException.php
│   │   │   ├── Font.php
│   │   │   ├── Glyph
│   │   │   │   ├── OutlineComponent.php
│   │   │   │   ├── OutlineComposite.php
│   │   │   │   ├── Outline.php
│   │   │   │   └── OutlineSimple.php
│   │   │   ├── Header.php
│   │   │   ├── OpenType
│   │   │   │   ├── File.php
│   │   │   │   └── TableDirectoryEntry.php
│   │   │   ├── Table
│   │   │   │   ├── DirectoryEntry.php
│   │   │   │   ├── Table.php
│   │   │   │   └── Type
│   │   │   │   ├── cmap.php
│   │   │   │   ├── glyf.php
│   │   │   │   ├── head.php
│   │   │   │   ├── hhea.php
│   │   │   │   ├── hmtx.php
│   │   │   │   ├── kern.php
│   │   │   │   ├── loca.php
│   │   │   │   ├── maxp.php
│   │   │   │   ├── name.php
│   │   │   │   ├── nameRecord.php
│   │   │   │   ├── os2.php
│   │   │   │   └── post.php
│   │   │   ├── TrueType
│   │   │   │   ├── Collection.php
│   │   │   │   ├── File.php
│   │   │   │   ├── Header.php
│   │   │   │   └── TableDirectoryEntry.php
│   │   │   └── WOFF
│   │   │   ├── File.php
│   │   │   ├── Header.php
│   │   │   └── TableDirectoryEntry.php
│   │   └── tests
│   │   └── FontLib
│   │   └── FontTest.php
│   └── php-svg-lib
│   ├── composer.json
│   ├── COPYING
│   ├── COPYING.GPL
│   ├── phpunit.xml
│   ├── README.md
│   ├── src
│   │   ├── autoload.php
│   │   └── Svg
│   │   ├── DefaultStyle.php
│   │   ├── Document.php
│   │   ├── Gradient
│   │   │   └── Stop.php
│   │   ├── Style.php
│   │   ├── Surface
│   │   │   ├── CPdf.php
│   │   │   ├── SurfaceCpdf.php
│   │   │   ├── SurfaceGmagick.php
│   │   │   ├── SurfaceInterface.php
│   │   │   └── SurfacePDFLib.php
│   │   └── Tag
│   │   ├── AbstractTag.php
│   │   ├── Anchor.php
│   │   ├── Circle.php
│   │   ├── ClipPath.php
│   │   ├── Ellipse.php
│   │   ├── Group.php
│   │   ├── Image.php
│   │   ├── LinearGradient.php
│   │   ├── Line.php
│   │   ├── Path.php
│   │   ├── Polygon.php
│   │   ├── Polyline.php
│   │   ├── RadialGradient.php
│   │   ├── Rect.php
│   │   ├── Shape.php
│   │   ├── Stop.php
│   │   ├── StyleTag.php
│   │   ├── Text.php
│   │   └── UseTag.php
│   └── tests
│   └── Svg
│   └── StyleTest.php
├── php-coveralls
│   └── php-coveralls
│   ├── bin
│   │   └── php-coveralls
│   ├── box.json
│   ├── build
│   │   ├── artifacts
│   │   └── config
│   │   └── phpmd.xml
│   ├── CHANGELOG.md
│   ├── circle.yml
│   ├── composer.json
│   ├── dev-tools
│   │   └── composer.json
│   ├── LICENSE
│   ├── phpunit.xml.dist
│   ├── README.md
│   ├── src
│   │   ├── Bundle
│   │   │   └── CoverallsBundle
│   │   │   ├── Api
│   │   │   │   ├── CoverallsApi.php
│   │   │   │   └── Jobs.php
│   │   │   ├── Collector
│   │   │   │   ├── CiEnvVarsCollector.php
│   │   │   │   ├── CloverXmlCoverageCollector.php
│   │   │   │   └── GitInfoCollector.php
│   │   │   ├── Command
│   │   │   │   └── CoverallsJobsCommand.php
│   │   │   ├── Config
│   │   │   │   ├── Configuration.php
│   │   │   │   ├── Configurator.php
│   │   │   │   └── CoverallsConfiguration.php
│   │   │   ├── Console
│   │   │   │   └── Application.php
│   │   │   ├── CoverallsBundle.php
│   │   │   ├── Entity
│   │   │   │   ├── ArrayConvertable.php
│   │   │   │   ├── Coveralls.php
│   │   │   │   ├── Exception
│   │   │   │   │   └── RequirementsNotSatisfiedException.php
│   │   │   │   ├── Git
│   │   │   │   │   ├── Commit.php
│   │   │   │   │   ├── Git.php
│   │   │   │   │   └── Remote.php
│   │   │   │   ├── JsonFile.php
│   │   │   │   ├── Metrics.php
│   │   │   │   └── SourceFile.php
│   │   │   ├── Repository
│   │   │   │   └── JobsRepository.php
│   │   │   └── Version.php
│   │   └── Component
│   │   ├── File
│   │   │   └── Path.php
│   │   ├── Log
│   │   │   └── ConsoleLogger.php
│   │   └── System
│   │   ├── Git
│   │   │   └── GitCommand.php
│   │   ├── SystemCommandExecutorInterface.php
│   │   └── SystemCommandExecutor.php
│   └── tests
│   ├── Bundle
│   │   └── CoverallsBundle
│   │   ├── Api
│   │   │   └── JobsTest.php
│   │   ├── Collector
│   │   │   ├── CiEnvVarsCollectorTest.php
│   │   │   ├── CloverXmlCoverageCollectorTest.php
│   │   │   └── GitInfoCollectorTest.php
│   │   ├── Command
│   │   │   └── CoverallsJobsCommandTest.php
│   │   ├── Config
│   │   │   ├── ConfigurationTest.php
│   │   │   ├── ConfiguratorTest.php
│   │   │   └── yaml
│   │   │   ├── coverage_clover_array.yml
│   │   │   ├── coverage_clover_glob.yml
│   │   │   ├── coverage_clover_invalid.yml
│   │   │   ├── coverage_clover_not_found.yml
│   │   │   ├── coverage_clover.yml
│   │   │   ├── empty.yml
│   │   │   ├── exclude_no_stmt_false.yml
│   │   │   ├── exclude_no_stmt_invalid.yml
│   │   │   ├── exclude_no_stmt_true.yml
│   │   │   ├── json_path_not_found.yml
│   │   │   ├── json_path.yml
│   │   │   └── src_dir.yml
│   │   ├── Console
│   │   │   └── ApplicationTest.php
│   │   ├── Entity
│   │   │   ├── Exception
│   │   │   │   └── RequirementsNotSatisfiedExceptionTest.php
│   │   │   ├── Git
│   │   │   │   ├── CommitTest.php
│   │   │   │   ├── GitTest.php
│   │   │   │   └── RemoteTest.php
│   │   │   ├── JsonFileTest.php
│   │   │   ├── MetricsTest.php
│   │   │   └── SourceFileTest.php
│   │   └── Repository
│   │   └── JobsRepositoryTest.php
│   ├── Component
│   │   ├── File
│   │   │   └── PathTest.php
│   │   ├── Log
│   │   │   └── ConsoleLoggerTest.php
│   │   └── System
│   │   └── Git
│   │   └── GitCommandTest.php
│   ├── Fixture
│   │   ├── coveralls.yml
│   │   └── files
│   │   ├── AbstractClass.php
│   │   ├── RepositoryTest
│   │   │   ├── Coverage0.php
│   │   │   ├── Coverage100.php
│   │   │   ├── Coverage10.php
│   │   │   ├── Coverage70.php
│   │   │   ├── Coverage80.php
│   │   │   └── Coverage90.php
│   │   ├── test2.php
│   │   ├── test3.php
│   │   ├── TestInterface.php
│   │   └── test.php
│   └── ProjectTestCase.php
├── php-cs-fixer
│   └── diff
│   ├── ChangeLog.md
│   ├── composer.json
│   ├── LICENSE
│   ├── LICENSE_DIFF
│   ├── LICENSE_GECKO
│   ├── README.md
│   └── src
│   ├── GeckoPackages
│   │   └── DiffOutputBuilder
│   │   ├── ConfigurationException.php
│   │   └── UnifiedDiffOutputBuilder.php
│   ├── v1_4
│   │   ├── Chunk.php
│   │   ├── Differ.php
│   │   ├── Diff.php
│   │   ├── LCS
│   │   │   ├── LongestCommonSubsequence.php
│   │   │   ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│   │   │   └── TimeEfficientLongestCommonSubsequenceImplementation.php
│   │   ├── Line.php
│   │   └── Parser.php
│   ├── v2_0
│   │   ├── Chunk.php
│   │   ├── Differ.php
│   │   ├── Diff.php
│   │   ├── Exception
│   │   │   ├── Exception.php
│   │   │   └── InvalidArgumentException.php
│   │   ├── Line.php
│   │   ├── LongestCommonSubsequenceCalculator.php
│   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php
│   │   ├── Output
│   │   │   ├── AbstractChunkOutputBuilder.php
│   │   │   ├── DiffOnlyOutputBuilder.php
│   │   │   ├── DiffOutputBuilderInterface.php
│   │   │   └── UnifiedDiffOutputBuilder.php
│   │   ├── Parser.php
│   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php
│   └── v3_0
│   ├── Chunk.php
│   ├── Differ.php
│   ├── Diff.php
│   ├── Exception
│   │   ├── ConfigurationException.php
│   │   ├── Exception.php
│   │   └── InvalidArgumentException.php
│   ├── Line.php
│   ├── LongestCommonSubsequenceCalculator.php
│   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php
│   ├── Output
│   │   ├── AbstractChunkOutputBuilder.php
│   │   ├── DiffOnlyOutputBuilder.php
│   │   ├── DiffOutputBuilderInterface.php
│   │   ├── StrictUnifiedDiffOutputBuilder.php
│   │   └── UnifiedDiffOutputBuilder.php
│   ├── Parser.php
│   └── TimeEfficientLongestCommonSubsequenceCalculator.php
├── phpdocumentor
│   ├── reflection-common
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── Element.php
│   │   ├── File.php
│   │   ├── Fqsen.php
│   │   ├── Location.php
│   │   ├── ProjectFactory.php
│   │   └── Project.php
│   ├── reflection-docblock
│   │   ├── composer.json
│   │   ├── easy-coding-standard.neon
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── DocBlock
│   │   │   ├── DescriptionFactory.php
│   │   │   ├── Description.php
│   │   │   ├── ExampleFinder.php
│   │   │   ├── Serializer.php
│   │   │   ├── StandardTagFactory.php
│   │   │   ├── TagFactory.php
│   │   │   ├── Tag.php
│   │   │   └── Tags
│   │   │   ├── Author.php
│   │   │   ├── BaseTag.php
│   │   │   ├── Covers.php
│   │   │   ├── Deprecated.php
│   │   │   ├── Example.php
│   │   │   ├── Factory
│   │   │   │   ├── StaticMethod.php
│   │   │   │   └── Strategy.php
│   │   │   ├── Formatter
│   │   │   │   ├── AlignFormatter.php
│   │   │   │   └── PassthroughFormatter.php
│   │   │   ├── Formatter.php
│   │   │   ├── Generic.php
│   │   │   ├── Link.php
│   │   │   ├── Method.php
│   │   │   ├── Param.php
│   │   │   ├── Property.php
│   │   │   ├── PropertyRead.php
│   │   │   ├── PropertyWrite.php
│   │   │   ├── Reference
│   │   │   │   ├── Fqsen.php
│   │   │   │   ├── Reference.php
│   │   │   │   └── Url.php
│   │   │   ├── Return_.php
│   │   │   ├── See.php
│   │   │   ├── Since.php
│   │   │   ├── Source.php
│   │   │   ├── Throws.php
│   │   │   ├── Uses.php
│   │   │   ├── Var_.php
│   │   │   └── Version.php
│   │   ├── DocBlockFactoryInterface.php
│   │   ├── DocBlockFactory.php
│   │   └── DocBlock.php
│   └── type-resolver
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   ├── FqsenResolver.php
│   ├── Type.php
│   ├── TypeResolver.php
│   └── Types
│   ├── Array_.php
│   ├── Boolean.php
│   ├── Callable_.php
│   ├── Compound.php
│   ├── ContextFactory.php
│   ├── Context.php
│   ├── Float_.php
│   ├── Integer.php
│   ├── Iterable_.php
│   ├── Mixed_.php
│   ├── Nullable.php
│   ├── Null_.php
│   ├── Object_.php
│   ├── Parent_.php
│   ├── Resource_.php
│   ├── Scalar.php
│   ├── Self_.php
│   ├── Static_.php
│   ├── String_.php
│   ├── This.php
│   └── Void_.php
├── phploc
│   └── phploc
│   ├── build
│   │   ├── phar-autoload.php.in
│   │   └── phar-manifest.php
│   ├── build.xml
│   ├── ChangeLog.md
│   ├── composer.json
│   ├── LICENSE
│   ├── phive.xml
│   ├── phploc
│   ├── phpunit.xml
│   ├── README.md
│   ├── src
│   │   ├── Analyser.php
│   │   ├── CLI
│   │   │   ├── Application.php
│   │   │   └── Command.php
│   │   ├── Collector.php
│   │   ├── Exception
│   │   │   ├── Exception.php
│   │   │   └── RuntimeException.php
│   │   ├── Log
│   │   │   ├── Csv.php
│   │   │   ├── Text.php
│   │   │   └── Xml.php
│   │   └── Publisher.php
│   └── tests
│   ├── AnalyzerTest.php
│   ├── _files
│   │   ├── issue_112.php
│   │   ├── issue_126
│   │   │   ├── issue_126_1.php
│   │   │   ├── issue_126_2.php
│   │   │   ├── issue_126_3.php
│   │   │   ├── issue_126_4.php
│   │   │   ├── issue_126_5.php
│   │   │   ├── issue_126_6.php
│   │   │   └── issue_126_7.php
│   │   ├── issue_138.php
│   │   ├── issue_139.php
│   │   ├── issue_62.php
│   │   ├── source.php
│   │   ├── tests_old.php
│   │   ├── tests.php
│   │   ├── trait.php
│   │   ├── twoTestsThatIndirectlyExtendOldPHPUnitTestCase.php
│   │   └── twoTestsThatIndirectlyExtendPHPUnitTestCase.php
│   └── Log
│   └── SingleTest.php
├── phpmd
│   └── phpmd
│   ├── AUTHORS.rst
│   ├── build.properties
│   ├── CHANGELOG
│   ├── composer.json
│   ├── CONTRIBUTING.md
│   ├── LICENSE
│   ├── README.rst
│   └── src
│   ├── bin
│   │   ├── phpmd
│   │   └── phpmd.bat
│   ├── conf
│   │   └── phar_bootstrap.stub
│   └── main
│   ├── php
│   │   └── PHPMD
│   │   ├── AbstractNode.php
│   │   ├── AbstractRenderer.php
│   │   ├── AbstractRule.php
│   │   ├── AbstractWriter.php
│   │   ├── Node
│   │   │   ├── AbstractCallableNode.php
│   │   │   ├── AbstractNode.php
│   │   │   ├── AbstractTypeNode.php
│   │   │   ├── Annotation.php
│   │   │   ├── Annotations.php
│   │   │   ├── ASTNode.php
│   │   │   ├── ClassNode.php
│   │   │   ├── FunctionNode.php
│   │   │   ├── InterfaceNode.php
│   │   │   ├── MethodNode.php
│   │   │   └── TraitNode.php
│   │   ├── ParserFactory.php
│   │   ├── Parser.php
│   │   ├── PHPMD.php
│   │   ├── ProcessingError.php
│   │   ├── Renderer
│   │   │   ├── HTMLRenderer.php
│   │   │   ├── TextRenderer.php
│   │   │   └── XMLRenderer.php
│   │   ├── Report.php
│   │   ├── Rule
│   │   │   ├── AbstractLocalVariable.php
│   │   │   ├── ClassAware.php
│   │   │   ├── CleanCode
│   │   │   │   ├── BooleanArgumentFlag.php
│   │   │   │   ├── ElseExpression.php
│   │   │   │   └── StaticAccess.php
│   │   │   ├── Controversial
│   │   │   │   ├── CamelCaseClassName.php
│   │   │   │   ├── CamelCaseMethodName.php
│   │   │   │   ├── CamelCaseParameterName.php
│   │   │   │   ├── CamelCasePropertyName.php
│   │   │   │   ├── CamelCaseVariableName.php
│   │   │   │   └── Superglobals.php
│   │   │   ├── CyclomaticComplexity.php
│   │   │   ├── Design
│   │   │   │   ├── CouplingBetweenObjects.php
│   │   │   │   ├── DepthOfInheritance.php
│   │   │   │   ├── DevelopmentCodeFragment.php
│   │   │   │   ├── EvalExpression.php
│   │   │   │   ├── ExitExpression.php
│   │   │   │   ├── GotoStatement.php
│   │   │   │   ├── LongClass.php
│   │   │   │   ├── LongMethod.php
│   │   │   │   ├── LongParameterList.php
│   │   │   │   ├── NpathComplexity.php
│   │   │   │   ├── NumberOfChildren.php
│   │   │   │   ├── TooManyFields.php
│   │   │   │   ├── TooManyMethods.php
│   │   │   │   ├── TooManyPublicMethods.php
│   │   │   │   └── WeightedMethodCount.php
│   │   │   ├── ExcessivePublicCount.php
│   │   │   ├── FunctionAware.php
│   │   │   ├── InterfaceAware.php
│   │   │   ├── MethodAware.php
│   │   │   ├── Naming
│   │   │   │   ├── BooleanGetMethodName.php
│   │   │   │   ├── ConstantNamingConventions.php
│   │   │   │   ├── ConstructorWithNameAsEnclosingClass.php
│   │   │   │   ├── LongVariable.php
│   │   │   │   ├── ShortMethodName.php
│   │   │   │   └── ShortVariable.php
│   │   │   ├── UnusedFormalParameter.php
│   │   │   ├── UnusedLocalVariable.php
│   │   │   ├── UnusedPrivateField.php
│   │   │   └── UnusedPrivateMethod.php
│   │   ├── RuleClassFileNotFoundException.php
│   │   ├── RuleClassNotFoundException.php
│   │   ├── Rule.php
│   │   ├── RuleSetFactory.php
│   │   ├── RuleSetNotFoundException.php
│   │   ├── RuleSet.php
│   │   ├── RuleViolation.php
│   │   ├── TextUI
│   │   │   ├── CommandLineOptions.php
│   │   │   └── Command.php
│   │   └── Writer
│   │   └── StreamWriter.php
│   └── resources
│   └── rulesets
│   ├── cleancode.xml
│   ├── codesize.xml
│   ├── controversial.xml
│   ├── design.xml
│   ├── naming.xml
│   └── unusedcode.xml
├── phpoffice
│   └── common
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── COPYING
│   ├── COPYING.LESSER
│   ├── LICENSE
│   ├── phpmd.xml.dist
│   ├── phpunit.xml.dist
│   ├── README.md
│   ├── src
│   │   └── Common
│   │   ├── Adapter
│   │   │   └── Zip
│   │   │   ├── PclZipAdapter.php
│   │   │   ├── ZipArchiveAdapter.php
│   │   │   └── ZipInterface.php
│   │   ├── Autoloader.php
│   │   ├── Drawing.php
│   │   ├── File.php
│   │   ├── Font.php
│   │   ├── Microsoft
│   │   │   ├── OLERead.php
│   │   │   └── PasswordEncoder.php
│   │   ├── Text.php
│   │   ├── XMLReader.php
│   │   └── XMLWriter.php
│   ├── tests
│   │   ├── bootstrap.php
│   │   ├── Common
│   │   │   └── Tests
│   │   │   ├── Adapter
│   │   │   │   └── Zip
│   │   │   │   ├── AbstractZipAdapterTest.php
│   │   │   │   ├── PclZipAdapterTest.php
│   │   │   │   └── ZipArchiveAdapterTest.php
│   │   │   ├── AutoloaderTest.php
│   │   │   ├── DrawingTest.php
│   │   │   ├── FileTest.php
│   │   │   ├── FontTest.php
│   │   │   ├── _includes
│   │   │   │   ├── TestHelperZip.php
│   │   │   │   └── XmlDocument.php
│   │   │   ├── Microsoft
│   │   │   │   └── PasswordEncoderTest.php
│   │   │   ├── TextTest.php
│   │   │   ├── XMLReaderTest.php
│   │   │   └── XMLWriterTest.php
│   │   └── resources
│   │   ├── files
│   │   │   ├── reader.zip
│   │   │   └── Sample_01_Simple.pptx
│   │   └── images
│   │   └── PHPPowerPointLogo.png
│   └── VERSION
├── phpspec
│   └── prophecy
│   ├── CHANGES.md
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── Prophecy
│   ├── Argument
│   │   ├── ArgumentsWildcard.php
│   │   └── Token
│   │   ├── AnyValuesToken.php
│   │   ├── AnyValueToken.php
│   │   ├── ApproximateValueToken.php
│   │   ├── ArrayCountToken.php
│   │   ├── ArrayEntryToken.php
│   │   ├── ArrayEveryEntryToken.php
│   │   ├── CallbackToken.php
│   │   ├── ExactValueToken.php
│   │   ├── IdenticalValueToken.php
│   │   ├── LogicalAndToken.php
│   │   ├── LogicalNotToken.php
│   │   ├── ObjectStateToken.php
│   │   ├── StringContainsToken.php
│   │   ├── TokenInterface.php
│   │   └── TypeToken.php
│   ├── Argument.php
│   ├── Call
│   │   ├── CallCenter.php
│   │   └── Call.php
│   ├── Comparator
│   │   ├── ClosureComparator.php
│   │   ├── Factory.php
│   │   └── ProphecyComparator.php
│   ├── Doubler
│   │   ├── CachedDoubler.php
│   │   ├── ClassPatch
│   │   │   ├── ClassPatchInterface.php
│   │   │   ├── DisableConstructorPatch.php
│   │   │   ├── HhvmExceptionPatch.php
│   │   │   ├── KeywordPatch.php
│   │   │   ├── MagicCallPatch.php
│   │   │   ├── ProphecySubjectPatch.php
│   │   │   ├── ReflectionClassNewInstancePatch.php
│   │   │   ├── SplFileInfoPatch.php
│   │   │   ├── ThrowablePatch.php
│   │   │   └── TraversablePatch.php
│   │   ├── DoubleInterface.php
│   │   ├── Doubler.php
│   │   ├── Generator
│   │   │   ├── ClassCodeGenerator.php
│   │   │   ├── ClassCreator.php
│   │   │   ├── ClassMirror.php
│   │   │   ├── Node
│   │   │   │   ├── ArgumentNode.php
│   │   │   │   ├── ClassNode.php
│   │   │   │   └── MethodNode.php
│   │   │   ├── ReflectionInterface.php
│   │   │   └── TypeHintReference.php
│   │   ├── LazyDouble.php
│   │   └── NameGenerator.php
│   ├── Exception
│   │   ├── Call
│   │   │   └── UnexpectedCallException.php
│   │   ├── Doubler
│   │   │   ├── ClassCreatorException.php
│   │   │   ├── ClassMirrorException.php
│   │   │   ├── ClassNotFoundException.php
│   │   │   ├── DoubleException.php
│   │   │   ├── DoublerException.php
│   │   │   ├── InterfaceNotFoundException.php
│   │   │   ├── MethodNotExtendableException.php
│   │   │   ├── MethodNotFoundException.php
│   │   │   └── ReturnByReferenceException.php
│   │   ├── Exception.php
│   │   ├── InvalidArgumentException.php
│   │   ├── Prediction
│   │   │   ├── AggregateException.php
│   │   │   ├── FailedPredictionException.php
│   │   │   ├── NoCallsException.php
│   │   │   ├── PredictionException.php
│   │   │   ├── UnexpectedCallsCountException.php
│   │   │   └── UnexpectedCallsException.php
│   │   └── Prophecy
│   │   ├── MethodProphecyException.php
│   │   ├── ObjectProphecyException.php
│   │   └── ProphecyException.php
│   ├── PhpDocumentor
│   │   ├── ClassAndInterfaceTagRetriever.php
│   │   ├── ClassTagRetriever.php
│   │   ├── LegacyClassTagRetriever.php
│   │   └── MethodTagRetrieverInterface.php
│   ├── Prediction
│   │   ├── CallbackPrediction.php
│   │   ├── CallPrediction.php
│   │   ├── CallTimesPrediction.php
│   │   ├── NoCallsPrediction.php
│   │   └── PredictionInterface.php
│   ├── Promise
│   │   ├── CallbackPromise.php
│   │   ├── PromiseInterface.php
│   │   ├── ReturnArgumentPromise.php
│   │   ├── ReturnPromise.php
│   │   └── ThrowPromise.php
│   ├── Prophecy
│   │   ├── MethodProphecy.php
│   │   ├── ObjectProphecy.php
│   │   ├── ProphecyInterface.php
│   │   ├── ProphecySubjectInterface.php
│   │   ├── RevealerInterface.php
│   │   └── Revealer.php
│   ├── Prophet.php
│   └── Util
│   ├── ExportUtil.php
│   └── StringUtil.php
├── phpunit
│   ├── php-code-coverage
│   │   ├── build.xml
│   │   ├── ChangeLog-6.1.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── CodeCoverage.php
│   │   │   ├── Driver
│   │   │   │   ├── Driver.php
│   │   │   │   ├── PHPDBG.php
│   │   │   │   └── Xdebug.php
│   │   │   ├── Exception
│   │   │   │   ├── CoveredCodeNotExecutedException.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── MissingCoversAnnotationException.php
│   │   │   │   ├── RuntimeException.php
│   │   │   │   └── UnintentionallyCoveredCodeException.php
│   │   │   ├── Filter.php
│   │   │   ├── Node
│   │   │   │   ├── AbstractNode.php
│   │   │   │   ├── Builder.php
│   │   │   │   ├── Directory.php
│   │   │   │   ├── File.php
│   │   │   │   └── Iterator.php
│   │   │   ├── Report
│   │   │   │   ├── Clover.php
│   │   │   │   ├── Crap4j.php
│   │   │   │   ├── Html
│   │   │   │   │   ├── Facade.php
│   │   │   │   │   ├── Renderer
│   │   │   │   │   │   ├── Dashboard.php
│   │   │   │   │   │   ├── Directory.php
│   │   │   │   │   │   ├── File.php
│   │   │   │   │   │   └── Template
│   │   │   │   │   │   ├── coverage_bar.html.dist
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   │   │   ├── custom.css
│   │   │   │   │   │   │   ├── nv.d3.min.css
│   │   │   │   │   │   │   ├── octicons.css
│   │   │   │   │   │   │   └── style.css
│   │   │   │   │   │   ├── dashboard.html.dist
│   │   │   │   │   │   ├── directory.html.dist
│   │   │   │   │   │   ├── directory_item.html.dist
│   │   │   │   │   │   ├── file.html.dist
│   │   │   │   │   │   ├── file_item.html.dist
│   │   │   │   │   │   ├── icons
│   │   │   │   │   │   │   ├── file-code.svg
│   │   │   │   │   │   │   └── file-directory.svg
│   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   │   │   ├── d3.min.js
│   │   │   │   │   │   │   ├── file.js
│   │   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   │   ├── nv.d3.min.js
│   │   │   │   │   │   │   └── popper.min.js
│   │   │   │   │   │   └── method_item.html.dist
│   │   │   │   │   └── Renderer.php
│   │   │   │   ├── PHP.php
│   │   │   │   ├── Text.php
│   │   │   │   └── Xml
│   │   │   │   ├── BuildInformation.php
│   │   │   │   ├── Coverage.php
│   │   │   │   ├── Directory.php
│   │   │   │   ├── Facade.php
│   │   │   │   ├── File.php
│   │   │   │   ├── Method.php
│   │   │   │   ├── Node.php
│   │   │   │   ├── Project.php
│   │   │   │   ├── Report.php
│   │   │   │   ├── Source.php
│   │   │   │   ├── Tests.php
│   │   │   │   ├── Totals.php
│   │   │   │   └── Unit.php
│   │   │   ├── Util.php
│   │   │   └── Version.php
│   │   └── tests
│   │   ├── bootstrap.php
│   │   ├── _files
│   │   │   ├── BankAccount-clover.xml
│   │   │   ├── BankAccount-crap4j.xml
│   │   │   ├── BankAccount.php
│   │   │   ├── BankAccountTest.php
│   │   │   ├── BankAccount-text.txt
│   │   │   ├── class-with-anonymous-function-clover.xml
│   │   │   ├── class-with-anonymous-function-crap4j.xml
│   │   │   ├── class-with-anonymous-function-text.txt
│   │   │   ├── CoverageClassExtendedTest.php
│   │   │   ├── CoverageClassTest.php
│   │   │   ├── CoverageFunctionParenthesesTest.php
│   │   │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│   │   │   ├── CoverageFunctionTest.php
│   │   │   ├── CoverageMethodOneLineAnnotationTest.php
│   │   │   ├── CoverageMethodParenthesesTest.php
│   │   │   ├── CoverageMethodParenthesesWhitespaceTest.php
│   │   │   ├── CoverageMethodTest.php
│   │   │   ├── CoverageNoneTest.php
│   │   │   ├── CoverageNothingTest.php
│   │   │   ├── CoverageNotPrivateTest.php
│   │   │   ├── CoverageNotProtectedTest.php
│   │   │   ├── CoverageNotPublicTest.php
│   │   │   ├── CoveragePrivateTest.php
│   │   │   ├── CoverageProtectedTest.php
│   │   │   ├── CoveragePublicTest.php
│   │   │   ├── CoverageTwoDefaultClassAnnotations.php
│   │   │   ├── CoveredClass.php
│   │   │   ├── CoveredFunction.php
│   │   │   ├── Crash.php
│   │   │   ├── ignored-lines-clover.xml
│   │   │   ├── ignored-lines-crap4j.xml
│   │   │   ├── ignored-lines-text.txt
│   │   │   ├── 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
│   │   │   ├── Report
│   │   │   │   ├── HTML
│   │   │   │   │   ├── CoverageForBankAccount
│   │   │   │   │   │   ├── BankAccount.php.html
│   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   └── index.html
│   │   │   │   │   ├── CoverageForClassWithAnonymousFunction
│   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   └── source_with_class_and_anonymous_function.php.html
│   │   │   │   │   └── CoverageForFileWithIgnoredLines
│   │   │   │   │   ├── dashboard.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── source_with_ignore.php.html
│   │   │   │   └── XML
│   │   │   │   ├── CoverageForBankAccount
│   │   │   │   │   ├── BankAccount.php.xml
│   │   │   │   │   └── index.xml
│   │   │   │   ├── CoverageForClassWithAnonymousFunction
│   │   │   │   │   ├── index.xml
│   │   │   │   │   └── source_with_class_and_anonymous_function.php.xml
│   │   │   │   └── CoverageForFileWithIgnoredLines
│   │   │   │   ├── index.xml
│   │   │   │   └── source_with_ignore.php.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
│   │   ├── TestCase.php
│   │   └── tests
│   │   ├── BuilderTest.php
│   │   ├── CloverTest.php
│   │   ├── CodeCoverageTest.php
│   │   ├── Crap4jTest.php
│   │   ├── FilterTest.php
│   │   ├── HTMLTest.php
│   │   ├── TextTest.php
│   │   ├── UtilTest.php
│   │   └── XmlTest.php
│   ├── php-file-iterator
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Facade.php
│   │   │   ├── Factory.php
│   │   │   └── Iterator.php
│   │   └── tests
│   │   └── FactoryTest.php
│   ├── php-text-template
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── Template.php
│   ├── php-timer
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Exception.php
│   │   │   ├── RuntimeException.php
│   │   │   └── Timer.php
│   │   └── tests
│   │   └── TimerTest.php
│   ├── php-token-stream
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Token
│   │   │   │   ├── Stream
│   │   │   │   │   └── CachingFactory.php
│   │   │   │   └── Stream.php
│   │   │   └── Token.php
│   │   └── tests
│   │   ├── bootstrap.php
│   │   ├── _fixture
│   │   │   ├── classExtendsNamespacedClass.php
│   │   │   ├── classInNamespace.php
│   │   │   ├── classInScopedNamespace.php
│   │   │   ├── classUsesNamespacedFunction.php
│   │   │   ├── class_with_method_named_empty.php
│   │   │   ├── class_with_method_that_declares_anonymous_class2.php
│   │   │   ├── class_with_method_that_declares_anonymous_class.php
│   │   │   ├── class_with_multiple_anonymous_classes_and_functions.php
│   │   │   ├── closure.php
│   │   │   ├── issue19.php
│   │   │   ├── issue30.php
│   │   │   ├── multipleNamespacesWithOneClassUsingBraces.php
│   │   │   ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│   │   │   ├── php-code-coverage-issue-424.php
│   │   │   ├── source2.php
│   │   │   ├── source3.php
│   │   │   ├── source4.php
│   │   │   ├── source5.php
│   │   │   └── source.php
│   │   └── Token
│   │   ├── ClassTest.php
│   │   ├── ClosureTest.php
│   │   ├── FunctionTest.php
│   │   ├── IncludeTest.php
│   │   ├── InterfaceTest.php
│   │   └── NamespaceTest.php
│   └── phpunit
│   ├── appveyor.yml
│   ├── build.xml
│   ├── ChangeLog-7.5.md
│   ├── composer.json
│   ├── LICENSE
│   ├── phive.xml
│   ├── phpunit
│   ├── phpunit.xml
│   ├── phpunit.xsd
│   ├── README.md
│   ├── src
│   │   ├── Exception.php
│   │   ├── Framework
│   │   │   ├── Assert
│   │   │   │   └── Functions.php
│   │   │   ├── AssertionFailedError.php
│   │   │   ├── Assert.php
│   │   │   ├── CodeCoverageException.php
│   │   │   ├── Constraint
│   │   │   │   ├── ArrayHasKey.php
│   │   │   │   ├── ArraySubset.php
│   │   │   │   ├── Attribute.php
│   │   │   │   ├── Callback.php
│   │   │   │   ├── ClassHasAttribute.php
│   │   │   │   ├── ClassHasStaticAttribute.php
│   │   │   │   ├── Composite.php
│   │   │   │   ├── Constraint.php
│   │   │   │   ├── Count.php
│   │   │   │   ├── DirectoryExists.php
│   │   │   │   ├── ExceptionCode.php
│   │   │   │   ├── ExceptionMessage.php
│   │   │   │   ├── ExceptionMessageRegularExpression.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── FileExists.php
│   │   │   │   ├── GreaterThan.php
│   │   │   │   ├── IsAnything.php
│   │   │   │   ├── IsEmpty.php
│   │   │   │   ├── IsEqual.php
│   │   │   │   ├── IsFalse.php
│   │   │   │   ├── IsFinite.php
│   │   │   │   ├── IsIdentical.php
│   │   │   │   ├── IsInfinite.php
│   │   │   │   ├── IsInstanceOf.php
│   │   │   │   ├── IsJson.php
│   │   │   │   ├── IsNan.php
│   │   │   │   ├── IsNull.php
│   │   │   │   ├── IsReadable.php
│   │   │   │   ├── IsTrue.php
│   │   │   │   ├── IsType.php
│   │   │   │   ├── IsWritable.php
│   │   │   │   ├── JsonMatchesErrorMessageProvider.php
│   │   │   │   ├── JsonMatches.php
│   │   │   │   ├── LessThan.php
│   │   │   │   ├── LogicalAnd.php
│   │   │   │   ├── LogicalNot.php
│   │   │   │   ├── LogicalOr.php
│   │   │   │   ├── LogicalXor.php
│   │   │   │   ├── ObjectHasAttribute.php
│   │   │   │   ├── RegularExpression.php
│   │   │   │   ├── SameSize.php
│   │   │   │   ├── StringContains.php
│   │   │   │   ├── StringEndsWith.php
│   │   │   │   ├── StringMatchesFormatDescription.php
│   │   │   │   ├── StringStartsWith.php
│   │   │   │   ├── TraversableContainsOnly.php
│   │   │   │   └── TraversableContains.php
│   │   │   ├── CoveredCodeNotExecutedException.php
│   │   │   ├── DataProviderTestSuite.php
│   │   │   ├── Error
│   │   │   │   ├── Deprecated.php
│   │   │   │   ├── Error.php
│   │   │   │   ├── Notice.php
│   │   │   │   └── Warning.php
│   │   │   ├── Exception.php
│   │   │   ├── ExceptionWrapper.php
│   │   │   ├── ExpectationFailedException.php
│   │   │   ├── IncompleteTestCase.php
│   │   │   ├── IncompleteTestError.php
│   │   │   ├── IncompleteTest.php
│   │   │   ├── InvalidCoversTargetException.php
│   │   │   ├── MissingCoversAnnotationException.php
│   │   │   ├── MockObject
│   │   │   │   ├── Builder
│   │   │   │   │   ├── Identity.php
│   │   │   │   │   ├── InvocationMocker.php
│   │   │   │   │   ├── Match.php
│   │   │   │   │   ├── MethodNameMatch.php
│   │   │   │   │   ├── NamespaceMatch.php
│   │   │   │   │   ├── ParametersMatch.php
│   │   │   │   │   └── Stub.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── BadMethodCallException.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── ForwardCompatibility
│   │   │   │   │   └── MockObject.php
│   │   │   │   ├── Generator
│   │   │   │   │   ├── deprecation.tpl.dist
│   │   │   │   │   ├── mocked_class_method.tpl.dist
│   │   │   │   │   ├── mocked_class.tpl.dist
│   │   │   │   │   ├── mocked_clone.tpl.dist
│   │   │   │   │   ├── mocked_method.tpl.dist
│   │   │   │   │   ├── mocked_method_void.tpl.dist
│   │   │   │   │   ├── mocked_static_method.tpl.dist
│   │   │   │   │   ├── proxied_method.tpl.dist
│   │   │   │   │   ├── proxied_method_void.tpl.dist
│   │   │   │   │   ├── trait_class.tpl.dist
│   │   │   │   │   ├── unmocked_clone.tpl.dist
│   │   │   │   │   ├── wsdl_class.tpl.dist
│   │   │   │   │   └── wsdl_method.tpl.dist
│   │   │   │   ├── Generator.php
│   │   │   │   ├── Invocation
│   │   │   │   │   ├── Invocation.php
│   │   │   │   │   ├── ObjectInvocation.php
│   │   │   │   │   └── StaticInvocation.php
│   │   │   │   ├── InvocationMocker.php
│   │   │   │   ├── Invokable.php
│   │   │   │   ├── Matcher
│   │   │   │   │   ├── AnyInvokedCount.php
│   │   │   │   │   ├── AnyParameters.php
│   │   │   │   │   ├── ConsecutiveParameters.php
│   │   │   │   │   ├── DeferredError.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
│   │   │   │   ├── MockMethod.php
│   │   │   │   ├── MockMethodSet.php
│   │   │   │   ├── MockObject.php
│   │   │   │   ├── Stub
│   │   │   │   │   ├── ConsecutiveCalls.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── MatcherCollection.php
│   │   │   │   │   ├── ReturnArgument.php
│   │   │   │   │   ├── ReturnCallback.php
│   │   │   │   │   ├── ReturnReference.php
│   │   │   │   │   ├── ReturnSelf.php
│   │   │   │   │   ├── ReturnStub.php
│   │   │   │   │   └── ReturnValueMap.php
│   │   │   │   ├── Stub.php
│   │   │   │   └── Verifiable.php
│   │   │   ├── OutputError.php
│   │   │   ├── RiskyTestError.php
│   │   │   ├── RiskyTest.php
│   │   │   ├── SelfDescribing.php
│   │   │   ├── SkippedTestCase.php
│   │   │   ├── SkippedTestError.php
│   │   │   ├── SkippedTest.php
│   │   │   ├── SkippedTestSuiteError.php
│   │   │   ├── SyntheticError.php
│   │   │   ├── TestCase.php
│   │   │   ├── TestFailure.php
│   │   │   ├── TestListenerDefaultImplementation.php
│   │   │   ├── TestListener.php
│   │   │   ├── Test.php
│   │   │   ├── TestResult.php
│   │   │   ├── TestSuiteIterator.php
│   │   │   ├── TestSuite.php
│   │   │   ├── UnintentionallyCoveredCodeError.php
│   │   │   ├── Warning.php
│   │   │   └── WarningTestCase.php
│   │   ├── Runner
│   │   │   ├── BaseTestRunner.php
│   │   │   ├── Exception.php
│   │   │   ├── Filter
│   │   │   │   ├── ExcludeGroupFilterIterator.php
│   │   │   │   ├── Factory.php
│   │   │   │   ├── GroupFilterIterator.php
│   │   │   │   ├── IncludeGroupFilterIterator.php
│   │   │   │   └── NameFilterIterator.php
│   │   │   ├── Hook
│   │   │   │   ├── AfterIncompleteTestHook.php
│   │   │   │   ├── AfterLastTestHook.php
│   │   │   │   ├── AfterRiskyTestHook.php
│   │   │   │   ├── AfterSkippedTestHook.php
│   │   │   │   ├── AfterSuccessfulTestHook.php
│   │   │   │   ├── AfterTestErrorHook.php
│   │   │   │   ├── AfterTestFailureHook.php
│   │   │   │   ├── AfterTestHook.php
│   │   │   │   ├── AfterTestWarningHook.php
│   │   │   │   ├── BeforeFirstTestHook.php
│   │   │   │   ├── BeforeTestHook.php
│   │   │   │   ├── Hook.php
│   │   │   │   ├── TestHook.php
│   │   │   │   └── TestListenerAdapter.php
│   │   │   ├── PhptTestCase.php
│   │   │   ├── ResultCacheExtension.php
│   │   │   ├── StandardTestSuiteLoader.php
│   │   │   ├── TestSuiteLoader.php
│   │   │   ├── TestSuiteSorter.php
│   │   │   └── Version.php
│   │   ├── TextUI
│   │   │   ├── Command.php
│   │   │   ├── ResultPrinter.php
│   │   │   └── TestRunner.php
│   │   └── Util
│   │   ├── Blacklist.php
│   │   ├── ConfigurationGenerator.php
│   │   ├── Configuration.php
│   │   ├── ErrorHandler.php
│   │   ├── FileLoader.php
│   │   ├── Filesystem.php
│   │   ├── Filter.php
│   │   ├── Getopt.php
│   │   ├── GlobalState.php
│   │   ├── InvalidArgumentHelper.php
│   │   ├── Json.php
│   │   ├── Log
│   │   │   ├── JUnit.php
│   │   │   └── TeamCity.php
│   │   ├── NullTestResultCache.php
│   │   ├── PHP
│   │   │   ├── AbstractPhpProcess.php
│   │   │   ├── DefaultPhpProcess.php
│   │   │   ├── eval-stdin.php
│   │   │   ├── Template
│   │   │   │   ├── PhptTestCase.tpl.dist
│   │   │   │   ├── TestCaseClass.tpl.dist
│   │   │   │   └── TestCaseMethod.tpl.dist
│   │   │   └── WindowsPhpProcess.php
│   │   ├── Printer.php
│   │   ├── RegularExpression.php
│   │   ├── TestDox
│   │   │   ├── CliTestDoxPrinter.php
│   │   │   ├── HtmlResultPrinter.php
│   │   │   ├── NamePrettifier.php
│   │   │   ├── ResultPrinter.php
│   │   │   ├── TestResult.php
│   │   │   ├── TextResultPrinter.php
│   │   │   └── XmlResultPrinter.php
│   │   ├── Test.php
│   │   ├── TestResultCacheInterface.php
│   │   ├── TestResultCache.php
│   │   ├── TextTestListRenderer.php
│   │   ├── Type.php
│   │   ├── XdebugFilterScriptGenerator.php
│   │   ├── Xml.php
│   │   └── XmlTestListRenderer.php
│   └── tests
│   ├── bootstrap.php
│   ├── end-to-end
│   │   ├── abstract-test-class.phpt
│   │   ├── assertion.phpt
│   │   ├── cache-result.phpt
│   │   ├── code-coverage-ignore.phpt
│   │   ├── code-coverage-phpt.phpt
│   │   ├── colors-always.phpt
│   │   ├── concrete-test-class.phpt
│   │   ├── custom-printer-debug.phpt
│   │   ├── custom-printer-verbose.phpt
│   │   ├── dataprovider-debug.phpt
│   │   ├── dataprovider-issue-2833.phpt
│   │   ├── dataprovider-issue-2859.phpt
│   │   ├── dataprovider-issue-2922.phpt
│   │   ├── dataprovider-log-xml-isolation.phpt
│   │   ├── dataprovider-log-xml.phpt
│   │   ├── dataprovider-testdox.phpt
│   │   ├── debug.phpt
│   │   ├── default-isolation.phpt
│   │   ├── default.phpt
│   │   ├── defaulttestsuite.phpt
│   │   ├── defaulttestsuite-using-testsuite.phpt
│   │   ├── defects-first-order-via-cli.phpt
│   │   ├── dependencies2-isolation.phpt
│   │   ├── dependencies2.phpt
│   │   ├── dependencies3-isolation.phpt
│   │   ├── dependencies3.phpt
│   │   ├── dependencies-clone.phpt
│   │   ├── dependencies-isolation.phpt
│   │   ├── dependencies.phpt
│   │   ├── disable-code-coverage-ignore.phpt
│   │   ├── dump-xdebug-filter.phpt
│   │   ├── empty-testcase.phpt
│   │   ├── exception-stack.phpt
│   │   ├── exclude-group-isolation.phpt
│   │   ├── exclude-group.phpt
│   │   ├── execution-order-options-via-config.phpt
│   │   ├── failure-isolation.phpt
│   │   ├── failure.phpt
│   │   ├── failure-reverse-list.phpt
│   │   ├── fatal-isolation.phpt
│   │   ├── _files
│   │   │   ├── expect_external.txt
│   │   │   ├── Extension.php
│   │   │   ├── hooks.xml
│   │   │   ├── HookTest.php
│   │   │   ├── NullPrinter.php
│   │   │   ├── phpt-env.expected.txt
│   │   │   └── phpt_external.php
│   │   ├── 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
│   │   ├── forward-compatibility.phpt
│   │   ├── group-isolation.phpt
│   │   ├── group.phpt
│   │   ├── help2.phpt
│   │   ├── help.phpt
│   │   ├── hooks.phpt
│   │   ├── ini-isolation.phpt
│   │   ├── list-groups.phpt
│   │   ├── list-suites.phpt
│   │   ├── list-tests-dataprovider.phpt
│   │   ├── list-tests-xml-dataprovider.phpt
│   │   ├── log-junit.phpt
│   │   ├── log-junit-phpt.phpt
│   │   ├── log-teamcity.phpt
│   │   ├── log-teamcity-phpt.phpt
│   │   ├── mock-objects
│   │   │   ├── generator
│   │   │   │   ├── 232.phpt
│   │   │   │   ├── 3154_namespaced_constant_resolving.phpt
│   │   │   │   ├── 3530.phpt
│   │   │   │   ├── 397.phpt
│   │   │   │   ├── abstract_class.phpt
│   │   │   │   ├── class_call_parent_clone.phpt
│   │   │   │   ├── class_call_parent_constructor.phpt
│   │   │   │   ├── class_dont_call_parent_clone.phpt
│   │   │   │   ├── class_dont_call_parent_constructor.phpt
│   │   │   │   ├── class_implementing_interface_call_parent_constructor.phpt
│   │   │   │   ├── class_implementing_interface_dont_call_parent_constructor.phpt
│   │   │   │   ├── class_nonexistent_method.phpt
│   │   │   │   ├── class_partial.phpt
│   │   │   │   ├── class.phpt
│   │   │   │   ├── class_with_deprecated_method.phpt
│   │   │   │   ├── class_with_final_method.phpt
│   │   │   │   ├── class_with_method_named_method.phpt
│   │   │   │   ├── class_with_method_with_nullable_typehinted_variadic_arguments.phpt
│   │   │   │   ├── class_with_method_with_typehinted_variadic_arguments.phpt
│   │   │   │   ├── class_with_method_with_variadic_arguments.phpt
│   │   │   │   ├── constant_as_parameter_default_value.phpt
│   │   │   │   ├── interface.phpt
│   │   │   │   ├── invocation_object_clone_object.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_class.phpt
│   │   │   │   ├── namespaced_interface.phpt
│   │   │   │   ├── nonexistent_class.phpt
│   │   │   │   ├── nonexistent_class_with_namespace.phpt
│   │   │   │   ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│   │   │   │   ├── nullable_types.phpt
│   │   │   │   ├── proxy.phpt
│   │   │   │   ├── return_type_declarations_closure.phpt
│   │   │   │   ├── return_type_declarations_final.phpt
│   │   │   │   ├── return_type_declarations_generator.phpt
│   │   │   │   ├── return_type_declarations_nullable.phpt
│   │   │   │   ├── return_type_declarations_object_method.phpt
│   │   │   │   ├── return_type_declarations_parent.phpt
│   │   │   │   ├── return_type_declarations_self.phpt
│   │   │   │   ├── return_type_declarations_static_method.phpt
│   │   │   │   ├── return_type_declarations_void.phpt
│   │   │   │   ├── scalar_type_declarations.phpt
│   │   │   │   ├── wsdl_class_namespace.phpt
│   │   │   │   ├── wsdl_class_partial.phpt
│   │   │   │   └── wsdl_class.phpt
│   │   │   └── mock-method
│   │   │   ├── call_original.phpt
│   │   │   ├── call_original_with_argument.phpt
│   │   │   ├── call_original_with_argument_variadic.phpt
│   │   │   ├── call_original_with_return_type_void.phpt
│   │   │   ├── clone_method_arguments.phpt
│   │   │   ├── deprecated_with_description.phpt
│   │   │   ├── deprecated_without_description.phpt
│   │   │   ├── private_method.phpt
│   │   │   ├── protected_method.phpt
│   │   │   ├── return_by_reference.phpt
│   │   │   ├── return_by_reference_with_return_type.phpt
│   │   │   ├── return_type_parent.phpt
│   │   │   ├── return_type.phpt
│   │   │   ├── return_type_self.phpt
│   │   │   ├── static_method.phpt
│   │   │   ├── static_method_with_return_type.phpt
│   │   │   ├── with_argument_default_constant.phpt
│   │   │   ├── with_argument_default_null.phpt
│   │   │   ├── with_argument_default.phpt
│   │   │   ├── with_argument_nullable.phpt
│   │   │   ├── with_argument.phpt
│   │   │   ├── with_argument_reference.phpt
│   │   │   ├── with_arguments.phpt
│   │   │   ├── with_argument_typed_array.phpt
│   │   │   ├── with_argument_typed_callable.phpt
│   │   │   ├── with_argument_typed_class.phpt
│   │   │   ├── with_argument_typed_scalar.phpt
│   │   │   ├── with_argument_typed_self.phpt
│   │   │   ├── with_argument_typed_unkown_class.phpt
│   │   │   ├── with_argument_typed_variadic.phpt
│   │   │   └── with_argument_variadic.phpt
│   │   ├── mycommand.phpt
│   │   ├── options-after-arguments.phpt
│   │   ├── order-by-default-invalid-via-cli.phpt
│   │   ├── output-isolation.phpt
│   │   ├── phar-extension.phpt
│   │   ├── phar-extension-suppressed.phpt
│   │   ├── phpt-args.phpt
│   │   ├── phpt-env.phpt
│   │   ├── phpt-external.phpt
│   │   ├── phpt-parsing.phpt
│   │   ├── phpt-stderr.phpt
│   │   ├── phpt-stdin.phpt
│   │   ├── phpt-xfail.phpt
│   │   ├── regression
│   │   │   ├── GitHub
│   │   │   │   ├── 1149
│   │   │   │   │   └── Issue1149Test.php
│   │   │   │   ├── 1149.phpt
│   │   │   │   ├── 1216
│   │   │   │   │   ├── bootstrap1216.php
│   │   │   │   │   ├── Issue1216Test.php
│   │   │   │   │   └── phpunit1216.xml
│   │   │   │   ├── 1216.phpt
│   │   │   │   ├── 1265
│   │   │   │   │   ├── Issue1265Test.php
│   │   │   │   │   └── phpunit1265.xml
│   │   │   │   ├── 1265.phpt
│   │   │   │   ├── 1330
│   │   │   │   │   ├── Issue1330Test.php
│   │   │   │   │   └── phpunit1330.xml
│   │   │   │   ├── 1330.phpt
│   │   │   │   ├── 1335
│   │   │   │   │   ├── bootstrap1335.php
│   │   │   │   │   └── Issue1335Test.php
│   │   │   │   ├── 1335.phpt
│   │   │   │   ├── 1337
│   │   │   │   │   └── Issue1337Test.php
│   │   │   │   ├── 1337.phpt
│   │   │   │   ├── 1348
│   │   │   │   │   └── Issue1348Test.php
│   │   │   │   ├── 1348.phpt
│   │   │   │   ├── 1351
│   │   │   │   │   ├── ChildProcessClass1351.php
│   │   │   │   │   └── Issue1351Test.php
│   │   │   │   ├── 1351.phpt
│   │   │   │   ├── 1374
│   │   │   │   │   └── Issue1374Test.php
│   │   │   │   ├── 1374.phpt
│   │   │   │   ├── 1437
│   │   │   │   │   └── Issue1437Test.php
│   │   │   │   ├── 1437.phpt
│   │   │   │   ├── 1468
│   │   │   │   │   └── Issue1468Test.php
│   │   │   │   ├── 1468.phpt
│   │   │   │   ├── 1471
│   │   │   │   │   └── Issue1471Test.php
│   │   │   │   ├── 1471.phpt
│   │   │   │   ├── 1472
│   │   │   │   │   └── Issue1472Test.php
│   │   │   │   ├── 1472.phpt
│   │   │   │   ├── 1570
│   │   │   │   │   └── Issue1570Test.php
│   │   │   │   ├── 1570.phpt
│   │   │   │   ├── 2085
│   │   │   │   │   ├── configuration_enforce_time_limit_options.xml
│   │   │   │   │   └── Issue2085Test.php
│   │   │   │   ├── 2085-enforce-time-limit-options-via-config-without-invoker.phpt
│   │   │   │   ├── 2085.phpt
│   │   │   │   ├── 2085-without-invoker.phpt
│   │   │   │   ├── 2137
│   │   │   │   │   └── Issue2137Test.php
│   │   │   │   ├── 2137-filter.phpt
│   │   │   │   ├── 2137-no_filter.phpt
│   │   │   │   ├── 2145
│   │   │   │   │   └── Issue2145Test.php
│   │   │   │   ├── 2145.phpt
│   │   │   │   ├── 2158
│   │   │   │   │   ├── constant.inc
│   │   │   │   │   └── Issue2158Test.php
│   │   │   │   ├── 2158.phpt
│   │   │   │   ├── 2366
│   │   │   │   │   └── Issue2366Test.php
│   │   │   │   ├── 2366.phpt
│   │   │   │   ├── 2380
│   │   │   │   │   └── Issue2380Test.php
│   │   │   │   ├── 2380.phpt
│   │   │   │   ├── 2382
│   │   │   │   │   └── Issue2382Test.php
│   │   │   │   ├── 2382.phpt
│   │   │   │   ├── 2435
│   │   │   │   │   └── Issue2435Test.php
│   │   │   │   ├── 2435.phpt
│   │   │   │   ├── 244
│   │   │   │   │   └── Issue244Test.php
│   │   │   │   ├── 2448
│   │   │   │   │   └── Test.php
│   │   │   │   ├── 2448-existing-test.phpt
│   │   │   │   ├── 2448-not-existing-test.phpt
│   │   │   │   ├── 244.phpt
│   │   │   │   ├── 2591
│   │   │   │   │   ├── bootstrapNoBootstrap.php
│   │   │   │   │   ├── bootstrapWithBootstrapNoGlobal.php
│   │   │   │   │   ├── bootstrapWithBootstrap.php
│   │   │   │   │   ├── SeparateClassPreserveTest.php
│   │   │   │   │   ├── SeparateFunctionNoPreserveTest.php
│   │   │   │   │   └── SeparateFunctionPreserveTest.php
│   │   │   │   ├── 2591-separate-class-preserve-no-bootstrap.phpt
│   │   │   │   ├── 2591-separate-class-preserve.phpt
│   │   │   │   ├── 2591-separate-function-no-preserve-no-bootstrap-php73.phpt
│   │   │   │   ├── 2591-separate-function-no-preserve-no-bootstrap.phpt
│   │   │   │   ├── 2591-separate-function-no-preserve-no-bootstrap-xdebug.phpt
│   │   │   │   ├── 2591-separate-function-no-preserve.phpt
│   │   │   │   ├── 2591-separate-function-preserve.phpt
│   │   │   │   ├── 2724
│   │   │   │   │   └── SeparateClassRunMethodInNewProcessTest.php
│   │   │   │   ├── 2724-diff-pid-from-master-process.phpt
│   │   │   │   ├── 2725
│   │   │   │   │   └── BeforeAfterClassPidTest.php
│   │   │   │   ├── 2725-separate-class-before-after-pid.phpt
│   │   │   │   ├── 2731
│   │   │   │   │   └── Issue2731Test.php
│   │   │   │   ├── 2731.phpt
│   │   │   │   ├── 2811
│   │   │   │   │   └── Issue2811Test.php
│   │   │   │   ├── 2811.phpt
│   │   │   │   ├── 2830
│   │   │   │   │   └── Issue2830Test.php
│   │   │   │   ├── 2830.phpt
│   │   │   │   ├── 2972
│   │   │   │   │   ├── issue-2972-test.phpt
│   │   │   │   │   └── unconventiallyNamedIssue2972Test.php
│   │   │   │   ├── 2972.phpt
│   │   │   │   ├── 3093
│   │   │   │   │   ├── Issue3093Test.php
│   │   │   │   │   └── issue-3093-test.phpt
│   │   │   │   ├── 3107
│   │   │   │   │   ├── Issue3107Test.php
│   │   │   │   │   └── issue-3107-test.phpt
│   │   │   │   ├── 3156
│   │   │   │   │   └── Issue3156Test.php
│   │   │   │   ├── 322
│   │   │   │   │   ├── Issue322Test.php
│   │   │   │   │   └── phpunit322.xml
│   │   │   │   ├── 322.phpt
│   │   │   │   ├── 3364
│   │   │   │   │   ├── issue-3364-test.phpt
│   │   │   │   │   └── tests
│   │   │   │   │   ├── Issue3364SetupBeforeClassTest.php
│   │   │   │   │   └── Issue3364SetupTest.php
│   │   │   │   ├── 3379
│   │   │   │   │   ├── Issue3379TestListener.php
│   │   │   │   │   ├── Issue3379Test.php
│   │   │   │   │   └── phpunit.xml
│   │   │   │   ├── 3379.phpt
│   │   │   │   ├── 3380
│   │   │   │   │   └── issue-3380-test.phpt
│   │   │   │   ├── 3396
│   │   │   │   │   └── issue-3396-test.phpt
│   │   │   │   ├── 433
│   │   │   │   │   └── Issue433Test.php
│   │   │   │   ├── 433.phpt
│   │   │   │   ├── 445
│   │   │   │   │   └── Issue445Test.php
│   │   │   │   ├── 445.phpt
│   │   │   │   ├── 498
│   │   │   │   │   └── Issue498Test.php
│   │   │   │   ├── 498.phpt
│   │   │   │   ├── 503
│   │   │   │   │   └── Issue503Test.php
│   │   │   │   ├── 503.phpt
│   │   │   │   ├── 581
│   │   │   │   │   └── Issue581Test.php
│   │   │   │   ├── 581.phpt
│   │   │   │   ├── 74
│   │   │   │   │   ├── Issue74Test.php
│   │   │   │   │   └── NewException.php
│   │   │   │   ├── 74.phpt
│   │   │   │   ├── 765
│   │   │   │   │   └── Issue765Test.php
│   │   │   │   ├── 765.phpt
│   │   │   │   ├── 797
│   │   │   │   │   ├── bootstrap797.php
│   │   │   │   │   └── Issue797Test.php
│   │   │   │   ├── 797.phpt
│   │   │   │   ├── 863.phpt
│   │   │   │   ├── 873
│   │   │   │   │   └── Issue873Test.php
│   │   │   │   └── 873.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
│   │   ├── repeat.phpt
│   │   ├── report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt
│   │   ├── report-useless-tests-incomplete.phpt
│   │   ├── report-useless-tests-isolation.phpt
│   │   ├── report-useless-tests.phpt
│   │   ├── stop-on-defect-via-cli.phpt
│   │   ├── stop-on-defect-via-config.phpt
│   │   ├── stop-on-error-via-cli.phpt
│   │   ├── stop-on-error-via-config.phpt
│   │   ├── stop-on-incomplete-via-cli.phpt
│   │   ├── stop-on-incomplete-via-config.phpt
│   │   ├── stop-on-warning-via-cli.phpt
│   │   ├── stop-on-warning-via-config.phpt
│   │   ├── teamcity-inner-exceptions.phpt
│   │   ├── teamcity.phpt
│   │   ├── testdox-dataprovider-placeholder.phpt
│   │   ├── testdox-exclude-group.phpt
│   │   ├── testdox-group.phpt
│   │   ├── testdox-html.phpt
│   │   ├── testdox.phpt
│   │   ├── testdox-text.phpt
│   │   ├── testdox-verbose.phpt
│   │   ├── testdox-xml.phpt
│   │   ├── test-order-randomized-seed-with-dependency-resolution.phpt
│   │   ├── test-order-randomized-with-dependency-resolution.phpt
│   │   ├── test-order-reversed-with-dependency-resolution.phpt
│   │   ├── test-order-reversed-without-dependency-resolution.phpt
│   │   ├── test-suffix-multiple.phpt
│   │   └── test-suffix-single.phpt
│   ├── fail
│   │   └── fail.phpt
│   ├── _files
│   │   ├── 3194.php
│   │   ├── 3530.wsdl
│   │   ├── AbstractMockTestClass.php
│   │   ├── AbstractTest.php
│   │   ├── AbstractTrait.php
│   │   ├── AnInterface.php
│   │   ├── AnInterfaceWithReturnType.php
│   │   ├── AnotherInterface.php
│   │   ├── ArrayAccessible.php
│   │   ├── AssertionExample.php
│   │   ├── AssertionExampleTest.php
│   │   ├── Author.php
│   │   ├── BankAccount.php
│   │   ├── BankAccountTest2.php
│   │   ├── BankAccountTest.php
│   │   ├── BankAccountTest.test.php
│   │   ├── Bar.php
│   │   ├── bar.xml
│   │   ├── BeforeAndAfterTest.php
│   │   ├── BeforeClassAndAfterClassTest.php
│   │   ├── BeforeClassWithOnlyDataProviderTest.php
│   │   ├── Book.php
│   │   ├── Calculator.php
│   │   ├── ChangeCurrentWorkingDirectoryTest.php
│   │   ├── ClassThatImplementsSerializable.php
│   │   ├── ClassWithAllPossibleReturnTypes.php
│   │   ├── ClassWithNonPublicAttributes.php
│   │   ├── ClassWithScalarTypeDeclarations.php
│   │   ├── ClassWithSelfTypeHint.php
│   │   ├── ClassWithStaticMethod.php
│   │   ├── ClassWithToString.php
│   │   ├── ClassWithVariadicArgumentMethod.php
│   │   ├── ClonedDependencyTest.php
│   │   ├── ConcreteTest.my.php
│   │   ├── ConcreteTest.php
│   │   ├── configuration.colors.empty.xml
│   │   ├── configuration.colors.false.xml
│   │   ├── configuration.colors.invalid.xml
│   │   ├── configuration.colors.true.xml
│   │   ├── configuration.columns.default.xml
│   │   ├── configuration.custom-printer.xml
│   │   ├── configuration.defaulttestsuite.xml
│   │   ├── configuration_empty.xml
│   │   ├── configuration_execution_order_options.xml
│   │   ├── configuration.one-file-suite.xml
│   │   ├── configuration_stop_on_defect.xml
│   │   ├── configuration_stop_on_error.xml
│   │   ├── configuration_stop_on_incomplete.xml
│   │   ├── configuration_stop_on_warning.xml
│   │   ├── configuration.suites.xml
│   │   ├── configuration_whitelist.xml
│   │   ├── configuration_xinclude.xml
│   │   ├── configuration.xml
│   │   ├── CountConstraint.php
│   │   ├── CoverageClassExtendedTest.php
│   │   ├── CoverageClassTest.php
│   │   ├── CoverageCoversOverridesCoversNothingTest.php
│   │   ├── CoverageFunctionParenthesesTest.php
│   │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│   │   ├── CoverageFunctionTest.php
│   │   ├── CoverageMethodOneLineAnnotationTest.php
│   │   ├── CoverageMethodParenthesesTest.php
│   │   ├── CoverageMethodParenthesesWhitespaceTest.php
│   │   ├── CoverageMethodTest.php
│   │   ├── CoverageNamespacedFunctionTest.php
│   │   ├── CoverageNoneTest.php
│   │   ├── CoverageNothingTest.php
│   │   ├── CoverageNotPrivateTest.php
│   │   ├── CoverageNotProtectedTest.php
│   │   ├── CoverageNotPublicTest.php
│   │   ├── CoveragePrivateTest.php
│   │   ├── CoverageProtectedTest.php
│   │   ├── CoveragePublicTest.php
│   │   ├── CoverageTwoDefaultClassAnnotations.php
│   │   ├── CoveredClass.php
│   │   ├── CoveredFunction.php
│   │   ├── CustomPrinter.php
│   │   ├── DataProviderDebugTest.php
│   │   ├── DataProviderDependencyTest.php
│   │   ├── DataproviderExecutionOrderTest.php
│   │   ├── DataproviderExecutionOrderTest_result_cache.txt
│   │   ├── DataProviderFilterTest.php
│   │   ├── DataProviderIncompleteTest.php
│   │   ├── DataProviderIssue2833
│   │   │   ├── FirstTest.php
│   │   │   └── SecondTest.php
│   │   ├── DataProviderIssue2859
│   │   │   ├── phpunit.xml
│   │   │   └── tests
│   │   │   └── another
│   │   │   └── TestWithDataProviderTest.php
│   │   ├── DataProviderIssue2922
│   │   │   ├── FirstTest.php
│   │   │   └── SecondTest.php
│   │   ├── DataProviderSkippedTest.php
│   │   ├── DataProviderTestDoxTest.php
│   │   ├── DataProviderTest.php
│   │   ├── DependencyFailureTest.php
│   │   ├── DependencySuccessTest.php
│   │   ├── DependencyTestSuite.php
│   │   ├── DoesNotPerformAssertionsButPerformingAssertionsTest.php
│   │   ├── DoNoAssertionTestCase.php
│   │   ├── DoubleTestCase.php
│   │   ├── DummyBarTest.php
│   │   ├── DummyException.php
│   │   ├── DummyFooTest.php
│   │   ├── EmptyTestCaseTest.php
│   │   ├── ExampleTrait.php
│   │   ├── ExceptionInAssertPostConditionsTest.php
│   │   ├── ExceptionInAssertPreConditionsTest.php
│   │   ├── ExceptionInSetUpTest.php
│   │   ├── ExceptionInTearDownAfterClassTest.php
│   │   ├── ExceptionInTearDownTest.php
│   │   ├── ExceptionInTestDetectedInTeardown.php
│   │   ├── ExceptionInTest.php
│   │   ├── ExceptionNamespaceTest.php
│   │   ├── ExceptionStackTest.php
│   │   ├── ExceptionTest.php
│   │   ├── ExceptionWithThrowable.php
│   │   ├── expectedFileFormat.txt
│   │   ├── Failure.php
│   │   ├── FailureTest.php
│   │   ├── FalsyConstraint.php
│   │   ├── FatalTest.php
│   │   ├── Foo.php
│   │   ├── foo.xml
│   │   ├── FunctionCallback.php
│   │   ├── Go ogle-Sea.rch.wsdl
│   │   ├── GoogleSearch.wsdl
│   │   ├── IgnoreCodeCoverageClass.php
│   │   ├── IgnoreCodeCoverageClassTest.php
│   │   ├── IncompleteTest.php
│   │   ├── Inheritance
│   │   │   ├── InheritanceA.php
│   │   │   └── InheritanceB.php
│   │   ├── InheritedTestCase.php
│   │   ├── IniTest.php
│   │   ├── InterfaceWithSemiReservedMethodName.php
│   │   ├── InterfaceWithStaticMethod.php
│   │   ├── IsolationTest.php
│   │   ├── JsonData
│   │   │   ├── arrayObject.json
│   │   │   └── simpleObject.json
│   │   ├── MethodCallbackByReference.php
│   │   ├── MethodCallback.php
│   │   ├── Mockable.php
│   │   ├── MockRunner.php
│   │   ├── MockTestInterface.php
│   │   ├── MultiDependencyTest.php
│   │   ├── MultiDependencyTest_result_cache.txt
│   │   ├── MultipleDataProviderTest.php
│   │   ├── MyCommand.php
│   │   ├── MyTestListener.php
│   │   ├── NamedConstraint.php
│   │   ├── NamespaceCoverageClassExtendedTest.php
│   │   ├── NamespaceCoverageClassTest.php
│   │   ├── NamespaceCoverageCoversClassPublicTest.php
│   │   ├── NamespaceCoverageCoversClassTest.php
│   │   ├── NamespaceCoverageMethodTest.php
│   │   ├── NamespaceCoverageNotPrivateTest.php
│   │   ├── NamespaceCoverageNotProtectedTest.php
│   │   ├── NamespaceCoverageNotPublicTest.php
│   │   ├── NamespaceCoveragePrivateTest.php
│   │   ├── NamespaceCoverageProtectedTest.php
│   │   ├── NamespaceCoveragePublicTest.php
│   │   ├── NamespaceCoveredClass.php
│   │   ├── NamespaceCoveredFunction.php
│   │   ├── NoArgTestCaseTest.php
│   │   ├── NonStatic.php
│   │   ├── NoTestCaseClass.php
│   │   ├── NoTestCases.php
│   │   ├── NotExistingCoveredElementTest.php
│   │   ├── NothingTest.php
│   │   ├── NotPublicTestCase.php
│   │   ├── NotSelfDescribingTest.php
│   │   ├── NotVoidTestCase.php
│   │   ├── NumericGroupAnnotationTest.php
│   │   ├── OneTestCase.php
│   │   ├── OutputTestCase.php
│   │   ├── OverrideTestCase.php
│   │   ├── ParseTestMethodAnnotationsMock.php
│   │   ├── PartialMockTestClass.php
│   │   ├── phpt-for-coverage.phpt
│   │   ├── phpt-unsupported-section.phpt
│   │   ├── phpt-xfail.phpt
│   │   ├── phpunit-example-extension
│   │   │   ├── phpunit.xml
│   │   │   ├── tests
│   │   │   │   └── OneTest.php
│   │   │   └── tools
│   │   │   └── phpunit.d
│   │   │   └── phpunit-example-extension-3.0.3.phar
│   │   ├── RequirementsClassBeforeClassHookTest.php
│   │   ├── RequirementsClassDocBlockTest.php
│   │   ├── RequirementsTest.php
│   │   ├── RouterTest.php
│   │   ├── SampleArrayAccess.php
│   │   ├── SampleClass.php
│   │   ├── SingletonClass.php
│   │   ├── Singleton.php
│   │   ├── SomeClass.php
│   │   ├── StackTest.php
│   │   ├── StaticMockTestClass.php
│   │   ├── StatusTest.php
│   │   ├── StopOnErrorTestSuite.php
│   │   ├── StopOnWarningTestSuite.php
│   │   ├── StopsOnWarningTest.php
│   │   ├── StringableClass.php
│   │   ├── Struct.php
│   │   ├── structureAttributesAreSameButValuesAreNot.xml
│   │   ├── structureExpected.xml
│   │   ├── structureIgnoreTextNodes.xml
│   │   ├── structureIsSameButDataIsNot.xml
│   │   ├── structureWrongNumberOfAttributes.xml
│   │   ├── structureWrongNumberOfNodes.xml
│   │   ├── Success.php
│   │   ├── TemplateMethodsTest.php
│   │   ├── TestableCliTestDoxPrinter.php
│   │   ├── TestAutoreferenced.php
│   │   ├── TestDoxGroupTest.php
│   │   ├── TestGeneratorMaker.php
│   │   ├── TestIncomplete.php
│   │   ├── TestIterator2.php
│   │   ├── TestIteratorAggregate2.php
│   │   ├── TestIteratorAggregate.php
│   │   ├── TestIterator.php
│   │   ├── TestRisky.php
│   │   ├── TestSkipped.php
│   │   ├── TestTestError.php
│   │   ├── TestWarning.php
│   │   ├── TestWithTest.php
│   │   ├── ThrowExceptionTestCase.php
│   │   ├── ThrowNoExceptionTestCase.php
│   │   ├── TraversableMockTestInterface.php
│   │   ├── TruthyConstraint.php
│   │   ├── VariousIterableDataProviderTest.php
│   │   ├── WasRun.php
│   │   └── WrapperIteratorAggregate.php
│   └── unit
│   ├── Framework
│   │   ├── AssertTest.php
│   │   ├── Constraint
│   │   │   ├── ArrayHasKeyTest.php
│   │   │   ├── ArraySubsetTest.php
│   │   │   ├── AttributeTest.php
│   │   │   ├── CallbackTest.php
│   │   │   ├── ClassHasAttributeTest.php
│   │   │   ├── ClassHasStaticAttributeTest.php
│   │   │   ├── ConstraintTestCase.php
│   │   │   ├── CountTest.php
│   │   │   ├── DirectoryExistsTest.php
│   │   │   ├── ExceptionMessageRegExpTest.php
│   │   │   ├── ExceptionMessageTest.php
│   │   │   ├── FileExistsTest.php
│   │   │   ├── GreaterThanTest.php
│   │   │   ├── IsEmptyTest.php
│   │   │   ├── IsEqualTest.php
│   │   │   ├── IsIdenticalTest.php
│   │   │   ├── IsInstanceOfTest.php
│   │   │   ├── IsJsonTest.php
│   │   │   ├── IsNullTest.php
│   │   │   ├── IsReadableTest.php
│   │   │   ├── IsTypeTest.php
│   │   │   ├── IsWritableTest.php
│   │   │   ├── JsonMatchesErrorMessageProviderTest.php
│   │   │   ├── JsonMatchesTest.php
│   │   │   ├── LessThanTest.php
│   │   │   ├── LogicalAndTest.php
│   │   │   ├── LogicalOrTest.php
│   │   │   ├── LogicalXorTest.php
│   │   │   ├── ObjectHasAttributeTest.php
│   │   │   ├── RegularExpressionTest.php
│   │   │   ├── SameSizeTest.php
│   │   │   ├── StringContainsTest.php
│   │   │   ├── StringEndsWithTest.php
│   │   │   ├── StringMatchesFormatDescriptionTest.php
│   │   │   ├── StringStartsWithTest.php
│   │   │   └── TraversableContainsTest.php
│   │   ├── ConstraintTest.php
│   │   ├── ExceptionWrapperTest.php
│   │   ├── MockObject
│   │   │   ├── Builder
│   │   │   │   └── InvocationMockerTest.php
│   │   │   ├── GeneratorTest.php
│   │   │   ├── Invocation
│   │   │   │   ├── ObjectInvocationTest.php
│   │   │   │   └── StaticInvocationTest.php
│   │   │   ├── Matcher
│   │   │   │   └── ConsecutiveParametersTest.php
│   │   │   ├── MockBuilderTest.php
│   │   │   ├── MockMethodTest.php
│   │   │   ├── MockObjectTest.php
│   │   │   └── ProxyObjectTest.php
│   │   ├── TestCaseTest.php
│   │   ├── TestFailureTest.php
│   │   ├── TestImplementorTest.php
│   │   ├── TestListenerTest.php
│   │   ├── TestResultTest.php
│   │   └── TestSuiteTest.php
│   ├── Runner
│   │   ├── Filter
│   │   │   └── NameFilterIteratorTest.php
│   │   ├── PhptTestCaseTest.php
│   │   ├── ResultCacheExtensionTest.php
│   │   └── TestSuiteSorterTest.php
│   ├── TextUI
│   │   └── TestRunnerTest.php
│   └── Util
│   ├── ConfigurationGeneratorTest.php
│   ├── ConfigurationTest.php
│   ├── GetoptTest.php
│   ├── GlobalStateTest.php
│   ├── JsonTest.php
│   ├── NullTestResultCacheTest.php
│   ├── PHP
│   │   └── AbstractPhpProcessTest.php
│   ├── RegularExpressionTest.php
│   ├── TestDox
│   │   ├── CliTestDoxPrinterTest.php
│   │   └── NamePrettifierTest.php
│   ├── TestResultCacheTest.php
│   ├── TestTest.php
│   ├── XDebugFilterScriptGeneratorTest.php
│   └── XmlTest.php
├── psr
│   ├── container
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── ContainerExceptionInterface.php
│   │   ├── ContainerInterface.php
│   │   └── NotFoundExceptionInterface.php
│   ├── http-message
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── MessageInterface.php
│   │   ├── RequestInterface.php
│   │   ├── ResponseInterface.php
│   │   ├── ServerRequestInterface.php
│   │   ├── StreamInterface.php
│   │   ├── UploadedFileInterface.php
│   │   └── UriInterface.php
│   └── log
│   ├── composer.json
│   ├── LICENSE
│   ├── Psr
│   │   └── Log
│   │   ├── AbstractLogger.php
│   │   ├── InvalidArgumentException.php
│   │   ├── LoggerAwareInterface.php
│   │   ├── LoggerAwareTrait.php
│   │   ├── LoggerInterface.php
│   │   ├── LoggerTrait.php
│   │   ├── LogLevel.php
│   │   ├── NullLogger.php
│   │   └── Test
│   │   ├── LoggerInterfaceTest.php
│   │   └── TestLogger.php
│   └── README.md
├── ralouphie
│   └── getallheaders
│   ├── composer.json
│   ├── LICENSE
│   ├── phpunit.xml
│   ├── README.md
│   ├── src
│   │   └── getallheaders.php
│   └── tests
│   └── GetAllHeadersTest.php
├── sabberworm
│   └── php-css-parser
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── composer.lock
│   ├── Doxyfile
│   ├── lib
│   │   └── Sabberworm
│   │   └── CSS
│   │   ├── Comment
│   │   │   ├── Commentable.php
│   │   │   └── Comment.php
│   │   ├── CSSList
│   │   │   ├── AtRuleBlockList.php
│   │   │   ├── CSSBlockList.php
│   │   │   ├── CSSList.php
│   │   │   ├── Document.php
│   │   │   └── KeyFrame.php
│   │   ├── OutputFormat.php
│   │   ├── Parser.php
│   │   ├── Parsing
│   │   │   ├── OutputException.php
│   │   │   ├── SourceException.php
│   │   │   └── UnexpectedTokenException.php
│   │   ├── Property
│   │   │   ├── AtRule.php
│   │   │   ├── Charset.php
│   │   │   ├── CSSNamespace.php
│   │   │   ├── Import.php
│   │   │   └── Selector.php
│   │   ├── Renderable.php
│   │   ├── Rule
│   │   │   └── Rule.php
│   │   ├── RuleSet
│   │   │   ├── AtRuleSet.php
│   │   │   ├── DeclarationBlock.php
│   │   │   └── RuleSet.php
│   │   ├── Settings.php
│   │   └── Value
│   │   ├── Color.php
│   │   ├── CSSFunction.php
│   │   ├── CSSString.php
│   │   ├── PrimitiveValue.php
│   │   ├── RuleValueList.php
│   │   ├── Size.php
│   │   ├── URL.php
│   │   ├── ValueList.php
│   │   └── Value.php
│   ├── phpunit.xml
│   ├── README.md
│   └── tests
│   ├── bootstrap.php
│   ├── files
│   │   ├── 1readme.css
│   │   ├── 2readme.css
│   │   ├── atrules.css
│   │   ├── case-insensitivity.css
│   │   ├── -charset-after-rule.css
│   │   ├── -charset-in-block.css
│   │   ├── colortest.css
│   │   ├── comments.css
│   │   ├── create-shorthands.css
│   │   ├── docuwiki.css
│   │   ├── -empty.css
│   │   ├── -end-token-2.css
│   │   ├── -end-token.css
│   │   ├── expand-shorthands.css
│   │   ├── -fault-tolerance.css
│   │   ├── functions.css
│   │   ├── ie.css
│   │   ├── ie-hacks.css
│   │   ├── important.css
│   │   ├── inner-color.css
│   │   ├── line-numbers.css
│   │   ├── namespaces.css
│   │   ├── nested.css
│   │   ├── slashed.css
│   │   ├── specificity.css
│   │   ├── -tobedone.css
│   │   ├── unicode.css
│   │   ├── url.css
│   │   ├── values.css
│   │   ├── webkit.css
│   │   └── whitespace.css
│   ├── phpunit.xml
│   ├── quickdump.php
│   └── Sabberworm
│   └── CSS
│   ├── CSSList
│   │   ├── AtRuleBlockListTest.php
│   │   └── DocumentTest.php
│   ├── OutputFormatTest.php
│   ├── ParserTest.php
│   └── RuleSet
│   ├── DeclarationBlockTest.php
│   └── LenientParsingTest.php
├── sebastian
│   ├── code-unit-reverse-lookup
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Wizard.php
│   │   └── tests
│   │   └── WizardTest.php
│   ├── comparator
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── ArrayComparator.php
│   │   │   ├── Comparator.php
│   │   │   ├── ComparisonFailure.php
│   │   │   ├── DateTimeComparator.php
│   │   │   ├── DOMNodeComparator.php
│   │   │   ├── DoubleComparator.php
│   │   │   ├── ExceptionComparator.php
│   │   │   ├── Factory.php
│   │   │   ├── MockObjectComparator.php
│   │   │   ├── NumericComparator.php
│   │   │   ├── ObjectComparator.php
│   │   │   ├── ResourceComparator.php
│   │   │   ├── ScalarComparator.php
│   │   │   ├── SplObjectStorageComparator.php
│   │   │   └── TypeComparator.php
│   │   └── tests
│   │   ├── ArrayComparatorTest.php
│   │   ├── ComparisonFailureTest.php
│   │   ├── DateTimeComparatorTest.php
│   │   ├── DOMNodeComparatorTest.php
│   │   ├── DoubleComparatorTest.php
│   │   ├── ExceptionComparatorTest.php
│   │   ├── FactoryTest.php
│   │   ├── _fixture
│   │   │   ├── Author.php
│   │   │   ├── Book.php
│   │   │   ├── ClassWithToString.php
│   │   │   ├── SampleClass.php
│   │   │   ├── Struct.php
│   │   │   ├── TestClassComparator.php
│   │   │   └── TestClass.php
│   │   ├── MockObjectComparatorTest.php
│   │   ├── NumericComparatorTest.php
│   │   ├── ObjectComparatorTest.php
│   │   ├── ResourceComparatorTest.php
│   │   ├── ScalarComparatorTest.php
│   │   ├── SplObjectStorageComparatorTest.php
│   │   └── TypeComparatorTest.php
│   ├── diff
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Chunk.php
│   │   │   ├── Differ.php
│   │   │   ├── Diff.php
│   │   │   ├── Exception
│   │   │   │   ├── ConfigurationException.php
│   │   │   │   ├── Exception.php
│   │   │   │   └── InvalidArgumentException.php
│   │   │   ├── Line.php
│   │   │   ├── LongestCommonSubsequenceCalculator.php
│   │   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php
│   │   │   ├── Output
│   │   │   │   ├── AbstractChunkOutputBuilder.php
│   │   │   │   ├── DiffOnlyOutputBuilder.php
│   │   │   │   ├── DiffOutputBuilderInterface.php
│   │   │   │   ├── StrictUnifiedDiffOutputBuilder.php
│   │   │   │   └── UnifiedDiffOutputBuilder.php
│   │   │   ├── Parser.php
│   │   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php
│   │   └── tests
│   │   ├── ChunkTest.php
│   │   ├── DifferTest.php
│   │   ├── DiffTest.php
│   │   ├── Exception
│   │   │   ├── ConfigurationExceptionTest.php
│   │   │   └── InvalidArgumentExceptionTest.php
│   │   ├── fixtures
│   │   │   ├── out
│   │   │   ├── patch2.txt
│   │   │   ├── patch.txt
│   │   │   ├── serialized_diff.bin
│   │   │   └── UnifiedDiffAssertTraitIntegrationTest
│   │   │   ├── 1_a.txt
│   │   │   ├── 1_b.txt
│   │   │   ├── 2_a.txt
│   │   │   └── 2_b.txt
│   │   ├── LineTest.php
│   │   ├── LongestCommonSubsequenceTest.php
│   │   ├── MemoryEfficientImplementationTest.php
│   │   ├── Output
│   │   │   ├── AbstractChunkOutputBuilderTest.php
│   │   │   ├── DiffOnlyOutputBuilderTest.php
│   │   │   ├── Integration
│   │   │   │   ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php
│   │   │   │   └── UnifiedDiffOutputBuilderIntegrationTest.php
│   │   │   ├── StrictUnifiedDiffOutputBuilderDataProvider.php
│   │   │   ├── StrictUnifiedDiffOutputBuilderTest.php
│   │   │   ├── UnifiedDiffOutputBuilderDataProvider.php
│   │   │   └── UnifiedDiffOutputBuilderTest.php
│   │   ├── ParserTest.php
│   │   ├── TimeEfficientImplementationTest.php
│   │   └── Utils
│   │   ├── FileUtils.php
│   │   ├── UnifiedDiffAssertTraitIntegrationTest.php
│   │   ├── UnifiedDiffAssertTrait.php
│   │   └── UnifiedDiffAssertTraitTest.php
│   ├── environment
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Console.php
│   │   │   ├── OperatingSystem.php
│   │   │   └── Runtime.php
│   │   └── tests
│   │   ├── ConsoleTest.php
│   │   ├── OperatingSystemTest.php
│   │   └── RuntimeTest.php
│   ├── exporter
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Exporter.php
│   │   └── tests
│   │   └── ExporterTest.php
│   ├── finder-facade
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Configuration.php
│   │   │   └── FinderFacade.php
│   │   └── tests
│   │   ├── ConfigurationTest.php
│   │   ├── FinderFacadeTest.php
│   │   └── fixture
│   │   ├── bar.phtml
│   │   ├── foo
│   │   │   ├── bar
│   │   │   │   └── baz.php
│   │   │   ├── bar.php
│   │   │   └── foo.fail.php
│   │   └── test.xml
│   ├── global-state
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Blacklist.php
│   │   │   ├── CodeExporter.php
│   │   │   ├── exceptions
│   │   │   │   ├── Exception.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Restorer.php
│   │   │   └── Snapshot.php
│   │   └── tests
│   │   ├── BlacklistTest.php
│   │   ├── CodeExporterTest.php
│   │   ├── _fixture
│   │   │   ├── BlacklistedChildClass.php
│   │   │   ├── BlacklistedClass.php
│   │   │   ├── BlacklistedImplementor.php
│   │   │   ├── BlacklistedInterface.php
│   │   │   ├── SnapshotClass.php
│   │   │   ├── SnapshotDomDocument.php
│   │   │   ├── SnapshotFunctions.php
│   │   │   └── SnapshotTrait.php
│   │   ├── RestorerTest.php
│   │   └── SnapshotTest.php
│   ├── object-enumerator
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Enumerator.php
│   │   │   ├── Exception.php
│   │   │   └── InvalidArgumentException.php
│   │   └── tests
│   │   ├── EnumeratorTest.php
│   │   └── _fixture
│   │   └── ExceptionThrower.php
│   ├── object-reflector
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Exception.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   └── ObjectReflector.php
│   │   └── tests
│   │   ├── _fixture
│   │   │   ├── ChildClass.php
│   │   │   ├── ClassWithIntegerAttributeName.php
│   │   │   └── ParentClass.php
│   │   └── ObjectReflectorTest.php
│   ├── recursion-context
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Context.php
│   │   │   ├── Exception.php
│   │   │   └── InvalidArgumentException.php
│   │   └── tests
│   │   └── ContextTest.php
│   ├── resource-operations
│   │   ├── build
│   │   │   └── generate.php
│   │   ├── build.xml
│   │   ├── ChangeLog.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── src
│   │   │   └── ResourceOperations.php
│   │   └── tests
│   │   └── ResourceOperationsTest.php
│   └── version
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── Version.php
├── setasign
│   └── fpdi
│   ├── composer.json
│   ├── filters
│   │   ├── FilterASCII85.php
│   │   ├── FilterASCIIHexDecode.php
│   │   └── FilterLZW.php
│   ├── fpdf_tpl.php
│   ├── fpdi_bridge.php
│   ├── fpdi_pdf_parser.php
│   ├── fpdi.php
│   ├── LICENSE
│   ├── pdf_context.php
│   ├── pdf_parser.php
│   └── README.md
├── squizlabs
│   └── php_codesniffer
│   ├── CodeSniffer
│   │   ├── CLI.php
│   │   ├── DocGenerators
│   │   │   ├── Generator.php
│   │   │   ├── HTML.php
│   │   │   ├── Markdown.php
│   │   │   └── Text.php
│   │   ├── Exception.php
│   │   ├── File.php
│   │   ├── Fixer.php
│   │   ├── Reporting.php
│   │   ├── Report.php
│   │   ├── Reports
│   │   │   ├── Cbf.php
│   │   │   ├── Checkstyle.php
│   │   │   ├── Csv.php
│   │   │   ├── Diff.php
│   │   │   ├── Emacs.php
│   │   │   ├── Full.php
│   │   │   ├── Gitblame.php
│   │   │   ├── Hgblame.php
│   │   │   ├── Info.php
│   │   │   ├── Json.php
│   │   │   ├── Junit.php
│   │   │   ├── Notifysend.php
│   │   │   ├── Source.php
│   │   │   ├── Summary.php
│   │   │   ├── Svnblame.php
│   │   │   ├── VersionControl.php
│   │   │   └── Xml.php
│   │   ├── Sniff.php
│   │   ├── Standards
│   │   │   ├── AbstractPatternSniff.php
│   │   │   ├── AbstractScopeSniff.php
│   │   │   ├── AbstractVariableSniff.php
│   │   │   ├── Generic
│   │   │   │   ├── Docs
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   ├── DuplicateClassNameStandard.xml
│   │   │   │   │   │   └── OpeningBraceSameLineStandard.xml
│   │   │   │   │   ├── CodeAnalysis
│   │   │   │   │   │   ├── EmptyStatementStandard.xml
│   │   │   │   │   │   ├── ForLoopShouldBeWhileLoopStandard.xml
│   │   │   │   │   │   ├── ForLoopWithTestFunctionCallStandard.xml
│   │   │   │   │   │   ├── JumbledIncrementerStandard.xml
│   │   │   │   │   │   ├── UnconditionalIfStatementStandard.xml
│   │   │   │   │   │   ├── UnnecessaryFinalModifierStandard.xml
│   │   │   │   │   │   ├── UnusedFunctionParameterStandard.xml
│   │   │   │   │   │   └── UselessOverridingMethodStandard.xml
│   │   │   │   │   ├── Commenting
│   │   │   │   │   │   ├── FixmeStandard.xml
│   │   │   │   │   │   └── TodoStandard.xml
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   └── InlineControlStructureStandard.xml
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── ClosureLinterStandard.xml
│   │   │   │   │   │   ├── CSSLintStandard.xml
│   │   │   │   │   │   └── JSHintStandard.xml
│   │   │   │   │   ├── Files
│   │   │   │   │   │   ├── ByteOrderMarkStandard.xml
│   │   │   │   │   │   ├── EndFileNewlineStandard.xml
│   │   │   │   │   │   ├── EndFileNoNewlineStandard.xml
│   │   │   │   │   │   ├── InlineHTMLStandard.xml
│   │   │   │   │   │   ├── LineEndingsStandard.xml
│   │   │   │   │   │   ├── LineLengthStandard.xml
│   │   │   │   │   │   ├── LowercasedFilenameStandard.xml
│   │   │   │   │   │   ├── OneClassPerFileStandard.xml
│   │   │   │   │   │   └── OneInterfacePerFileStandard.xml
│   │   │   │   │   ├── Formatting
│   │   │   │   │   │   ├── DisallowMultipleStatementsStandard.xml
│   │   │   │   │   │   ├── MultipleStatementAlignmentStandard.xml
│   │   │   │   │   │   ├── NoSpaceAfterCastStandard.xml
│   │   │   │   │   │   └── SpaceAfterCastStandard.xml
│   │   │   │   │   ├── Functions
│   │   │   │   │   │   ├── CallTimePassByReferenceStandard.xml
│   │   │   │   │   │   ├── FunctionCallArgumentSpacingStandard.xml
│   │   │   │   │   │   ├── OpeningFunctionBraceBsdAllmanStandard.xml
│   │   │   │   │   │   └── OpeningFunctionBraceKernighanRitchieStandard.xml
│   │   │   │   │   ├── Metrics
│   │   │   │   │   │   ├── CyclomaticComplexityStandard.xml
│   │   │   │   │   │   └── NestingLevelStandard.xml
│   │   │   │   │   ├── NamingConventions
│   │   │   │   │   │   ├── CamelCapsFunctionNameStandard.xml
│   │   │   │   │   │   ├── ConstructorNameStandard.xml
│   │   │   │   │   │   └── UpperCaseConstantNameStandard.xml
│   │   │   │   │   ├── PHP
│   │   │   │   │   │   ├── BacktickOperatorStandard.xml
│   │   │   │   │   │   ├── CharacterBeforePHPOpeningTagStandard.xml
│   │   │   │   │   │   ├── ClosingPHPTagStandard.xml
│   │   │   │   │   │   ├── DeprecatedFunctionsStandard.xml
│   │   │   │   │   │   ├── DisallowAlternativePHPTagsStandard.xml
│   │   │   │   │   │   ├── DisallowShortOpenTagStandard.xml
│   │   │   │   │   │   ├── ForbiddenFunctionsStandard.xml
│   │   │   │   │   │   ├── LowerCaseConstantStandard.xml
│   │   │   │   │   │   ├── LowerCaseKeywordStandard.xml
│   │   │   │   │   │   ├── NoSilencedErrorsStandard.xml
│   │   │   │   │   │   ├── SAPIUsageStandard.xml
│   │   │   │   │   │   └── UpperCaseConstantStandard.xml
│   │   │   │   │   ├── Strings
│   │   │   │   │   │   └── UnnecessaryStringConcatStandard.xml
│   │   │   │   │   ├── VersionControl
│   │   │   │   │   │   └── SubversionPropertiesStandard.xml
│   │   │   │   │   └── WhiteSpace
│   │   │   │   │   ├── DisallowSpaceIndentStandard.xml
│   │   │   │   │   ├── DisallowTabIndentStandard.xml
│   │   │   │   │   └── ScopeIndentStandard.xml
│   │   │   │   ├── ruleset.xml
│   │   │   │   └── Sniffs
│   │   │   │   ├── Arrays
│   │   │   │   │   ├── DisallowLongArraySyntaxSniff.php
│   │   │   │   │   └── DisallowShortArraySyntaxSniff.php
│   │   │   │   ├── Classes
│   │   │   │   │   ├── DuplicateClassNameSniff.php
│   │   │   │   │   └── OpeningBraceSameLineSniff.php
│   │   │   │   ├── CodeAnalysis
│   │   │   │   │   ├── EmptyStatementSniff.php
│   │   │   │   │   ├── ForLoopShouldBeWhileLoopSniff.php
│   │   │   │   │   ├── ForLoopWithTestFunctionCallSniff.php
│   │   │   │   │   ├── JumbledIncrementerSniff.php
│   │   │   │   │   ├── UnconditionalIfStatementSniff.php
│   │   │   │   │   ├── UnnecessaryFinalModifierSniff.php
│   │   │   │   │   ├── UnusedFunctionParameterSniff.php
│   │   │   │   │   └── UselessOverridingMethodSniff.php
│   │   │   │   ├── Commenting
│   │   │   │   │   ├── DocCommentSniff.php
│   │   │   │   │   ├── FixmeSniff.php
│   │   │   │   │   └── TodoSniff.php
│   │   │   │   ├── ControlStructures
│   │   │   │   │   └── InlineControlStructureSniff.php
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ClosureLinterSniff.php
│   │   │   │   │   ├── CSSLintSniff.php
│   │   │   │   │   ├── ESLintSniff.php
│   │   │   │   │   └── JSHintSniff.php
│   │   │   │   ├── Files
│   │   │   │   │   ├── ByteOrderMarkSniff.php
│   │   │   │   │   ├── EndFileNewlineSniff.php
│   │   │   │   │   ├── EndFileNoNewlineSniff.php
│   │   │   │   │   ├── InlineHTMLSniff.php
│   │   │   │   │   ├── LineEndingsSniff.php
│   │   │   │   │   ├── LineLengthSniff.php
│   │   │   │   │   ├── LowercasedFilenameSniff.php
│   │   │   │   │   ├── OneClassPerFileSniff.php
│   │   │   │   │   ├── OneInterfacePerFileSniff.php
│   │   │   │   │   └── OneTraitPerFileSniff.php
│   │   │   │   ├── Formatting
│   │   │   │   │   ├── DisallowMultipleStatementsSniff.php
│   │   │   │   │   ├── MultipleStatementAlignmentSniff.php
│   │   │   │   │   ├── NoSpaceAfterCastSniff.php
│   │   │   │   │   ├── SpaceAfterCastSniff.php
│   │   │   │   │   └── SpaceAfterNotSniff.php
│   │   │   │   ├── Functions
│   │   │   │   │   ├── CallTimePassByReferenceSniff.php
│   │   │   │   │   ├── FunctionCallArgumentSpacingSniff.php
│   │   │   │   │   ├── OpeningFunctionBraceBsdAllmanSniff.php
│   │   │   │   │   └── OpeningFunctionBraceKernighanRitchieSniff.php
│   │   │   │   ├── Metrics
│   │   │   │   │   ├── CyclomaticComplexitySniff.php
│   │   │   │   │   └── NestingLevelSniff.php
│   │   │   │   ├── NamingConventions
│   │   │   │   │   ├── CamelCapsFunctionNameSniff.php
│   │   │   │   │   ├── ConstructorNameSniff.php
│   │   │   │   │   └── UpperCaseConstantNameSniff.php
│   │   │   │   ├── PHP
│   │   │   │   │   ├── BacktickOperatorSniff.php
│   │   │   │   │   ├── CharacterBeforePHPOpeningTagSniff.php
│   │   │   │   │   ├── ClosingPHPTagSniff.php
│   │   │   │   │   ├── DeprecatedFunctionsSniff.php
│   │   │   │   │   ├── DisallowAlternativePHPTagsSniff.php
│   │   │   │   │   ├── DisallowShortOpenTagSniff.php
│   │   │   │   │   ├── ForbiddenFunctionsSniff.php
│   │   │   │   │   ├── LowerCaseConstantSniff.php
│   │   │   │   │   ├── LowerCaseKeywordSniff.php
│   │   │   │   │   ├── NoSilencedErrorsSniff.php
│   │   │   │   │   ├── SAPIUsageSniff.php
│   │   │   │   │   ├── SyntaxSniff.php
│   │   │   │   │   └── UpperCaseConstantSniff.php
│   │   │   │   ├── Strings
│   │   │   │   │   └── UnnecessaryStringConcatSniff.php
│   │   │   │   ├── VersionControl
│   │   │   │   │   └── SubversionPropertiesSniff.php
│   │   │   │   └── WhiteSpace
│   │   │   │   ├── DisallowSpaceIndentSniff.php
│   │   │   │   ├── DisallowTabIndentSniff.php
│   │   │   │   └── ScopeIndentSniff.php
│   │   │   ├── IncorrectPatternException.php
│   │   │   ├── MySource
│   │   │   │   ├── ruleset.xml
│   │   │   │   └── Sniffs
│   │   │   │   ├── Channels
│   │   │   │   │   ├── DisallowSelfActionsSniff.php
│   │   │   │   │   ├── IncludeOwnSystemSniff.php
│   │   │   │   │   ├── IncludeSystemSniff.php
│   │   │   │   │   └── UnusedSystemSniff.php
│   │   │   │   ├── Commenting
│   │   │   │   │   └── FunctionCommentSniff.php
│   │   │   │   ├── CSS
│   │   │   │   │   └── BrowserSpecificStylesSniff.php
│   │   │   │   ├── Debug
│   │   │   │   │   ├── DebugCodeSniff.php
│   │   │   │   │   └── FirebugConsoleSniff.php
│   │   │   │   ├── Objects
│   │   │   │   │   ├── AssignThisSniff.php
│   │   │   │   │   ├── CreateWidgetTypeCallbackSniff.php
│   │   │   │   │   └── DisallowNewWidgetSniff.php
│   │   │   │   ├── PHP
│   │   │   │   │   ├── AjaxNullComparisonSniff.php
│   │   │   │   │   ├── EvalObjectFactorySniff.php
│   │   │   │   │   ├── GetRequestDataSniff.php
│   │   │   │   │   └── ReturnFunctionValueSniff.php
│   │   │   │   └── Strings
│   │   │   │   └── JoinStringsSniff.php
│   │   │   ├── PEAR
│   │   │   │   ├── Docs
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   └── ClassDeclarationStandard.xml
│   │   │   │   │   ├── Commenting
│   │   │   │   │   │   ├── ClassCommentStandard.xml
│   │   │   │   │   │   ├── FileCommentStandard.xml
│   │   │   │   │   │   ├── FunctionCommentStandard.xml
│   │   │   │   │   │   └── InlineCommentStandard.xml
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   ├── ControlSignatureStandard.xml
│   │   │   │   │   │   └── MultiLineConditionStandard.xml
│   │   │   │   │   ├── Files
│   │   │   │   │   │   ├── IncludingFileStandard.xml
│   │   │   │   │   │   └── LineLengthStandard.xml
│   │   │   │   │   ├── Formatting
│   │   │   │   │   │   └── MultiLineAssignmentStandard.xml
│   │   │   │   │   ├── Functions
│   │   │   │   │   │   ├── FunctionCallSignatureStandard.xml
│   │   │   │   │   │   ├── FunctionDeclarationStandard.xml
│   │   │   │   │   │   └── ValidDefaultValueStandard.xml
│   │   │   │   │   ├── NamingConventions
│   │   │   │   │   │   ├── ValidClassNameStandard.xml
│   │   │   │   │   │   ├── ValidFunctionNameStandard.xml
│   │   │   │   │   │   └── ValidVariableNameStandard.xml
│   │   │   │   │   └── WhiteSpace
│   │   │   │   │   ├── ObjectOperatorIndentStandard.xml
│   │   │   │   │   ├── ScopeClosingBraceStandard.xml
│   │   │   │   │   └── ScopeIndentStandard.xml
│   │   │   │   ├── ruleset.xml
│   │   │   │   └── Sniffs
│   │   │   │   ├── Classes
│   │   │   │   │   └── ClassDeclarationSniff.php
│   │   │   │   ├── Commenting
│   │   │   │   │   ├── ClassCommentSniff.php
│   │   │   │   │   ├── FileCommentSniff.php
│   │   │   │   │   ├── FunctionCommentSniff.php
│   │   │   │   │   └── InlineCommentSniff.php
│   │   │   │   ├── ControlStructures
│   │   │   │   │   ├── ControlSignatureSniff.php
│   │   │   │   │   └── MultiLineConditionSniff.php
│   │   │   │   ├── Files
│   │   │   │   │   └── IncludingFileSniff.php
│   │   │   │   ├── Formatting
│   │   │   │   │   └── MultiLineAssignmentSniff.php
│   │   │   │   ├── Functions
│   │   │   │   │   ├── FunctionCallSignatureSniff.php
│   │   │   │   │   ├── FunctionDeclarationSniff.php
│   │   │   │   │   └── ValidDefaultValueSniff.php
│   │   │   │   ├── NamingConventions
│   │   │   │   │   ├── ValidClassNameSniff.php
│   │   │   │   │   ├── ValidFunctionNameSniff.php
│   │   │   │   │   └── ValidVariableNameSniff.php
│   │   │   │   └── WhiteSpace
│   │   │   │   ├── ObjectOperatorIndentSniff.php
│   │   │   │   ├── ScopeClosingBraceSniff.php
│   │   │   │   └── ScopeIndentSniff.php
│   │   │   ├── PHPCS
│   │   │   │   └── ruleset.xml
│   │   │   ├── PSR1
│   │   │   │   ├── Docs
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   └── ClassDeclarationStandard.xml
│   │   │   │   │   └── Files
│   │   │   │   │   └── SideEffectsStandard.xml
│   │   │   │   ├── ruleset.xml
│   │   │   │   └── Sniffs
│   │   │   │   ├── Classes
│   │   │   │   │   └── ClassDeclarationSniff.php
│   │   │   │   ├── Files
│   │   │   │   │   └── SideEffectsSniff.php
│   │   │   │   └── Methods
│   │   │   │   └── CamelCapsMethodNameSniff.php
│   │   │   ├── PSR2
│   │   │   │   ├── Docs
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   ├── ClassDeclarationStandard.xml
│   │   │   │   │   │   └── PropertyDeclarationStandard.xml
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   ├── ControlStructureSpacingStandard.xml
│   │   │   │   │   │   ├── ElseIfDeclarationStandard.xml
│   │   │   │   │   │   └── SwitchDeclarationStandard.xml
│   │   │   │   │   ├── Files
│   │   │   │   │   │   └── EndFileNewlineStandard.xml
│   │   │   │   │   ├── Methods
│   │   │   │   │   │   └── MethodDeclarationStandard.xml
│   │   │   │   │   └── Namespaces
│   │   │   │   │   ├── NamespaceDeclarationStandard.xml
│   │   │   │   │   └── UseDeclarationStandard.xml
│   │   │   │   ├── ruleset.xml
│   │   │   │   └── Sniffs
│   │   │   │   ├── Classes
│   │   │   │   │   ├── ClassDeclarationSniff.php
│   │   │   │   │   └── PropertyDeclarationSniff.php
│   │   │   │   ├── ControlStructures
│   │   │   │   │   ├── ControlStructureSpacingSniff.php
│   │   │   │   │   ├── ElseIfDeclarationSniff.php
│   │   │   │   │   └── SwitchDeclarationSniff.php
│   │   │   │   ├── Files
│   │   │   │   │   ├── ClosingTagSniff.php
│   │   │   │   │   └── EndFileNewlineSniff.php
│   │   │   │   ├── Methods
│   │   │   │   │   ├── FunctionCallSignatureSniff.php
│   │   │   │   │   ├── FunctionClosingBraceSniff.php
│   │   │   │   │   └── MethodDeclarationSniff.php
│   │   │   │   └── Namespaces
│   │   │   │   ├── NamespaceDeclarationSniff.php
│   │   │   │   └── UseDeclarationSniff.php
│   │   │   ├── Squiz
│   │   │   │   ├── Docs
│   │   │   │   │   ├── Arrays
│   │   │   │   │   │   ├── ArrayBracketSpacingStandard.xml
│   │   │   │   │   │   └── ArrayDeclarationStandard.xml
│   │   │   │   │   ├── Classes
│   │   │   │   │   │   ├── LowercaseClassKeywordsStandard.xml
│   │   │   │   │   │   └── SelfMemberReferenceStandard.xml
│   │   │   │   │   ├── Commenting
│   │   │   │   │   │   ├── DocCommentAlignmentStandard.xml
│   │   │   │   │   │   └── FunctionCommentThrowTagStandard.xml
│   │   │   │   │   ├── ControlStructures
│   │   │   │   │   │   ├── ForEachLoopDeclarationStandard.xml
│   │   │   │   │   │   ├── ForLoopDeclarationStandard.xml
│   │   │   │   │   │   └── LowercaseDeclarationStandard.xml
│   │   │   │   │   ├── Functions
│   │   │   │   │   │   ├── FunctionDuplicateArgumentStandard.xml
│   │   │   │   │   │   └── LowercaseFunctionKeywordsStandard.xml
│   │   │   │   │   ├── Scope
│   │   │   │   │   │   └── StaticThisUsageStandard.xml
│   │   │   │   │   ├── Strings
│   │   │   │   │   │   └── EchoedStringsStandard.xml
│   │   │   │   │   └── WhiteSpace
│   │   │   │   │   ├── CastSpacingStandard.xml
│   │   │   │   │   ├── FunctionOpeningBraceStandard.xml
│   │   │   │   │   ├── LanguageConstructSpacingStandard.xml
│   │   │   │   │   ├── ObjectOperatorSpacingStandard.xml
│   │   │   │   │   ├── ScopeKeywordSpacingStandard.xml
│   │   │   │   │   └── SemicolonSpacingStandard.xml
│   │   │   │   ├── ruleset.xml
│   │   │   │   └── Sniffs
│   │   │   │   ├── Arrays
│   │   │   │   │   ├── ArrayBracketSpacingSniff.php
│   │   │   │   │   └── ArrayDeclarationSniff.php
│   │   │   │   ├── Classes
│   │   │   │   │   ├── ClassDeclarationSniff.php
│   │   │   │   │   ├── ClassFileNameSniff.php
│   │   │   │   │   ├── DuplicatePropertySniff.php
│   │   │   │   │   ├── LowercaseClassKeywordsSniff.php
│   │   │   │   │   ├── SelfMemberReferenceSniff.php
│   │   │   │   │   └── ValidClassNameSniff.php
│   │   │   │   ├── Commenting
│   │   │   │   │   ├── BlockCommentSniff.php
│   │   │   │   │   ├── ClassCommentSniff.php
│   │   │   │   │   ├── ClosingDeclarationCommentSniff.php
│   │   │   │   │   ├── DocCommentAlignmentSniff.php
│   │   │   │   │   ├── EmptyCatchCommentSniff.php
│   │   │   │   │   ├── FileCommentSniff.php
│   │   │   │   │   ├── FunctionCommentSniff.php
│   │   │   │   │   ├── FunctionCommentThrowTagSniff.php
│   │   │   │   │   ├── InlineCommentSniff.php
│   │   │   │   │   ├── LongConditionClosingCommentSniff.php
│   │   │   │   │   ├── PostStatementCommentSniff.php
│   │   │   │   │   └── VariableCommentSniff.php
│   │   │   │   ├── ControlStructures
│   │   │   │   │   ├── ControlSignatureSniff.php
│   │   │   │   │   ├── ElseIfDeclarationSniff.php
│   │   │   │   │   ├── ForEachLoopDeclarationSniff.php
│   │   │   │   │   ├── ForLoopDeclarationSniff.php
│   │   │   │   │   ├── InlineIfDeclarationSniff.php
│   │   │   │   │   ├── LowercaseDeclarationSniff.php
│   │   │   │   │   └── SwitchDeclarationSniff.php
│   │   │   │   ├── CSS
│   │   │   │   │   ├── ClassDefinitionClosingBraceSpaceSniff.php
│   │   │   │   │   ├── ClassDefinitionNameSpacingSniff.php
│   │   │   │   │   ├── ClassDefinitionOpeningBraceSpaceSniff.php
│   │   │   │   │   ├── ColonSpacingSniff.php
│   │   │   │   │   ├── ColourDefinitionSniff.php
│   │   │   │   │   ├── DisallowMultipleStyleDefinitionsSniff.php
│   │   │   │   │   ├── DuplicateClassDefinitionSniff.php
│   │   │   │   │   ├── DuplicateStyleDefinitionSniff.php
│   │   │   │   │   ├── EmptyClassDefinitionSniff.php
│   │   │   │   │   ├── EmptyStyleDefinitionSniff.php
│   │   │   │   │   ├── ForbiddenStylesSniff.php
│   │   │   │   │   ├── IndentationSniff.php
│   │   │   │   │   ├── LowercaseStyleDefinitionSniff.php
│   │   │   │   │   ├── MissingColonSniff.php
│   │   │   │   │   ├── NamedColoursSniff.php
│   │   │   │   │   ├── OpacitySniff.php
│   │   │   │   │   ├── SemicolonSpacingSniff.php
│   │   │   │   │   └── ShorthandSizeSniff.php
│   │   │   │   ├── Debug
│   │   │   │   │   ├── JavaScriptLintSniff.php
│   │   │   │   │   └── JSLintSniff.php
│   │   │   │   ├── Files
│   │   │   │   │   └── FileExtensionSniff.php
│   │   │   │   ├── Formatting
│   │   │   │   │   └── OperatorBracketSniff.php
│   │   │   │   ├── Functions
│   │   │   │   │   ├── FunctionDeclarationArgumentSpacingSniff.php
│   │   │   │   │   ├── FunctionDeclarationSniff.php
│   │   │   │   │   ├── FunctionDuplicateArgumentSniff.php
│   │   │   │   │   ├── GlobalFunctionSniff.php
│   │   │   │   │   ├── LowercaseFunctionKeywordsSniff.php
│   │   │   │   │   └── MultiLineFunctionDeclarationSniff.php
│   │   │   │   ├── NamingConventions
│   │   │   │   │   ├── ValidFunctionNameSniff.php
│   │   │   │   │   └── ValidVariableNameSniff.php
│   │   │   │   ├── Objects
│   │   │   │   │   ├── DisallowObjectStringIndexSniff.php
│   │   │   │   │   ├── ObjectInstantiationSniff.php
│   │   │   │   │   └── ObjectMemberCommaSniff.php
│   │   │   │   ├── Operators
│   │   │   │   │   ├── ComparisonOperatorUsageSniff.php
│   │   │   │   │   ├── IncrementDecrementUsageSniff.php
│   │   │   │   │   └── ValidLogicalOperatorsSniff.php
│   │   │   │   ├── PHP
│   │   │   │   │   ├── CommentedOutCodeSniff.php
│   │   │   │   │   ├── DisallowBooleanStatementSniff.php
│   │   │   │   │   ├── DisallowComparisonAssignmentSniff.php
│   │   │   │   │   ├── DisallowInlineIfSniff.php
│   │   │   │   │   ├── DisallowMultipleAssignmentsSniff.php
│   │   │   │   │   ├── DisallowObEndFlushSniff.php
│   │   │   │   │   ├── DisallowSizeFunctionsInLoopsSniff.php
│   │   │   │   │   ├── DiscouragedFunctionsSniff.php
│   │   │   │   │   ├── EmbeddedPhpSniff.php
│   │   │   │   │   ├── EvalSniff.php
│   │   │   │   │   ├── ForbiddenFunctionsSniff.php
│   │   │   │   │   ├── GlobalKeywordSniff.php
│   │   │   │   │   ├── HeredocSniff.php
│   │   │   │   │   ├── InnerFunctionsSniff.php
│   │   │   │   │   ├── LowercasePHPFunctionsSniff.php
│   │   │   │   │   └── NonExecutableCodeSniff.php
│   │   │   │   ├── Scope
│   │   │   │   │   ├── MemberVarScopeSniff.php
│   │   │   │   │   ├── MethodScopeSniff.php
│   │   │   │   │   └── StaticThisUsageSniff.php
│   │   │   │   ├── Strings
│   │   │   │   │   ├── ConcatenationSpacingSniff.php
│   │   │   │   │   ├── DoubleQuoteUsageSniff.php
│   │   │   │   │   └── EchoedStringsSniff.php
│   │   │   │   └── WhiteSpace
│   │   │   │   ├── CastSpacingSniff.php
│   │   │   │   ├── ControlStructureSpacingSniff.php
│   │   │   │   ├── FunctionClosingBraceSpaceSniff.php
│   │   │   │   ├── FunctionOpeningBraceSpaceSniff.php
│   │   │   │   ├── FunctionSpacingSniff.php
│   │   │   │   ├── LanguageConstructSpacingSniff.php
│   │   │   │   ├── LogicalOperatorSpacingSniff.php
│   │   │   │   ├── MemberVarSpacingSniff.php
│   │   │   │   ├── ObjectOperatorSpacingSniff.php
│   │   │   │   ├── OperatorSpacingSniff.php
│   │   │   │   ├── PropertyLabelSpacingSniff.php
│   │   │   │   ├── ScopeClosingBraceSniff.php
│   │   │   │   ├── ScopeKeywordSpacingSniff.php
│   │   │   │   ├── SemicolonSpacingSniff.php
│   │   │   │   └── SuperfluousWhitespaceSniff.php
│   │   │   └── Zend
│   │   │   ├── Docs
│   │   │   │   ├── Debug
│   │   │   │   │   └── CodeAnalyzerStandard.xml
│   │   │   │   ├── Files
│   │   │   │   │   └── ClosingTagStandard.xml
│   │   │   │   └── NamingConventions
│   │   │   │   └── ValidVariableNameStandard.xml
│   │   │   ├── ruleset.xml
│   │   │   └── Sniffs
│   │   │   ├── Debug
│   │   │   │   └── CodeAnalyzerSniff.php
│   │   │   ├── Files
│   │   │   │   └── ClosingTagSniff.php
│   │   │   └── NamingConventions
│   │   │   └── ValidVariableNameSniff.php
│   │   ├── Tokenizers
│   │   │   ├── Comment.php
│   │   │   ├── CSS.php
│   │   │   ├── JS.php
│   │   │   └── PHP.php
│   │   └── Tokens.php
│   ├── CodeSniffer.conf.dist
│   ├── CodeSniffer.php
│   ├── composer.json
│   ├── CONTRIBUTING.md
│   ├── licence.txt
│   ├── phpcs.xml.dist
│   ├── README.md
│   └── scripts
│   ├── build-phar.php
│   ├── phpcbf
│   ├── phpcbf.bat
│   ├── phpcs
│   ├── phpcs.bat
│   └── phpcs-svn-pre-commit
├── symfony
│   ├── config
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── ConfigCacheFactoryInterface.php
│   │   ├── ConfigCacheFactory.php
│   │   ├── ConfigCacheInterface.php
│   │   ├── ConfigCache.php
│   │   ├── Definition
│   │   │   ├── ArrayNode.php
│   │   │   ├── BaseNode.php
│   │   │   ├── BooleanNode.php
│   │   │   ├── Builder
│   │   │   │   ├── ArrayNodeDefinition.php
│   │   │   │   ├── BooleanNodeDefinition.php
│   │   │   │   ├── BuilderAwareInterface.php
│   │   │   │   ├── EnumNodeDefinition.php
│   │   │   │   ├── ExprBuilder.php
│   │   │   │   ├── FloatNodeDefinition.php
│   │   │   │   ├── IntegerNodeDefinition.php
│   │   │   │   ├── MergeBuilder.php
│   │   │   │   ├── NodeBuilder.php
│   │   │   │   ├── NodeDefinition.php
│   │   │   │   ├── NodeParentInterface.php
│   │   │   │   ├── NormalizationBuilder.php
│   │   │   │   ├── NumericNodeDefinition.php
│   │   │   │   ├── ParentNodeDefinitionInterface.php
│   │   │   │   ├── ScalarNodeDefinition.php
│   │   │   │   ├── TreeBuilder.php
│   │   │   │   ├── ValidationBuilder.php
│   │   │   │   └── VariableNodeDefinition.php
│   │   │   ├── ConfigurationInterface.php
│   │   │   ├── Dumper
│   │   │   │   ├── XmlReferenceDumper.php
│   │   │   │   └── YamlReferenceDumper.php
│   │   │   ├── EnumNode.php
│   │   │   ├── Exception
│   │   │   │   ├── DuplicateKeyException.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── ForbiddenOverwriteException.php
│   │   │   │   ├── InvalidConfigurationException.php
│   │   │   │   ├── InvalidDefinitionException.php
│   │   │   │   ├── InvalidTypeException.php
│   │   │   │   ├── TreeWithoutRootNodeException.php
│   │   │   │   └── UnsetKeyException.php
│   │   │   ├── FloatNode.php
│   │   │   ├── IntegerNode.php
│   │   │   ├── NodeInterface.php
│   │   │   ├── NumericNode.php
│   │   │   ├── Processor.php
│   │   │   ├── PrototypedArrayNode.php
│   │   │   ├── PrototypeNodeInterface.php
│   │   │   ├── ScalarNode.php
│   │   │   └── VariableNode.php
│   │   ├── Exception
│   │   │   ├── FileLoaderImportCircularReferenceException.php
│   │   │   ├── FileLoaderLoadException.php
│   │   │   ├── FileLocatorFileNotFoundException.php
│   │   │   └── LoaderLoadException.php
│   │   ├── FileLocatorInterface.php
│   │   ├── FileLocator.php
│   │   ├── LICENSE
│   │   ├── Loader
│   │   │   ├── DelegatingLoader.php
│   │   │   ├── FileLoader.php
│   │   │   ├── GlobFileLoader.php
│   │   │   ├── LoaderInterface.php
│   │   │   ├── Loader.php
│   │   │   ├── LoaderResolverInterface.php
│   │   │   └── LoaderResolver.php
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── Resource
│   │   │   ├── ClassExistenceResource.php
│   │   │   ├── ComposerResource.php
│   │   │   ├── DirectoryResource.php
│   │   │   ├── FileExistenceResource.php
│   │   │   ├── FileResource.php
│   │   │   ├── GlobResource.php
│   │   │   ├── ReflectionClassResource.php
│   │   │   ├── ResourceInterface.php
│   │   │   ├── SelfCheckingResourceChecker.php
│   │   │   └── SelfCheckingResourceInterface.php
│   │   ├── ResourceCheckerConfigCacheFactory.php
│   │   ├── ResourceCheckerConfigCache.php
│   │   ├── ResourceCheckerInterface.php
│   │   ├── Tests
│   │   │   ├── ConfigCacheFactoryTest.php
│   │   │   ├── ConfigCacheTest.php
│   │   │   ├── Definition
│   │   │   │   ├── ArrayNodeTest.php
│   │   │   │   ├── BaseNodeTest.php
│   │   │   │   ├── BooleanNodeTest.php
│   │   │   │   ├── Builder
│   │   │   │   │   ├── ArrayNodeDefinitionTest.php
│   │   │   │   │   ├── BooleanNodeDefinitionTest.php
│   │   │   │   │   ├── EnumNodeDefinitionTest.php
│   │   │   │   │   ├── ExprBuilderTest.php
│   │   │   │   │   ├── NodeBuilderTest.php
│   │   │   │   │   ├── NodeDefinitionTest.php
│   │   │   │   │   ├── NumericNodeDefinitionTest.php
│   │   │   │   │   └── TreeBuilderTest.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── XmlReferenceDumperTest.php
│   │   │   │   │   └── YamlReferenceDumperTest.php
│   │   │   │   ├── EnumNodeTest.php
│   │   │   │   ├── FinalizationTest.php
│   │   │   │   ├── FloatNodeTest.php
│   │   │   │   ├── IntegerNodeTest.php
│   │   │   │   ├── MergeTest.php
│   │   │   │   ├── NormalizationTest.php
│   │   │   │   ├── PrototypedArrayNodeTest.php
│   │   │   │   └── ScalarNodeTest.php
│   │   │   ├── Exception
│   │   │   │   └── LoaderLoadExceptionTest.php
│   │   │   ├── FileLocatorTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── Again
│   │   │   │   │   └── foo.xml
│   │   │   │   ├── BadParent.php
│   │   │   │   ├── BarNode.php
│   │   │   │   ├── Builder
│   │   │   │   │   ├── BarNodeDefinition.php
│   │   │   │   │   ├── NodeBuilder.php
│   │   │   │   │   └── VariableNodeDefinition.php
│   │   │   │   ├── Configuration
│   │   │   │   │   └── ExampleConfiguration.php
│   │   │   │   ├── Exclude
│   │   │   │   │   ├── AnExcludedFile.txt
│   │   │   │   │   └── ExcludeToo
│   │   │   │   │   └── AnotheExcludedFile.txt
│   │   │   │   ├── foo.xml
│   │   │   │   ├── Resource
│   │   │   │   │   └── ConditionalClass.php
│   │   │   │   └── Util
│   │   │   │   ├── document_type.xml
│   │   │   │   ├── invalid_schema.xml
│   │   │   │   ├── invalid.xml
│   │   │   │   ├── schema.xsd
│   │   │   │   └── valid.xml
│   │   │   ├── Loader
│   │   │   │   ├── DelegatingLoaderTest.php
│   │   │   │   ├── FileLoaderTest.php
│   │   │   │   ├── LoaderResolverTest.php
│   │   │   │   └── LoaderTest.php
│   │   │   ├── Resource
│   │   │   │   ├── ClassExistenceResourceTest.php
│   │   │   │   ├── ComposerResourceTest.php
│   │   │   │   ├── DirectoryResourceTest.php
│   │   │   │   ├── FileExistenceResourceTest.php
│   │   │   │   ├── FileResourceTest.php
│   │   │   │   ├── GlobResourceTest.php
│   │   │   │   ├── ReflectionClassResourceTest.php
│   │   │   │   └── ResourceStub.php
│   │   │   ├── ResourceCheckerConfigCacheTest.php
│   │   │   └── Util
│   │   │   └── XmlUtilsTest.php
│   │   └── Util
│   │   ├── Exception
│   │   │   ├── InvalidXmlException.php
│   │   │   └── XmlParsingException.php
│   │   └── XmlUtils.php
│   ├── console
│   │   ├── Application.php
│   │   ├── CHANGELOG.md
│   │   ├── Command
│   │   │   ├── Command.php
│   │   │   ├── HelpCommand.php
│   │   │   ├── ListCommand.php
│   │   │   └── LockableTrait.php
│   │   ├── CommandLoader
│   │   │   ├── CommandLoaderInterface.php
│   │   │   ├── ContainerCommandLoader.php
│   │   │   └── FactoryCommandLoader.php
│   │   ├── composer.json
│   │   ├── ConsoleEvents.php
│   │   ├── DependencyInjection
│   │   │   └── AddConsoleCommandPass.php
│   │   ├── Descriptor
│   │   │   ├── ApplicationDescription.php
│   │   │   ├── DescriptorInterface.php
│   │   │   ├── Descriptor.php
│   │   │   ├── JsonDescriptor.php
│   │   │   ├── MarkdownDescriptor.php
│   │   │   ├── TextDescriptor.php
│   │   │   └── XmlDescriptor.php
│   │   ├── Event
│   │   │   ├── ConsoleCommandEvent.php
│   │   │   ├── ConsoleErrorEvent.php
│   │   │   ├── ConsoleEvent.php
│   │   │   └── ConsoleTerminateEvent.php
│   │   ├── EventListener
│   │   │   └── ErrorListener.php
│   │   ├── Exception
│   │   │   ├── CommandNotFoundException.php
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── InvalidOptionException.php
│   │   │   ├── LogicException.php
│   │   │   ├── NamespaceNotFoundException.php
│   │   │   └── RuntimeException.php
│   │   ├── Formatter
│   │   │   ├── OutputFormatterInterface.php
│   │   │   ├── OutputFormatter.php
│   │   │   ├── OutputFormatterStyleInterface.php
│   │   │   ├── OutputFormatterStyle.php
│   │   │   ├── OutputFormatterStyleStack.php
│   │   │   └── WrappableOutputFormatterInterface.php
│   │   ├── Helper
│   │   │   ├── DebugFormatterHelper.php
│   │   │   ├── DescriptorHelper.php
│   │   │   ├── FormatterHelper.php
│   │   │   ├── HelperInterface.php
│   │   │   ├── Helper.php
│   │   │   ├── HelperSet.php
│   │   │   ├── InputAwareHelper.php
│   │   │   ├── ProcessHelper.php
│   │   │   ├── ProgressBar.php
│   │   │   ├── ProgressIndicator.php
│   │   │   ├── QuestionHelper.php
│   │   │   ├── SymfonyQuestionHelper.php
│   │   │   ├── TableCell.php
│   │   │   ├── Table.php
│   │   │   ├── TableRows.php
│   │   │   ├── TableSeparator.php
│   │   │   └── TableStyle.php
│   │   ├── Input
│   │   │   ├── ArgvInput.php
│   │   │   ├── ArrayInput.php
│   │   │   ├── InputArgument.php
│   │   │   ├── InputAwareInterface.php
│   │   │   ├── InputDefinition.php
│   │   │   ├── InputInterface.php
│   │   │   ├── InputOption.php
│   │   │   ├── Input.php
│   │   │   ├── StreamableInputInterface.php
│   │   │   └── StringInput.php
│   │   ├── LICENSE
│   │   ├── Logger
│   │   │   └── ConsoleLogger.php
│   │   ├── Output
│   │   │   ├── BufferedOutput.php
│   │   │   ├── ConsoleOutputInterface.php
│   │   │   ├── ConsoleOutput.php
│   │   │   ├── ConsoleSectionOutput.php
│   │   │   ├── NullOutput.php
│   │   │   ├── OutputInterface.php
│   │   │   ├── Output.php
│   │   │   └── StreamOutput.php
│   │   ├── phpunit.xml.dist
│   │   ├── Question
│   │   │   ├── ChoiceQuestion.php
│   │   │   ├── ConfirmationQuestion.php
│   │   │   └── Question.php
│   │   ├── README.md
│   │   ├── Resources
│   │   │   └── bin
│   │   │   └── hiddeninput.exe
│   │   ├── Style
│   │   │   ├── OutputStyle.php
│   │   │   ├── StyleInterface.php
│   │   │   └── SymfonyStyle.php
│   │   ├── Terminal.php
│   │   ├── Tester
│   │   │   ├── ApplicationTester.php
│   │   │   ├── CommandTester.php
│   │   │   └── TesterTrait.php
│   │   └── Tests
│   │   ├── ApplicationTest.php
│   │   ├── Command
│   │   │   ├── CommandTest.php
│   │   │   ├── HelpCommandTest.php
│   │   │   ├── ListCommandTest.php
│   │   │   └── LockableTraitTest.php
│   │   ├── CommandLoader
│   │   │   ├── ContainerCommandLoaderTest.php
│   │   │   └── FactoryCommandLoaderTest.php
│   │   ├── DependencyInjection
│   │   │   └── AddConsoleCommandPassTest.php
│   │   ├── Descriptor
│   │   │   ├── AbstractDescriptorTest.php
│   │   │   ├── JsonDescriptorTest.php
│   │   │   ├── MarkdownDescriptorTest.php
│   │   │   ├── ObjectsProvider.php
│   │   │   ├── TextDescriptorTest.php
│   │   │   └── XmlDescriptorTest.php
│   │   ├── EventListener
│   │   │   └── ErrorListenerTest.php
│   │   ├── Fixtures
│   │   │   ├── application_1.json
│   │   │   ├── application_1.md
│   │   │   ├── application_1.txt
│   │   │   ├── application_1.xml
│   │   │   ├── application_2.json
│   │   │   ├── application_2.md
│   │   │   ├── application_2.txt
│   │   │   ├── application_2.xml
│   │   │   ├── application_filtered_namespace.txt
│   │   │   ├── application_gethelp.txt
│   │   │   ├── application_mbstring.md
│   │   │   ├── application_mbstring.txt
│   │   │   ├── application_renderexception1.txt
│   │   │   ├── application_renderexception2.txt
│   │   │   ├── application_renderexception3decorated.txt
│   │   │   ├── application_renderexception3.txt
│   │   │   ├── application_renderexception4.txt
│   │   │   ├── application_renderexception_doublewidth1decorated.txt
│   │   │   ├── application_renderexception_doublewidth1.txt
│   │   │   ├── application_renderexception_doublewidth2.txt
│   │   │   ├── application_renderexception_escapeslines.txt
│   │   │   ├── application_renderexception_linebreaks.txt
│   │   │   ├── application_run1.txt
│   │   │   ├── application_run2.txt
│   │   │   ├── application_run3.txt
│   │   │   ├── application_run4.txt
│   │   │   ├── BarBucCommand.php
│   │   │   ├── command_1.json
│   │   │   ├── command_1.md
│   │   │   ├── command_1.txt
│   │   │   ├── command_1.xml
│   │   │   ├── command_2.json
│   │   │   ├── command_2.md
│   │   │   ├── command_2.txt
│   │   │   ├── command_2.xml
│   │   │   ├── command_mbstring.md
│   │   │   ├── command_mbstring.txt
│   │   │   ├── DescriptorApplication1.php
│   │   │   ├── DescriptorApplication2.php
│   │   │   ├── DescriptorApplicationMbString.php
│   │   │   ├── DescriptorCommand1.php
│   │   │   ├── DescriptorCommand2.php
│   │   │   ├── DescriptorCommand3.php
│   │   │   ├── DescriptorCommand4.php
│   │   │   ├── DescriptorCommandMbString.php
│   │   │   ├── DummyOutput.php
│   │   │   ├── Foo1Command.php
│   │   │   ├── Foo2Command.php
│   │   │   ├── Foo3Command.php
│   │   │   ├── Foo4Command.php
│   │   │   ├── Foo5Command.php
│   │   │   ├── Foo6Command.php
│   │   │   ├── FoobarCommand.php
│   │   │   ├── FooCommand.php
│   │   │   ├── FooLock2Command.php
│   │   │   ├── FooLockCommand.php
│   │   │   ├── FooOptCommand.php
│   │   │   ├── FooSameCaseLowercaseCommand.php
│   │   │   ├── FooSameCaseUppercaseCommand.php
│   │   │   ├── FooSubnamespaced1Command.php
│   │   │   ├── FooSubnamespaced2Command.php
│   │   │   ├── FooWithoutAliasCommand.php
│   │   │   ├── input_argument_1.json
│   │   │   ├── input_argument_1.md
│   │   │   ├── input_argument_1.txt
│   │   │   ├── input_argument_1.xml
│   │   │   ├── input_argument_2.json
│   │   │   ├── input_argument_2.md
│   │   │   ├── input_argument_2.txt
│   │   │   ├── input_argument_2.xml
│   │   │   ├── input_argument_3.json
│   │   │   ├── input_argument_3.md
│   │   │   ├── input_argument_3.txt
│   │   │   ├── input_argument_3.xml
│   │   │   ├── input_argument_4.json
│   │   │   ├── input_argument_4.md
│   │   │   ├── input_argument_4.txt
│   │   │   ├── input_argument_4.xml
│   │   │   ├── input_argument_with_default_inf_value.json
│   │   │   ├── input_argument_with_default_inf_value.md
│   │   │   ├── input_argument_with_default_inf_value.txt
│   │   │   ├── input_argument_with_default_inf_value.xml
│   │   │   ├── input_argument_with_style.json
│   │   │   ├── input_argument_with_style.md
│   │   │   ├── input_argument_with_style.txt
│   │   │   ├── input_argument_with_style.xml
│   │   │   ├── input_definition_1.json
│   │   │   ├── input_definition_1.md
│   │   │   ├── input_definition_1.txt
│   │   │   ├── input_definition_1.xml
│   │   │   ├── input_definition_2.json
│   │   │   ├── input_definition_2.md
│   │   │   ├── input_definition_2.txt
│   │   │   ├── input_definition_2.xml
│   │   │   ├── input_definition_3.json
│   │   │   ├── input_definition_3.md
│   │   │   ├── input_definition_3.txt
│   │   │   ├── input_definition_3.xml
│   │   │   ├── input_definition_4.json
│   │   │   ├── input_definition_4.md
│   │   │   ├── input_definition_4.txt
│   │   │   ├── input_definition_4.xml
│   │   │   ├── input_option_1.json
│   │   │   ├── input_option_1.md
│   │   │   ├── input_option_1.txt
│   │   │   ├── input_option_1.xml
│   │   │   ├── input_option_2.json
│   │   │   ├── input_option_2.md
│   │   │   ├── input_option_2.txt
│   │   │   ├── input_option_2.xml
│   │   │   ├── input_option_3.json
│   │   │   ├── input_option_3.md
│   │   │   ├── input_option_3.txt
│   │   │   ├── input_option_3.xml
│   │   │   ├── input_option_4.json
│   │   │   ├── input_option_4.md
│   │   │   ├── input_option_4.txt
│   │   │   ├── input_option_4.xml
│   │   │   ├── input_option_5.json
│   │   │   ├── input_option_5.md
│   │   │   ├── input_option_5.txt
│   │   │   ├── input_option_5.xml
│   │   │   ├── input_option_6.json
│   │   │   ├── input_option_6.md
│   │   │   ├── input_option_6.txt
│   │   │   ├── input_option_6.xml
│   │   │   ├── input_option_with_default_inf_value.json
│   │   │   ├── input_option_with_default_inf_value.md
│   │   │   ├── input_option_with_default_inf_value.txt
│   │   │   ├── input_option_with_default_inf_value.xml
│   │   │   ├── input_option_with_style_array.json
│   │   │   ├── input_option_with_style_array.md
│   │   │   ├── input_option_with_style_array.txt
│   │   │   ├── input_option_with_style_array.xml
│   │   │   ├── input_option_with_style.json
│   │   │   ├── input_option_with_style.md
│   │   │   ├── input_option_with_style.txt
│   │   │   ├── input_option_with_style.xml
│   │   │   ├── Style
│   │   │   │   └── SymfonyStyle
│   │   │   │   ├── command
│   │   │   │   │   ├── command_0.php
│   │   │   │   │   ├── command_10.php
│   │   │   │   │   ├── command_11.php
│   │   │   │   │   ├── command_12.php
│   │   │   │   │   ├── command_13.php
│   │   │   │   │   ├── command_14.php
│   │   │   │   │   ├── command_15.php
│   │   │   │   │   ├── command_16.php
│   │   │   │   │   ├── command_17.php
│   │   │   │   │   ├── command_1.php
│   │   │   │   │   ├── command_2.php
│   │   │   │   │   ├── command_3.php
│   │   │   │   │   ├── command_4.php
│   │   │   │   │   ├── command_4_with_iterators.php
│   │   │   │   │   ├── command_5.php
│   │   │   │   │   ├── command_6.php
│   │   │   │   │   ├── command_7.php
│   │   │   │   │   ├── command_8.php
│   │   │   │   │   ├── command_9.php
│   │   │   │   │   └── interactive_command_1.php
│   │   │   │   └── output
│   │   │   │   ├── interactive_output_1.txt
│   │   │   │   ├── output_0.txt
│   │   │   │   ├── output_10.txt
│   │   │   │   ├── output_11.txt
│   │   │   │   ├── output_12.txt
│   │   │   │   ├── output_13.txt
│   │   │   │   ├── output_14.txt
│   │   │   │   ├── output_15.txt
│   │   │   │   ├── output_16.txt
│   │   │   │   ├── output_17.txt
│   │   │   │   ├── output_1.txt
│   │   │   │   ├── output_2.txt
│   │   │   │   ├── output_3.txt
│   │   │   │   ├── output_4.txt
│   │   │   │   ├── output_4_with_iterators.txt
│   │   │   │   ├── output_5.txt
│   │   │   │   ├── output_6.txt
│   │   │   │   ├── output_7.txt
│   │   │   │   ├── output_8.txt
│   │   │   │   └── output_9.txt
│   │   │   ├── TestCommand.php
│   │   │   ├── TestTiti.php
│   │   │   └── TestToto.php
│   │   ├── Formatter
│   │   │   ├── OutputFormatterStyleStackTest.php
│   │   │   ├── OutputFormatterStyleTest.php
│   │   │   └── OutputFormatterTest.php
│   │   ├── Helper
│   │   │   ├── AbstractQuestionHelperTest.php
│   │   │   ├── FormatterHelperTest.php
│   │   │   ├── HelperSetTest.php
│   │   │   ├── HelperTest.php
│   │   │   ├── ProcessHelperTest.php
│   │   │   ├── ProgressBarTest.php
│   │   │   ├── ProgressIndicatorTest.php
│   │   │   ├── QuestionHelperTest.php
│   │   │   ├── SymfonyQuestionHelperTest.php
│   │   │   ├── TableStyleTest.php
│   │   │   └── TableTest.php
│   │   ├── Input
│   │   │   ├── ArgvInputTest.php
│   │   │   ├── ArrayInputTest.php
│   │   │   ├── InputArgumentTest.php
│   │   │   ├── InputDefinitionTest.php
│   │   │   ├── InputOptionTest.php
│   │   │   ├── InputTest.php
│   │   │   └── StringInputTest.php
│   │   ├── Logger
│   │   │   └── ConsoleLoggerTest.php
│   │   ├── Output
│   │   │   ├── ConsoleOutputTest.php
│   │   │   ├── ConsoleSectionOutputTest.php
│   │   │   ├── NullOutputTest.php
│   │   │   ├── OutputTest.php
│   │   │   └── StreamOutputTest.php
│   │   ├── Question
│   │   │   └── ConfirmationQuestionTest.php
│   │   ├── Style
│   │   │   └── SymfonyStyleTest.php
│   │   ├── TerminalTest.php
│   │   └── Tester
│   │   ├── ApplicationTesterTest.php
│   │   └── CommandTesterTest.php
│   ├── contracts
│   │   ├── Cache
│   │   │   ├── CacheInterface.php
│   │   │   ├── CacheTrait.php
│   │   │   ├── CallbackInterface.php
│   │   │   ├── ItemInterface.php
│   │   │   └── TagAwareCacheInterface.php
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── Service
│   │   │   ├── ResetInterface.php
│   │   │   ├── ServiceLocatorTrait.php
│   │   │   ├── ServiceSubscriberInterface.php
│   │   │   └── ServiceSubscriberTrait.php
│   │   ├── Tests
│   │   │   ├── Cache
│   │   │   │   └── CacheTraitTest.php
│   │   │   ├── Service
│   │   │   │   ├── ServiceLocatorTest.php
│   │   │   │   └── ServiceSubscriberTraitTest.php
│   │   │   └── Translation
│   │   │   └── TranslatorTest.php
│   │   └── Translation
│   │   ├── LocaleAwareInterface.php
│   │   ├── TranslatorInterface.php
│   │   └── TranslatorTrait.php
│   ├── dependency-injection
│   │   ├── Alias.php
│   │   ├── Argument
│   │   │   ├── ArgumentInterface.php
│   │   │   ├── BoundArgument.php
│   │   │   ├── IteratorArgument.php
│   │   │   ├── ReferenceSetArgumentTrait.php
│   │   │   ├── RewindableGenerator.php
│   │   │   ├── ServiceClosureArgument.php
│   │   │   ├── ServiceLocatorArgument.php
│   │   │   ├── ServiceLocator.php
│   │   │   └── TaggedIteratorArgument.php
│   │   ├── CHANGELOG.md
│   │   ├── ChildDefinition.php
│   │   ├── Compiler
│   │   │   ├── AbstractRecursivePass.php
│   │   │   ├── AnalyzeServiceReferencesPass.php
│   │   │   ├── AutoAliasServicePass.php
│   │   │   ├── AutowirePass.php
│   │   │   ├── AutowireRequiredMethodsPass.php
│   │   │   ├── CheckArgumentsValidityPass.php
│   │   │   ├── CheckCircularReferencesPass.php
│   │   │   ├── CheckDefinitionValidityPass.php
│   │   │   ├── CheckExceptionOnInvalidReferenceBehaviorPass.php
│   │   │   ├── CheckReferenceValidityPass.php
│   │   │   ├── CompilerPassInterface.php
│   │   │   ├── Compiler.php
│   │   │   ├── DecoratorServicePass.php
│   │   │   ├── DefinitionErrorExceptionPass.php
│   │   │   ├── ExtensionCompilerPass.php
│   │   │   ├── InlineServiceDefinitionsPass.php
│   │   │   ├── MergeExtensionConfigurationPass.php
│   │   │   ├── PassConfig.php
│   │   │   ├── PriorityTaggedServiceTrait.php
│   │   │   ├── RegisterEnvVarProcessorsPass.php
│   │   │   ├── RegisterServiceSubscribersPass.php
│   │   │   ├── RemoveAbstractDefinitionsPass.php
│   │   │   ├── RemovePrivateAliasesPass.php
│   │   │   ├── RemoveUnusedDefinitionsPass.php
│   │   │   ├── RepeatablePassInterface.php
│   │   │   ├── RepeatedPass.php
│   │   │   ├── ReplaceAliasByActualDefinitionPass.php
│   │   │   ├── ResolveBindingsPass.php
│   │   │   ├── ResolveChildDefinitionsPass.php
│   │   │   ├── ResolveClassPass.php
│   │   │   ├── ResolveEnvPlaceholdersPass.php
│   │   │   ├── ResolveFactoryClassPass.php
│   │   │   ├── ResolveHotPathPass.php
│   │   │   ├── ResolveInstanceofConditionalsPass.php
│   │   │   ├── ResolveInvalidReferencesPass.php
│   │   │   ├── ResolveNamedArgumentsPass.php
│   │   │   ├── ResolveParameterPlaceHoldersPass.php
│   │   │   ├── ResolvePrivatesPass.php
│   │   │   ├── ResolveReferencesToAliasesPass.php
│   │   │   ├── ResolveServiceSubscribersPass.php
│   │   │   ├── ResolveTaggedIteratorArgumentPass.php
│   │   │   ├── ServiceLocatorTagPass.php
│   │   │   ├── ServiceReferenceGraphEdge.php
│   │   │   ├── ServiceReferenceGraphNode.php
│   │   │   ├── ServiceReferenceGraph.php
│   │   │   └── ValidateEnvPlaceholdersPass.php
│   │   ├── composer.json
│   │   ├── Config
│   │   │   ├── ContainerParametersResourceChecker.php
│   │   │   └── ContainerParametersResource.php
│   │   ├── ContainerAwareInterface.php
│   │   ├── ContainerAwareTrait.php
│   │   ├── ContainerBuilder.php
│   │   ├── ContainerInterface.php
│   │   ├── Container.php
│   │   ├── Definition.php
│   │   ├── Dumper
│   │   │   ├── DumperInterface.php
│   │   │   ├── Dumper.php
│   │   │   ├── GraphvizDumper.php
│   │   │   ├── PhpDumper.php
│   │   │   ├── XmlDumper.php
│   │   │   └── YamlDumper.php
│   │   ├── EnvVarProcessorInterface.php
│   │   ├── EnvVarProcessor.php
│   │   ├── Exception
│   │   │   ├── AutowiringFailedException.php
│   │   │   ├── BadMethodCallException.php
│   │   │   ├── EnvNotFoundException.php
│   │   │   ├── EnvParameterException.php
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── LogicException.php
│   │   │   ├── OutOfBoundsException.php
│   │   │   ├── ParameterCircularReferenceException.php
│   │   │   ├── ParameterNotFoundException.php
│   │   │   ├── RuntimeException.php
│   │   │   ├── ServiceCircularReferenceException.php
│   │   │   └── ServiceNotFoundException.php
│   │   ├── ExpressionLanguage.php
│   │   ├── ExpressionLanguageProvider.php
│   │   ├── Extension
│   │   │   ├── ConfigurationExtensionInterface.php
│   │   │   ├── ExtensionInterface.php
│   │   │   ├── Extension.php
│   │   │   └── PrependExtensionInterface.php
│   │   ├── LazyProxy
│   │   │   ├── Instantiator
│   │   │   │   ├── InstantiatorInterface.php
│   │   │   │   └── RealServiceInstantiator.php
│   │   │   ├── PhpDumper
│   │   │   │   ├── DumperInterface.php
│   │   │   │   └── NullDumper.php
│   │   │   └── ProxyHelper.php
│   │   ├── LICENSE
│   │   ├── Loader
│   │   │   ├── ClosureLoader.php
│   │   │   ├── Configurator
│   │   │   │   ├── AbstractConfigurator.php
│   │   │   │   ├── AbstractServiceConfigurator.php
│   │   │   │   ├── AliasConfigurator.php
│   │   │   │   ├── ContainerConfigurator.php
│   │   │   │   ├── DefaultsConfigurator.php
│   │   │   │   ├── InlineServiceConfigurator.php
│   │   │   │   ├── InstanceofConfigurator.php
│   │   │   │   ├── ParametersConfigurator.php
│   │   │   │   ├── PrototypeConfigurator.php
│   │   │   │   ├── ReferenceConfigurator.php
│   │   │   │   ├── ServiceConfigurator.php
│   │   │   │   ├── ServicesConfigurator.php
│   │   │   │   └── Traits
│   │   │   │   ├── AbstractTrait.php
│   │   │   │   ├── ArgumentTrait.php
│   │   │   │   ├── AutoconfigureTrait.php
│   │   │   │   ├── AutowireTrait.php
│   │   │   │   ├── BindTrait.php
│   │   │   │   ├── CallTrait.php
│   │   │   │   ├── ClassTrait.php
│   │   │   │   ├── ConfiguratorTrait.php
│   │   │   │   ├── DecorateTrait.php
│   │   │   │   ├── DeprecateTrait.php
│   │   │   │   ├── FactoryTrait.php
│   │   │   │   ├── FileTrait.php
│   │   │   │   ├── LazyTrait.php
│   │   │   │   ├── ParentTrait.php
│   │   │   │   ├── PropertyTrait.php
│   │   │   │   ├── PublicTrait.php
│   │   │   │   ├── ShareTrait.php
│   │   │   │   ├── SyntheticTrait.php
│   │   │   │   └── TagTrait.php
│   │   │   ├── DirectoryLoader.php
│   │   │   ├── FileLoader.php
│   │   │   ├── GlobFileLoader.php
│   │   │   ├── IniFileLoader.php
│   │   │   ├── PhpFileLoader.php
│   │   │   ├── schema
│   │   │   │   └── dic
│   │   │   │   └── services
│   │   │   │   └── services-1.0.xsd
│   │   │   ├── XmlFileLoader.php
│   │   │   └── YamlFileLoader.php
│   │   ├── ParameterBag
│   │   │   ├── ContainerBagInterface.php
│   │   │   ├── ContainerBag.php
│   │   │   ├── EnvPlaceholderParameterBag.php
│   │   │   ├── FrozenParameterBag.php
│   │   │   ├── ParameterBagInterface.php
│   │   │   └── ParameterBag.php
│   │   ├── Parameter.php
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── Reference.php
│   │   ├── ResettableContainerInterface.php
│   │   ├── ServiceLocator.php
│   │   ├── ServiceSubscriberInterface.php
│   │   ├── TaggedContainerInterface.php
│   │   ├── Tests
│   │   │   ├── Argument
│   │   │   │   └── RewindableGeneratorTest.php
│   │   │   ├── ChildDefinitionTest.php
│   │   │   ├── Compiler
│   │   │   │   ├── AnalyzeServiceReferencesPassTest.php
│   │   │   │   ├── AutoAliasServicePassTest.php
│   │   │   │   ├── AutowirePassTest.php
│   │   │   │   ├── AutowireRequiredMethodsPassTest.php
│   │   │   │   ├── CheckArgumentsValidityPassTest.php
│   │   │   │   ├── CheckCircularReferencesPassTest.php
│   │   │   │   ├── CheckDefinitionValidityPassTest.php
│   │   │   │   ├── CheckExceptionOnInvalidReferenceBehaviorPassTest.php
│   │   │   │   ├── CheckReferenceValidityPassTest.php
│   │   │   │   ├── CustomExpressionLanguageFunctionTest.php
│   │   │   │   ├── DecoratorServicePassTest.php
│   │   │   │   ├── DefinitionErrorExceptionPassTest.php
│   │   │   │   ├── ExtensionCompilerPassTest.php
│   │   │   │   ├── InlineServiceDefinitionsPassTest.php
│   │   │   │   ├── IntegrationTest.php
│   │   │   │   ├── MergeExtensionConfigurationPassTest.php
│   │   │   │   ├── OptionalServiceClass.php
│   │   │   │   ├── PassConfigTest.php
│   │   │   │   ├── PriorityTaggedServiceTraitTest.php
│   │   │   │   ├── RegisterEnvVarProcessorsPassTest.php
│   │   │   │   ├── RegisterServiceSubscribersPassTest.php
│   │   │   │   ├── RemoveUnusedDefinitionsPassTest.php
│   │   │   │   ├── ReplaceAliasByActualDefinitionPassTest.php
│   │   │   │   ├── ResolveBindingsPassTest.php
│   │   │   │   ├── ResolveChildDefinitionsPassTest.php
│   │   │   │   ├── ResolveClassPassTest.php
│   │   │   │   ├── ResolveFactoryClassPassTest.php
│   │   │   │   ├── ResolveHotPathPassTest.php
│   │   │   │   ├── ResolveInstanceofConditionalsPassTest.php
│   │   │   │   ├── ResolveInvalidReferencesPassTest.php
│   │   │   │   ├── ResolveNamedArgumentsPassTest.php
│   │   │   │   ├── ResolveParameterPlaceHoldersPassTest.php
│   │   │   │   ├── ResolvePrivatesPassTest.php
│   │   │   │   ├── ResolveReferencesToAliasesPassTest.php
│   │   │   │   ├── ResolveTaggedIteratorArgumentPassTest.php
│   │   │   │   ├── ServiceLocatorTagPassTest.php
│   │   │   │   └── ValidateEnvPlaceholdersPassTest.php
│   │   │   ├── Config
│   │   │   │   ├── ContainerParametersResourceCheckerTest.php
│   │   │   │   └── ContainerParametersResourceTest.php
│   │   │   ├── ContainerBuilderTest.php
│   │   │   ├── ContainerTest.php
│   │   │   ├── CrossCheckTest.php
│   │   │   ├── DefinitionTest.php
│   │   │   ├── Dumper
│   │   │   │   ├── GraphvizDumperTest.php
│   │   │   │   ├── PhpDumperTest.php
│   │   │   │   ├── XmlDumperTest.php
│   │   │   │   └── YamlDumperTest.php
│   │   │   ├── EnvVarProcessorTest.php
│   │   │   ├── Extension
│   │   │   │   └── ExtensionTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── array.json
│   │   │   │   ├── BarInterface.php
│   │   │   │   ├── Bar.php
│   │   │   │   ├── CaseSensitiveClass.php
│   │   │   │   ├── config
│   │   │   │   │   ├── anonymous.expected.yml
│   │   │   │   │   ├── anonymous.php
│   │   │   │   │   ├── basic.expected.yml
│   │   │   │   │   ├── basic.php
│   │   │   │   │   ├── child.expected.yml
│   │   │   │   │   ├── child.php
│   │   │   │   │   ├── defaults.expected.yml
│   │   │   │   │   ├── defaults.php
│   │   │   │   │   ├── factory_short_notation.php
│   │   │   │   │   ├── instanceof.expected.yml
│   │   │   │   │   ├── instanceof.php
│   │   │   │   │   ├── lazy_fqcn.expected.yml
│   │   │   │   │   ├── lazy_fqcn.php
│   │   │   │   │   ├── object.expected.yml
│   │   │   │   │   ├── object.php
│   │   │   │   │   ├── php7.expected.yml
│   │   │   │   │   ├── php7.php
│   │   │   │   │   ├── prototype_array.expected.yml
│   │   │   │   │   ├── prototype_array.php
│   │   │   │   │   ├── prototype.expected.yml
│   │   │   │   │   ├── prototype.php
│   │   │   │   │   ├── services9.php
│   │   │   │   │   └── services_autoconfigure_with_parent.php
│   │   │   │   ├── Container
│   │   │   │   │   ├── ConstructorWithMandatoryArgumentsContainer.php
│   │   │   │   │   ├── ConstructorWithOptionalArgumentsContainer.php
│   │   │   │   │   ├── ConstructorWithoutArgumentsContainer.php
│   │   │   │   │   └── NoConstructorContainer.php
│   │   │   │   ├── containers
│   │   │   │   │   ├── container10.php
│   │   │   │   │   ├── container11.php
│   │   │   │   │   ├── container12.php
│   │   │   │   │   ├── container13.php
│   │   │   │   │   ├── container14.php
│   │   │   │   │   ├── container15.php
│   │   │   │   │   ├── container16.php
│   │   │   │   │   ├── container17.php
│   │   │   │   │   ├── container19.php
│   │   │   │   │   ├── container21.php
│   │   │   │   │   ├── container24.php
│   │   │   │   │   ├── container33.php
│   │   │   │   │   ├── container8.php
│   │   │   │   │   ├── container9.php
│   │   │   │   │   ├── container_abstract.php
│   │   │   │   │   ├── container_almost_circular.php
│   │   │   │   │   ├── container_env_in_id.php
│   │   │   │   │   ├── container_inline_requires.php
│   │   │   │   │   ├── container_non_shared_lazy.php
│   │   │   │   │   ├── container_service_locator_argument.php
│   │   │   │   │   ├── container_uninitialized_ref.php
│   │   │   │   │   └── CustomContainer.php
│   │   │   │   ├── CustomDefinition.php
│   │   │   │   ├── DeprecatedClass.php
│   │   │   │   ├── directory
│   │   │   │   │   ├── import
│   │   │   │   │   │   └── import.yml
│   │   │   │   │   ├── recurse
│   │   │   │   │   │   ├── simple.ini
│   │   │   │   │   │   └── simple.yml
│   │   │   │   │   └── simple.php
│   │   │   │   ├── FactoryDummy.php
│   │   │   │   ├── FactoryDummyWithoutReturnTypes.php
│   │   │   │   ├── FooForCircularWithAddCalls.php
│   │   │   │   ├── graphviz
│   │   │   │   │   ├── services10-1.dot
│   │   │   │   │   ├── services10.dot
│   │   │   │   │   ├── services13.dot
│   │   │   │   │   ├── services14.dot
│   │   │   │   │   ├── services17.dot
│   │   │   │   │   ├── services18.dot
│   │   │   │   │   ├── services1.dot
│   │   │   │   │   ├── services9.dot
│   │   │   │   │   └── services_inline.dot
│   │   │   │   ├── includes
│   │   │   │   │   ├── autowiring_classes.php
│   │   │   │   │   ├── classes.php
│   │   │   │   │   ├── createphar.php
│   │   │   │   │   ├── foo_lazy.php
│   │   │   │   │   ├── foo.php
│   │   │   │   │   ├── FooVariadic.php
│   │   │   │   │   ├── HotPath
│   │   │   │   │   │   ├── C1.php
│   │   │   │   │   │   ├── C2.php
│   │   │   │   │   │   ├── C3.php
│   │   │   │   │   │   ├── I1.php
│   │   │   │   │   │   ├── P1.php
│   │   │   │   │   │   └── T1.php
│   │   │   │   │   ├── ProjectExtension.php
│   │   │   │   │   ├── ProjectWithXsdExtensionInPhar.phar
│   │   │   │   │   ├── ProjectWithXsdExtension.php
│   │   │   │   │   └── schema
│   │   │   │   │   └── project-1.0.xsd
│   │   │   │   ├── ini
│   │   │   │   │   ├── almostvalid.ini
│   │   │   │   │   ├── ini_with_wrong_ext.xml
│   │   │   │   │   ├── nonvalid.ini
│   │   │   │   │   ├── parameters1.ini
│   │   │   │   │   ├── parameters2.ini
│   │   │   │   │   ├── parameters.ini
│   │   │   │   │   └── types.ini
│   │   │   │   ├── NamedArgumentsDummy.php
│   │   │   │   ├── NamedArgumentsVariadicsDummy.php
│   │   │   │   ├── ParentNotExists.php
│   │   │   │   ├── php
│   │   │   │   │   ├── custom_container_class_constructor_without_arguments.php
│   │   │   │   │   ├── custom_container_class_with_mandatory_constructor_arguments.php
│   │   │   │   │   ├── custom_container_class_with_optional_constructor_arguments.php
│   │   │   │   │   ├── custom_container_class_without_constructor.php
│   │   │   │   │   ├── php_with_wrong_ext.yml
│   │   │   │   │   ├── services10.php
│   │   │   │   │   ├── services1-1.php
│   │   │   │   │   ├── services12.php
│   │   │   │   │   ├── services13.php
│   │   │   │   │   ├── services19.php
│   │   │   │   │   ├── services1.php
│   │   │   │   │   ├── services24.php
│   │   │   │   │   ├── services26.php
│   │   │   │   │   ├── services33.php
│   │   │   │   │   ├── services8.php
│   │   │   │   │   ├── services9_as_files.txt
│   │   │   │   │   ├── services9_compiled.php
│   │   │   │   │   ├── services_adawson.php
│   │   │   │   │   ├── services_almost_circular_private.php
│   │   │   │   │   ├── services_almost_circular_public.php
│   │   │   │   │   ├── services_array_params.php
│   │   │   │   │   ├── services_base64_env.php
│   │   │   │   │   ├── services_csv_env.php
│   │   │   │   │   ├── services_dedup_lazy_proxy.php
│   │   │   │   │   ├── services_deep_graph.php
│   │   │   │   │   ├── services_env_in_id.php
│   │   │   │   │   ├── services_errored_definition.php
│   │   │   │   │   ├── services_inline_requires.php
│   │   │   │   │   ├── services_inline_self_ref.php
│   │   │   │   │   ├── services_json_env.php
│   │   │   │   │   ├── services_locator.php
│   │   │   │   │   ├── services_non_shared_lazy_as_files.txt
│   │   │   │   │   ├── services_non_shared_lazy.php
│   │   │   │   │   ├── services_private_frozen.php
│   │   │   │   │   ├── services_private_in_expression.php
│   │   │   │   │   ├── services_rot13_env.php
│   │   │   │   │   ├── services_service_locator_argument.php
│   │   │   │   │   ├── services_subscriber.php
│   │   │   │   │   ├── services_tsantos.php
│   │   │   │   │   ├── services_uninitialized_ref.php
│   │   │   │   │   └── simple.php
│   │   │   │   ├── Prototype
│   │   │   │   │   ├── BadClasses
│   │   │   │   │   │   └── MissingParent.php
│   │   │   │   │   ├── FooInterface.php
│   │   │   │   │   ├── Foo.php
│   │   │   │   │   ├── OtherDir
│   │   │   │   │   │   ├── AnotherSub
│   │   │   │   │   │   │   └── DeeperBaz.php
│   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   ├── Component1
│   │   │   │   │   │   │   ├── Dir1
│   │   │   │   │   │   │   │   └── Service1.php
│   │   │   │   │   │   │   ├── Dir2
│   │   │   │   │   │   │   │   └── Service2.php
│   │   │   │   │   │   │   └── Dir3
│   │   │   │   │   │   │   └── Service3.php
│   │   │   │   │   │   └── Component2
│   │   │   │   │   │   ├── Dir1
│   │   │   │   │   │   │   └── Service4.php
│   │   │   │   │   │   └── Dir2
│   │   │   │   │   │   └── Service5.php
│   │   │   │   │   └── Sub
│   │   │   │   │   ├── BarInterface.php
│   │   │   │   │   ├── Bar.php
│   │   │   │   │   ├── NoLoadAbstractBar.php
│   │   │   │   │   ├── NoLoadBarInterface.php
│   │   │   │   │   └── NoLoadBarTrait.php
│   │   │   │   ├── SimilarArgumentsDummy.php
│   │   │   │   ├── StdClassDecorator.php
│   │   │   │   ├── StubbedTranslator.php
│   │   │   │   ├── TestDefinition1.php
│   │   │   │   ├── TestDefinition2.php
│   │   │   │   ├── TestDefinition3.php
│   │   │   │   ├── TestServiceSubscriberChild.php
│   │   │   │   ├── TestServiceSubscriberParent.php
│   │   │   │   ├── TestServiceSubscriber.php
│   │   │   │   ├── TestServiceSubscriberTrait.php
│   │   │   │   ├── xml
│   │   │   │   │   ├── class_from_id.xml
│   │   │   │   │   ├── extension1
│   │   │   │   │   │   └── services.xml
│   │   │   │   │   ├── extension2
│   │   │   │   │   │   └── services.xml
│   │   │   │   │   ├── extensions
│   │   │   │   │   │   ├── services1.xml
│   │   │   │   │   │   ├── services2.xml
│   │   │   │   │   │   ├── services3.xml
│   │   │   │   │   │   ├── services4.xml
│   │   │   │   │   │   ├── services5.xml
│   │   │   │   │   │   ├── services6.xml
│   │   │   │   │   │   └── services7.xml
│   │   │   │   │   ├── invalid_alias_definition.xml
│   │   │   │   │   ├── namespaces.xml
│   │   │   │   │   ├── nested_service_without_id.xml
│   │   │   │   │   ├── nonvalid.xml
│   │   │   │   │   ├── services10.xml
│   │   │   │   │   ├── services13.xml
│   │   │   │   │   ├── services14.xml
│   │   │   │   │   ├── services1.xml
│   │   │   │   │   ├── services21.xml
│   │   │   │   │   ├── services23.xml
│   │   │   │   │   ├── services24.xml
│   │   │   │   │   ├── services28.xml
│   │   │   │   │   ├── services2.xml
│   │   │   │   │   ├── services3.xml
│   │   │   │   │   ├── services4_bad_import.xml
│   │   │   │   │   ├── services4.xml
│   │   │   │   │   ├── services5.xml
│   │   │   │   │   ├── services6.xml
│   │   │   │   │   ├── services7.xml
│   │   │   │   │   ├── services8.xml
│   │   │   │   │   ├── services9.xml
│   │   │   │   │   ├── services_abstract.xml
│   │   │   │   │   ├── services_autoconfigure_with_parent.xml
│   │   │   │   │   ├── services_autoconfigure.xml
│   │   │   │   │   ├── services_bindings.xml
│   │   │   │   │   ├── services_case.xml
│   │   │   │   │   ├── services_defaults_with_parent.xml
│   │   │   │   │   ├── services_deprecated.xml
│   │   │   │   │   ├── services_dump_load.xml
│   │   │   │   │   ├── services_inline_not_candidate.xml
│   │   │   │   │   ├── services_instanceof_with_parent.xml
│   │   │   │   │   ├── services_instanceof.xml
│   │   │   │   │   ├── services_lazy_fqcn.xml
│   │   │   │   │   ├── services_named_args.xml
│   │   │   │   │   ├── services_prototype_array.xml
│   │   │   │   │   ├── services_prototype.xml
│   │   │   │   │   ├── services_tsantos.xml
│   │   │   │   │   ├── services_without_id.xml
│   │   │   │   │   ├── tag_with_empty_name.xml
│   │   │   │   │   ├── tag_without_name.xml
│   │   │   │   │   ├── withdoctype.xml
│   │   │   │   │   ├── with_key_outside_collection.xml
│   │   │   │   │   └── xml_with_wrong_ext.php
│   │   │   │   └── yaml
│   │   │   │   ├── anonymous_services_alias.yml
│   │   │   │   ├── anonymous_services_in_instanceof.yml
│   │   │   │   ├── anonymous_services_in_parameters.yml
│   │   │   │   ├── anonymous_services.yml
│   │   │   │   ├── bad_alias.yml
│   │   │   │   ├── bad_calls.yml
│   │   │   │   ├── bad_decorates.yml
│   │   │   │   ├── bad_empty_defaults.yml
│   │   │   │   ├── bad_empty_instanceof.yml
│   │   │   │   ├── bad_format.yml
│   │   │   │   ├── bad_imports.yml
│   │   │   │   ├── bad_import.yml
│   │   │   │   ├── bad_keyword.yml
│   │   │   │   ├── bad_parameters.yml
│   │   │   │   ├── bad_parent.yml
│   │   │   │   ├── bad_services.yml
│   │   │   │   ├── bad_service.yml
│   │   │   │   ├── badtag1.yml
│   │   │   │   ├── badtag2.yml
│   │   │   │   ├── badtag3.yml
│   │   │   │   ├── bar
│   │   │   │   │   └── services.yml
│   │   │   │   ├── class_from_id.yml
│   │   │   │   ├── foo
│   │   │   │   │   └── services.yml
│   │   │   │   ├── integration
│   │   │   │   │   ├── autoconfigure_child_not_applied
│   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── autoconfigure_parent_child
│   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── autoconfigure_parent_child_tags
│   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── child_parent
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── defaults_child_tags
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── defaults_instanceof_importance
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── defaults_parent_child
│   │   │   │   │   │   ├── _child.yml
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   ├── instanceof_and_calls
│   │   │   │   │   │   ├── expected.yml
│   │   │   │   │   │   └── main.yml
│   │   │   │   │   └── instanceof_parent_child
│   │   │   │   │   ├── _child.yml
│   │   │   │   │   ├── expected.yml
│   │   │   │   │   └── main.yml
│   │   │   │   ├── legacy_invalid_alias_definition.yml
│   │   │   │   ├── nonvalid1.yml
│   │   │   │   ├── nonvalid2.yml
│   │   │   │   ├── null_config.yml
│   │   │   │   ├── services10.yml
│   │   │   │   ├── services11.yml
│   │   │   │   ├── services13.yml
│   │   │   │   ├── services14.yml
│   │   │   │   ├── services1.yml
│   │   │   │   ├── services21.yml
│   │   │   │   ├── services23.yml
│   │   │   │   ├── services24.yml
│   │   │   │   ├── services26.yml
│   │   │   │   ├── services28.yml
│   │   │   │   ├── services2.yml
│   │   │   │   ├── services31_invalid_tags.yml
│   │   │   │   ├── services3.yml
│   │   │   │   ├── services4_bad_import.yml
│   │   │   │   ├── services4.yml
│   │   │   │   ├── services6.yml
│   │   │   │   ├── services7.yml
│   │   │   │   ├── services8.yml
│   │   │   │   ├── services9.yml
│   │   │   │   ├── services_adawson.yml
│   │   │   │   ├── services_autoconfigure_with_parent.yml
│   │   │   │   ├── services_autoconfigure.yml
│   │   │   │   ├── services_bindings.yml
│   │   │   │   ├── services_case.yml
│   │   │   │   ├── services_configurator_short_syntax.yml
│   │   │   │   ├── services_deep_graph.yml
│   │   │   │   ├── services_defaults_with_parent.yml
│   │   │   │   ├── services_dump_load.yml
│   │   │   │   ├── services_inline.yml
│   │   │   │   ├── services_instanceof_with_parent.yml
│   │   │   │   ├── services_instanceof.yml
│   │   │   │   ├── services_lazy_fqcn.yml
│   │   │   │   ├── services_named_args.yml
│   │   │   │   ├── services_prototype_namespace_without_resource.yml
│   │   │   │   ├── services_prototype_namespace.yml
│   │   │   │   ├── services_prototype.yml
│   │   │   │   ├── services_underscore.yml
│   │   │   │   ├── tag_name_empty_string.yml
│   │   │   │   ├── tag_name_no_string.yml
│   │   │   │   ├── tag_name_only.yml
│   │   │   │   └── yaml_with_wrong_ext.ini
│   │   │   ├── LazyProxy
│   │   │   │   ├── Instantiator
│   │   │   │   │   └── RealServiceInstantiatorTest.php
│   │   │   │   └── PhpDumper
│   │   │   │   └── NullDumperTest.php
│   │   │   ├── Loader
│   │   │   │   ├── ClosureLoaderTest.php
│   │   │   │   ├── DirectoryLoaderTest.php
│   │   │   │   ├── FileLoaderTest.php
│   │   │   │   ├── GlobFileLoaderTest.php
│   │   │   │   ├── IniFileLoaderTest.php
│   │   │   │   ├── LoaderResolverTest.php
│   │   │   │   ├── PhpFileLoaderTest.php
│   │   │   │   ├── XmlFileLoaderTest.php
│   │   │   │   └── YamlFileLoaderTest.php
│   │   │   ├── ParameterBag
│   │   │   │   ├── ContainerBagTest.php
│   │   │   │   ├── EnvPlaceholderParameterBagTest.php
│   │   │   │   ├── FrozenParameterBagTest.php
│   │   │   │   └── ParameterBagTest.php
│   │   │   ├── ParameterTest.php
│   │   │   ├── ReferenceTest.php
│   │   │   └── ServiceLocatorTest.php
│   │   ├── TypedReference.php
│   │   └── Variable.php
│   ├── event-dispatcher
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── Debug
│   │   │   ├── TraceableEventDispatcherInterface.php
│   │   │   ├── TraceableEventDispatcher.php
│   │   │   └── WrappedListener.php
│   │   ├── DependencyInjection
│   │   │   └── RegisterListenersPass.php
│   │   ├── EventDispatcherInterface.php
│   │   ├── EventDispatcher.php
│   │   ├── Event.php
│   │   ├── EventSubscriberInterface.php
│   │   ├── GenericEvent.php
│   │   ├── ImmutableEventDispatcher.php
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   └── Tests
│   │   ├── AbstractEventDispatcherTest.php
│   │   ├── Debug
│   │   │   ├── TraceableEventDispatcherTest.php
│   │   │   └── WrappedListenerTest.php
│   │   ├── DependencyInjection
│   │   │   └── RegisterListenersPassTest.php
│   │   ├── EventDispatcherTest.php
│   │   ├── EventTest.php
│   │   ├── GenericEventTest.php
│   │   └── ImmutableEventDispatcherTest.php
│   ├── filesystem
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── Exception
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── FileNotFoundException.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── IOExceptionInterface.php
│   │   │   └── IOException.php
│   │   ├── Filesystem.php
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   └── Tests
│   │   ├── ExceptionTest.php
│   │   ├── FilesystemTestCase.php
│   │   ├── FilesystemTest.php
│   │   └── Fixtures
│   │   └── MockStream
│   │   └── MockStream.php
│   ├── finder
│   │   ├── CHANGELOG.md
│   │   ├── Comparator
│   │   │   ├── Comparator.php
│   │   │   ├── DateComparator.php
│   │   │   └── NumberComparator.php
│   │   ├── composer.json
│   │   ├── Exception
│   │   │   └── AccessDeniedException.php
│   │   ├── Finder.php
│   │   ├── Glob.php
│   │   ├── Iterator
│   │   │   ├── CustomFilterIterator.php
│   │   │   ├── DateRangeFilterIterator.php
│   │   │   ├── DepthRangeFilterIterator.php
│   │   │   ├── ExcludeDirectoryFilterIterator.php
│   │   │   ├── FilecontentFilterIterator.php
│   │   │   ├── FilenameFilterIterator.php
│   │   │   ├── FileTypeFilterIterator.php
│   │   │   ├── MultiplePcreFilterIterator.php
│   │   │   ├── PathFilterIterator.php
│   │   │   ├── RecursiveDirectoryIterator.php
│   │   │   ├── SizeRangeFilterIterator.php
│   │   │   └── SortableIterator.php
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── SplFileInfo.php
│   │   └── Tests
│   │   ├── Comparator
│   │   │   ├── ComparatorTest.php
│   │   │   ├── DateComparatorTest.php
│   │   │   └── NumberComparatorTest.php
│   │   ├── FinderTest.php
│   │   ├── Fixtures
│   │   │   ├── A
│   │   │   │   ├── a.dat
│   │   │   │   └── B
│   │   │   │   ├── ab.dat
│   │   │   │   └── C
│   │   │   │   └── abc.dat
│   │   │   ├── copy
│   │   │   │   └── A
│   │   │   │   ├── a.dat.copy
│   │   │   │   └── B
│   │   │   │   ├── ab.dat.copy
│   │   │   │   └── C
│   │   │   │   └── abc.dat.copy
│   │   │   ├── dolor.txt
│   │   │   ├── ipsum.txt
│   │   │   ├── lorem.txt
│   │   │   ├── one
│   │   │   │   ├── a
│   │   │   │   └── b
│   │   │   │   ├── c.neon
│   │   │   │   └── d.neon
│   │   │   ├── r+e.gex[c]a(r)s
│   │   │   │   └── dir
│   │   │   │   └── bar.dat
│   │   │   └── with space
│   │   │   └── foo.txt
│   │   ├── GlobTest.php
│   │   └── Iterator
│   │   ├── CustomFilterIteratorTest.php
│   │   ├── DateRangeFilterIteratorTest.php
│   │   ├── DepthRangeFilterIteratorTest.php
│   │   ├── ExcludeDirectoryFilterIteratorTest.php
│   │   ├── FilecontentFilterIteratorTest.php
│   │   ├── FilenameFilterIteratorTest.php
│   │   ├── FileTypeFilterIteratorTest.php
│   │   ├── Iterator.php
│   │   ├── IteratorTestCase.php
│   │   ├── MockFileListIterator.php
│   │   ├── MockSplFileInfo.php
│   │   ├── MultiplePcreFilterIteratorTest.php
│   │   ├── PathFilterIteratorTest.php
│   │   ├── RealIteratorTestCase.php
│   │   ├── RecursiveDirectoryIteratorTest.php
│   │   ├── SizeRangeFilterIteratorTest.php
│   │   └── SortableIteratorTest.php
│   ├── options-resolver
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── Debug
│   │   │   └── OptionsResolverIntrospector.php
│   │   ├── Exception
│   │   │   ├── AccessException.php
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── InvalidOptionsException.php
│   │   │   ├── MissingOptionsException.php
│   │   │   ├── NoConfigurationException.php
│   │   │   ├── NoSuchOptionException.php
│   │   │   ├── OptionDefinitionException.php
│   │   │   └── UndefinedOptionsException.php
│   │   ├── LICENSE
│   │   ├── Options.php
│   │   ├── OptionsResolver.php
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   └── Tests
│   │   ├── Debug
│   │   │   └── OptionsResolverIntrospectorTest.php
│   │   └── OptionsResolverTest.php
│   ├── polyfill-ctype
│   │   ├── bootstrap.php
│   │   ├── composer.json
│   │   ├── Ctype.php
│   │   ├── LICENSE
│   │   └── README.md
│   ├── polyfill-mbstring
│   │   ├── bootstrap.php
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── Mbstring.php
│   │   ├── README.md
│   │   └── Resources
│   │   └── unidata
│   │   ├── lowerCase.php
│   │   ├── titleCaseRegexp.php
│   │   └── upperCase.php
│   ├── polyfill-php70
│   │   ├── bootstrap.php
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── Php70.php
│   │   ├── README.md
│   │   └── Resources
│   │   └── stubs
│   │   ├── ArithmeticError.php
│   │   ├── AssertionError.php
│   │   ├── DivisionByZeroError.php
│   │   ├── Error.php
│   │   ├── ParseError.php
│   │   ├── SessionUpdateTimestampHandlerInterface.php
│   │   └── TypeError.php
│   ├── polyfill-php72
│   │   ├── bootstrap.php
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── Php72.php
│   │   └── README.md
│   ├── process
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── Exception
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── LogicException.php
│   │   │   ├── ProcessFailedException.php
│   │   │   ├── ProcessSignaledException.php
│   │   │   ├── ProcessTimedOutException.php
│   │   │   └── RuntimeException.php
│   │   ├── ExecutableFinder.php
│   │   ├── InputStream.php
│   │   ├── LICENSE
│   │   ├── PhpExecutableFinder.php
│   │   ├── PhpProcess.php
│   │   ├── phpunit.xml.dist
│   │   ├── Pipes
│   │   │   ├── AbstractPipes.php
│   │   │   ├── PipesInterface.php
│   │   │   ├── UnixPipes.php
│   │   │   └── WindowsPipes.php
│   │   ├── Process.php
│   │   ├── ProcessUtils.php
│   │   ├── README.md
│   │   └── Tests
│   │   ├── ExecutableFinderTest.php
│   │   ├── KillableProcessWithOutput.php
│   │   ├── NonStopableProcess.php
│   │   ├── PhpExecutableFinderTest.php
│   │   ├── PhpProcessTest.php
│   │   ├── PipeStdinInStdoutStdErrStreamSelect.php
│   │   ├── ProcessFailedExceptionTest.php
│   │   ├── ProcessTest.php
│   │   └── SignalListener.php
│   ├── stopwatch
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── Section.php
│   │   ├── StopwatchEvent.php
│   │   ├── StopwatchPeriod.php
│   │   ├── Stopwatch.php
│   │   └── Tests
│   │   ├── StopwatchEventTest.php
│   │   ├── StopwatchPeriodTest.php
│   │   └── StopwatchTest.php
│   └── yaml
│   ├── CHANGELOG.md
│   ├── Command
│   │   └── LintCommand.php
│   ├── composer.json
│   ├── Dumper.php
│   ├── Escaper.php
│   ├── Exception
│   │   ├── DumpException.php
│   │   ├── ExceptionInterface.php
│   │   ├── ParseException.php
│   │   └── RuntimeException.php
│   ├── Inline.php
│   ├── LICENSE
│   ├── Parser.php
│   ├── phpunit.xml.dist
│   ├── README.md
│   ├── Tag
│   │   └── TaggedValue.php
│   ├── Tests
│   │   ├── Command
│   │   │   └── LintCommandTest.php
│   │   ├── DumperTest.php
│   │   ├── Fixtures
│   │   │   ├── arrow.gif
│   │   │   ├── booleanMappingKeys.yml
│   │   │   ├── embededPhp.yml
│   │   │   ├── escapedCharacters.yml
│   │   │   ├── index.yml
│   │   │   ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml
│   │   │   ├── multiple_lines_as_literal_block.yml
│   │   │   ├── nonStringKeys.yml
│   │   │   ├── not_readable.yml
│   │   │   ├── nullMappingKey.yml
│   │   │   ├── numericMappingKeys.yml
│   │   │   ├── sfComments.yml
│   │   │   ├── sfCompact.yml
│   │   │   ├── sfMergeKey.yml
│   │   │   ├── sfObjects.yml
│   │   │   ├── sfQuotes.yml
│   │   │   ├── sfTests.yml
│   │   │   ├── unindentedCollections.yml
│   │   │   ├── YtsAnchorAlias.yml
│   │   │   ├── YtsBasicTests.yml
│   │   │   ├── YtsBlockMapping.yml
│   │   │   ├── YtsDocumentSeparator.yml
│   │   │   ├── YtsErrorTests.yml
│   │   │   ├── YtsFlowCollections.yml
│   │   │   ├── YtsFoldedScalars.yml
│   │   │   ├── YtsNullsAndEmpties.yml
│   │   │   ├── YtsSpecificationExamples.yml
│   │   │   └── YtsTypeTransfers.yml
│   │   ├── InlineTest.php
│   │   ├── ParseExceptionTest.php
│   │   ├── ParserTest.php
│   │   └── YamlTest.php
│   ├── Unescaper.php
│   └── Yaml.php
├── tecnickcom
│   └── tcpdf
│   ├── CHANGELOG.TXT
│   ├── composer.json
│   ├── config
│   │   └── tcpdf_config.php
│   ├── examples
│   │   ├── barcodes
│   │   │   ├── example_1d_html.php
│   │   │   ├── example_1d_png.php
│   │   │   ├── example_1d_svgi.php
│   │   │   ├── example_1d_svg.php
│   │   │   ├── example_2d_datamatrix_html.php
│   │   │   ├── example_2d_datamatrix_png.php
│   │   │   ├── example_2d_datamatrix_svgi.php
│   │   │   ├── example_2d_datamatrix_svg.php
│   │   │   ├── example_2d_pdf417_html.php
│   │   │   ├── example_2d_pdf417_png.php
│   │   │   ├── example_2d_pdf417_svgi.php
│   │   │   ├── example_2d_pdf417_svg.php
│   │   │   ├── example_2d_qrcode_html.php
│   │   │   ├── example_2d_qrcode_png.php
│   │   │   ├── example_2d_qrcode_svgi.php
│   │   │   ├── example_2d_qrcode_svg.php
│   │   │   ├── tcpdf_barcodes_1d_include.php
│   │   │   └── tcpdf_barcodes_2d_include.php
│   │   ├── config
│   │   │   └── tcpdf_config_alt.php
│   │   ├── data
│   │   │   ├── cert
│   │   │   │   ├── tcpdf.crt
│   │   │   │   ├── tcpdf.fdf
│   │   │   │   └── tcpdf.p12
│   │   │   ├── chapter_demo_1.txt
│   │   │   ├── chapter_demo_2.txt
│   │   │   ├── table_data_demo.txt
│   │   │   └── utf8test.txt
│   │   ├── example_001.php
│   │   ├── example_002.php
│   │   ├── example_003.php
│   │   ├── example_004.php
│   │   ├── example_005.php
│   │   ├── example_006.php
│   │   ├── example_007.php
│   │   ├── example_008.php
│   │   ├── example_009.php
│   │   ├── example_010.php
│   │   ├── example_011.php
│   │   ├── example_012.pdf
│   │   ├── example_012.php
│   │   ├── example_013.php
│   │   ├── example_014.php
│   │   ├── example_015.php
│   │   ├── example_016.php
│   │   ├── example_017.php
│   │   ├── example_018.php
│   │   ├── example_019.php
│   │   ├── example_020.php
│   │   ├── example_021.php
│   │   ├── example_022.php
│   │   ├── example_023.php
│   │   ├── example_024.php
│   │   ├── example_025.php
│   │   ├── example_026.php
│   │   ├── example_027.php
│   │   ├── example_028.php
│   │   ├── example_029.php
│   │   ├── example_030.php
│   │   ├── example_031.php
│   │   ├── example_032.php
│   │   ├── example_033.php
│   │   ├── example_034.php
│   │   ├── example_035.php
│   │   ├── example_036.php
│   │   ├── example_037.php
│   │   ├── example_038.php
│   │   ├── example_039.php
│   │   ├── example_040.php
│   │   ├── example_041.php
│   │   ├── example_042.php
│   │   ├── example_043.php
│   │   ├── example_044.php
│   │   ├── example_045.php
│   │   ├── example_046.php
│   │   ├── example_047.php
│   │   ├── example_048.php
│   │   ├── example_049.php
│   │   ├── example_050.php
│   │   ├── example_051.php
│   │   ├── example_052.php
│   │   ├── example_053.php
│   │   ├── example_054.php
│   │   ├── example_055.php
│   │   ├── example_056.php
│   │   ├── example_057.php
│   │   ├── example_058.php
│   │   ├── example_059.php
│   │   ├── example_060.php
│   │   ├── example_061.php
│   │   ├── example_062.php
│   │   ├── example_063.php
│   │   ├── example_064.php
│   │   ├── example_065.php
│   │   ├── images
│   │   │   ├── alpha.png
│   │   │   ├── _blank.png
│   │   │   ├── image_demo.jpg
│   │   │   ├── image_with_alpha.png
│   │   │   ├── img.png
│   │   │   ├── logo_example.gif
│   │   │   ├── logo_example.jpg
│   │   │   ├── logo_example.png
│   │   │   ├── tcpdf_box.ai
│   │   │   ├── tcpdf_box.svg
│   │   │   ├── tcpdf_cell.png
│   │   │   ├── tcpdf_logo.jpg
│   │   │   ├── tcpdf_signature.png
│   │   │   ├── testsvg.svg
│   │   │   └── tux.svg
│   │   ├── index.php
│   │   ├── lang
│   │   │   ├── afr.php
│   │   │   ├── ara.php
│   │   │   ├── aze.php
│   │   │   ├── bel.php
│   │   │   ├── bra.php
│   │   │   ├── bul.php
│   │   │   ├── cat.php
│   │   │   ├── ces.php
│   │   │   ├── chi.php
│   │   │   ├── cym.php
│   │   │   ├── dan.php
│   │   │   ├── eng.php
│   │   │   ├── est.php
│   │   │   ├── eus.php
│   │   │   ├── far.php
│   │   │   ├── fra.php
│   │   │   ├── ger.php
│   │   │   ├── gle.php
│   │   │   ├── glg.php
│   │   │   ├── hat.php
│   │   │   ├── heb.php
│   │   │   ├── hrv.php
│   │   │   ├── hun.php
│   │   │   ├── hye.php
│   │   │   ├── ind.php
│   │   │   ├── ita.php
│   │   │   ├── jpn.php
│   │   │   ├── kat.php
│   │   │   ├── kor.php
│   │   │   ├── mkd.php
│   │   │   ├── mlt.php
│   │   │   ├── msa.php
│   │   │   ├── nld.php
│   │   │   ├── nob.php
│   │   │   ├── pol.php
│   │   │   ├── por.php
│   │   │   ├── ron.php
│   │   │   ├── rus.php
│   │   │   ├── slv.php
│   │   │   ├── spa.php
│   │   │   ├── sqi.php
│   │   │   ├── srp.php
│   │   │   ├── swa.php
│   │   │   ├── swe.php
│   │   │   ├── ukr.php
│   │   │   ├── urd.php
│   │   │   ├── yid.php
│   │   │   └── zho.php
│   │   └── tcpdf_include.php
│   ├── fonts
│   │   ├── aealarabiya.ctg.z
│   │   ├── aealarabiya.php
│   │   ├── aealarabiya.z
│   │   ├── ae_fonts_2.0
│   │   │   ├── ChangeLog
│   │   │   ├── ChangeLog.9745.BAK
│   │   │   ├── COPYING
│   │   │   └── README
│   │   ├── aefurat.ctg.z
│   │   ├── aefurat.php
│   │   ├── aefurat.z
│   │   ├── cid0cs.php
│   │   ├── cid0ct.php
│   │   ├── cid0jp.php
│   │   ├── cid0kr.php
│   │   ├── courierbi.php
│   │   ├── courierb.php
│   │   ├── courieri.php
│   │   ├── courier.php
│   │   ├── dejavu-fonts-ttf-2.33
│   │   │   ├── AUTHORS
│   │   │   ├── BUGS
│   │   │   ├── langcover.txt
│   │   │   ├── LICENSE
│   │   │   ├── NEWS
│   │   │   ├── README
│   │   │   ├── status.txt
│   │   │   └── unicover.txt
│   │   ├── dejavu-fonts-ttf-2.34
│   │   │   ├── AUTHORS
│   │   │   ├── BUGS
│   │   │   ├── langcover.txt
│   │   │   ├── LICENSE
│   │   │   ├── NEWS
│   │   │   ├── README
│   │   │   ├── status.txt
│   │   │   └── unicover.txt
│   │   ├── dejavusansb.ctg.z
│   │   ├── dejavusansbi.ctg.z
│   │   ├── dejavusansbi.php
│   │   ├── dejavusansbi.z
│   │   ├── dejavusansb.php
│   │   ├── dejavusansb.z
│   │   ├── dejavusanscondensedb.ctg.z
│   │   ├── dejavusanscondensedbi.ctg.z
│   │   ├── dejavusanscondensedbi.php
│   │   ├── dejavusanscondensedbi.z
│   │   ├── dejavusanscondensedb.php
│   │   ├── dejavusanscondensedb.z
│   │   ├── dejavusanscondensed.ctg.z
│   │   ├── dejavusanscondensedi.ctg.z
│   │   ├── dejavusanscondensedi.php
│   │   ├── dejavusanscondensedi.z
│   │   ├── dejavusanscondensed.php
│   │   ├── dejavusanscondensed.z
│   │   ├── dejavusans.ctg.z
│   │   ├── dejavusansextralight.ctg.z
│   │   ├── dejavusansextralight.php
│   │   ├── dejavusansextralight.z
│   │   ├── dejavusansi.ctg.z
│   │   ├── dejavusansi.php
│   │   ├── dejavusansi.z
│   │   ├── dejavusansmonob.ctg.z
│   │   ├── dejavusansmonobi.ctg.z
│   │   ├── dejavusansmonobi.php
│   │   ├── dejavusansmonobi.z
│   │   ├── dejavusansmonob.php
│   │   ├── dejavusansmonob.z
│   │   ├── dejavusansmono.ctg.z
│   │   ├── dejavusansmonoi.ctg.z
│   │   ├── dejavusansmonoi.php
│   │   ├── dejavusansmonoi.z
│   │   ├── dejavusansmono.php
│   │   ├── dejavusansmono.z
│   │   ├── dejavusans.php
│   │   ├── dejavusans.z
│   │   ├── dejavuserifb.ctg.z
│   │   ├── dejavuserifbi.ctg.z
│   │   ├── dejavuserifbi.php
│   │   ├── dejavuserifbi.z
│   │   ├── dejavuserifb.php
│   │   ├── dejavuserifb.z
│   │   ├── dejavuserifcondensedb.ctg.z
│   │   ├── dejavuserifcondensedbi.ctg.z
│   │   ├── dejavuserifcondensedbi.php
│   │   ├── dejavuserifcondensedbi.z
│   │   ├── dejavuserifcondensedb.php
│   │   ├── dejavuserifcondensedb.z
│   │   ├── dejavuserifcondensed.ctg.z
│   │   ├── dejavuserifcondensedi.ctg.z
│   │   ├── dejavuserifcondensedi.php
│   │   ├── dejavuserifcondensedi.z
│   │   ├── dejavuserifcondensed.php
│   │   ├── dejavuserifcondensed.z
│   │   ├── dejavuserif.ctg.z
│   │   ├── dejavuserifi.ctg.z
│   │   ├── dejavuserifi.php
│   │   ├── dejavuserifi.z
│   │   ├── dejavuserif.php
│   │   ├── dejavuserif.z
│   │   ├── freefont-20100919
│   │   │   ├── AUTHORS
│   │   │   ├── ChangeLog
│   │   │   ├── COPYING
│   │   │   ├── CREDITS
│   │   │   ├── INSTALL
│   │   │   └── README
│   │   ├── freefont-20120503
│   │   │   ├── AUTHORS
│   │   │   ├── ChangeLog
│   │   │   ├── ChangeLog.10070.BAK
│   │   │   ├── COPYING
│   │   │   ├── CREDITS
│   │   │   ├── INSTALL
│   │   │   ├── README
│   │   │   ├── TROUBLESHOOTING
│   │   │   └── USAGE
│   │   ├── freemonob.ctg.z
│   │   ├── freemonobi.ctg.z
│   │   ├── freemonobi.php
│   │   ├── freemonobi.z
│   │   ├── freemonob.php
│   │   ├── freemonob.z
│   │   ├── freemono.ctg.z
│   │   ├── freemonoi.ctg.z
│   │   ├── freemonoi.php
│   │   ├── freemonoi.z
│   │   ├── freemono.php
│   │   ├── freemono.z
│   │   ├── freesansb.ctg.z
│   │   ├── freesansbi.ctg.z
│   │   ├── freesansbi.php
│   │   ├── freesansbi.z
│   │   ├── freesansb.php
│   │   ├── freesansb.z
│   │   ├── freesans.ctg.z
│   │   ├── freesansi.ctg.z
│   │   ├── freesansi.php
│   │   ├── freesansi.z
│   │   ├── freesans.php
│   │   ├── freesans.z
│   │   ├── freeserifb.ctg.z
│   │   ├── freeserifbi.ctg.z
│   │   ├── freeserifbi.php
│   │   ├── freeserifbi.z
│   │   ├── freeserifb.php
│   │   ├── freeserifb.z
│   │   ├── freeserif.ctg.z
│   │   ├── freeserifi.ctg.z
│   │   ├── freeserifi.php
│   │   ├── freeserifi.z
│   │   ├── freeserif.php
│   │   ├── freeserif.z
│   │   ├── helveticabi.php
│   │   ├── helveticab.php
│   │   ├── helveticai.php
│   │   ├── helvetica.php
│   │   ├── hysmyeongjostdmedium.php
│   │   ├── kozgopromedium.php
│   │   ├── kozminproregular.php
│   │   ├── msungstdlight.php
│   │   ├── pdfacourierbi.php
│   │   ├── pdfacourierbi.z
│   │   ├── pdfacourierb.php
│   │   ├── pdfacourierb.z
│   │   ├── pdfacourieri.php
│   │   ├── pdfacourieri.z
│   │   ├── pdfacourier.php
│   │   ├── pdfacourier.z
│   │   ├── pdfahelveticabi.php
│   │   ├── pdfahelveticabi.z
│   │   ├── pdfahelveticab.php
│   │   ├── pdfahelveticab.z
│   │   ├── pdfahelveticai.php
│   │   ├── pdfahelveticai.z
│   │   ├── pdfahelvetica.php
│   │   ├── pdfahelvetica.z
│   │   ├── pdfasymbol.php
│   │   ├── pdfasymbol.z
│   │   ├── pdfatimesbi.php
│   │   ├── pdfatimesbi.z
│   │   ├── pdfatimesb.php
│   │   ├── pdfatimesb.z
│   │   ├── pdfatimesi.php
│   │   ├── pdfatimesi.z
│   │   ├── pdfatimes.php
│   │   ├── pdfatimes.z
│   │   ├── pdfazapfdingbats.php
│   │   ├── pdfazapfdingbats.z
│   │   ├── stsongstdlight.php
│   │   ├── symbol.php
│   │   ├── timesbi.php
│   │   ├── timesb.php
│   │   ├── timesi.php
│   │   ├── times.php
│   │   ├── uni2cid_ac15.php
│   │   ├── uni2cid_ag15.php
│   │   ├── uni2cid_aj16.php
│   │   ├── uni2cid_ak12.php
│   │   └── zapfdingbats.php
│   ├── include
│   │   ├── barcodes
│   │   │   ├── datamatrix.php
│   │   │   ├── pdf417.php
│   │   │   └── qrcode.php
│   │   ├── sRGB.icc
│   │   ├── tcpdf_colors.php
│   │   ├── tcpdf_filters.php
│   │   ├── tcpdf_font_data.php
│   │   ├── tcpdf_fonts.php
│   │   ├── tcpdf_images.php
│   │   └── tcpdf_static.php
│   ├── LICENSE.TXT
│   ├── README.md
│   ├── tcpdf_autoconfig.php
│   ├── tcpdf_barcodes_1d.php
│   ├── tcpdf_barcodes_2d.php
│   ├── tcpdf_import.php
│   ├── tcpdf_parser.php
│   ├── tcpdf.php
│   └── tools
│   ├── convert_fonts_examples.txt
│   └── tcpdf_addfont.php
├── theseer
│   ├── fdomdocument
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── fDOMDocument.spec
│   │   ├── LICENSE
│   │   ├── phpcs.xml
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── autoload.php
│   │   │   ├── css
│   │   │   │   ├── DollarEqualRule.php
│   │   │   │   ├── NotRule.php
│   │   │   │   ├── NthChildRule.php
│   │   │   │   ├── RegexRule.php
│   │   │   │   ├── RuleInterface.php
│   │   │   │   └── Translator.php
│   │   │   ├── fDOMDocumentFragment.php
│   │   │   ├── fDOMDocument.php
│   │   │   ├── fDOMElement.php
│   │   │   ├── fDOMException.php
│   │   │   ├── fDOMNode.php
│   │   │   ├── fDOMXPath.php
│   │   │   ├── XPathQueryException.php
│   │   │   └── XPathQuery.php
│   │   └── tests
│   │   ├── _data
│   │   │   ├── broken.xml
│   │   │   ├── selector.xml
│   │   │   ├── undefentity.xml
│   │   │   └── valid.xml
│   │   ├── fDOMDocumentFragment.test.php
│   │   ├── fDOMDocument.test.php
│   │   ├── fDOMElement.test.php
│   │   ├── fDOMXPath.test.php
│   │   ├── Translator.test.php
│   │   └── XPathQuery.test.php
│   └── tokenizer
│   ├── build.xml
│   ├── composer.json
│   ├── LICENSE
│   ├── phive.xml
│   ├── phpunit.xml
│   ├── README.md
│   ├── src
│   │   ├── Exception.php
│   │   ├── NamespaceUriException.php
│   │   ├── NamespaceUri.php
│   │   ├── TokenCollectionException.php
│   │   ├── TokenCollection.php
│   │   ├── Tokenizer.php
│   │   ├── Token.php
│   │   └── XMLSerializer.php
│   └── tests
│   ├── _files
│   │   ├── customns.xml
│   │   ├── test.php
│   │   ├── test.php.tokens
│   │   └── test.php.xml
│   ├── NamespaceUriTest.php
│   ├── TokenCollectionTest.php
│   ├── TokenizerTest.php
│   ├── TokenTest.php
│   └── XMLSerializerTest.php
├── webmozart
│   └── assert
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── Assert.php
└── zendframework
└── zend-escaper
├── CHANGELOG.md
├── composer.json
├── LICENSE.md
├── README.md
└── src
├── Escaper.php
└── Exception
├── ExceptionInterface.php
├── InvalidArgumentException.php
└── RuntimeException.php

2083 directories, 12717 files

标签:

实例下载地址

phpword完整代码包含sample无需安装可直接运行

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警