在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → yii2基础脚手架:yii-basic-app-2.0.13.tgz

yii2基础脚手架:yii-basic-app-2.0.13.tgz

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:13.82M
  • 下载次数:9
  • 浏览次数:70
  • 发布时间:2022-05-16
  • 实例类别:PHP语言基础
  • 发 布 人:bytethinker
  • 文件格式:.tgz
  • 所需积分:2
 相关标签: Yii PHP框架

实例介绍

【实例简介】yii2基础脚手架:yii-basic-app-2.0.13.tgz

【实例截图】

from clipboard

【核心代码】

.
├── basic
│   ├── LICENSE.md
│   ├── README.md
│   ├── assets
│   │   └── AppAsset.php
│   ├── codeception.yml
│   ├── commands
│   │   └── HelloController.php
│   ├── composer.json
│   ├── composer.lock
│   ├── config
│   │   ├── console.php
│   │   ├── db.php
│   │   ├── params.php
│   │   ├── test.php
│   │   ├── test_db.php
│   │   └── web.php
│   ├── controllers
│   │   └── SiteController.php
│   ├── mail
│   │   └── layouts
│   │       └── html.php
│   ├── models
│   │   ├── ContactForm.php
│   │   ├── LoginForm.php
│   │   └── User.php
│   ├── requirements.php
│   ├── runtime
│   ├── tests
│   │   ├── _bootstrap.php
│   │   ├── _data
│   │   ├── _output
│   │   ├── _support
│   │   │   ├── AcceptanceTester.php
│   │   │   ├── FunctionalTester.php
│   │   │   └── UnitTester.php
│   │   ├── acceptance
│   │   │   ├── AboutCest.php
│   │   │   ├── ContactCest.php
│   │   │   ├── HomeCest.php
│   │   │   ├── LoginCest.php
│   │   │   └── _bootstrap.php
│   │   ├── acceptance.suite.yml.example
│   │   ├── bin
│   │   │   ├── yii
│   │   │   └── yii.bat
│   │   ├── functional
│   │   │   ├── ContactFormCest.php
│   │   │   ├── LoginFormCest.php
│   │   │   └── _bootstrap.php
│   │   ├── functional.suite.yml
│   │   ├── unit
│   │   │   ├── _bootstrap.php
│   │   │   └── models
│   │   │       ├── ContactFormTest.php
│   │   │       ├── LoginFormTest.php
│   │   │       └── UserTest.php
│   │   └── unit.suite.yml
│   └── vendor
│       ├── autoload.php
│       ├── behat
│       │   └── gherkin
│       │       ├── CHANGES.md
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── bin
│       │       │   └── update_i18n
│       │       ├── composer.json
│       │       ├── i18n.php
│       │       ├── libpath.php
│       │       ├── package.xml.tpl
│       │       ├── phpdoc.ini.dist
│       │       ├── phpunit.xml.dist
│       │       ├── src
│       │       │   └── Behat
│       │       │       └── Gherkin
│       │       └── tests
│       │           └── Behat
│       │               └── Gherkin
│       ├── bin
│       │   ├── codecept
│       │   ├── codecept.bat
│       │   ├── markdown
│       │   ├── markdown.bat
│       │   ├── phpunit
│       │   ├── phpunit.bat
│       │   ├── yii
│       │   └── yii.bat
│       ├── bower-asset
│       │   ├── bootstrap
│       │   │   ├── CHANGELOG.md
│       │   │   ├── CNAME
│       │   │   ├── CONTRIBUTING.md
│       │   │   ├── Gemfile
│       │   │   ├── Gemfile.lock
│       │   │   ├── Gruntfile.js
│       │   │   ├── ISSUE_TEMPLATE.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── _config.yml
│       │   │   ├── bower.json
│       │   │   ├── composer.json
│       │   │   ├── dist
│       │   │   │   ├── css
│       │   │   │   │   ├── bootstrap-theme.css
│       │   │   │   │   ├── bootstrap-theme.css.map
│       │   │   │   │   ├── bootstrap-theme.min.css
│       │   │   │   │   ├── bootstrap-theme.min.css.map
│       │   │   │   │   ├── bootstrap.css
│       │   │   │   │   ├── bootstrap.css.map
│       │   │   │   │   ├── bootstrap.min.css
│       │   │   │   │   └── bootstrap.min.css.map
│       │   │   │   ├── fonts
│       │   │   │   │   ├── glyphicons-halflings-regular.eot
│       │   │   │   │   ├── glyphicons-halflings-regular.svg
│       │   │   │   │   ├── glyphicons-halflings-regular.ttf
│       │   │   │   │   ├── glyphicons-halflings-regular.woff
│       │   │   │   │   └── glyphicons-halflings-regular.woff2
│       │   │   │   └── js
│       │   │   │       ├── bootstrap.js
│       │   │   │       ├── bootstrap.min.js
│       │   │   │       └── npm.js
│       │   │   ├── docs
│       │   │   │   ├── LICENSE
│       │   │   │   ├── _data
│       │   │   │   │   ├── browser-bugs.yml
│       │   │   │   │   ├── browser-features.yml
│       │   │   │   │   ├── core-team.yml
│       │   │   │   │   ├── glyphicons.yml
│       │   │   │   │   ├── sass-team.yml
│       │   │   │   │   ├── showcase.yml
│       │   │   │   │   └── translations.yml
│       │   │   │   ├── _includes
│       │   │   │   │   ├── ads.html
│       │   │   │   │   ├── components
│       │   │   │   │   ├── css
│       │   │   │   │   ├── customizer-variables.html
│       │   │   │   │   ├── footer.html
│       │   │   │   │   ├── getting-started
│       │   │   │   │   ├── header.html
│       │   │   │   │   ├── js
│       │   │   │   │   └── nav
│       │   │   │   ├── _layouts
│       │   │   │   │   ├── default.html
│       │   │   │   │   └── home.html
│       │   │   │   ├── _plugins
│       │   │   │   │   ├── bridge.rb
│       │   │   │   │   └── bugify.rb
│       │   │   │   ├── _pug
│       │   │   │   │   ├── customizer-nav.pug
│       │   │   │   │   └── customizer-variables.pug
│       │   │   │   ├── about.html
│       │   │   │   ├── apple-touch-icon.png
│       │   │   │   ├── assets
│       │   │   │   │   ├── brand
│       │   │   │   │   ├── css
│       │   │   │   │   ├── flash
│       │   │   │   │   ├── img
│       │   │   │   │   └── js
│       │   │   │   ├── browser-bugs.html
│       │   │   │   ├── components.html
│       │   │   │   ├── css.html
│       │   │   │   ├── customize.html
│       │   │   │   ├── dist
│       │   │   │   │   ├── css
│       │   │   │   │   ├── fonts
│       │   │   │   │   └── js
│       │   │   │   ├── examples
│       │   │   │   │   ├── blog
│       │   │   │   │   ├── carousel
│       │   │   │   │   ├── cover
│       │   │   │   │   ├── dashboard
│       │   │   │   │   ├── grid
│       │   │   │   │   ├── jumbotron
│       │   │   │   │   ├── jumbotron-narrow
│       │   │   │   │   ├── justified-nav
│       │   │   │   │   ├── navbar
│       │   │   │   │   ├── navbar-fixed-top
│       │   │   │   │   ├── navbar-static-top
│       │   │   │   │   ├── non-responsive
│       │   │   │   │   ├── offcanvas
│       │   │   │   │   ├── screenshots
│       │   │   │   │   ├── signin
│       │   │   │   │   ├── starter-template
│       │   │   │   │   ├── sticky-footer
│       │   │   │   │   ├── sticky-footer-navbar
│       │   │   │   │   ├── theme
│       │   │   │   │   └── tooltip-viewport
│       │   │   │   ├── favicon.ico
│       │   │   │   ├── getting-started.html
│       │   │   │   ├── index.html
│       │   │   │   ├── javascript.html
│       │   │   │   ├── migration.html
│       │   │   │   └── robots.txt
│       │   │   ├── fonts
│       │   │   │   ├── glyphicons-halflings-regular.eot
│       │   │   │   ├── glyphicons-halflings-regular.svg
│       │   │   │   ├── glyphicons-halflings-regular.ttf
│       │   │   │   ├── glyphicons-halflings-regular.woff
│       │   │   │   └── glyphicons-halflings-regular.woff2
│       │   │   ├── grunt
│       │   │   │   ├── bs-commonjs-generator.js
│       │   │   │   ├── bs-glyphicons-data-generator.js
│       │   │   │   ├── bs-lessdoc-parser.js
│       │   │   │   ├── bs-raw-files-generator.js
│       │   │   │   ├── change-version.js
│       │   │   │   ├── configBridge.json
│       │   │   │   ├── npm-shrinkwrap.json
│       │   │   │   └── sauce_browsers.yml
│       │   │   ├── js
│       │   │   │   ├── affix.js
│       │   │   │   ├── alert.js
│       │   │   │   ├── button.js
│       │   │   │   ├── carousel.js
│       │   │   │   ├── collapse.js
│       │   │   │   ├── dropdown.js
│       │   │   │   ├── modal.js
│       │   │   │   ├── popover.js
│       │   │   │   ├── scrollspy.js
│       │   │   │   ├── tab.js
│       │   │   │   ├── tests
│       │   │   │   │   ├── README.md
│       │   │   │   │   ├── index.html
│       │   │   │   │   ├── unit
│       │   │   │   │   ├── vendor
│       │   │   │   │   └── visual
│       │   │   │   ├── tooltip.js
│       │   │   │   └── transition.js
│       │   │   ├── less
│       │   │   │   ├── alerts.less
│       │   │   │   ├── badges.less
│       │   │   │   ├── bootstrap.less
│       │   │   │   ├── breadcrumbs.less
│       │   │   │   ├── button-groups.less
│       │   │   │   ├── buttons.less
│       │   │   │   ├── carousel.less
│       │   │   │   ├── close.less
│       │   │   │   ├── code.less
│       │   │   │   ├── component-animations.less
│       │   │   │   ├── dropdowns.less
│       │   │   │   ├── forms.less
│       │   │   │   ├── glyphicons.less
│       │   │   │   ├── grid.less
│       │   │   │   ├── input-groups.less
│       │   │   │   ├── jumbotron.less
│       │   │   │   ├── labels.less
│       │   │   │   ├── list-group.less
│       │   │   │   ├── media.less
│       │   │   │   ├── mixins
│       │   │   │   │   ├── alerts.less
│       │   │   │   │   ├── background-variant.less
│       │   │   │   │   ├── border-radius.less
│       │   │   │   │   ├── buttons.less
│       │   │   │   │   ├── center-block.less
│       │   │   │   │   ├── clearfix.less
│       │   │   │   │   ├── forms.less
│       │   │   │   │   ├── gradients.less
│       │   │   │   │   ├── grid-framework.less
│       │   │   │   │   ├── grid.less
│       │   │   │   │   ├── hide-text.less
│       │   │   │   │   ├── image.less
│       │   │   │   │   ├── labels.less
│       │   │   │   │   ├── list-group.less
│       │   │   │   │   ├── nav-divider.less
│       │   │   │   │   ├── nav-vertical-align.less
│       │   │   │   │   ├── opacity.less
│       │   │   │   │   ├── pagination.less
│       │   │   │   │   ├── panels.less
│       │   │   │   │   ├── progress-bar.less
│       │   │   │   │   ├── reset-filter.less
│       │   │   │   │   ├── reset-text.less
│       │   │   │   │   ├── resize.less
│       │   │   │   │   ├── responsive-visibility.less
│       │   │   │   │   ├── size.less
│       │   │   │   │   ├── tab-focus.less
│       │   │   │   │   ├── table-row.less
│       │   │   │   │   ├── text-emphasis.less
│       │   │   │   │   ├── text-overflow.less
│       │   │   │   │   └── vendor-prefixes.less
│       │   │   │   ├── mixins.less
│       │   │   │   ├── modals.less
│       │   │   │   ├── navbar.less
│       │   │   │   ├── navs.less
│       │   │   │   ├── normalize.less
│       │   │   │   ├── pager.less
│       │   │   │   ├── pagination.less
│       │   │   │   ├── panels.less
│       │   │   │   ├── popovers.less
│       │   │   │   ├── print.less
│       │   │   │   ├── progress-bars.less
│       │   │   │   ├── responsive-embed.less
│       │   │   │   ├── responsive-utilities.less
│       │   │   │   ├── scaffolding.less
│       │   │   │   ├── tables.less
│       │   │   │   ├── theme.less
│       │   │   │   ├── thumbnails.less
│       │   │   │   ├── tooltip.less
│       │   │   │   ├── type.less
│       │   │   │   ├── utilities.less
│       │   │   │   ├── variables.less
│       │   │   │   └── wells.less
│       │   │   ├── nuget
│       │   │   │   ├── MyGet.ps1
│       │   │   │   ├── bootstrap.less.nuspec
│       │   │   │   └── bootstrap.nuspec
│       │   │   ├── package.js
│       │   │   └── package.json
│       │   ├── inputmask
│       │   │   ├── CHANGELOG.md
│       │   │   ├── Gruntfile.js
│       │   │   ├── LICENSE.txt
│       │   │   ├── README.md
│       │   │   ├── README_android.md
│       │   │   ├── README_date.md
│       │   │   ├── README_numeric.md
│       │   │   ├── README_other.md
│       │   │   ├── README_phone.md
│       │   │   ├── bower.json
│       │   │   ├── bundle.js
│       │   │   ├── component.json
│       │   │   ├── composer.json
│       │   │   ├── css
│       │   │   │   └── inputmask.css
│       │   │   ├── dist
│       │   │   │   ├── inputmask
│       │   │   │   │   ├── bindings
│       │   │   │   │   ├── dependencyLibs
│       │   │   │   │   ├── global
│       │   │   │   │   ├── inputmask.date.extensions.js
│       │   │   │   │   ├── inputmask.extensions.js
│       │   │   │   │   ├── inputmask.js
│       │   │   │   │   ├── inputmask.numeric.extensions.js
│       │   │   │   │   ├── inputmask.phone.extensions.js
│       │   │   │   │   ├── inputmask.regex.extensions.js
│       │   │   │   │   ├── jquery.inputmask.js
│       │   │   │   │   └── phone-codes
│       │   │   │   ├── jquery.inputmask.bundle.js
│       │   │   │   └── min
│       │   │   │       ├── inputmask
│       │   │   │       └── jquery.inputmask.bundle.min.js
│       │   │   ├── index.html
│       │   │   ├── index.js
│       │   │   ├── js
│       │   │   │   ├── bindings
│       │   │   │   │   └── inputmask.binding.js
│       │   │   │   ├── dependencyLibs
│       │   │   │   │   ├── inputmask.dependencyLib.jqlite.js
│       │   │   │   │   ├── inputmask.dependencyLib.jquery.js
│       │   │   │   │   └── inputmask.dependencyLib.js
│       │   │   │   ├── global
│       │   │   │   │   ├── document.js
│       │   │   │   │   └── window.js
│       │   │   │   ├── inputmask.date.extensions.js
│       │   │   │   ├── inputmask.extensions.js
│       │   │   │   ├── inputmask.js
│       │   │   │   ├── inputmask.numeric.extensions.js
│       │   │   │   ├── inputmask.phone.extensions.js
│       │   │   │   ├── inputmask.regex.extensions.js
│       │   │   │   ├── jquery.inputmask.js
│       │   │   │   └── phone-codes
│       │   │   │       ├── phone-be.js
│       │   │   │       ├── phone-nl.js
│       │   │   │       ├── phone-ru.js
│       │   │   │       ├── phone-uk.js
│       │   │   │       └── phone.js
│       │   │   ├── karma.conf.js
│       │   │   ├── nuspecs
│       │   │   │   ├── Inputmask.nuspec
│       │   │   │   ├── Readme.txt
│       │   │   │   └── jquery.inputmask.nuspec
│       │   │   ├── package-lock.json
│       │   │   ├── package.json
│       │   │   ├── qunit
│       │   │   │   ├── index.js
│       │   │   │   ├── prototypeExtensions.js
│       │   │   │   ├── qunit.html
│       │   │   │   ├── simulator.js
│       │   │   │   ├── tests_alternations.js
│       │   │   │   ├── tests_attributes.js
│       │   │   │   ├── tests_base.js
│       │   │   │   ├── tests_date.js
│       │   │   │   ├── tests_dynamic.js
│       │   │   │   ├── tests_escape.js
│       │   │   │   ├── tests_formatvalidate.js
│       │   │   │   ├── tests_initialvalue.js
│       │   │   │   ├── tests_inputeventonly.js
│       │   │   │   ├── tests_ip.js
│       │   │   │   ├── tests_jitmasking.js
│       │   │   │   ├── tests_jquery_inputmask.js
│       │   │   │   ├── tests_keepStatic.js
│       │   │   │   ├── tests_multi.js
│       │   │   │   ├── tests_numeric.js
│       │   │   │   ├── tests_numericinput.js
│       │   │   │   ├── tests_option.js
│       │   │   │   ├── tests_optional.js
│       │   │   │   ├── tests_paste.js
│       │   │   │   ├── tests_phone.js
│       │   │   │   ├── tests_phone_world.js
│       │   │   │   ├── tests_phonebe.js
│       │   │   │   ├── tests_phonenl.js
│       │   │   │   ├── tests_phoneru.js
│       │   │   │   ├── tests_regex.js
│       │   │   │   ├── tests_setvalue.js
│       │   │   │   └── webpack.config.js
│       │   │   └── webpack.config.js
│       │   ├── jquery
│       │   │   ├── AUTHORS.txt
│       │   │   ├── LICENSE.txt
│       │   │   ├── README.md
│       │   │   ├── bower.json
│       │   │   ├── dist
│       │   │   │   ├── core.js
│       │   │   │   ├── jquery.js
│       │   │   │   ├── jquery.min.js
│       │   │   │   ├── jquery.min.map
│       │   │   │   ├── jquery.slim.js
│       │   │   │   ├── jquery.slim.min.js
│       │   │   │   └── jquery.slim.min.map
│       │   │   ├── external
│       │   │   │   └── sizzle
│       │   │   │       ├── LICENSE.txt
│       │   │   │       └── dist
│       │   │   ├── package.json
│       │   │   └── src
│       │   │       ├── ajax
│       │   │       │   ├── jsonp.js
│       │   │       │   ├── load.js
│       │   │       │   ├── parseXML.js
│       │   │       │   ├── script.js
│       │   │       │   ├── var
│       │   │       │   └── xhr.js
│       │   │       ├── ajax.js
│       │   │       ├── attributes
│       │   │       │   ├── attr.js
│       │   │       │   ├── classes.js
│       │   │       │   ├── prop.js
│       │   │       │   ├── support.js
│       │   │       │   └── val.js
│       │   │       ├── attributes.js
│       │   │       ├── callbacks.js
│       │   │       ├── core
│       │   │       │   ├── DOMEval.js
│       │   │       │   ├── access.js
│       │   │       │   ├── init.js
│       │   │       │   ├── nodeName.js
│       │   │       │   ├── parseHTML.js
│       │   │       │   ├── ready-no-deferred.js
│       │   │       │   ├── ready.js
│       │   │       │   ├── readyException.js
│       │   │       │   ├── stripAndCollapse.js
│       │   │       │   ├── support.js
│       │   │       │   └── var
│       │   │       ├── core.js
│       │   │       ├── css
│       │   │       │   ├── addGetHookIf.js
│       │   │       │   ├── adjustCSS.js
│       │   │       │   ├── curCSS.js
│       │   │       │   ├── hiddenVisibleSelectors.js
│       │   │       │   ├── showHide.js
│       │   │       │   ├── support.js
│       │   │       │   └── var
│       │   │       ├── css.js
│       │   │       ├── data
│       │   │       │   ├── Data.js
│       │   │       │   └── var
│       │   │       ├── data.js
│       │   │       ├── deferred
│       │   │       │   └── exceptionHook.js
│       │   │       ├── deferred.js
│       │   │       ├── deprecated.js
│       │   │       ├── dimensions.js
│       │   │       ├── effects
│       │   │       │   ├── Tween.js
│       │   │       │   └── animatedSelector.js
│       │   │       ├── effects.js
│       │   │       ├── event
│       │   │       │   ├── ajax.js
│       │   │       │   ├── alias.js
│       │   │       │   ├── focusin.js
│       │   │       │   ├── support.js
│       │   │       │   └── trigger.js
│       │   │       ├── event.js
│       │   │       ├── exports
│       │   │       │   ├── amd.js
│       │   │       │   └── global.js
│       │   │       ├── jquery.js
│       │   │       ├── manipulation
│       │   │       │   ├── _evalUrl.js
│       │   │       │   ├── buildFragment.js
│       │   │       │   ├── getAll.js
│       │   │       │   ├── setGlobalEval.js
│       │   │       │   ├── support.js
│       │   │       │   ├── var
│       │   │       │   └── wrapMap.js
│       │   │       ├── manipulation.js
│       │   │       ├── offset.js
│       │   │       ├── queue
│       │   │       │   └── delay.js
│       │   │       ├── queue.js
│       │   │       ├── selector-native.js
│       │   │       ├── selector-sizzle.js
│       │   │       ├── selector.js
│       │   │       ├── serialize.js
│       │   │       ├── traversing
│       │   │       │   ├── findFilter.js
│       │   │       │   └── var
│       │   │       ├── traversing.js
│       │   │       ├── var
│       │   │       │   ├── ObjectFunctionString.js
│       │   │       │   ├── arr.js
│       │   │       │   ├── class2type.js
│       │   │       │   ├── concat.js
│       │   │       │   ├── document.js
│       │   │       │   ├── documentElement.js
│       │   │       │   ├── fnToString.js
│       │   │       │   ├── getProto.js
│       │   │       │   ├── hasOwn.js
│       │   │       │   ├── indexOf.js
│       │   │       │   ├── pnum.js
│       │   │       │   ├── push.js
│       │   │       │   ├── rcssNum.js
│       │   │       │   ├── rnothtmlwhite.js
│       │   │       │   ├── slice.js
│       │   │       │   ├── support.js
│       │   │       │   └── toString.js
│       │   │       └── wrap.js
│       │   ├── punycode
│       │   │   ├── Gruntfile.js
│       │   │   ├── LICENSE-MIT.txt
│       │   │   ├── README.md
│       │   │   ├── bower.json
│       │   │   ├── component.json
│       │   │   ├── package.json
│       │   │   ├── punycode.js
│       │   │   ├── punycode.min.js
│       │   │   └── tests
│       │   │       ├── data.js
│       │   │       ├── index.html
│       │   │       └── tests.js
│       │   ├── typeahead.js
│       │   │   ├── CHANGELOG.md
│       │   │   ├── CONTRIBUTING.md
│       │   │   ├── Gruntfile.js
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── bower.json
│       │   │   ├── composer.json
│       │   │   ├── dist
│       │   │   │   ├── bloodhound.js
│       │   │   │   ├── bloodhound.min.js
│       │   │   │   ├── typeahead.bundle.js
│       │   │   │   ├── typeahead.bundle.min.js
│       │   │   │   ├── typeahead.jquery.js
│       │   │   │   └── typeahead.jquery.min.js
│       │   │   ├── doc
│       │   │   │   ├── bloodhound.md
│       │   │   │   ├── jquery_typeahead.md
│       │   │   │   └── migration
│       │   │   │       └── 0.10.0.md
│       │   │   ├── karma.conf.js
│       │   │   ├── package.json
│       │   │   ├── src
│       │   │   │   ├── bloodhound
│       │   │   │   │   ├── bloodhound.js
│       │   │   │   │   ├── lru_cache.js
│       │   │   │   │   ├── options_parser.js
│       │   │   │   │   ├── persistent_storage.js
│       │   │   │   │   ├── prefetch.js
│       │   │   │   │   ├── remote.js
│       │   │   │   │   ├── search_index.js
│       │   │   │   │   ├── tokenizers.js
│       │   │   │   │   ├── transport.js
│       │   │   │   │   └── version.js
│       │   │   │   ├── common
│       │   │   │   │   └── utils.js
│       │   │   │   └── typeahead
│       │   │   │       ├── dataset.js
│       │   │   │       ├── default_menu.js
│       │   │   │       ├── event_bus.js
│       │   │   │       ├── event_emitter.js
│       │   │   │       ├── highlight.js
│       │   │   │       ├── input.js
│       │   │   │       ├── menu.js
│       │   │   │       ├── plugin.js
│       │   │   │       ├── typeahead.js
│       │   │   │       └── www.js
│       │   │   ├── test
│       │   │   │   ├── bloodhound
│       │   │   │   │   ├── bloodhound_spec.js
│       │   │   │   │   ├── lru_cache_spec.js
│       │   │   │   │   ├── options_parser_spec.js
│       │   │   │   │   ├── persistent_storage_spec.js
│       │   │   │   │   ├── prefetch_spec.js
│       │   │   │   │   ├── remote_spec.js
│       │   │   │   │   ├── search_index_spec.js
│       │   │   │   │   ├── tokenizers_spec.js
│       │   │   │   │   └── transport_spec.js
│       │   │   │   ├── ci
│       │   │   │   ├── fixtures
│       │   │   │   │   ├── ajax_responses.js
│       │   │   │   │   ├── data.js
│       │   │   │   │   └── html.js
│       │   │   │   ├── helpers
│       │   │   │   │   └── typeahead_mocks.js
│       │   │   │   ├── integration
│       │   │   │   │   ├── test.html
│       │   │   │   │   └── test.js
│       │   │   │   ├── playground.html
│       │   │   │   └── typeahead
│       │   │   │       ├── dataset_spec.js
│       │   │   │       ├── default_results_spec.js
│       │   │   │       ├── event_bus_spec.js
│       │   │   │       ├── event_emitter_spec.js
│       │   │   │       ├── highlight_spec.js
│       │   │   │       ├── input_spec.js
│       │   │   │       ├── plugin_spec.js
│       │   │   │       ├── results_spec.js
│       │   │   │       └── typeahead_spec.js
│       │   │   └── typeahead.js.jquery.json
│       │   └── yii2-pjax
│       │       ├── CHANGELOG.md
│       │       ├── CONTRIBUTING.md
│       │       ├── Gemfile
│       │       ├── Gemfile.lock
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── bower.json
│       │       ├── jquery.pjax.js
│       │       ├── package.json
│       │       ├── script
│       │       │   ├── bootstrap
│       │       │   ├── server
│       │       │   └── test
│       │       ├── test
│       │       │   ├── app.rb
│       │       │   ├── evaled.js
│       │       │   ├── favicon.ico
│       │       │   ├── run-qunit.js
│       │       │   ├── unit
│       │       │   │   ├── fn_pjax.js
│       │       │   │   ├── helpers.js
│       │       │   │   ├── pjax.js
│       │       │   │   └── pjax_fallback.js
│       │       │   └── views
│       │       │       ├── aliens.erb
│       │       │       ├── anchor.erb
│       │       │       ├── boom.erb
│       │       │       ├── boom_sans_pjax.erb
│       │       │       ├── dinosaurs.erb
│       │       │       ├── double_title.erb
│       │       │       ├── empty.erb
│       │       │       ├── env.erb
│       │       │       ├── fragment.erb
│       │       │       ├── hello.erb
│       │       │       ├── home.erb
│       │       │       ├── layout.erb
│       │       │       ├── long.erb
│       │       │       ├── nested_title.erb
│       │       │       ├── qunit.erb
│       │       │       ├── referer.erb
│       │       │       ├── scripts.erb
│       │       │       └── timeout.erb
│       │       └── vendor
│       │           ├── jquery-1.12.js
│       │           ├── jquery-2.2.js
│       │           ├── jquery-3.2.js
│       │           ├── qunit.css
│       │           └── qunit.js
│       ├── cebe
│       │   └── markdown
│       │       ├── CHANGELOG.md
│       │       ├── CONTRIBUTING.md
│       │       ├── GithubMarkdown.php
│       │       ├── LICENSE
│       │       ├── Markdown.php
│       │       ├── MarkdownExtra.php
│       │       ├── Parser.php
│       │       ├── README.md
│       │       ├── bin
│       │       │   └── markdown
│       │       ├── block
│       │       │   ├── CodeTrait.php
│       │       │   ├── FencedCodeTrait.php
│       │       │   ├── HeadlineTrait.php
│       │       │   ├── HtmlTrait.php
│       │       │   ├── ListTrait.php
│       │       │   ├── QuoteTrait.php
│       │       │   ├── RuleTrait.php
│       │       │   └── TableTrait.php
│       │       ├── composer.json
│       │       ├── inline
│       │       │   ├── CodeTrait.php
│       │       │   ├── EmphStrongTrait.php
│       │       │   ├── LinkTrait.php
│       │       │   ├── StrikeoutTrait.php
│       │       │   └── UrlLinkTrait.php
│       │       ├── phpunit.xml.dist
│       │       └── tests
│       │           ├── BaseMarkdownTest.php
│       │           ├── GithubMarkdownTest.php
│       │           ├── MarkdownExtraTest.php
│       │           ├── MarkdownOLStartNumTest.php
│       │           ├── MarkdownTest.php
│       │           ├── ParserTest.php
│       │           ├── bootstrap.php
│       │           ├── extra-data
│       │           │   ├── fenced-code.html
│       │           │   ├── fenced-code.md
│       │           │   ├── special-attributes.html
│       │           │   ├── special-attributes.md
│       │           │   ├── tables.html
│       │           │   ├── tables.md
│       │           │   ├── test_precedence.html
│       │           │   └── test_precedence.md
│       │           ├── github-data
│       │           │   ├── del.html
│       │           │   ├── del.md
│       │           │   ├── dense-block-markers.html
│       │           │   ├── dense-block-markers.md
│       │           │   ├── dense-block-markers2.html
│       │           │   ├── dense-block-markers2.md
│       │           │   ├── github-basics.html
│       │           │   ├── github-basics.md
│       │           │   ├── github-code-in-numbered-list.html
│       │           │   ├── github-code-in-numbered-list.md
│       │           │   ├── github-sample.html
│       │           │   ├── github-sample.md
│       │           │   ├── issue-33.html
│       │           │   ├── issue-33.md
│       │           │   ├── issue-38.html
│       │           │   ├── issue-38.md
│       │           │   ├── lists.html
│       │           │   ├── lists.md
│       │           │   ├── non-tables.html
│       │           │   ├── non-tables.md
│       │           │   ├── tables.html
│       │           │   ├── tables.md
│       │           │   ├── test_precedence.html
│       │           │   ├── test_precedence.md
│       │           │   ├── url.html
│       │           │   └── url.md
│       │           ├── markdown-data
│       │           │   ├── README
│       │           │   ├── blockquote-nested.html
│       │           │   ├── blockquote-nested.md
│       │           │   ├── blockquote.html
│       │           │   ├── blockquote.md
│       │           │   ├── code.html
│       │           │   ├── code.md
│       │           │   ├── dense-block-markers.html
│       │           │   ├── dense-block-markers.md
│       │           │   ├── dos.html
│       │           │   ├── dos.md
│       │           │   ├── dos2.html
│       │           │   ├── dos2.md
│       │           │   ├── emphasis.html
│       │           │   ├── emphasis.md
│       │           │   ├── empty-line.html
│       │           │   ├── empty-line.md
│       │           │   ├── endless_loop_bug.html
│       │           │   ├── endless_loop_bug.md
│       │           │   ├── escape-in-link.html
│       │           │   ├── escape-in-link.md
│       │           │   ├── headline.html
│       │           │   ├── headline.md
│       │           │   ├── hr.html
│       │           │   ├── hr.md
│       │           │   ├── html-block.html
│       │           │   ├── html-block.md
│       │           │   ├── images.html
│       │           │   ├── images.md
│       │           │   ├── inline-html.html
│       │           │   ├── inline-html.md
│       │           │   ├── lazy-list.html
│       │           │   ├── lazy-list.md
│       │           │   ├── links.html
│       │           │   ├── links.md
│       │           │   ├── list-marker-in-paragraph.html
│       │           │   ├── list-marker-in-paragraph.md
│       │           │   ├── list.html
│       │           │   ├── list.md
│       │           │   ├── list_and_reference.html
│       │           │   ├── list_and_reference.md
│       │           │   ├── list_items_with_undefined_ref.html
│       │           │   ├── list_items_with_undefined_ref.md
│       │           │   ├── md1_amps_and_angle_encoding.html
│       │           │   ├── md1_amps_and_angle_encoding.md
│       │           │   ├── md1_auto_links.html
│       │           │   ├── md1_auto_links.md
│       │           │   ├── md1_backslash_escapes.html
│       │           │   ├── md1_backslash_escapes.md
│       │           │   ├── md1_blockquotes_with_code_blocks.html
│       │           │   ├── md1_blockquotes_with_code_blocks.md
│       │           │   ├── md1_horizontal_rules.html
│       │           │   ├── md1_horizontal_rules.md
│       │           │   ├── md1_inline_html_avanced.html
│       │           │   ├── md1_inline_html_avanced.md
│       │           │   ├── md1_inline_html_comments.html
│       │           │   ├── md1_inline_html_comments.md
│       │           │   ├── md1_inline_html_simple.html
│       │           │   ├── md1_inline_html_simple.md
│       │           │   ├── md1_links_inline_style.html
│       │           │   ├── md1_links_inline_style.md
│       │           │   ├── md1_links_reference_style.html
│       │           │   ├── md1_links_reference_style.md
│       │           │   ├── md1_literal_quotes_in_titles.html
│       │           │   ├── md1_literal_quotes_in_titles.md
│       │           │   ├── md1_markdown_documentation_basics.html
│       │           │   ├── md1_markdown_documentation_basics.md
│       │           │   ├── md1_nested_blockquotes.html
│       │           │   ├── md1_nested_blockquotes.md
│       │           │   ├── md1_ordered_and_unordered_lists.html
│       │           │   ├── md1_ordered_and_unordered_lists.md
│       │           │   ├── md1_strong_and_em_together.html
│       │           │   ├── md1_strong_and_em_together.md
│       │           │   ├── md1_tabs.html
│       │           │   ├── md1_tabs.md
│       │           │   ├── md1_tidyness.html
│       │           │   ├── md1_tidyness.md
│       │           │   ├── nested-lists.html
│       │           │   ├── nested-lists.md
│       │           │   ├── newline.html
│       │           │   ├── newline.md
│       │           │   ├── paragraph.html
│       │           │   ├── paragraph.md
│       │           │   ├── references.html
│       │           │   ├── references.md
│       │           │   ├── specs.html
│       │           │   ├── specs.md
│       │           │   ├── test_precedence.html
│       │           │   ├── test_precedence.md
│       │           │   ├── unicode.html
│       │           │   ├── unicode.md
│       │           │   ├── utf8-do-not-kill-characters.html
│       │           │   └── utf8-do-not-kill-characters.md
│       │           ├── markdown-ol-start-num-data
│       │           │   ├── list.html
│       │           │   ├── list.md
│       │           │   ├── md1_ordered_and_unordered_lists.html
│       │           │   └── md1_ordered_and_unordered_lists.md
│       │           └── profile.php
│       ├── codeception
│       │   ├── base
│       │   │   ├── CHANGELOG-2.0.md
│       │   │   ├── CHANGELOG-2.1.md
│       │   │   ├── CHANGELOG-2.2.md
│       │   │   ├── CHANGELOG-2.3.md
│       │   │   ├── CONTRIBUTING.md
│       │   │   ├── Dockerfile
│       │   │   ├── ISSUE_TEMPLATE.md
│       │   │   ├── LICENSE
│       │   │   ├── RoboFile.php
│       │   │   ├── appveyor.yml
│       │   │   ├── autoload.php
│       │   │   ├── codecept
│       │   │   ├── codecept.bat
│       │   │   ├── codeception.yml
│       │   │   ├── composer.json
│       │   │   ├── docs
│       │   │   │   ├── 01-Introduction.md
│       │   │   │   ├── 02-GettingStarted.md
│       │   │   │   ├── 03-AcceptanceTests.md
│       │   │   │   ├── 04-FunctionalTests.md
│       │   │   │   ├── 05-UnitTests.md
│       │   │   │   ├── 06-ModulesAndHelpers.md
│       │   │   │   ├── 06-ReusingTestCode.md
│       │   │   │   ├── 07-AdvancedUsage.md
│       │   │   │   ├── 07-BDD.md
│       │   │   │   ├── 08-Customization.md
│       │   │   │   ├── 09-Data.md
│       │   │   │   ├── 10-WebServices.md
│       │   │   │   ├── 11-Codecoverage.md
│       │   │   │   ├── 12-ContinuousIntegration.md
│       │   │   │   ├── 12-ParallelExecution.md
│       │   │   │   ├── modules
│       │   │   │   │   ├── AMQP.md
│       │   │   │   │   ├── AngularJS.md
│       │   │   │   │   ├── Apc.md
│       │   │   │   │   ├── Asserts.md
│       │   │   │   │   ├── Cli.md
│       │   │   │   │   ├── DataFactory.md
│       │   │   │   │   ├── Db.md
│       │   │   │   │   ├── Doctrine2.md
│       │   │   │   │   ├── FTP.md
│       │   │   │   │   ├── Facebook.md
│       │   │   │   │   ├── Filesystem.md
│       │   │   │   │   ├── Laravel5.md
│       │   │   │   │   ├── Lumen.md
│       │   │   │   │   ├── Memcache.md
│       │   │   │   │   ├── MongoDb.md
│       │   │   │   │   ├── Phalcon.md
│       │   │   │   │   ├── PhpBrowser.md
│       │   │   │   │   ├── Queue.md
│       │   │   │   │   ├── REST.md
│       │   │   │   │   ├── Redis.md
│       │   │   │   │   ├── SOAP.md
│       │   │   │   │   ├── Sequence.md
│       │   │   │   │   ├── Silex.md
│       │   │   │   │   ├── Symfony.md
│       │   │   │   │   ├── WebDriver.md
│       │   │   │   │   ├── XMLRPC.md
│       │   │   │   │   ├── Yii1.md
│       │   │   │   │   ├── Yii2.md
│       │   │   │   │   ├── ZF1.md
│       │   │   │   │   ├── ZF2.md
│       │   │   │   │   └── ZendExpressive.md
│       │   │   │   └── reference
│       │   │   │       ├── Autoload.md
│       │   │   │       ├── Commands.md
│       │   │   │       ├── Configuration.md
│       │   │   │       ├── Fixtures.md
│       │   │   │       ├── Functions.md
│       │   │   │       ├── HttpCode.md
│       │   │   │       ├── InitTemplate.md
│       │   │   │       ├── JsonType.md
│       │   │   │       ├── Locator.md
│       │   │   │       ├── Module.md
│       │   │   │       ├── Stub.md
│       │   │   │       └── XmlBuilder.md
│       │   │   ├── ext
│       │   │   │   ├── DotReporter.php
│       │   │   │   ├── Logger.php
│       │   │   │   ├── README.md
│       │   │   │   ├── Recorder.php
│       │   │   │   ├── RunFailed.php
│       │   │   │   ├── RunProcess.php
│       │   │   │   └── SimpleReporter.php
│       │   │   ├── nitpick.json
│       │   │   ├── package
│       │   │   │   ├── bin
│       │   │   │   └── stub.php
│       │   │   ├── phpunit5-loggers.php
│       │   │   ├── readme.md
│       │   │   ├── ruleset.xml
│       │   │   ├── shim.php
│       │   │   ├── src
│       │   │   │   └── Codeception
│       │   │   │       ├── Actor.php
│       │   │   │       ├── Application.php
│       │   │   │       ├── Codecept.php
│       │   │   │       ├── Command
│       │   │   │       ├── Configuration.php
│       │   │   │       ├── Coverage
│       │   │   │       ├── CustomCommandInterface.php
│       │   │   │       ├── Event
│       │   │   │       ├── Events.php
│       │   │   │       ├── Example.php
│       │   │   │       ├── Exception
│       │   │   │       ├── Extension.php
│       │   │   │       ├── GroupObject.php
│       │   │   │       ├── InitTemplate.php
│       │   │   │       ├── Lib
│       │   │   │       ├── Module
│       │   │   │       ├── Module.php
│       │   │   │       ├── PHPUnit
│       │   │   │       ├── README.md
│       │   │   │       ├── Scenario.php
│       │   │   │       ├── Step
│       │   │   │       ├── Step.php
│       │   │   │       ├── Subscriber
│       │   │   │       ├── Suite.php
│       │   │   │       ├── SuiteManager.php
│       │   │   │       ├── Template
│       │   │   │       ├── Test
│       │   │   │       ├── TestInterface.php
│       │   │   │       └── Util
│       │   │   ├── tests
│       │   │   │   ├── README.md
│       │   │   │   ├── angular
│       │   │   │   │   └── AngularCest.php
│       │   │   │   ├── angular.suite.yml
│       │   │   │   ├── cli
│       │   │   │   │   ├── AutoRebuildCept.php
│       │   │   │   │   ├── BootstrapCest.php
│       │   │   │   │   ├── BuildCept.php
│       │   │   │   │   ├── ConfigBundledSuitesCest.php
│       │   │   │   │   ├── ConfigNoActorCest.php
│       │   │   │   │   ├── ConfigParamsCest.php
│       │   │   │   │   ├── ConfigValidateCest.php
│       │   │   │   │   ├── DataProviderFailuresAndExceptionsCest.php
│       │   │   │   │   ├── DryRunCest.php
│       │   │   │   │   ├── ExceptionInBeforeDoesNotMakeFatalErrorCept.php
│       │   │   │   │   ├── ExtensionsCest.php
│       │   │   │   │   ├── GenerateCeptCept.php
│       │   │   │   │   ├── GenerateCestCept.php
│       │   │   │   │   ├── GenerateFeatureCept.php
│       │   │   │   │   ├── GenerateGroupCept.php
│       │   │   │   │   ├── GenerateHelperCept.php
│       │   │   │   │   ├── GeneratePageObjectCest.php
│       │   │   │   │   ├── GenerateScenariosCept.php
│       │   │   │   │   ├── GenerateStepObjectCept.php
│       │   │   │   │   ├── GenerateSuiteCest.php
│       │   │   │   │   ├── GenerateTestCept.php
│       │   │   │   │   ├── GherkinCest.php
│       │   │   │   │   ├── GlobalCommandOptionCest.php
│       │   │   │   │   ├── GroupEventsCept.php
│       │   │   │   │   ├── GroupExtensionCept.php
│       │   │   │   │   ├── IncludedCest.php
│       │   │   │   │   ├── MixedIncludeCest.php
│       │   │   │   │   ├── OrderCest.php
│       │   │   │   │   ├── RegisterCommandCest.php
│       │   │   │   │   ├── RunCest.php
│       │   │   │   │   ├── RunEnvironmentCest.php
│       │   │   │   │   ├── RunIncompleteCept.php
│       │   │   │   │   ├── RunSkippedCept.php
│       │   │   │   │   ├── SecondTestIsExecutedWhenTheFirstTestFailsCest.php
│       │   │   │   │   ├── UnitCept.php
│       │   │   │   │   ├── WildcardIncludeCest.php
│       │   │   │   │   ├── _bootstrap.php
│       │   │   │   │   └── _steps
│       │   │   │   ├── cli.suite.yml
│       │   │   │   ├── coverage
│       │   │   │   │   ├── LocalCept.php
│       │   │   │   │   ├── RemoteServerWithCrap4jCept.php
│       │   │   │   │   ├── RemoteServerWithHtmlCept.php
│       │   │   │   │   ├── RemoteServerWithXmlCept.php
│       │   │   │   │   ├── RemoteWithCrap4jCept.php
│       │   │   │   │   ├── RemoteWithEnvironmentXmlCept.php
│       │   │   │   │   ├── RemoteWithHtmlCept.php
│       │   │   │   │   ├── RemoteWithTextCept.php
│       │   │   │   │   ├── RemoteWithXmlCept.php
│       │   │   │   │   └── _bootstrap.php
│       │   │   │   ├── coverage.suite.yml
│       │   │   │   ├── data
│       │   │   │   │   ├── DummyClass.php
│       │   │   │   │   ├── DummyOverloadableClass.php
│       │   │   │   │   ├── FailDependenciesCyclic.php
│       │   │   │   │   ├── FailDependenciesInChain.php
│       │   │   │   │   ├── FailDependenciesNonExistent.php
│       │   │   │   │   ├── FailDependenciesPrimitiveParam.php
│       │   │   │   │   ├── Invalid.php
│       │   │   │   │   ├── SimpleAdminGroupCest.php
│       │   │   │   │   ├── SimpleCept.php
│       │   │   │   │   ├── SimpleCest.php
│       │   │   │   │   ├── SimpleNamespacedTest.php
│       │   │   │   │   ├── SimpleTest.php
│       │   │   │   │   ├── SimpleWithDependencyInjectionCest.php
│       │   │   │   │   ├── SimpleWithNoClassCest.php
│       │   │   │   │   ├── app
│       │   │   │   │   ├── bundled_suites
│       │   │   │   │   ├── claypit
│       │   │   │   │   ├── dataprovider_failures_and_exceptions
│       │   │   │   │   ├── dump.sql
│       │   │   │   │   ├── dumps
│       │   │   │   │   ├── exception_in_before
│       │   │   │   │   ├── first_test_fails
│       │   │   │   │   ├── group_1
│       │   │   │   │   ├── group_2
│       │   │   │   │   ├── group_3
│       │   │   │   │   ├── included
│       │   │   │   │   ├── included_mix
│       │   │   │   │   ├── included_w
│       │   │   │   │   ├── no_actor_suites
│       │   │   │   │   ├── params
│       │   │   │   │   ├── php55Test
│       │   │   │   │   ├── php70Test
│       │   │   │   │   ├── refund.feature
│       │   │   │   │   ├── register_command
│       │   │   │   │   ├── rest
│       │   │   │   │   ├── result.html
│       │   │   │   │   ├── services
│       │   │   │   │   ├── sqlite.db
│       │   │   │   │   ├── test_groups
│       │   │   │   │   ├── unsetFile.php
│       │   │   │   │   ├── whitespace_group_test
│       │   │   │   │   └── xml
│       │   │   │   ├── docker-compose.yml
│       │   │   │   ├── facebook
│       │   │   │   │   └── FacebookTest.php
│       │   │   │   ├── facebook.suite.yml
│       │   │   │   ├── log
│       │   │   │   ├── support
│       │   │   │   │   ├── AngularGuy.php
│       │   │   │   │   ├── CliGuy.php
│       │   │   │   │   ├── CliHelper.php
│       │   │   │   │   ├── CodeGuy.php
│       │   │   │   │   ├── CodeHelper.php
│       │   │   │   │   ├── CoverGuy.php
│       │   │   │   │   ├── CoverHelper.php
│       │   │   │   │   ├── EmulateModuleHelper.php
│       │   │   │   │   ├── FacebookGuy.php
│       │   │   │   │   ├── Helper
│       │   │   │   │   ├── Shire
│       │   │   │   │   ├── TestHelper.php
│       │   │   │   │   ├── UniversalFramework.php
│       │   │   │   │   ├── WebGuy.php
│       │   │   │   │   └── WebHelper.php
│       │   │   │   ├── unit
│       │   │   │   │   ├── C3Test.php
│       │   │   │   │   ├── Codeception
│       │   │   │   │   └── _bootstrap.php
│       │   │   │   ├── unit.suite.yml
│       │   │   │   ├── web
│       │   │   │   │   ├── FriendWithStepsCept.php
│       │   │   │   │   ├── FriendsCept.php
│       │   │   │   │   ├── FriendsLeaveCept.php
│       │   │   │   │   ├── ReconfigureWebDriverCept.php
│       │   │   │   │   ├── WebDriverTest.php
│       │   │   │   │   ├── _bootstrap.php
│       │   │   │   │   └── _steps
│       │   │   │   └── web.suite.yml
│       │   │   └── wercker.yml
│       │   ├── specify
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── RoboFile.php
│       │   │   ├── VERSION
│       │   │   ├── composer.json
│       │   │   ├── composer.lock
│       │   │   ├── docs
│       │   │   │   ├── GlobalConfig.md
│       │   │   │   └── LocalConfig.md
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   └── Codeception
│       │   │   │       ├── Specify
│       │   │   │       └── Specify.php
│       │   │   └── tests
│       │   │       ├── ConfigTest.php
│       │   │       ├── ObjectPropertyTest.php
│       │   │       ├── SpecifyTest.php
│       │   │       ├── _bootstrap.php
│       │   │       └── _support
│       │   │           └── SpecifyUnitTest.php
│       │   └── verify
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── RoboFile.php
│       │       ├── VERSION
│       │       ├── composer.json
│       │       ├── composer.lock
│       │       ├── phpunit.xml
│       │       ├── src
│       │       │   └── Codeception
│       │       │       ├── Verify.php
│       │       │       └── function.php
│       │       └── tests
│       │           ├── VerifyTest.php
│       │           └── assets
│       │               ├── equal-json-test-file.json
│       │               ├── format-file.txt
│       │               ├── json-test-file.json
│       │               └── xml-test-file.xml
│       ├── composer
│       │   ├── ClassLoader.php
│       │   ├── LICENSE
│       │   ├── autoload_classmap.php
│       │   ├── autoload_files.php
│       │   ├── autoload_namespaces.php
│       │   ├── autoload_psr4.php
│       │   ├── autoload_real.php
│       │   ├── autoload_static.php
│       │   └── installed.json
│       ├── doctrine
│       │   └── instantiator
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       └── src
│       │           └── Doctrine
│       │               └── Instantiator
│       ├── ezyang
│       │   └── htmlpurifier
│       │       ├── CREDITS
│       │       ├── INSTALL
│       │       ├── INSTALL.fr.utf8
│       │       ├── LICENSE
│       │       ├── NEWS
│       │       ├── README.md
│       │       ├── TODO
│       │       ├── VERSION
│       │       ├── WHATSNEW
│       │       ├── WYSIWYG
│       │       ├── composer.json
│       │       ├── extras
│       │       │   ├── ConfigDoc
│       │       │   │   └── HTMLXSLTProcessor.php
│       │       │   ├── FSTools
│       │       │   │   └── File.php
│       │       │   ├── FSTools.php
│       │       │   ├── HTMLPurifierExtras.auto.php
│       │       │   ├── HTMLPurifierExtras.autoload.php
│       │       │   ├── HTMLPurifierExtras.php
│       │       │   └── README
│       │       ├── library
│       │       │   ├── HTMLPurifier
│       │       │   │   ├── Arborize.php
│       │       │   │   ├── AttrCollections.php
│       │       │   │   ├── AttrDef
│       │       │   │   ├── AttrDef.php
│       │       │   │   ├── AttrTransform
│       │       │   │   ├── AttrTransform.php
│       │       │   │   ├── AttrTypes.php
│       │       │   │   ├── AttrValidator.php
│       │       │   │   ├── Bootstrap.php
│       │       │   │   ├── CSSDefinition.php
│       │       │   │   ├── ChildDef
│       │       │   │   ├── ChildDef.php
│       │       │   │   ├── Config.php
│       │       │   │   ├── ConfigSchema
│       │       │   │   ├── ConfigSchema.php
│       │       │   │   ├── ContentSets.php
│       │       │   │   ├── Context.php
│       │       │   │   ├── Definition.php
│       │       │   │   ├── DefinitionCache
│       │       │   │   ├── DefinitionCache.php
│       │       │   │   ├── DefinitionCacheFactory.php
│       │       │   │   ├── Doctype.php
│       │       │   │   ├── DoctypeRegistry.php
│       │       │   │   ├── ElementDef.php
│       │       │   │   ├── Encoder.php
│       │       │   │   ├── EntityLookup
│       │       │   │   ├── EntityLookup.php
│       │       │   │   ├── EntityParser.php
│       │       │   │   ├── ErrorCollector.php
│       │       │   │   ├── ErrorStruct.php
│       │       │   │   ├── Exception.php
│       │       │   │   ├── Filter
│       │       │   │   ├── Filter.php
│       │       │   │   ├── Generator.php
│       │       │   │   ├── HTMLDefinition.php
│       │       │   │   ├── HTMLModule
│       │       │   │   ├── HTMLModule.php
│       │       │   │   ├── HTMLModuleManager.php
│       │       │   │   ├── IDAccumulator.php
│       │       │   │   ├── Injector
│       │       │   │   ├── Injector.php
│       │       │   │   ├── Language
│       │       │   │   ├── Language.php
│       │       │   │   ├── LanguageFactory.php
│       │       │   │   ├── Length.php
│       │       │   │   ├── Lexer
│       │       │   │   ├── Lexer.php
│       │       │   │   ├── Node
│       │       │   │   ├── Node.php
│       │       │   │   ├── PercentEncoder.php
│       │       │   │   ├── Printer
│       │       │   │   ├── Printer.php
│       │       │   │   ├── PropertyList.php
│       │       │   │   ├── PropertyListIterator.php
│       │       │   │   ├── Queue.php
│       │       │   │   ├── Strategy
│       │       │   │   ├── Strategy.php
│       │       │   │   ├── StringHash.php
│       │       │   │   ├── StringHashParser.php
│       │       │   │   ├── TagTransform
│       │       │   │   ├── TagTransform.php
│       │       │   │   ├── Token
│       │       │   │   ├── Token.php
│       │       │   │   ├── TokenFactory.php
│       │       │   │   ├── URI.php
│       │       │   │   ├── URIDefinition.php
│       │       │   │   ├── URIFilter
│       │       │   │   ├── URIFilter.php
│       │       │   │   ├── URIParser.php
│       │       │   │   ├── URIScheme
│       │       │   │   ├── URIScheme.php
│       │       │   │   ├── URISchemeRegistry.php
│       │       │   │   ├── UnitConverter.php
│       │       │   │   ├── VarParser
│       │       │   │   ├── VarParser.php
│       │       │   │   ├── VarParserException.php
│       │       │   │   └── Zipper.php
│       │       │   ├── HTMLPurifier.auto.php
│       │       │   ├── HTMLPurifier.autoload.php
│       │       │   ├── HTMLPurifier.composer.php
│       │       │   ├── HTMLPurifier.func.php
│       │       │   ├── HTMLPurifier.includes.php
│       │       │   ├── HTMLPurifier.kses.php
│       │       │   ├── HTMLPurifier.path.php
│       │       │   ├── HTMLPurifier.php
│       │       │   └── HTMLPurifier.safe-includes.php
│       │       ├── maintenance
│       │       │   ├── PH5P.patch
│       │       │   ├── PH5P.php
│       │       │   ├── add-vimline.php
│       │       │   ├── common.php
│       │       │   ├── compile-doxygen.sh
│       │       │   ├── config-scanner.php
│       │       │   ├── flush-definition-cache.php
│       │       │   ├── flush.php
│       │       │   ├── generate-entity-file.php
│       │       │   ├── generate-includes.php
│       │       │   ├── generate-ph5p-patch.php
│       │       │   ├── generate-schema-cache.php
│       │       │   ├── generate-standalone.php
│       │       │   ├── merge-library.php
│       │       │   ├── old-extract-schema.php
│       │       │   ├── old-remove-require-once.php
│       │       │   ├── old-remove-schema-def.php
│       │       │   ├── regenerate-docs.sh
│       │       │   ├── remove-trailing-whitespace.php
│       │       │   ├── rename-config.php
│       │       │   └── update-config.php
│       │       ├── package.php
│       │       ├── phpdoc.ini
│       │       ├── plugins
│       │       │   ├── modx.txt
│       │       │   └── phorum
│       │       │       ├── Changelog
│       │       │       ├── INSTALL
│       │       │       ├── README
│       │       │       ├── config.default.php
│       │       │       ├── htmlpurifier
│       │       │       ├── htmlpurifier.php
│       │       │       ├── info.txt
│       │       │       ├── init-config.php
│       │       │       ├── migrate.bbcode.php
│       │       │       ├── settings
│       │       │       └── settings.php
│       │       ├── release1-update.php
│       │       ├── release2-tag.php
│       │       ├── test-settings.sample.php
│       │       ├── test-settings.travis.php
│       │       └── tests
│       │           └── path2class.func.php
│       ├── fzaninotto
│       │   └── faker
│       │       ├── CHANGELOG.md
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── Makefile
│       │       ├── composer.json
│       │       ├── phpunit.xml.dist
│       │       ├── readme.md
│       │       ├── src
│       │       │   ├── Faker
│       │       │   │   ├── Calculator
│       │       │   │   ├── DefaultGenerator.php
│       │       │   │   ├── Documentor.php
│       │       │   │   ├── Factory.php
│       │       │   │   ├── Generator.php
│       │       │   │   ├── Guesser
│       │       │   │   ├── ORM
│       │       │   │   ├── Provider
│       │       │   │   ├── UniqueGenerator.php
│       │       │   │   └── ValidGenerator.php
│       │       │   └── autoload.php
│       │       └── test
│       │           ├── Faker
│       │           │   ├── Calculator
│       │           │   ├── DefaultGeneratorTest.php
│       │           │   ├── GeneratorTest.php
│       │           │   └── Provider
│       │           ├── documentor.php
│       │           └── test.php
│       ├── guzzlehttp
│       │   └── psr7
│       │       ├── CHANGELOG.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       └── src
│       │           ├── AppendStream.php
│       │           ├── BufferStream.php
│       │           ├── CachingStream.php
│       │           ├── DroppingStream.php
│       │           ├── FnStream.php
│       │           ├── InflateStream.php
│       │           ├── LazyOpenStream.php
│       │           ├── LimitStream.php
│       │           ├── MessageTrait.php
│       │           ├── MultipartStream.php
│       │           ├── NoSeekStream.php
│       │           ├── PumpStream.php
│       │           ├── Request.php
│       │           ├── Response.php
│       │           ├── ServerRequest.php
│       │           ├── Stream.php
│       │           ├── StreamDecoratorTrait.php
│       │           ├── StreamWrapper.php
│       │           ├── UploadedFile.php
│       │           ├── Uri.php
│       │           ├── UriNormalizer.php
│       │           ├── UriResolver.php
│       │           ├── functions.php
│       │           └── functions_include.php
│       ├── myclabs
│       │   └── deep-copy
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── 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
│       │       └── src
│       │           └── DeepCopy
│       │               ├── DeepCopy.php
│       │               ├── Exception
│       │               ├── Filter
│       │               ├── Matcher
│       │               ├── Reflection
│       │               ├── TypeFilter
│       │               ├── TypeMatcher
│       │               └── deep_copy.php
│       ├── phar-io
│       │   ├── manifest
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── examples
│       │   │   │   └── example-01.php
│       │   │   ├── phive.xml
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── ManifestDocumentMapper.php
│       │   │   │   ├── ManifestLoader.php
│       │   │   │   ├── ManifestSerializer.php
│       │   │   │   ├── exceptions
│       │   │   │   │   ├── Exception.php
│       │   │   │   │   ├── InvalidApplicationNameException.php
│       │   │   │   │   ├── InvalidEmailException.php
│       │   │   │   │   ├── InvalidUrlException.php
│       │   │   │   │   ├── ManifestDocumentException.php
│       │   │   │   │   ├── ManifestDocumentMapperException.php
│       │   │   │   │   ├── ManifestElementException.php
│       │   │   │   │   └── ManifestLoaderException.php
│       │   │   │   ├── values
│       │   │   │   │   ├── Application.php
│       │   │   │   │   ├── ApplicationName.php
│       │   │   │   │   ├── Author.php
│       │   │   │   │   ├── AuthorCollection.php
│       │   │   │   │   ├── AuthorCollectionIterator.php
│       │   │   │   │   ├── BundledComponent.php
│       │   │   │   │   ├── BundledComponentCollection.php
│       │   │   │   │   ├── BundledComponentCollectionIterator.php
│       │   │   │   │   ├── CopyrightInformation.php
│       │   │   │   │   ├── Email.php
│       │   │   │   │   ├── Extension.php
│       │   │   │   │   ├── Library.php
│       │   │   │   │   ├── License.php
│       │   │   │   │   ├── Manifest.php
│       │   │   │   │   ├── PhpExtensionRequirement.php
│       │   │   │   │   ├── PhpVersionRequirement.php
│       │   │   │   │   ├── Requirement.php
│       │   │   │   │   ├── RequirementCollection.php
│       │   │   │   │   ├── RequirementCollectionIterator.php
│       │   │   │   │   ├── Type.php
│       │   │   │   │   └── Url.php
│       │   │   │   └── xml
│       │   │   │       ├── AuthorElement.php
│       │   │   │       ├── AuthorElementCollection.php
│       │   │   │       ├── BundlesElement.php
│       │   │   │       ├── ComponentElement.php
│       │   │   │       ├── ComponentElementCollection.php
│       │   │   │       ├── ContainsElement.php
│       │   │   │       ├── CopyrightElement.php
│       │   │   │       ├── ElementCollection.php
│       │   │   │       ├── ExtElement.php
│       │   │   │       ├── ExtElementCollection.php
│       │   │   │       ├── ExtensionElement.php
│       │   │   │       ├── LicenseElement.php
│       │   │   │       ├── ManifestDocument.php
│       │   │   │       ├── ManifestDocumentLoadingException.php
│       │   │   │       ├── ManifestElement.php
│       │   │   │       ├── PhpElement.php
│       │   │   │       └── RequiresElement.php
│       │   │   └── tests
│       │   │       ├── ManifestDocumentMapperTest.php
│       │   │       ├── ManifestLoaderTest.php
│       │   │       ├── ManifestSerializerTest.php
│       │   │       ├── _fixture
│       │   │       │   ├── custom.xml
│       │   │       │   ├── extension-invalidcompatible.xml
│       │   │       │   ├── extension.xml
│       │   │       │   ├── invalidversion.xml
│       │   │       │   ├── invalidversionconstraint.xml
│       │   │       │   ├── library.xml
│       │   │       │   ├── manifest.xml
│       │   │       │   ├── phpunit-5.6.5.xml
│       │   │       │   └── test.phar
│       │   │       ├── exceptions
│       │   │       │   └── ManifestDocumentLoadingExceptionTest.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
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── build.xml
│       │       ├── composer.json
│       │       ├── phive.xml
│       │       ├── phpunit.xml
│       │       ├── src
│       │       │   ├── AbstractVersionConstraint.php
│       │       │   ├── AndVersionConstraintGroup.php
│       │       │   ├── AnyVersionConstraint.php
│       │       │   ├── ExactVersionConstraint.php
│       │       │   ├── Exception.php
│       │       │   ├── GreaterThanOrEqualToVersionConstraint.php
│       │       │   ├── InvalidVersionException.php
│       │       │   ├── OrVersionConstraintGroup.php
│       │       │   ├── PreReleaseSuffix.php
│       │       │   ├── SpecificMajorAndMinorVersionConstraint.php
│       │       │   ├── SpecificMajorVersionConstraint.php
│       │       │   ├── UnsupportedVersionConstraintException.php
│       │       │   ├── Version.php
│       │       │   ├── VersionConstraint.php
│       │       │   ├── VersionConstraintParser.php
│       │       │   ├── VersionConstraintValue.php
│       │       │   └── VersionNumber.php
│       │       └── tests
│       │           ├── Integration
│       │           │   └── VersionConstraintParserTest.php
│       │           └── Unit
│       │               ├── AbstractVersionConstraintTest.php
│       │               ├── AndVersionConstraintGroupTest.php
│       │               ├── AnyVersionConstraintTest.php
│       │               ├── ExactVersionConstraintTest.php
│       │               ├── GreaterThanOrEqualToVersionConstraintTest.php
│       │               ├── OrVersionConstraintGroupTest.php
│       │               ├── SpecificMajorAndMinorVersionConstraintTest.php
│       │               ├── SpecificMajorVersionConstraintTest.php
│       │               └── VersionTest.php
│       ├── phpdocumentor
│       │   ├── reflection-common
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Element.php
│       │   │       ├── File.php
│       │   │       ├── Fqsen.php
│       │   │       ├── Location.php
│       │   │       ├── Project.php
│       │   │       └── ProjectFactory.php
│       │   ├── reflection-docblock
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── DocBlock
│       │   │       │   ├── Description.php
│       │   │       │   ├── DescriptionFactory.php
│       │   │       │   ├── ExampleFinder.php
│       │   │       │   ├── Serializer.php
│       │   │       │   ├── StandardTagFactory.php
│       │   │       │   ├── Tag.php
│       │   │       │   ├── TagFactory.php
│       │   │       │   └── Tags
│       │   │       ├── DocBlock.php
│       │   │       ├── DocBlockFactory.php
│       │   │       └── DocBlockFactoryInterface.php
│       │   └── type-resolver
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       └── src
│       │           ├── FqsenResolver.php
│       │           ├── Type.php
│       │           ├── TypeResolver.php
│       │           └── Types
│       │               ├── Array_.php
│       │               ├── Boolean.php
│       │               ├── Callable_.php
│       │               ├── Compound.php
│       │               ├── Context.php
│       │               ├── ContextFactory.php
│       │               ├── Float_.php
│       │               ├── Integer.php
│       │               ├── Iterable_.php
│       │               ├── Mixed_.php
│       │               ├── Null_.php
│       │               ├── Nullable.php
│       │               ├── Object_.php
│       │               ├── Parent_.php
│       │               ├── Resource_.php
│       │               ├── Scalar.php
│       │               ├── Self_.php
│       │               ├── Static_.php
│       │               ├── String_.php
│       │               ├── This.php
│       │               └── Void_.php
│       ├── phpspec
│       │   ├── php-diff
│       │   │   ├── README
│       │   │   ├── composer.json
│       │   │   ├── example
│       │   │   │   ├── a.txt
│       │   │   │   ├── b.txt
│       │   │   │   ├── example.php
│       │   │   │   └── styles.css
│       │   │   └── lib
│       │   │       ├── Diff
│       │   │       │   ├── Renderer
│       │   │       │   └── SequenceMatcher.php
│       │   │       └── Diff.php
│       │   └── prophecy
│       │       ├── CHANGES.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       └── src
│       │           └── Prophecy
│       │               ├── Argument
│       │               ├── Argument.php
│       │               ├── Call
│       │               ├── Comparator
│       │               ├── Doubler
│       │               ├── Exception
│       │               ├── PhpDocumentor
│       │               ├── Prediction
│       │               ├── Promise
│       │               ├── Prophecy
│       │               ├── Prophet.php
│       │               └── Util
│       ├── phpunit
│       │   ├── php-code-coverage
│       │   │   ├── ChangeLog-2.2.md
│       │   │   ├── ChangeLog-3.0.md
│       │   │   ├── ChangeLog-3.1.md
│       │   │   ├── ChangeLog-3.2.md
│       │   │   ├── ChangeLog-3.3.md
│       │   │   ├── ChangeLog-4.0.md
│       │   │   ├── ChangeLog-5.0.md
│       │   │   ├── ChangeLog-5.1.md
│       │   │   ├── ChangeLog-5.2.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── CodeCoverage.php
│       │   │   │   ├── Driver
│       │   │   │   │   ├── Driver.php
│       │   │   │   │   ├── HHVM.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
│       │   │   │   │   ├── PHP.php
│       │   │   │   │   ├── Text.php
│       │   │   │   │   └── Xml
│       │   │   │   ├── Util.php
│       │   │   │   └── Version.php
│       │   │   └── tests
│       │   │       ├── TestCase.php
│       │   │       ├── _files
│       │   │       │   ├── BankAccount-clover.xml
│       │   │       │   ├── BankAccount-crap4j.xml
│       │   │       │   ├── BankAccount-text.txt
│       │   │       │   ├── BankAccount.php
│       │   │       │   ├── BankAccountTest.php
│       │   │       │   ├── CoverageClassExtendedTest.php
│       │   │       │   ├── CoverageClassTest.php
│       │   │       │   ├── CoverageFunctionParenthesesTest.php
│       │   │       │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│       │   │       │   ├── CoverageFunctionTest.php
│       │   │       │   ├── CoverageMethodOneLineAnnotationTest.php
│       │   │       │   ├── CoverageMethodParenthesesTest.php
│       │   │       │   ├── CoverageMethodParenthesesWhitespaceTest.php
│       │   │       │   ├── CoverageMethodTest.php
│       │   │       │   ├── CoverageNoneTest.php
│       │   │       │   ├── CoverageNotPrivateTest.php
│       │   │       │   ├── CoverageNotProtectedTest.php
│       │   │       │   ├── CoverageNotPublicTest.php
│       │   │       │   ├── CoverageNothingTest.php
│       │   │       │   ├── CoveragePrivateTest.php
│       │   │       │   ├── CoverageProtectedTest.php
│       │   │       │   ├── CoveragePublicTest.php
│       │   │       │   ├── CoverageTwoDefaultClassAnnotations.php
│       │   │       │   ├── CoveredClass.php
│       │   │       │   ├── CoveredFunction.php
│       │   │       │   ├── NamespaceCoverageClassExtendedTest.php
│       │   │       │   ├── NamespaceCoverageClassTest.php
│       │   │       │   ├── NamespaceCoverageCoversClassPublicTest.php
│       │   │       │   ├── NamespaceCoverageCoversClassTest.php
│       │   │       │   ├── NamespaceCoverageMethodTest.php
│       │   │       │   ├── NamespaceCoverageNotPrivateTest.php
│       │   │       │   ├── NamespaceCoverageNotProtectedTest.php
│       │   │       │   ├── NamespaceCoverageNotPublicTest.php
│       │   │       │   ├── NamespaceCoveragePrivateTest.php
│       │   │       │   ├── NamespaceCoverageProtectedTest.php
│       │   │       │   ├── NamespaceCoveragePublicTest.php
│       │   │       │   ├── NamespaceCoveredClass.php
│       │   │       │   ├── NotExistingCoveredElementTest.php
│       │   │       │   ├── Report
│       │   │       │   ├── class-with-anonymous-function-clover.xml
│       │   │       │   ├── class-with-anonymous-function-crap4j.xml
│       │   │       │   ├── class-with-anonymous-function-text.txt
│       │   │       │   ├── ignored-lines-clover.xml
│       │   │       │   ├── ignored-lines-crap4j.xml
│       │   │       │   ├── ignored-lines-text.txt
│       │   │       │   ├── 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
│       │   │       ├── bootstrap.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
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── Facade.php
│       │   │       ├── Factory.php
│       │   │       └── Iterator.php
│       │   ├── php-text-template
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       └── Template.php
│       │   ├── php-timer
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   └── Timer.php
│       │   │   └── tests
│       │   │       └── TimerTest.php
│       │   ├── php-token-stream
│       │   │   ├── ChangeLog.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Token
│       │   │   │   │   ├── Stream
│       │   │   │   │   └── Stream.php
│       │   │   │   └── Token.php
│       │   │   └── tests
│       │   │       ├── Token
│       │   │       │   ├── ClassTest.php
│       │   │       │   ├── ClosureTest.php
│       │   │       │   ├── FunctionTest.php
│       │   │       │   ├── IncludeTest.php
│       │   │       │   ├── InterfaceTest.php
│       │   │       │   └── NamespaceTest.php
│       │   │       ├── TokenTest.php
│       │   │       ├── _fixture
│       │   │       │   ├── classExtendsNamespacedClass.php
│       │   │       │   ├── classInNamespace.php
│       │   │       │   ├── classInScopedNamespace.php
│       │   │       │   ├── classUsesNamespacedFunction.php
│       │   │       │   ├── class_with_method_named_empty.php
│       │   │       │   ├── class_with_method_that_declares_anonymous_class.php
│       │   │       │   ├── class_with_method_that_declares_anonymous_class2.php
│       │   │       │   ├── class_with_multiple_anonymous_classes_and_functions.php
│       │   │       │   ├── closure.php
│       │   │       │   ├── issue19.php
│       │   │       │   ├── issue30.php
│       │   │       │   ├── multipleNamespacesWithOneClassUsingBraces.php
│       │   │       │   ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│       │   │       │   ├── source.php
│       │   │       │   ├── source2.php
│       │   │       │   ├── source3.php
│       │   │       │   ├── source4.php
│       │   │       │   └── source5.php
│       │   │       └── bootstrap.php
│       │   ├── phpunit
│       │   │   ├── ChangeLog-4.0.md
│       │   │   ├── ChangeLog-4.1.md
│       │   │   ├── ChangeLog-4.2.md
│       │   │   ├── ChangeLog-4.3.md
│       │   │   ├── ChangeLog-4.4.md
│       │   │   ├── ChangeLog-4.5.md
│       │   │   ├── ChangeLog-4.6.md
│       │   │   ├── ChangeLog-4.7.md
│       │   │   ├── ChangeLog-4.8.md
│       │   │   ├── ChangeLog-5.0.md
│       │   │   ├── ChangeLog-5.1.md
│       │   │   ├── ChangeLog-5.2.md
│       │   │   ├── ChangeLog-5.3.md
│       │   │   ├── ChangeLog-5.4.md
│       │   │   ├── ChangeLog-5.5.md
│       │   │   ├── ChangeLog-5.6.md
│       │   │   ├── ChangeLog-5.7.md
│       │   │   ├── ChangeLog-6.0.md
│       │   │   ├── ChangeLog-6.1.md
│       │   │   ├── ChangeLog-6.2.md
│       │   │   ├── ChangeLog-6.3.md
│       │   │   ├── ChangeLog-6.4.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── appveyor.yml
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit
│       │   │   ├── phpunit.xml
│       │   │   ├── phpunit.xsd
│       │   │   ├── src
│       │   │   │   ├── Exception.php
│       │   │   │   ├── Framework
│       │   │   │   │   ├── Assert
│       │   │   │   │   ├── Assert.php
│       │   │   │   │   ├── AssertionFailedError.php
│       │   │   │   │   ├── BaseTestListener.php
│       │   │   │   │   ├── CodeCoverageException.php
│       │   │   │   │   ├── Constraint
│       │   │   │   │   ├── CoveredCodeNotExecutedException.php
│       │   │   │   │   ├── DataProviderTestSuite.php
│       │   │   │   │   ├── Error
│       │   │   │   │   ├── Exception.php
│       │   │   │   │   ├── ExceptionWrapper.php
│       │   │   │   │   ├── ExpectationFailedException.php
│       │   │   │   │   ├── IncompleteTest.php
│       │   │   │   │   ├── IncompleteTestCase.php
│       │   │   │   │   ├── IncompleteTestError.php
│       │   │   │   │   ├── InvalidCoversTargetException.php
│       │   │   │   │   ├── MissingCoversAnnotationException.php
│       │   │   │   │   ├── OutputError.php
│       │   │   │   │   ├── RiskyTest.php
│       │   │   │   │   ├── RiskyTestError.php
│       │   │   │   │   ├── SelfDescribing.php
│       │   │   │   │   ├── SkippedTest.php
│       │   │   │   │   ├── SkippedTestCase.php
│       │   │   │   │   ├── SkippedTestError.php
│       │   │   │   │   ├── SkippedTestSuiteError.php
│       │   │   │   │   ├── SyntheticError.php
│       │   │   │   │   ├── Test.php
│       │   │   │   │   ├── TestCase.php
│       │   │   │   │   ├── TestFailure.php
│       │   │   │   │   ├── TestListener.php
│       │   │   │   │   ├── TestListenerDefaultImplementation.php
│       │   │   │   │   ├── TestResult.php
│       │   │   │   │   ├── TestSuite.php
│       │   │   │   │   ├── TestSuiteIterator.php
│       │   │   │   │   ├── UnintentionallyCoveredCodeError.php
│       │   │   │   │   ├── Warning.php
│       │   │   │   │   └── WarningTestCase.php
│       │   │   │   ├── Runner
│       │   │   │   │   ├── BaseTestRunner.php
│       │   │   │   │   ├── Exception.php
│       │   │   │   │   ├── Filter
│       │   │   │   │   ├── PhptTestCase.php
│       │   │   │   │   ├── StandardTestSuiteLoader.php
│       │   │   │   │   ├── TestSuiteLoader.php
│       │   │   │   │   └── Version.php
│       │   │   │   ├── TextUI
│       │   │   │   │   ├── Command.php
│       │   │   │   │   ├── ResultPrinter.php
│       │   │   │   │   └── TestRunner.php
│       │   │   │   └── Util
│       │   │   │       ├── Blacklist.php
│       │   │   │       ├── Configuration.php
│       │   │   │       ├── ConfigurationGenerator.php
│       │   │   │       ├── ErrorHandler.php
│       │   │   │       ├── Fileloader.php
│       │   │   │       ├── Filesystem.php
│       │   │   │       ├── Filter.php
│       │   │   │       ├── Getopt.php
│       │   │   │       ├── GlobalState.php
│       │   │   │       ├── InvalidArgumentHelper.php
│       │   │   │       ├── Log
│       │   │   │       ├── PHP
│       │   │   │       ├── Printer.php
│       │   │   │       ├── RegularExpression.php
│       │   │   │       ├── Test.php
│       │   │   │       ├── TestDox
│       │   │   │       ├── TextTestListRenderer.php
│       │   │   │       ├── Type.php
│       │   │   │       ├── Xml.php
│       │   │   │       └── XmlTestListRenderer.php
│       │   │   └── tests
│       │   │       ├── Fail
│       │   │       │   └── fail.phpt
│       │   │       ├── Framework
│       │   │       │   ├── AssertTest.php
│       │   │       │   ├── BaseTestListenerTest.php
│       │   │       │   ├── Constraint
│       │   │       │   ├── ConstraintTest.php
│       │   │       │   ├── SuiteTest.php
│       │   │       │   ├── TestCaseTest.php
│       │   │       │   ├── TestFailureTest.php
│       │   │       │   ├── TestImplementorTest.php
│       │   │       │   └── TestListenerTest.php
│       │   │       ├── Regression
│       │   │       │   ├── GitHub
│       │   │       │   └── Trac
│       │   │       ├── Runner
│       │   │       │   └── PhptTestCaseTest.php
│       │   │       ├── TextUI
│       │   │       │   ├── _files
│       │   │       │   ├── abstract-test-class.phpt
│       │   │       │   ├── assertion.phpt
│       │   │       │   ├── code-coverage-ignore.phpt
│       │   │       │   ├── colors-always.phpt
│       │   │       │   ├── concrete-test-class.phpt
│       │   │       │   ├── custom-printer-debug.phpt
│       │   │       │   ├── custom-printer-verbose.phpt
│       │   │       │   ├── dataprovider-debug.phpt
│       │   │       │   ├── dataprovider-log-xml-isolation.phpt
│       │   │       │   ├── dataprovider-log-xml.phpt
│       │   │       │   ├── dataprovider-testdox.phpt
│       │   │       │   ├── debug.phpt
│       │   │       │   ├── default-isolation.phpt
│       │   │       │   ├── default.phpt
│       │   │       │   ├── defaulttestsuite-using-testsuite.phpt
│       │   │       │   ├── defaulttestsuite.phpt
│       │   │       │   ├── dependencies-clone.phpt
│       │   │       │   ├── dependencies-isolation.phpt
│       │   │       │   ├── dependencies.phpt
│       │   │       │   ├── dependencies2-isolation.phpt
│       │   │       │   ├── dependencies2.phpt
│       │   │       │   ├── dependencies3-isolation.phpt
│       │   │       │   ├── dependencies3.phpt
│       │   │       │   ├── disable-code-coverage-ignore.phpt
│       │   │       │   ├── empty-testcase.phpt
│       │   │       │   ├── exception-stack.phpt
│       │   │       │   ├── exclude-group-isolation.phpt
│       │   │       │   ├── exclude-group.phpt
│       │   │       │   ├── failure-isolation.phpt
│       │   │       │   ├── failure-reverse-list.phpt
│       │   │       │   ├── failure.phpt
│       │   │       │   ├── fatal-isolation.phpt
│       │   │       │   ├── filter-class-isolation.phpt
│       │   │       │   ├── filter-class.phpt
│       │   │       │   ├── filter-dataprovider-by-classname-and-range-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-classname-and-range.phpt
│       │   │       │   ├── filter-dataprovider-by-number-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-number.phpt
│       │   │       │   ├── filter-dataprovider-by-only-range-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-only-range.phpt
│       │   │       │   ├── filter-dataprovider-by-only-regexp-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-only-regexp.phpt
│       │   │       │   ├── filter-dataprovider-by-only-string-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-only-string.phpt
│       │   │       │   ├── filter-dataprovider-by-range-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-range.phpt
│       │   │       │   ├── filter-dataprovider-by-regexp-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-regexp.phpt
│       │   │       │   ├── filter-dataprovider-by-string-isolation.phpt
│       │   │       │   ├── filter-dataprovider-by-string.phpt
│       │   │       │   ├── filter-method-case-insensitive.phpt
│       │   │       │   ├── filter-method-case-sensitive-no-result.phpt
│       │   │       │   ├── filter-method-isolation.phpt
│       │   │       │   ├── filter-method.phpt
│       │   │       │   ├── filter-no-results.phpt
│       │   │       │   ├── forward-compatibility.phpt
│       │   │       │   ├── group-isolation.phpt
│       │   │       │   ├── group.phpt
│       │   │       │   ├── help.phpt
│       │   │       │   ├── help2.phpt
│       │   │       │   ├── ini-isolation.phpt
│       │   │       │   ├── list-groups.phpt
│       │   │       │   ├── list-suites.phpt
│       │   │       │   ├── list-tests-dataprovider.phpt
│       │   │       │   ├── list-tests-xml-dataprovider.phpt
│       │   │       │   ├── log-junit.phpt
│       │   │       │   ├── log-teamcity.phpt
│       │   │       │   ├── mycommand.phpt
│       │   │       │   ├── options-after-arguments.phpt
│       │   │       │   ├── output-isolation.phpt
│       │   │       │   ├── phar-extension-suppressed.phpt
│       │   │       │   ├── phar-extension.phpt
│       │   │       │   ├── phpt-args.phpt
│       │   │       │   ├── phpt-env.phpt
│       │   │       │   ├── phpt-external.phpt
│       │   │       │   ├── phpt-stderr.phpt
│       │   │       │   ├── phpt-stdin.phpt
│       │   │       │   ├── phpt-xfail.phpt
│       │   │       │   ├── repeat.phpt
│       │   │       │   ├── report-useless-tests-incomplete.phpt
│       │   │       │   ├── report-useless-tests-isolation.phpt
│       │   │       │   ├── report-useless-tests.phpt
│       │   │       │   ├── stop-on-warning-via-cli.phpt
│       │   │       │   ├── stop-on-warning-via-config.phpt
│       │   │       │   ├── teamcity-inner-exceptions.phpt
│       │   │       │   ├── teamcity.phpt
│       │   │       │   ├── test-suffix-multiple.phpt
│       │   │       │   ├── test-suffix-single.phpt
│       │   │       │   ├── testdox-exclude-group.phpt
│       │   │       │   ├── testdox-group.phpt
│       │   │       │   ├── testdox-html.phpt
│       │   │       │   ├── testdox-text.phpt
│       │   │       │   ├── testdox-xml.phpt
│       │   │       │   └── testdox.phpt
│       │   │       ├── Util
│       │   │       │   ├── ConfigurationTest.php
│       │   │       │   ├── GetoptTest.php
│       │   │       │   ├── GlobalStateTest.php
│       │   │       │   ├── PHP
│       │   │       │   ├── RegularExpressionTest.php
│       │   │       │   ├── TestDox
│       │   │       │   ├── TestTest.php
│       │   │       │   └── XmlTest.php
│       │   │       ├── _files
│       │   │       │   ├── AbstractTest.php
│       │   │       │   ├── ArrayAccessible.php
│       │   │       │   ├── AssertionExample.php
│       │   │       │   ├── AssertionExampleTest.php
│       │   │       │   ├── Author.php
│       │   │       │   ├── BankAccount.php
│       │   │       │   ├── BankAccountTest.php
│       │   │       │   ├── BankAccountTest.test.php
│       │   │       │   ├── BankAccountTest2.php
│       │   │       │   ├── BaseTestListenerSample.php
│       │   │       │   ├── BeforeAndAfterTest.php
│       │   │       │   ├── BeforeClassAndAfterClassTest.php
│       │   │       │   ├── BeforeClassWithOnlyDataProviderTest.php
│       │   │       │   ├── Book.php
│       │   │       │   ├── Calculator.php
│       │   │       │   ├── ChangeCurrentWorkingDirectoryTest.php
│       │   │       │   ├── ClassWithNonPublicAttributes.php
│       │   │       │   ├── ClassWithScalarTypeDeclarations.php
│       │   │       │   ├── ClassWithToString.php
│       │   │       │   ├── ClonedDependencyTest.php
│       │   │       │   ├── ConcreteTest.my.php
│       │   │       │   ├── ConcreteTest.php
│       │   │       │   ├── CoverageClassExtendedTest.php
│       │   │       │   ├── CoverageClassTest.php
│       │   │       │   ├── CoverageFunctionParenthesesTest.php
│       │   │       │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│       │   │       │   ├── CoverageFunctionTest.php
│       │   │       │   ├── CoverageMethodOneLineAnnotationTest.php
│       │   │       │   ├── CoverageMethodParenthesesTest.php
│       │   │       │   ├── CoverageMethodParenthesesWhitespaceTest.php
│       │   │       │   ├── CoverageMethodTest.php
│       │   │       │   ├── CoverageNamespacedFunctionTest.php
│       │   │       │   ├── CoverageNoneTest.php
│       │   │       │   ├── CoverageNotPrivateTest.php
│       │   │       │   ├── CoverageNotProtectedTest.php
│       │   │       │   ├── CoverageNotPublicTest.php
│       │   │       │   ├── CoverageNothingTest.php
│       │   │       │   ├── CoveragePrivateTest.php
│       │   │       │   ├── CoverageProtectedTest.php
│       │   │       │   ├── CoveragePublicTest.php
│       │   │       │   ├── CoverageTwoDefaultClassAnnotations.php
│       │   │       │   ├── CoveredClass.php
│       │   │       │   ├── CoveredFunction.php
│       │   │       │   ├── CustomPrinter.php
│       │   │       │   ├── DataProviderDebugTest.php
│       │   │       │   ├── DataProviderDependencyTest.php
│       │   │       │   ├── DataProviderFilterTest.php
│       │   │       │   ├── DataProviderIncompleteTest.php
│       │   │       │   ├── DataProviderSkippedTest.php
│       │   │       │   ├── DataProviderTest.php
│       │   │       │   ├── DataProviderTestDoxTest.php
│       │   │       │   ├── DependencyFailureTest.php
│       │   │       │   ├── DependencySuccessTest.php
│       │   │       │   ├── DependencyTestSuite.php
│       │   │       │   ├── DoubleTestCase.php
│       │   │       │   ├── DummyBarTest.php
│       │   │       │   ├── DummyException.php
│       │   │       │   ├── DummyFooTest.php
│       │   │       │   ├── EmptyTestCaseTest.php
│       │   │       │   ├── ExceptionInAssertPostConditionsTest.php
│       │   │       │   ├── ExceptionInAssertPreConditionsTest.php
│       │   │       │   ├── ExceptionInSetUpTest.php
│       │   │       │   ├── ExceptionInTearDownTest.php
│       │   │       │   ├── ExceptionInTest.php
│       │   │       │   ├── ExceptionNamespaceTest.php
│       │   │       │   ├── ExceptionStackTest.php
│       │   │       │   ├── ExceptionTest.php
│       │   │       │   ├── Failure.php
│       │   │       │   ├── FailureTest.php
│       │   │       │   ├── FatalTest.php
│       │   │       │   ├── IgnoreCodeCoverageClass.php
│       │   │       │   ├── IgnoreCodeCoverageClassTest.php
│       │   │       │   ├── IncompleteTest.php
│       │   │       │   ├── Inheritance
│       │   │       │   ├── InheritedTestCase.php
│       │   │       │   ├── IniTest.php
│       │   │       │   ├── IsolationTest.php
│       │   │       │   ├── JsonData
│       │   │       │   ├── MockRunner.php
│       │   │       │   ├── Mockable.php
│       │   │       │   ├── MultiDependencyTest.php
│       │   │       │   ├── MultipleDataProviderTest.php
│       │   │       │   ├── MyCommand.php
│       │   │       │   ├── NamespaceCoverageClassExtendedTest.php
│       │   │       │   ├── NamespaceCoverageClassTest.php
│       │   │       │   ├── NamespaceCoverageCoversClassPublicTest.php
│       │   │       │   ├── NamespaceCoverageCoversClassTest.php
│       │   │       │   ├── NamespaceCoverageMethodTest.php
│       │   │       │   ├── NamespaceCoverageNotPrivateTest.php
│       │   │       │   ├── NamespaceCoverageNotProtectedTest.php
│       │   │       │   ├── NamespaceCoverageNotPublicTest.php
│       │   │       │   ├── NamespaceCoveragePrivateTest.php
│       │   │       │   ├── NamespaceCoverageProtectedTest.php
│       │   │       │   ├── NamespaceCoveragePublicTest.php
│       │   │       │   ├── NamespaceCoveredClass.php
│       │   │       │   ├── NamespaceCoveredFunction.php
│       │   │       │   ├── NoArgTestCaseTest.php
│       │   │       │   ├── NoTestCaseClass.php
│       │   │       │   ├── NoTestCases.php
│       │   │       │   ├── NonStatic.php
│       │   │       │   ├── NotExistingCoveredElementTest.php
│       │   │       │   ├── NotPublicTestCase.php
│       │   │       │   ├── NotVoidTestCase.php
│       │   │       │   ├── NothingTest.php
│       │   │       │   ├── OneTestCase.php
│       │   │       │   ├── OutputTestCase.php
│       │   │       │   ├── OverrideTestCase.php
│       │   │       │   ├── ParseTestMethodAnnotationsMock.php
│       │   │       │   ├── RequirementsClassBeforeClassHookTest.php
│       │   │       │   ├── RequirementsClassDocBlockTest.php
│       │   │       │   ├── RequirementsTest.php
│       │   │       │   ├── SampleArrayAccess.php
│       │   │       │   ├── SampleClass.php
│       │   │       │   ├── Singleton.php
│       │   │       │   ├── StackTest.php
│       │   │       │   ├── StatusTest.php
│       │   │       │   ├── StopOnWarningTestSuite.php
│       │   │       │   ├── StopsOnWarningTest.php
│       │   │       │   ├── Struct.php
│       │   │       │   ├── Success.php
│       │   │       │   ├── TemplateMethodsTest.php
│       │   │       │   ├── TestAutoreferenced.php
│       │   │       │   ├── TestDoxGroupTest.php
│       │   │       │   ├── TestGeneratorMaker.php
│       │   │       │   ├── TestIncomplete.php
│       │   │       │   ├── TestIterator.php
│       │   │       │   ├── TestIterator2.php
│       │   │       │   ├── TestIteratorAggregate.php
│       │   │       │   ├── TestIteratorAggregate2.php
│       │   │       │   ├── TestSkipped.php
│       │   │       │   ├── TestTestError.php
│       │   │       │   ├── TestWithTest.php
│       │   │       │   ├── ThrowExceptionTestCase.php
│       │   │       │   ├── ThrowNoExceptionTestCase.php
│       │   │       │   ├── VariousIterableDataProviderTest.php
│       │   │       │   ├── WasRun.php
│       │   │       │   ├── WrapperIteratorAggregate.php
│       │   │       │   ├── bar.xml
│       │   │       │   ├── configuration.colors.empty.xml
│       │   │       │   ├── configuration.colors.false.xml
│       │   │       │   ├── configuration.colors.invalid.xml
│       │   │       │   ├── configuration.colors.true.xml
│       │   │       │   ├── configuration.custom-printer.xml
│       │   │       │   ├── configuration.defaulttestsuite.xml
│       │   │       │   ├── configuration.one-file-suite.xml
│       │   │       │   ├── configuration.suites.xml
│       │   │       │   ├── configuration.xml
│       │   │       │   ├── configuration_empty.xml
│       │   │       │   ├── configuration_stop_on_warning.xml
│       │   │       │   ├── configuration_xinclude.xml
│       │   │       │   ├── expectedFileFormat.txt
│       │   │       │   ├── foo.xml
│       │   │       │   ├── phpt-for-coverage.phpt
│       │   │       │   ├── phpt-xfail.phpt
│       │   │       │   ├── phpunit-example-extension
│       │   │       │   ├── structureAttributesAreSameButValuesAreNot.xml
│       │   │       │   ├── structureExpected.xml
│       │   │       │   ├── structureIgnoreTextNodes.xml
│       │   │       │   ├── structureIsSameButDataIsNot.xml
│       │   │       │   ├── structureWrongNumberOfAttributes.xml
│       │   │       │   └── structureWrongNumberOfNodes.xml
│       │   │       └── bootstrap.php
│       │   └── phpunit-mock-objects
│       │       ├── CONTRIBUTING.md
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── build.xml
│       │       ├── composer.json
│       │       ├── phpunit.xml
│       │       ├── src
│       │       │   ├── Builder
│       │       │   │   ├── Identity.php
│       │       │   │   ├── InvocationMocker.php
│       │       │   │   ├── Match.php
│       │       │   │   ├── MethodNameMatch.php
│       │       │   │   ├── Namespace.php
│       │       │   │   ├── ParametersMatch.php
│       │       │   │   └── Stub.php
│       │       │   ├── Exception
│       │       │   │   ├── BadMethodCallException.php
│       │       │   │   ├── Exception.php
│       │       │   │   └── RuntimeException.php
│       │       │   ├── Generator
│       │       │   │   ├── deprecation.tpl.dist
│       │       │   │   ├── mocked_class.tpl.dist
│       │       │   │   ├── mocked_class_method.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
│       │       │   │   ├── Object.php
│       │       │   │   └── Static.php
│       │       │   ├── Invocation.php
│       │       │   ├── InvocationMocker.php
│       │       │   ├── Invokable.php
│       │       │   ├── Matcher
│       │       │   │   ├── AnyInvokedCount.php
│       │       │   │   ├── AnyParameters.php
│       │       │   │   ├── ConsecutiveParameters.php
│       │       │   │   ├── Invocation.php
│       │       │   │   ├── InvokedAtIndex.php
│       │       │   │   ├── InvokedAtLeastCount.php
│       │       │   │   ├── InvokedAtLeastOnce.php
│       │       │   │   ├── InvokedAtMostCount.php
│       │       │   │   ├── InvokedCount.php
│       │       │   │   ├── InvokedRecorder.php
│       │       │   │   ├── MethodName.php
│       │       │   │   ├── Parameters.php
│       │       │   │   └── StatelessInvocation.php
│       │       │   ├── Matcher.php
│       │       │   ├── MockBuilder.php
│       │       │   ├── MockObject.php
│       │       │   ├── Stub
│       │       │   │   ├── ConsecutiveCalls.php
│       │       │   │   ├── Exception.php
│       │       │   │   ├── MatcherCollection.php
│       │       │   │   ├── Return.php
│       │       │   │   ├── ReturnArgument.php
│       │       │   │   ├── ReturnCallback.php
│       │       │   │   ├── ReturnReference.php
│       │       │   │   ├── ReturnSelf.php
│       │       │   │   └── ReturnValueMap.php
│       │       │   ├── Stub.php
│       │       │   └── Verifiable.php
│       │       └── tests
│       │           ├── Builder
│       │           │   └── InvocationMockerTest.php
│       │           ├── Generator
│       │           │   ├── 232.phpt
│       │           │   ├── abstract_class.phpt
│       │           │   ├── class.phpt
│       │           │   ├── class_call_parent_clone.phpt
│       │           │   ├── class_call_parent_constructor.phpt
│       │           │   ├── class_dont_call_parent_clone.phpt
│       │           │   ├── class_dont_call_parent_constructor.phpt
│       │           │   ├── class_implementing_interface_call_parent_constructor.phpt
│       │           │   ├── class_implementing_interface_dont_call_parent_constructor.phpt
│       │           │   ├── class_partial.phpt
│       │           │   ├── class_with_deprecated_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
│       │           │   ├── interface.phpt
│       │           │   ├── invocation_object_clone_object.phpt
│       │           │   ├── namespaced_class.phpt
│       │           │   ├── namespaced_class_call_parent_clone.phpt
│       │           │   ├── namespaced_class_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_dont_call_parent_clone.phpt
│       │           │   ├── namespaced_class_dont_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_implementing_interface_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt
│       │           │   ├── namespaced_class_partial.phpt
│       │           │   ├── namespaced_interface.phpt
│       │           │   ├── nonexistent_class.phpt
│       │           │   ├── nonexistent_class_with_namespace.phpt
│       │           │   ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│       │           │   ├── nullable_types.phpt
│       │           │   ├── proxy.phpt
│       │           │   ├── return_type_declarations_nullable.phpt
│       │           │   ├── return_type_declarations_object_method.phpt
│       │           │   ├── return_type_declarations_self.phpt
│       │           │   ├── return_type_declarations_static_method.phpt
│       │           │   ├── return_type_declarations_void.phpt
│       │           │   ├── scalar_type_declarations.phpt
│       │           │   ├── wsdl_class.phpt
│       │           │   ├── wsdl_class_namespace.phpt
│       │           │   └── wsdl_class_partial.phpt
│       │           ├── GeneratorTest.php
│       │           ├── Invocation
│       │           │   ├── ObjectTest.php
│       │           │   └── StaticTest.php
│       │           ├── Matcher
│       │           │   └── ConsecutiveParametersTest.php
│       │           ├── MockBuilderTest.php
│       │           ├── MockObjectTest.php
│       │           ├── ProxyObjectTest.php
│       │           ├── _fixture
│       │           │   ├── AbstractMockTestClass.php
│       │           │   ├── AbstractTrait.php
│       │           │   ├── AnInterface.php
│       │           │   ├── AnInterfaceWithReturnType.php
│       │           │   ├── AnotherInterface.php
│       │           │   ├── Bar.php
│       │           │   ├── ClassThatImplementsSerializable.php
│       │           │   ├── ClassWithSelfTypeHint.php
│       │           │   ├── ClassWithStaticMethod.php
│       │           │   ├── Foo.php
│       │           │   ├── FunctionCallback.php
│       │           │   ├── GoogleSearch.wsdl
│       │           │   ├── InterfaceWithSemiReservedMethodName.php
│       │           │   ├── InterfaceWithStaticMethod.php
│       │           │   ├── MethodCallback.php
│       │           │   ├── MethodCallbackByReference.php
│       │           │   ├── MockTestInterface.php
│       │           │   ├── Mockable.php
│       │           │   ├── PartialMockTestClass.php
│       │           │   ├── SingletonClass.php
│       │           │   ├── SomeClass.php
│       │           │   ├── StaticMockTestClass.php
│       │           │   ├── StringableClass.php
│       │           │   └── TraversableMockTestInterface.php
│       │           └── bootstrap.php
│       ├── psr
│       │   ├── http-message
│       │   │   ├── CHANGELOG.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       ├── MessageInterface.php
│       │   │       ├── RequestInterface.php
│       │   │       ├── ResponseInterface.php
│       │   │       ├── ServerRequestInterface.php
│       │   │       ├── StreamInterface.php
│       │   │       ├── UploadedFileInterface.php
│       │   │       └── UriInterface.php
│       │   └── log
│       │       ├── LICENSE
│       │       ├── Psr
│       │       │   └── Log
│       │       │       ├── AbstractLogger.php
│       │       │       ├── InvalidArgumentException.php
│       │       │       ├── LogLevel.php
│       │       │       ├── LoggerAwareInterface.php
│       │       │       ├── LoggerAwareTrait.php
│       │       │       ├── LoggerInterface.php
│       │       │       ├── LoggerTrait.php
│       │       │       ├── NullLogger.php
│       │       │       └── Test
│       │       ├── README.md
│       │       └── composer.json
│       ├── sebastian
│       │   ├── code-unit-reverse-lookup
│       │   │   ├── ChangeLog.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   └── Wizard.php
│       │   │   └── tests
│       │   │       └── WizardTest.php
│       │   ├── comparator
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── ArrayComparator.php
│       │   │   │   ├── Comparator.php
│       │   │   │   ├── ComparisonFailure.php
│       │   │   │   ├── DOMNodeComparator.php
│       │   │   │   ├── DateTimeComparator.php
│       │   │   │   ├── DoubleComparator.php
│       │   │   │   ├── ExceptionComparator.php
│       │   │   │   ├── Factory.php
│       │   │   │   ├── MockObjectComparator.php
│       │   │   │   ├── NumericComparator.php
│       │   │   │   ├── ObjectComparator.php
│       │   │   │   ├── ResourceComparator.php
│       │   │   │   ├── ScalarComparator.php
│       │   │   │   ├── SplObjectStorageComparator.php
│       │   │   │   └── TypeComparator.php
│       │   │   └── tests
│       │   │       ├── ArrayComparatorTest.php
│       │   │       ├── ComparisonFailureTest.php
│       │   │       ├── DOMNodeComparatorTest.php
│       │   │       ├── DateTimeComparatorTest.php
│       │   │       ├── DoubleComparatorTest.php
│       │   │       ├── ExceptionComparatorTest.php
│       │   │       ├── FactoryTest.php
│       │   │       ├── MockObjectComparatorTest.php
│       │   │       ├── NumericComparatorTest.php
│       │   │       ├── ObjectComparatorTest.php
│       │   │       ├── ResourceComparatorTest.php
│       │   │       ├── ScalarComparatorTest.php
│       │   │       ├── SplObjectStorageComparatorTest.php
│       │   │       ├── TypeComparatorTest.php
│       │   │       └── _fixture
│       │   │           ├── Author.php
│       │   │           ├── Book.php
│       │   │           ├── ClassWithToString.php
│       │   │           ├── SampleClass.php
│       │   │           ├── Struct.php
│       │   │           ├── TestClass.php
│       │   │           └── TestClassComparator.php
│       │   ├── diff
│       │   │   ├── ChangeLog.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Chunk.php
│       │   │   │   ├── Diff.php
│       │   │   │   ├── Differ.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
│       │   │   └── tests
│       │   │       ├── ChunkTest.php
│       │   │       ├── DiffTest.php
│       │   │       ├── DifferTest.php
│       │   │       ├── DifferTestTest.php
│       │   │       ├── LineTest.php
│       │   │       ├── LongestCommonSubsequenceTest.php
│       │   │       ├── MemoryEfficientImplementationTest.php
│       │   │       ├── ParserTest.php
│       │   │       ├── TimeEfficientImplementationTest.php
│       │   │       └── fixtures
│       │   │           ├── patch.txt
│       │   │           └── patch2.txt
│       │   ├── environment
│       │   │   ├── ChangeLog.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Console.php
│       │   │   │   ├── OperatingSystem.php
│       │   │   │   └── Runtime.php
│       │   │   └── tests
│       │   │       ├── ConsoleTest.php
│       │   │       ├── OperatingSystemTest.php
│       │   │       └── RuntimeTest.php
│       │   ├── exporter
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   └── Exporter.php
│       │   │   └── tests
│       │   │       └── ExporterTest.php
│       │   ├── global-state
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Blacklist.php
│       │   │   │   ├── CodeExporter.php
│       │   │   │   ├── Restorer.php
│       │   │   │   ├── Snapshot.php
│       │   │   │   └── exceptions
│       │   │   │       ├── Exception.php
│       │   │   │       └── RuntimeException.php
│       │   │   └── tests
│       │   │       ├── BlacklistTest.php
│       │   │       ├── CodeExporterTest.php
│       │   │       ├── RestorerTest.php
│       │   │       ├── SnapshotTest.php
│       │   │       └── _fixture
│       │   │           ├── BlacklistedChildClass.php
│       │   │           ├── BlacklistedClass.php
│       │   │           ├── BlacklistedImplementor.php
│       │   │           ├── BlacklistedInterface.php
│       │   │           ├── SnapshotClass.php
│       │   │           ├── SnapshotDomDocument.php
│       │   │           ├── SnapshotFunctions.php
│       │   │           └── SnapshotTrait.php
│       │   ├── object-enumerator
│       │   │   ├── ChangeLog.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Enumerator.php
│       │   │   │   ├── Exception.php
│       │   │   │   └── InvalidArgumentException.php
│       │   │   └── tests
│       │   │       ├── EnumeratorTest.php
│       │   │       └── _fixture
│       │   │           └── ExceptionThrower.php
│       │   ├── object-reflector
│       │   │   ├── ChangeLog.md
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Exception.php
│       │   │   │   ├── InvalidArgumentException.php
│       │   │   │   └── ObjectReflector.php
│       │   │   └── tests
│       │   │       ├── ObjectReflectorTest.php
│       │   │       └── _fixture
│       │   │           ├── ChildClass.php
│       │   │           ├── ClassWithIntegerAttributeName.php
│       │   │           └── ParentClass.php
│       │   ├── recursion-context
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   ├── phpunit.xml
│       │   │   ├── src
│       │   │   │   ├── Context.php
│       │   │   │   ├── Exception.php
│       │   │   │   └── InvalidArgumentException.php
│       │   │   └── tests
│       │   │       └── ContextTest.php
│       │   ├── resource-operations
│       │   │   ├── LICENSE
│       │   │   ├── README.md
│       │   │   ├── build
│       │   │   │   └── generate.php
│       │   │   ├── build.xml
│       │   │   ├── composer.json
│       │   │   └── src
│       │   │       └── ResourceOperations.php
│       │   └── version
│       │       ├── LICENSE
│       │       ├── README.md
│       │       ├── composer.json
│       │       └── src
│       │           └── Version.php
│       ├── stecman
│       │   └── symfony-console-completion
│       │       ├── LICENCE
│       │       ├── README.md
│       │       ├── composer.json
│       │       ├── phpunit.xml.dist
│       │       ├── src
│       │       │   ├── Completion
│       │       │   │   ├── CompletionAwareInterface.php
│       │       │   │   ├── CompletionInterface.php
│       │       │   │   └── ShellPathCompletion.php
│       │       │   ├── Completion.php
│       │       │   ├── CompletionCommand.php
│       │       │   ├── CompletionContext.php
│       │       │   ├── CompletionHandler.php
│       │       │   ├── EnvironmentCompletionContext.php
│       │       │   └── HookFactory.php
│       │       └── tests
│       │           ├── Stecman
│       │           │   └── Component
│       │           └── bootstrap.php
│       ├── swiftmailer
│       │   └── swiftmailer
│       │       ├── CHANGES
│       │       ├── LICENSE
│       │       ├── README
│       │       ├── VERSION
│       │       ├── composer.json
│       │       ├── doc
│       │       │   ├── headers.rst
│       │       │   ├── help-resources.rst
│       │       │   ├── including-the-files.rst
│       │       │   ├── index.rst
│       │       │   ├── installing.rst
│       │       │   ├── introduction.rst
│       │       │   ├── japanese.rst
│       │       │   ├── messages.rst
│       │       │   ├── overview.rst
│       │       │   ├── plugins.rst
│       │       │   ├── sending.rst
│       │       │   └── uml
│       │       │       ├── Encoders.graffle
│       │       │       ├── Mime.graffle
│       │       │       └── Transports.graffle
│       │       ├── lib
│       │       │   ├── classes
│       │       │   │   ├── Swift
│       │       │   │   └── Swift.php
│       │       │   ├── dependency_maps
│       │       │   │   ├── cache_deps.php
│       │       │   │   ├── message_deps.php
│       │       │   │   ├── mime_deps.php
│       │       │   │   └── transport_deps.php
│       │       │   ├── mime_types.php
│       │       │   ├── preferences.php
│       │       │   ├── swift_init.php
│       │       │   ├── swift_required.php
│       │       │   ├── swift_required_pear.php
│       │       │   └── swiftmailer_generate_mimes_config.php
│       │       ├── phpunit.xml.dist
│       │       └── tests
│       │           ├── IdenticalBinaryConstraint.php
│       │           ├── StreamCollector.php
│       │           ├── SwiftMailerSmokeTestCase.php
│       │           ├── SwiftMailerTestCase.php
│       │           ├── _samples
│       │           │   ├── charsets
│       │           │   ├── dkim
│       │           │   ├── files
│       │           │   └── smime
│       │           ├── acceptance
│       │           │   └── Swift
│       │           ├── acceptance.conf.php.default
│       │           ├── bootstrap.php
│       │           ├── bug
│       │           │   └── Swift
│       │           ├── fixtures
│       │           │   └── MimeEntityFixture.php
│       │           ├── smoke
│       │           │   └── Swift
│       │           ├── smoke.conf.php.default
│       │           └── unit
│       │               └── Swift
│       └── symfony
│           ├── browser-kit
│           │   ├── CHANGELOG.md
│           │   ├── Client.php
│           │   ├── Cookie.php
│           │   ├── CookieJar.php
│           │   ├── History.php
│           │   ├── LICENSE
│           │   ├── README.md
│           │   ├── Request.php
│           │   ├── Response.php
│           │   ├── Tests
│           │   │   ├── ClientTest.php
│           │   │   ├── CookieJarTest.php
│           │   │   ├── CookieTest.php
│           │   │   ├── HistoryTest.php
│           │   │   ├── RequestTest.php
│           │   │   └── ResponseTest.php
│           │   ├── composer.json
│           │   └── phpunit.xml.dist
│           └── console
│               ├── Application.php
│               ├── CHANGELOG.md
│               ├── Command
│               │   ├── Command.php
│               │   ├── HelpCommand.php
│               │   ├── ListCommand.php
│               │   └── LockableTrait.php
│               ├── ConsoleEvents.php
│               ├── DependencyInjection
│               │   └── AddConsoleCommandPass.php
│               ├── Descriptor
│               │   ├── ApplicationDescription.php
│               │   ├── Descriptor.php
│               │   ├── DescriptorInterface.php
│               │   ├── JsonDescriptor.php
│               │   ├── MarkdownDescriptor.php
│               │   ├── TextDescriptor.php
│               │   └── XmlDescriptor.php
│               ├── Event
│               │   ├── ConsoleCommandEvent.php
│               │   ├── ConsoleErrorEvent.php
│               │   ├── ConsoleEvent.php
│               │   ├── ConsoleExceptionEvent.php
│               │   └── ConsoleTerminateEvent.php
│               ├── EventListener
│               │   └── ErrorListener.php
│               ├── Exception
│               │   ├── CommandNotFoundException.php
│               │   ├── ExceptionInterface.php
│               │   ├── InvalidArgumentException.php
│               │   ├── InvalidOptionException.php
│               │   ├── LogicException.php
│               │   └── RuntimeException.php
│               ├── Formatter
│               │   ├── OutputFormatter.php
│               │   ├── OutputFormatterInterface.php
│               │   ├── OutputFormatterStyle.php
│               │   ├── OutputFormatterStyleInterface.php
│               │   └── OutputFormatterStyleStack.php
│               ├── Helper
│               │   ├── DebugFormatterHelper.php
│               │   ├── DescriptorHelper.php
│               │   ├── FormatterHelper.php
│               │   ├── Helper.php
│               │   ├── HelperInterface.php
│               │   ├── HelperSet.php
│               │   ├── InputAwareHelper.php
│               │   ├── ProcessHelper.php
│               │   ├── ProgressBar.php
│               │   ├── ProgressIndicator.php
│               │   ├── QuestionHelper.php
│               │   ├── SymfonyQuestionHelper.php
│               │   ├── Table.php
│               │   ├── TableCell.php
│               │   ├── TableSeparator.php
│               │   └── TableStyle.php
│               ├── Input
│               │   ├── ArgvInput.php
│               │   ├── ArrayInput.php
│               │   ├── Input.php
│               │   ├── InputArgument.php
│               │   ├── InputAwareInterface.php
│               │   ├── InputDefinition.php
│               │   ├── InputInterface.php
│               │   ├── InputOption.php
│               │   ├── StreamableInputInterface.php
│               │   └── StringInput.php
│               ├── LICENSE
│               ├── Logger
│               │   └── ConsoleLogger.php
│               ├── Output
│               │   ├── BufferedOutput.php
│               │   ├── ConsoleOutput.php
│               │   ├── ConsoleOutputInterface.php
│               │   ├── NullOutput.php
│               │   ├── Output.php
│               │   ├── OutputInterface.php
│               │   └── StreamOutput.php
│               ├── 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
│               ├── Tests
│               │   ├── ApplicationTest.php
│               │   ├── Command
│               │   │   ├── CommandTest.php
│               │   │   ├── HelpCommandTest.php
│               │   │   ├── ListCommandTest.php
│               │   │   └── LockableTraitTest.php
│               │   ├── DependencyInjection
│               │   │   └── AddConsoleCommandPassTest.php
│               │   ├── Descriptor
│               │   │   ├── AbstractDescriptorTest.php
│               │   │   ├── JsonDescriptorTest.php
│               │   │   ├── MarkdownDescriptorTest.php
│               │   │   ├── ObjectsProvider.php
│               │   │   ├── TextDescriptorTest.php
│               │   │   └── XmlDescriptorTest.php
│               │   ├── EventListener
│               │   │   └── ErrorListenerTest.php
│               │   └── Fixtures
│               │       ├── BarBucCommand.php
│               │       ├── 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
│               │       ├── FooCommand.php
│               │       ├── FooLock2Command.php
│               │       ├── FooLockCommand.php
│               │       ├── FooOptCommand.php
│               │       ├── FooSubnamespaced1Command.php
│               │       ├── FooSubnamespaced2Command.php
│               │       ├── FoobarCommand.php
│               │       ├── 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_renderexception3.txt
│               │       ├── application_renderexception3decorated.txt
│               │       ├── application_renderexception4.txt
│               │       ├── application_renderexception_doublewidth1.txt
│               │       ├── application_renderexception_doublewidth1decorated.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
│               │       ├── 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
│               │       ├── 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
│               ├── composer.json
│               └── phpunit.xml.dist
└── 好例子网_yii-basic-app-2.0.13.tgz

519 directories, 2384 files



标签: Yii PHP框架

实例下载地址

yii2基础脚手架:yii-basic-app-2.0.13.tgz

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警