在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 学员综合素质评测系统源代码

学员综合素质评测系统源代码

一般编程问题

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

实例介绍

【实例简介】
数据库导入后即可运行参考,其中消息系统,自动改卷系统,课程表的实现,权重随机出题系统等等
【实例截图】
【核心代码】
sses
├── aa.sql
└── sses
├── apidoc.json
├── app
│   ├── Console
│   │   └── Kernel.php
│   ├── Exceptions
│   │   └── Handler.php
│   ├── Http
│   │   ├── Controllers
│   │   │   ├── Admin
│   │   │   │   ├── ContentController.php
│   │   │   │   ├── FunctionController.php
│   │   │   │   ├── LogController.php
│   │   │   │   ├── ManageController.php
│   │   │   │   ├── PermitController.php
│   │   │   │   ├── QuesController.php
│   │   │   │   ├── QuestionController.php
│   │   │   │   ├── QuestypeController.php
│   │   │   │   ├── ReportController.php
│   │   │   │   ├── RoleController.php
│   │   │   │   ├── SystemController.php
│   │   │   │   ├── TestruleController.php
│   │   │   │   └── UserController.php
│   │   │   ├── Api
│   │   │   │   ├── AccidentController.php
│   │   │   │   ├── AttendController.php
│   │   │   │   ├── EntestController.php
│   │   │   │   ├── EvaluController.php
│   │   │   │   ├── FeedbackController.php
│   │   │   │   ├── FileController.php
│   │   │   │   ├── HeadmasterController.php
│   │   │   │   ├── IntestController.php
│   │   │   │   ├── MessageController.php
│   │   │   │   ├── ReportController.php
│   │   │   │   ├── ScheduleController.php
│   │   │   │   ├── SelectionController.php
│   │   │   │   ├── StuController.php
│   │   │   │   ├── TaskController.php
│   │   │   │   ├── TaskingController.php
│   │   │   │   ├── TeaController.php
│   │   │   │   ├── TestController.php
│   │   │   │   ├── TestingController.php
│   │   │   │   ├── UsersController.php
│   │   │   │   └── VoteController.php
│   │   │   ├── Auth
│   │   │   │   ├── ForgotPasswordController.php
│   │   │   │   ├── LoginController.php
│   │   │   │   ├── RegisterController.php
│   │   │   │   └── ResetPasswordController.php
│   │   │   ├── Controller.php
│   │   │   └── HomeController.php
│   │   ├── Kernel.php
│   │   └── Middleware
│   │   ├── EncryptCookies.php
│   │   ├── RedirectIfAuthenticated.php
│   │   ├── TrimStrings.php
│   │   └── VerifyCsrfToken.php
│   ├── Models
│   │   ├── Accident.php
│   │   ├── Accidtype.php
│   │   ├── Appoint.php
│   │   ├── Attend.php
│   │   ├── Authview.php
│   │   ├── Calendar.php
│   │   ├── Cllass.php
│   │   ├── Course.php
│   │   ├── Debate.php
│   │   ├── Defense.php
│   │   ├── Enmajortest.php
│   │   ├── EnReport.php
│   │   ├── Entesting.php
│   │   ├── Evaluation.php
│   │   ├── Feedback.php
│   │   ├── FFunction.php
│   │   ├── Intesting.php
│   │   ├── Intest.php
│   │   ├── Label.php
│   │   ├── Log.php
│   │   ├── Manage.php
│   │   ├── Message.php
│   │   ├── Operate.php
│   │   ├── Permit.php
│   │   ├── Question.php
│   │   ├── Qustype.php
│   │   ├── Readmge.php
│   │   ├── Role.php
│   │   ├── Selection.php
│   │   ├── Stage.php
│   │   ├── Tasking.php
│   │   ├── Task.php
│   │   ├── Teach.php
│   │   ├── Testrule.php
│   │   ├── User.php
│   │   └── Vote.php
│   └── Providers
│   ├── AppServiceProvider.php
│   ├── AuthServiceProvider.php
│   ├── BroadcastServiceProvider.php
│   ├── EventServiceProvider.php
│   └── RouteServiceProvider.php
├── artisan
├── bootstrap
│   ├── app.php
│   ├── autoload.php
│   └── cache
│   └── services.php
├── composer.json
├── composer.lock
├── config
│   ├── app.php
│   ├── auth.php
│   ├── broadcasting.php
│   ├── cache.php
│   ├── cors.php
│   ├── database.php
│   ├── filesystems.php
│   ├── mail.php
│   ├── queue.php
│   ├── services.php
│   ├── session.php
│   └── view.php
├── database
│   ├── factories
│   │   └── ModelFactory.php
│   ├── migrations
│   │   ├── 2014_10_12_000000_create_users_table.php
│   │   ├── 2014_10_12_100000_create_password_resets_table.php
│   │   ├── 2018_02_05_020539_create_root_table.php
│   │   ├── 2018_02_07_045213_create_qustype_table.php
│   │   └── 2018_02_07_053837_create_questions_table.php
│   └── seeds
│   └── DatabaseSeeder.php
├── doc
│   ├── api_data.js
│   ├── api_data.json
│   ├── api_project.js
│   ├── api_project.json
│   ├── css
│   │   └── style.css
│   ├── fonts
│   │   ├── glyphicons-halflings-regular.eot
│   │   ├── glyphicons-halflings-regular.svg
│   │   ├── glyphicons-halflings-regular.ttf
│   │   ├── glyphicons-halflings-regular.woff
│   │   └── glyphicons-halflings-regular.woff2
│   ├── img
│   │   └── favicon.ico
│   ├── index.html
│   ├── locales
│   │   ├── ca.js
│   │   ├── de.js
│   │   ├── es.js
│   │   ├── fr.js
│   │   ├── it.js
│   │   ├── locale.js
│   │   ├── nl.js
│   │   ├── pl.js
│   │   ├── pt_br.js
│   │   ├── ro.js
│   │   ├── ru.js
│   │   ├── tr.js
│   │   ├── vi.js
│   │   ├── zh_cn.js
│   │   └── zh.js
│   ├── main.js
│   ├── utils
│   │   ├── handlebars_helper.js
│   │   └── send_sample_request.js
│   └── vendor
│   ├── bootstrap.min.css
│   ├── bootstrap.min.js
│   ├── diff_match_patch.min.js
│   ├── handlebars.min.js
│   ├── jquery.min.js
│   ├── list.min.js
│   ├── lodash.custom.min.js
│   ├── path-to-regexp
│   │   ├── index.js
│   │   └── LICENSE
│   ├── polyfill.js
│   ├── prettify
│   │   ├── lang-aea.js
│   │   ├── lang-agc.js
│   │   ├── lang-apollo.js
│   │   ├── lang-basic.js
│   │   ├── lang-cbm.js
│   │   ├── lang-clj.js
│   │   ├── lang-cl.js
│   │   ├── lang-css.js
│   │   ├── lang-dart.js
│   │   ├── lang-el.js
│   │   ├── lang-erlang.js
│   │   ├── lang-erl.js
│   │   ├── lang-fs.js
│   │   ├── lang-go.js
│   │   ├── lang-hs.js
│   │   ├── lang-lasso.js
│   │   ├── lang-lassoscript.js
│   │   ├── lang-latex.js
│   │   ├── lang-lgt.js
│   │   ├── lang-lisp.js
│   │   ├── lang-ll.js
│   │   ├── lang-llvm.js
│   │   ├── lang-logtalk.js
│   │   ├── lang-ls.js
│   │   ├── lang-lsp.js
│   │   ├── lang-lua.js
│   │   ├── lang-matlab.js
│   │   ├── lang-ml.js
│   │   ├── lang-mumps.js
│   │   ├── lang-nemerle.js
│   │   ├── lang-n.js
│   │   ├── lang-pascal.js
│   │   ├── lang-proto.js
│   │   ├── lang-rd.js
│   │   ├── lang-r.js
│   │   ├── lang-rkt.js
│   │   ├── lang-rust.js
│   │   ├── lang-scala.js
│   │   ├── lang-scm.js
│   │   ├── lang-s.js
│   │   ├── lang-Splus.js
│   │   ├── lang-sql.js
│   │   ├── lang-ss.js
│   │   ├── lang-swift.js
│   │   ├── lang-tcl.js
│   │   ├── lang-tex.js
│   │   ├── lang-vb.js
│   │   ├── lang-vbs.js
│   │   ├── lang-vhd.js
│   │   ├── lang-vhdl.js
│   │   ├── lang-wiki.js
│   │   ├── lang-xq.js
│   │   ├── lang-xquery.js
│   │   ├── lang-yaml.js
│   │   ├── lang-yml.js
│   │   ├── prettify.css
│   │   ├── prettify.js
│   │   └── run_prettify.js
│   ├── prettify.css
│   ├── require.min.js
│   ├── semver.min.js
│   └── webfontloader.js
├── _ide_helper.php
├── package
│   └── helper
│   └── func.php
├── package.json
├── package-lock.json
├── phpunit.xml
├── public
│   ├── css
│   │   └── app.css
│   ├── docs
│   │   ├── admin
│   │   │   ├── api_data.js
│   │   │   ├── api_data.json
│   │   │   ├── api_project.js
│   │   │   ├── api_project.json
│   │   │   ├── css
│   │   │   │   └── style.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── img
│   │   │   │   └── favicon.ico
│   │   │   ├── index.html
│   │   │   ├── locales
│   │   │   │   ├── ca.js
│   │   │   │   ├── de.js
│   │   │   │   ├── es.js
│   │   │   │   ├── fr.js
│   │   │   │   ├── it.js
│   │   │   │   ├── locale.js
│   │   │   │   ├── nl.js
│   │   │   │   ├── pl.js
│   │   │   │   ├── pt_br.js
│   │   │   │   ├── ro.js
│   │   │   │   ├── ru.js
│   │   │   │   ├── tr.js
│   │   │   │   ├── vi.js
│   │   │   │   ├── zh_cn.js
│   │   │   │   └── zh.js
│   │   │   ├── main.js
│   │   │   ├── utils
│   │   │   │   ├── handlebars_helper.js
│   │   │   │   └── send_sample_request.js
│   │   │   └── vendor
│   │   │   ├── bootstrap.min.css
│   │   │   ├── bootstrap.min.js
│   │   │   ├── diff_match_patch.min.js
│   │   │   ├── handlebars.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── list.min.js
│   │   │   ├── lodash.custom.min.js
│   │   │   ├── path-to-regexp
│   │   │   │   ├── index.js
│   │   │   │   └── LICENSE
│   │   │   ├── polyfill.js
│   │   │   ├── prettify
│   │   │   │   ├── lang-aea.js
│   │   │   │   ├── lang-agc.js
│   │   │   │   ├── lang-apollo.js
│   │   │   │   ├── lang-basic.js
│   │   │   │   ├── lang-cbm.js
│   │   │   │   ├── lang-clj.js
│   │   │   │   ├── lang-cl.js
│   │   │   │   ├── lang-css.js
│   │   │   │   ├── lang-dart.js
│   │   │   │   ├── lang-el.js
│   │   │   │   ├── lang-erlang.js
│   │   │   │   ├── lang-erl.js
│   │   │   │   ├── lang-fs.js
│   │   │   │   ├── lang-go.js
│   │   │   │   ├── lang-hs.js
│   │   │   │   ├── lang-lasso.js
│   │   │   │   ├── lang-lassoscript.js
│   │   │   │   ├── lang-latex.js
│   │   │   │   ├── lang-lgt.js
│   │   │   │   ├── lang-lisp.js
│   │   │   │   ├── lang-ll.js
│   │   │   │   ├── lang-llvm.js
│   │   │   │   ├── lang-logtalk.js
│   │   │   │   ├── lang-ls.js
│   │   │   │   ├── lang-lsp.js
│   │   │   │   ├── lang-lua.js
│   │   │   │   ├── lang-matlab.js
│   │   │   │   ├── lang-ml.js
│   │   │   │   ├── lang-mumps.js
│   │   │   │   ├── lang-nemerle.js
│   │   │   │   ├── lang-n.js
│   │   │   │   ├── lang-pascal.js
│   │   │   │   ├── lang-proto.js
│   │   │   │   ├── lang-rd.js
│   │   │   │   ├── lang-r.js
│   │   │   │   ├── lang-rkt.js
│   │   │   │   ├── lang-rust.js
│   │   │   │   ├── lang-scala.js
│   │   │   │   ├── lang-scm.js
│   │   │   │   ├── lang-s.js
│   │   │   │   ├── lang-Splus.js
│   │   │   │   ├── lang-sql.js
│   │   │   │   ├── lang-ss.js
│   │   │   │   ├── lang-swift.js
│   │   │   │   ├── lang-tcl.js
│   │   │   │   ├── lang-tex.js
│   │   │   │   ├── lang-vb.js
│   │   │   │   ├── lang-vbs.js
│   │   │   │   ├── lang-vhd.js
│   │   │   │   ├── lang-vhdl.js
│   │   │   │   ├── lang-wiki.js
│   │   │   │   ├── lang-xq.js
│   │   │   │   ├── lang-xquery.js
│   │   │   │   ├── lang-yaml.js
│   │   │   │   ├── lang-yml.js
│   │   │   │   ├── prettify.css
│   │   │   │   ├── prettify.js
│   │   │   │   └── run_prettify.js
│   │   │   ├── prettify.css
│   │   │   ├── require.min.js
│   │   │   ├── semver.min.js
│   │   │   └── webfontloader.js
│   │   └── api
│   │   ├── api_data.js
│   │   ├── api_data.json
│   │   ├── api_project.js
│   │   ├── api_project.json
│   │   ├── css
│   │   │   └── style.css
│   │   ├── fonts
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   └── glyphicons-halflings-regular.woff2
│   │   ├── img
│   │   │   └── favicon.ico
│   │   ├── index.html
│   │   ├── locales
│   │   │   ├── ca.js
│   │   │   ├── de.js
│   │   │   ├── es.js
│   │   │   ├── fr.js
│   │   │   ├── it.js
│   │   │   ├── locale.js
│   │   │   ├── nl.js
│   │   │   ├── pl.js
│   │   │   ├── pt_br.js
│   │   │   ├── ro.js
│   │   │   ├── ru.js
│   │   │   ├── tr.js
│   │   │   ├── vi.js
│   │   │   ├── zh_cn.js
│   │   │   └── zh.js
│   │   ├── main.js
│   │   ├── utils
│   │   │   ├── handlebars_helper.js
│   │   │   └── send_sample_request.js
│   │   └── vendor
│   │   ├── bootstrap.min.css
│   │   ├── bootstrap.min.js
│   │   ├── diff_match_patch.min.js
│   │   ├── handlebars.min.js
│   │   ├── jquery.min.js
│   │   ├── list.min.js
│   │   ├── lodash.custom.min.js
│   │   ├── path-to-regexp
│   │   │   ├── index.js
│   │   │   └── LICENSE
│   │   ├── polyfill.js
│   │   ├── prettify
│   │   │   ├── lang-aea.js
│   │   │   ├── lang-agc.js
│   │   │   ├── lang-apollo.js
│   │   │   ├── lang-basic.js
│   │   │   ├── lang-cbm.js
│   │   │   ├── lang-clj.js
│   │   │   ├── lang-cl.js
│   │   │   ├── lang-css.js
│   │   │   ├── lang-dart.js
│   │   │   ├── lang-el.js
│   │   │   ├── lang-erlang.js
│   │   │   ├── lang-erl.js
│   │   │   ├── lang-fs.js
│   │   │   ├── lang-go.js
│   │   │   ├── lang-hs.js
│   │   │   ├── lang-lasso.js
│   │   │   ├── lang-lassoscript.js
│   │   │   ├── lang-latex.js
│   │   │   ├── lang-lgt.js
│   │   │   ├── lang-lisp.js
│   │   │   ├── lang-ll.js
│   │   │   ├── lang-llvm.js
│   │   │   ├── lang-logtalk.js
│   │   │   ├── lang-ls.js
│   │   │   ├── lang-lsp.js
│   │   │   ├── lang-lua.js
│   │   │   ├── lang-matlab.js
│   │   │   ├── lang-ml.js
│   │   │   ├── lang-mumps.js
│   │   │   ├── lang-nemerle.js
│   │   │   ├── lang-n.js
│   │   │   ├── lang-pascal.js
│   │   │   ├── lang-proto.js
│   │   │   ├── lang-rd.js
│   │   │   ├── lang-r.js
│   │   │   ├── lang-rkt.js
│   │   │   ├── lang-rust.js
│   │   │   ├── lang-scala.js
│   │   │   ├── lang-scm.js
│   │   │   ├── lang-s.js
│   │   │   ├── lang-Splus.js
│   │   │   ├── lang-sql.js
│   │   │   ├── lang-ss.js
│   │   │   ├── lang-swift.js
│   │   │   ├── lang-tcl.js
│   │   │   ├── lang-tex.js
│   │   │   ├── lang-vb.js
│   │   │   ├── lang-vbs.js
│   │   │   ├── lang-vhd.js
│   │   │   ├── lang-vhdl.js
│   │   │   ├── lang-wiki.js
│   │   │   ├── lang-xq.js
│   │   │   ├── lang-xquery.js
│   │   │   ├── lang-yaml.js
│   │   │   ├── lang-yml.js
│   │   │   ├── prettify.css
│   │   │   ├── prettify.js
│   │   │   └── run_prettify.js
│   │   ├── prettify.css
│   │   ├── require.min.js
│   │   ├── semver.min.js
│   │   └── webfontloader.js
│   ├── favicon.ico
│   ├── index.php
│   ├── js
│   │   └── app.js
│   ├── robots.txt
│   └── web.config
├── README.md
├── resources
│   ├── assets
│   │   ├── js
│   │   │   ├── app.js
│   │   │   ├── bootstrap.js
│   │   │   └── components
│   │   │   └── Example.vue
│   │   └── sass
│   │   ├── app.scss
│   │   └── _variables.scss
│   ├── lang
│   │   └── en
│   │   ├── auth.php
│   │   ├── pagination.php
│   │   ├── passwords.php
│   │   └── validation.php
│   └── views
│   ├── auth
│   │   ├── login.blade.php
│   │   ├── passwords
│   │   │   ├── email.blade.php
│   │   │   └── reset.blade.php
│   │   └── register.blade.php
│   ├── home.blade.php
│   ├── layouts
│   │   └── app.blade.php
│   └── welcome.blade.php
├── routes
│   ├── admin.php
│   ├── api.php
│   ├── channels.php
│   ├── console.php
│   └── web.php
├── server.php
├── storage
│   ├── app
│   │   ├── public
│   │   └── uploads
│   │   ├── $2y$10$DIph
│   │   │   └── 5o.8xktTEmA9cbeyOjLChRfL3O4eoVCf0H
│   │   │   └── exr1cxuHVF
│   │   │   └── v6jpg
│   │   ├── 2018-04-05-16-25-03-5ac5dd5f3617a.doc
│   │   └── 2018-04-05-21-26-27-5ac624036d7cd.jpg
│   ├── framework
│   │   ├── cache
│   │   │   └── data
│   │   │   ├── 04
│   │   │   │   └── 83
│   │   │   │   └── 04834f9653913593c062a5a5ef3e4455f92b5f44
│   │   │   ├── 07
│   │   │   │   └── 80
│   │   │   │   └── 0780d1d6a73352d78ddd76eeb4ac75f47114df39
│   │   │   ├── 0a
│   │   │   │   └── bf
│   │   │   │   └── 0abfa089c3824f61dae33b8a651ed1fd462eaebd
│   │   │   ├── 0b
│   │   │   │   ├── 4a
│   │   │   │   │   └── 0b4a1db058a01683d777553803ec56dfcebc2221
│   │   │   │   └── 7a
│   │   │   │   └── 0b7a102d062e2f7f64fba90ad8ec09a852b449f1
│   │   │   ├── 0c
│   │   │   │   └── c0
│   │   │   │   └── 0cc004360b6ba6973c547c8c8e1e9ad0d4733cb8
│   │   │   ├── 0d
│   │   │   │   ├── 23
│   │   │   │   │   └── 0d23b6d004e26fda7a17fc0d9f2829fcd4725197
│   │   │   │   └── 7b
│   │   │   │   └── 0d7bc0b22927d49c774bb511c2976c32b6608a0f
│   │   │   ├── 0e
│   │   │   │   └── d8
│   │   │   │   └── 0ed8e24944b25d757bc1fb4f590626364b8af7c2
│   │   │   ├── 11
│   │   │   │   └── 1b
│   │   │   │   └── 111b08fb14db29681a975f6bd79a5d125790c03d
│   │   │   ├── 14
│   │   │   │   └── c5
│   │   │   │   └── 14c5ec81872486d4795e7ea8092ab36f1f9b3172
│   │   │   ├── 17
│   │   │   │   └── 0e
│   │   │   │   └── 170ed03a084980c28f7f77dad4a2c24159aa59e5
│   │   │   ├── 1b
│   │   │   │   └── a7
│   │   │   │   └── 1ba7f6d89a77b9d9f2809a4ca60bafe7f496878d
│   │   │   ├── 1f
│   │   │   │   └── ff
│   │   │   │   └── 1fff0fa16c1d24d97718a4f4cb6a4a216bc94868
│   │   │   ├── 20
│   │   │   │   └── fd
│   │   │   │   └── 20fdc2ace1974298d6ab63ed2c28b5b0c1bf487e
│   │   │   ├── 22
│   │   │   │   └── 46
│   │   │   │   └── 2246e448636102b55f7a8f14c78a69dd1c4bf846
│   │   │   ├── 2c
│   │   │   │   └── cd
│   │   │   │   └── 2ccd6de4f10d5a7fb72f3bf44439536938deefe0
│   │   │   ├── 2f
│   │   │   │   └── bc
│   │   │   │   └── 2fbc1826769de7f57e0bf3b3a4673dbbb3e1ae8e
│   │   │   ├── 33
│   │   │   │   └── 7a
│   │   │   │   └── 337a688f39de5e84b75192501530ca65f8d3f3df
│   │   │   ├── 43
│   │   │   │   └── 6b
│   │   │   │   └── 436b6579e9285d5fe4dd81f11c1657e898b95433
│   │   │   ├── 4c
│   │   │   │   └── 60
│   │   │   │   └── 4c6089c4561fa3f06ece22cf3de454abc03c622a
│   │   │   ├── 4d
│   │   │   │   └── 0b
│   │   │   │   └── 4d0b1c809a59fb41c5a06b8a9973895b61812e0d
│   │   │   ├── 52
│   │   │   │   ├── 93
│   │   │   │   │   └── 5293073cf349d59232137799227da35aeffb41e1
│   │   │   │   └── de
│   │   │   │   └── 52de9ed9a5865adae6a4d30922d87e801ba72044
│   │   │   ├── 57
│   │   │   │   └── 81
│   │   │   │   └── 57819d2fe60b7561dffb93eee7c47984ffa2e0bd
│   │   │   ├── 61
│   │   │   │   └── 30
│   │   │   │   └── 61301812b1b0f22f86b6103bdbd4330c1057fb68
│   │   │   ├── 69
│   │   │   │   └── 6d
│   │   │   │   └── 696df061c8333cd6757b82e656fd925a22ae5194
│   │   │   ├── 6a
│   │   │   │   └── fb
│   │   │   │   └── 6afb3c8356f77ed68d3698efe3a50f2cc682ae69
│   │   │   ├── 6b
│   │   │   │   └── 0d
│   │   │   │   └── 6b0de0876bc6038c06279884cbbea1f0e9a82850
│   │   │   ├── 6c
│   │   │   │   └── 7c
│   │   │   │   └── 6c7cb4b16f9b8c1aac797b19925ccbb632b42392
│   │   │   ├── 6e
│   │   │   │   └── 59
│   │   │   │   └── 6e59b8236fdbbc349af357ceec2b1e7be383320f
│   │   │   ├── 6f
│   │   │   │   └── 67
│   │   │   │   └── 6f6720e35fc0a2520e89fe05e41f62122560fd47
│   │   │   ├── 70
│   │   │   │   └── a3
│   │   │   │   └── 70a377a0f7d2a21be10f7e18de358748d6e025a1
│   │   │   ├── 76
│   │   │   │   └── 75
│   │   │   │   └── 7675011510bf00b85857aafac4ca6fa6dd2fa972
│   │   │   ├── 77
│   │   │   │   └── 42
│   │   │   │   └── 7742cdd7343845c1bf2b831f66573816764bb09b
│   │   │   ├── 7a
│   │   │   │   └── ab
│   │   │   │   └── 7aab38e6cf211c9f1336be9d0f05ca83dc395a4a
│   │   │   ├── 7e
│   │   │   │   └── 75
│   │   │   │   └── 7e75db4ecb0e42c7c9b288c58d2745241ae602ab
│   │   │   ├── 85
│   │   │   │   └── 2a
│   │   │   │   └── 852a14656e20bb1f2b0008b3e6b51faf6ca7b634
│   │   │   ├── 8e
│   │   │   │   └── d7
│   │   │   │   └── 8ed772ed8755406b270e40c4f03e57b70d87754f
│   │   │   ├── 92
│   │   │   │   └── 37
│   │   │   │   └── 92379ecc9d0e974fae5ae7ae86773ff9d05d2477
│   │   │   ├── 93
│   │   │   │   ├── 7a
│   │   │   │   │   └── 937ae856d4f729fab1b83a693bf22ac27fbd6036
│   │   │   │   └── f7
│   │   │   │   └── 93f70bae58f5a33792b756697cd0ca82871b73bb
│   │   │   ├── 96
│   │   │   │   └── 47
│   │   │   │   └── 9647cee1cff15ab87e62f28d2a259e780bcb82eb
│   │   │   ├── 9a
│   │   │   │   └── c1
│   │   │   │   └── 9ac1802518fb9d01a61b29c7c83e658e37918202
│   │   │   ├── 9c
│   │   │   │   └── 0d
│   │   │   │   └── 9c0db907299cbc3347d3be9767f33d1a8b454bdb
│   │   │   ├── 9e
│   │   │   │   └── c8
│   │   │   │   └── 9ec87aa6e1f692251c2dd5022a0fc2ec7a66ba66
│   │   │   ├── a0
│   │   │   │   ├── 5b
│   │   │   │   │   └── a05bb1c94f47354852638d2c8dcc70bd73aac3b6
│   │   │   │   ├── 8f
│   │   │   │   │   └── a08f21ec2315febc385dca0ff1b7e3d64cff7a3a
│   │   │   │   └── f1
│   │   │   │   └── a0f1d0172ce87b7564b2bc5bd9b8f671939cfc6e
│   │   │   ├── a1
│   │   │   │   ├── 1c
│   │   │   │   │   └── a11cbe3dd817383cc88ac3dcb2afb4c7d23114de
│   │   │   │   └── 68
│   │   │   │   └── a1680674b2aea5575d7b58b40e5b32123be897df
│   │   │   ├── a2
│   │   │   │   └── cd
│   │   │   │   └── a2cd5958a57811a5753cee17db8f5c04fc917575
│   │   │   ├── ac
│   │   │   │   ├── 81
│   │   │   │   │   └── ac814d251368ad0ed75525108767c842ee74837f
│   │   │   │   └── 94
│   │   │   │   └── ac9417c6feddfdf23bc8d64fee97c6841de4bf08
│   │   │   ├── ad
│   │   │   │   └── 4e
│   │   │   │   └── ad4e490d4bb664d38c4621927eebf5bd87ab8f20
│   │   │   ├── b0
│   │   │   │   └── 24
│   │   │   │   └── b02476525b73973f116bab7392ae34961333e6a4
│   │   │   ├── bb
│   │   │   │   └── dc
│   │   │   │   └── bbdc663183fa0c2ab86d04e5736dee3f5bf98a48
│   │   │   ├── bc
│   │   │   │   └── de
│   │   │   │   └── bcde62ff73ec8f74df6ea890b5c99b2ff3b80a66
│   │   │   ├── cb
│   │   │   │   ├── 0d
│   │   │   │   │   └── cb0d40fb129ede60f086c61be8618331b7b7cf84
│   │   │   │   └── 17
│   │   │   │   └── cb1733b654baefd6df7c9b788a7a72c16a3a28c6
│   │   │   ├── cc
│   │   │   │   └── e1
│   │   │   │   └── cce1c9bede7b6320eb16a2076d00eacf7639d6dc
│   │   │   ├── cf
│   │   │   │   ├── 10
│   │   │   │   │   └── cf1083f0c71dfd30e2dcb62d64d62a0150578144
│   │   │   │   └── b9
│   │   │   │   └── cfb99011d248750c66a10b302679d376701223c4
│   │   │   ├── da
│   │   │   │   └── d6
│   │   │   │   └── dad6d76354ef846755a16604e37654f9f9c5c402
│   │   │   ├── dd
│   │   │   │   └── bb
│   │   │   │   └── ddbbc0ace6d0b299231f769d98aa3d201ed3ad79
│   │   │   ├── de
│   │   │   │   ├── 8c
│   │   │   │   │   └── de8c417c59a5180030fd144390509737dd9b37aa
│   │   │   │   └── f6
│   │   │   │   └── def695e6db495c7b812439b7a424d055f4c30ee8
│   │   │   ├── e0
│   │   │   │   └── ae
│   │   │   │   └── e0aecd0a2f1803a1be4cd02e4cd4b4868739e0e4
│   │   │   ├── e1
│   │   │   │   └── 55
│   │   │   │   └── e1552d6aa2911d062a8afcc9d895ca9f3b182b3c
│   │   │   ├── e3
│   │   │   │   └── e8
│   │   │   │   └── e3e8de6aa6648e8fa56769ea24721a969d022778
│   │   │   ├── e4
│   │   │   │   └── 3b
│   │   │   │   └── e43b54d59e27c86d1abeb6ebc97b199a1e72c9f0
│   │   │   ├── f0
│   │   │   │   └── 71
│   │   │   │   └── f07174260b83a51487967efea06aa8f4579ad032
│   │   │   ├── f3
│   │   │   │   └── c0
│   │   │   │   └── f3c0d8056d8d1f09ab642196e44375b34c0c281f
│   │   │   ├── f4
│   │   │   │   └── 77
│   │   │   │   └── f477878c7ffdfbecbfde6dd387b18351ff692355
│   │   │   ├── f5
│   │   │   │   └── 12
│   │   │   │   └── f5127693ddde399f4ff3d40d8ac99c823eee108a
│   │   │   ├── f6
│   │   │   │   └── 59
│   │   │   │   └── f659f56dfa6d09a95339d8972d64e4d959749e34
│   │   │   ├── f9
│   │   │   │   └── 46
│   │   │   │   └── f94639734b16536a2e3f40d675693e9020ea5c71
│   │   │   ├── fc
│   │   │   │   └── f9
│   │   │   │   └── fcf9888e1b923d5fa5a5c11c76a93a2986898bc0
│   │   │   └── fe
│   │   │   ├── 0b
│   │   │   │   └── fe0b6674b6dc0cc10eed87632099800753f52343
│   │   │   └── f9
│   │   │   └── fef93dd132466871de7592b36dcb6586d22799c9
│   │   ├── sessions
│   │   │   ├── 6UIaA39DnjuKLmYcHllwkPh5FkN8gaLCZE56uxrv
│   │   │   ├── hHwC37pEf7gQv5bpwCRl4TPLJ7Gg7zQ6edSuIMxQ
│   │   │   ├── NouWte6zNRLqF1qFQBeQSKaRC3G6Kfx1FJXbOkPl
│   │   │   ├── Qj98b3ZCxpE5fECKdLEmJ4x9n113fkdKFk3gu5nz
│   │   │   ├── sb4VGom1lJnGlOmkQq0hfmb0GcWupMeylKkJZOdl
│   │   │   ├── TtEBWtkgnx18coANowxXTfLfOHLDi8vugjgz3PET
│   │   │   ├── uFOor9rYGvso53d8076KrKArmCnMR7sZVPwfCQbM
│   │   │   ├── vsO8J6VVsh9i7XybqJUrwFfyYCi3bmWWMRi1i1W8
│   │   │   └── XvEDbjdlc6n5Bo9VhXC1F9x00GrCWMBL0ZoqxTyX
│   │   ├── testing
│   │   └── views
│   │   ├── 0ac00800c1163f1f08cbe1ac4990d26ada6df8e3.php
│   │   ├── 4c16cee37601805e50a2145de045451626b71e13.php
│   │   ├── b57044a61809ab2d78c01a61d9dbd33455ca7329.php
│   │   └── b9015eb168ec17d9db7b733348c684b7ecd1730c.php
│   └── logs
│   ├── laravel-2018-04-07.log
│   ├── laravel-2018-04-08.log
│   ├── laravel-2018-04-09.log
│   ├── laravel-2018-04-10.log
│   ├── laravel-2018-04-11.log
│   └── laravel.log
├── tests
│   ├── CreatesApplication.php
│   ├── Feature
│   │   └── ExampleTest.php
│   ├── TestCase.php
│   └── Unit
│   └── ExampleTest.php
├── vendor
│   ├── asm89
│   │   └── stack-cors
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── Asm89
│   │   └── Stack
│   │   ├── Cors.php
│   │   └── CorsService.php
│   ├── autoload.php
│   ├── barryvdh
│   │   ├── laravel-cors
│   │   │   ├── changelog.md
│   │   │   ├── composer.json
│   │   │   ├── config
│   │   │   │   └── cors.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.php
│   │   │   ├── phpunit.xml
│   │   │   ├── readme.md
│   │   │   ├── src
│   │   │   │   ├── HandleCors.php
│   │   │   │   ├── HandlePreflight.php
│   │   │   │   ├── LumenServiceProvider.php
│   │   │   │   └── ServiceProvider.php
│   │   │   └── tests
│   │   │   ├── CorsKernel.php
│   │   │   ├── GlobalMiddlewareTest.php
│   │   │   ├── GroupMiddlewareTest.php
│   │   │   ├── PreflightTest.php
│   │   │   └── TestCase.php
│   │   ├── laravel-ide-helper
│   │   │   ├── composer.json
│   │   │   ├── config
│   │   │   │   └── ide-helper.php
│   │   │   ├── LICENSE.md
│   │   │   ├── readme.md
│   │   │   ├── resources
│   │   │   │   └── views
│   │   │   │   ├── helper.php
│   │   │   │   └── meta.php
│   │   │   └── src
│   │   │   ├── Alias.php
│   │   │   ├── Console
│   │   │   │   ├── EloquentCommand.php
│   │   │   │   ├── GeneratorCommand.php
│   │   │   │   ├── MetaCommand.php
│   │   │   │   └── ModelsCommand.php
│   │   │   ├── Eloquent.php
│   │   │   ├── Generator.php
│   │   │   ├── IdeHelperServiceProvider.php
│   │   │   ├── Macro.php
│   │   │   └── Method.php
│   │   └── reflection-docblock
│   │   ├── composer.json
│   │   ├── composer.lock
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Barryvdh
│   │   │   └── Reflection
│   │   │   ├── DocBlock
│   │   │   │   ├── Context.php
│   │   │   │   ├── Description.php
│   │   │   │   ├── Location.php
│   │   │   │   ├── Serializer.php
│   │   │   │   ├── Tag
│   │   │   │   │   ├── AuthorTag.php
│   │   │   │   │   ├── CoversTag.php
│   │   │   │   │   ├── DeprecatedTag.php
│   │   │   │   │   ├── ExampleTag.php
│   │   │   │   │   ├── LinkTag.php
│   │   │   │   │   ├── MethodTag.php
│   │   │   │   │   ├── ParamTag.php
│   │   │   │   │   ├── PropertyReadTag.php
│   │   │   │   │   ├── PropertyTag.php
│   │   │   │   │   ├── PropertyWriteTag.php
│   │   │   │   │   ├── ReturnTag.php
│   │   │   │   │   ├── SeeTag.php
│   │   │   │   │   ├── SinceTag.php
│   │   │   │   │   ├── SourceTag.php
│   │   │   │   │   ├── ThrowsTag.php
│   │   │   │   │   ├── UsesTag.php
│   │   │   │   │   ├── VarTag.php
│   │   │   │   │   └── VersionTag.php
│   │   │   │   ├── Tag.php
│   │   │   │   └── Type
│   │   │   │   └── Collection.php
│   │   │   └── DocBlock.php
│   │   └── tests
│   │   └── Barryvdh
│   │   └── Reflection
│   │   ├── DocBlock
│   │   │   ├── DescriptionTest.php
│   │   │   ├── Tag
│   │   │   │   ├── CoversTagTest.php
│   │   │   │   ├── DeprecatedTagTest.php
│   │   │   │   ├── ExampleTagTest.php
│   │   │   │   ├── LinkTagTest.php
│   │   │   │   ├── MethodTagTest.php
│   │   │   │   ├── ParamTagTest.php
│   │   │   │   ├── ReturnTagTest.php
│   │   │   │   ├── SeeTagTest.php
│   │   │   │   ├── SinceTagTest.php
│   │   │   │   ├── SourceTagTest.php
│   │   │   │   ├── ThrowsTagTest.php
│   │   │   │   ├── UsesTagTest.php
│   │   │   │   ├── VarTagTest.php
│   │   │   │   └── VersionTagTest.php
│   │   │   ├── TagTest.php
│   │   │   └── Type
│   │   │   └── CollectionTest.php
│   │   └── DocBlockTest.php
│   ├── bin
│   │   ├── php-parse
│   │   ├── php-parse.bat
│   │   ├── phpunit
│   │   ├── phpunit.bat
│   │   ├── psysh
│   │   └── psysh.bat
│   ├── composer
│   │   ├── autoload_classmap.php
│   │   ├── autoload_files.php
│   │   ├── autoload_namespaces.php
│   │   ├── autoload_psr4.php
│   │   ├── autoload_real.php
│   │   ├── autoload_static.php
│   │   ├── ClassLoader.php
│   │   ├── installed.json
│   │   └── LICENSE
│   ├── dnoegel
│   │   └── php-xdg-base-dir
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Xdg.php
│   │   └── tests
│   │   └── XdgTest.php
│   ├── doctrine
│   │   ├── inflector
│   │   │   ├── composer.json
│   │   │   ├── lib
│   │   │   │   └── Doctrine
│   │   │   │   └── Common
│   │   │   │   └── Inflector
│   │   │   │   └── Inflector.php
│   │   │   ├── LICENSE
│   │   │   └── README.md
│   │   └── instantiator
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── LICENSE
│   │   ├── phpmd.xml.dist
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Doctrine
│   │   │   └── Instantiator
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   └── UnexpectedValueException.php
│   │   │   ├── InstantiatorInterface.php
│   │   │   └── Instantiator.php
│   │   └── tests
│   │   └── DoctrineTest
│   │   ├── InstantiatorPerformance
│   │   │   └── InstantiatorPerformanceEvent.php
│   │   ├── InstantiatorTest
│   │   │   ├── Exception
│   │   │   │   ├── InvalidArgumentExceptionTest.php
│   │   │   │   └── UnexpectedValueExceptionTest.php
│   │   │   └── InstantiatorTest.php
│   │   └── InstantiatorTestAsset
│   │   ├── AbstractClassAsset.php
│   │   ├── ArrayObjectAsset.php
│   │   ├── ExceptionAsset.php
│   │   ├── FinalExceptionAsset.php
│   │   ├── PharAsset.php
│   │   ├── PharExceptionAsset.php
│   │   ├── SerializableArrayObjectAsset.php
│   │   ├── SimpleSerializableAsset.php
│   │   ├── SimpleTraitAsset.php
│   │   ├── UnCloneableAsset.php
│   │   ├── UnserializeExceptionArrayObjectAsset.php
│   │   ├── WakeUpNoticesAsset.php
│   │   └── XMLReaderAsset.php
│   ├── erusev
│   │   └── parsedown
│   │   ├── composer.json
│   │   ├── LICENSE.txt
│   │   ├── Parsedown.php
│   │   └── README.md
│   ├── fzaninotto
│   │   └── faker
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── LICENSE
│   │   ├── Makefile
│   │   ├── phpunit.xml.dist
│   │   ├── readme.md
│   │   ├── src
│   │   │   ├── autoload.php
│   │   │   └── Faker
│   │   │   ├── Calculator
│   │   │   │   ├── Iban.php
│   │   │   │   ├── Inn.php
│   │   │   │   └── Luhn.php
│   │   │   ├── DefaultGenerator.php
│   │   │   ├── Documentor.php
│   │   │   ├── Factory.php
│   │   │   ├── Generator.php
│   │   │   ├── Guesser
│   │   │   │   └── Name.php
│   │   │   ├── ORM
│   │   │   │   ├── CakePHP
│   │   │   │   │   ├── ColumnTypeGuesser.php
│   │   │   │   │   ├── EntityPopulator.php
│   │   │   │   │   └── Populator.php
│   │   │   │   ├── Doctrine
│   │   │   │   │   ├── ColumnTypeGuesser.php
│   │   │   │   │   ├── EntityPopulator.php
│   │   │   │   │   └── Populator.php
│   │   │   │   ├── Mandango
│   │   │   │   │   ├── ColumnTypeGuesser.php
│   │   │   │   │   ├── EntityPopulator.php
│   │   │   │   │   └── Populator.php
│   │   │   │   ├── Propel
│   │   │   │   │   ├── ColumnTypeGuesser.php
│   │   │   │   │   ├── EntityPopulator.php
│   │   │   │   │   └── Populator.php
│   │   │   │   ├── Propel2
│   │   │   │   │   ├── ColumnTypeGuesser.php
│   │   │   │   │   ├── EntityPopulator.php
│   │   │   │   │   └── Populator.php
│   │   │   │   └── Spot
│   │   │   │   ├── ColumnTypeGuesser.php
│   │   │   │   ├── EntityPopulator.php
│   │   │   │   └── Populator.php
│   │   │   ├── Provider
│   │   │   │   ├── Address.php
│   │   │   │   ├── ar_JO
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── ar_SA
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── at_AT
│   │   │   │   │   └── Payment.php
│   │   │   │   ├── Barcode.php
│   │   │   │   ├── Base.php
│   │   │   │   ├── bg_BG
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── Biased.php
│   │   │   │   ├── bn_BD
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Utils.php
│   │   │   │   ├── Color.php
│   │   │   │   ├── Company.php
│   │   │   │   ├── cs_CZ
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── DateTime.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── da_DK
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── DateTime.php
│   │   │   │   ├── de_AT
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── de_CH
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── de_DE
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── el_CY
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── el_GR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── en_AU
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_CA
│   │   │   │   │   ├── Address.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_GB
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_HK
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_IN
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_NG
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_NZ
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_PH
│   │   │   │   │   ├── Address.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_SG
│   │   │   │   │   ├── Address.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_UG
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── en_US
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── en_ZA
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── es_AR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── es_ES
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── es_PE
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── es_VE
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── fa_IR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── fi_FI
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── File.php
│   │   │   │   ├── fr_BE
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── fr_CA
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   └── Person.php
│   │   │   │   ├── fr_CH
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── fr_FR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── he_IL
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── hr_HR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── HtmlLorem.php
│   │   │   │   ├── hu_HU
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── hy_AM
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── id_ID
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── Image.php
│   │   │   │   ├── Internet.php
│   │   │   │   ├── is_IS
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── it_CH
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── it_IT
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── ja_JP
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── ka_GE
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── DateTime.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── kk_KZ
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── ko_KR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── Lorem.php
│   │   │   │   ├── lt_LT
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── lv_LV
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── me_ME
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── Miscellaneous.php
│   │   │   │   ├── mn_MN
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── nb_NO
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── ne_NP
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── nl_BE
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── nl_NL
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── Payment.php
│   │   │   │   ├── Person.php
│   │   │   │   ├── PhoneNumber.php
│   │   │   │   ├── pl_PL
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── pt_BR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── check_digit.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── pt_PT
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── ro_MD
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── ro_RO
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── ru_RU
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── sk_SK
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── sl_SI
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── sr_Cyrl_RS
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   └── Person.php
│   │   │   │   ├── sr_Latn_RS
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   └── Person.php
│   │   │   │   ├── sr_RS
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   └── Person.php
│   │   │   │   ├── sv_SE
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── Text.php
│   │   │   │   ├── th_TH
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── tr_TR
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── DateTime.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── uk_UA
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   ├── PhoneNumber.php
│   │   │   │   │   └── Text.php
│   │   │   │   ├── UserAgent.php
│   │   │   │   ├── Uuid.php
│   │   │   │   ├── vi_VN
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   ├── zh_CN
│   │   │   │   │   ├── Address.php
│   │   │   │   │   ├── Color.php
│   │   │   │   │   ├── Company.php
│   │   │   │   │   ├── DateTime.php
│   │   │   │   │   ├── Internet.php
│   │   │   │   │   ├── Payment.php
│   │   │   │   │   ├── Person.php
│   │   │   │   │   └── PhoneNumber.php
│   │   │   │   └── zh_TW
│   │   │   │   ├── Address.php
│   │   │   │   ├── Color.php
│   │   │   │   ├── Company.php
│   │   │   │   ├── DateTime.php
│   │   │   │   ├── Internet.php
│   │   │   │   ├── Payment.php
│   │   │   │   ├── Person.php
│   │   │   │   ├── PhoneNumber.php
│   │   │   │   └── Text.php
│   │   │   ├── UniqueGenerator.php
│   │   │   └── ValidGenerator.php
│   │   └── test
│   │   ├── documentor.php
│   │   ├── Faker
│   │   │   ├── Calculator
│   │   │   │   ├── IbanTest.php
│   │   │   │   ├── InnTest.php
│   │   │   │   └── LuhnTest.php
│   │   │   ├── DefaultGeneratorTest.php
│   │   │   ├── GeneratorTest.php
│   │   │   └── Provider
│   │   │   ├── AddressTest.php
│   │   │   ├── ar_JO
│   │   │   │   └── InternetTest.php
│   │   │   ├── ar_SA
│   │   │   │   └── InternetTest.php
│   │   │   ├── at_AT
│   │   │   │   └── PaymentTest.php
│   │   │   ├── BarcodeTest.php
│   │   │   ├── BaseTest.php
│   │   │   ├── bg_BG
│   │   │   │   └── PaymentTest.php
│   │   │   ├── BiasedTest.php
│   │   │   ├── bn_BD
│   │   │   │   └── PersonTest.php
│   │   │   ├── ColorTest.php
│   │   │   ├── CompanyTest.php
│   │   │   ├── cs_CZ
│   │   │   │   └── PersonTest.php
│   │   │   ├── da_DK
│   │   │   │   └── InternetTest.php
│   │   │   ├── DateTimeTest.php
│   │   │   ├── de_AT
│   │   │   │   ├── InternetTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── de_CH
│   │   │   │   ├── AddressTest.php
│   │   │   │   ├── InternetTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── de_DE
│   │   │   │   └── InternetTest.php
│   │   │   ├── en_AU
│   │   │   │   └── AddressTest.php
│   │   │   ├── en_CA
│   │   │   │   └── AddressTest.php
│   │   │   ├── en_GB
│   │   │   │   └── AddressTest.php
│   │   │   ├── en_IN
│   │   │   │   └── AddressTest.php
│   │   │   ├── en_NG
│   │   │   │   ├── AddressTest.php
│   │   │   │   ├── InternetTest.php
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── en_NZ
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── en_PH
│   │   │   │   └── AddressTest.php
│   │   │   ├── en_SG
│   │   │   │   ├── AddressTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── en_UG
│   │   │   │   └── AddressTest.php
│   │   │   ├── en_US
│   │   │   │   ├── PaymentTest.php
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── en_ZA
│   │   │   │   ├── CompanyTest.php
│   │   │   │   ├── InternetTest.php
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── es_ES
│   │   │   │   ├── PaymentTest.php
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── TextTest.php
│   │   │   ├── es_PE
│   │   │   │   └── PersonTest.php
│   │   │   ├── fi_FI
│   │   │   │   ├── InternetTest.php
│   │   │   │   └── PersonTest.php
│   │   │   ├── fr_BE
│   │   │   │   └── PaymentTest.php
│   │   │   ├── fr_CH
│   │   │   │   ├── AddressTest.php
│   │   │   │   ├── InternetTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── fr_FR
│   │   │   │   ├── CompanyTest.php
│   │   │   │   └── PersonTest.php
│   │   │   ├── HtmlLoremTest.php
│   │   │   ├── id_ID
│   │   │   │   └── PersonTest.php
│   │   │   ├── ImageTest.php
│   │   │   ├── InternetTest.php
│   │   │   ├── it_CH
│   │   │   │   ├── AddressTest.php
│   │   │   │   ├── InternetTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── it_IT
│   │   │   │   ├── CompanyTest.php
│   │   │   │   └── PersonTest.php
│   │   │   ├── ja_JP
│   │   │   │   ├── InternetTest.php
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── kk_KZ
│   │   │   │   ├── CompanyTest.php
│   │   │   │   └── PersonTest.php
│   │   │   ├── LocalizationTest.php
│   │   │   ├── LoremTest.php
│   │   │   ├── MiscellaneousTest.php
│   │   │   ├── mn_MN
│   │   │   │   └── PersonTest.php
│   │   │   ├── nl_BE
│   │   │   │   └── PaymentTest.php
│   │   │   ├── nl_NL
│   │   │   │   └── CompanyTest.php
│   │   │   ├── PaymentTest.php
│   │   │   ├── PersonTest.php
│   │   │   ├── PhoneNumberTest.php
│   │   │   ├── pl_PL
│   │   │   │   └── AddressTest.php
│   │   │   ├── ProviderOverrideTest.php
│   │   │   ├── pt_BR
│   │   │   │   ├── CompanyTest.php
│   │   │   │   └── PersonTest.php
│   │   │   ├── pt_PT
│   │   │   │   ├── AddressTest.php
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── ro_RO
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── ru_RU
│   │   │   │   └── CompanyTest.php
│   │   │   ├── sv_SE
│   │   │   │   └── PersonTest.php
│   │   │   ├── TextTest.php
│   │   │   ├── uk_UA
│   │   │   │   ├── AddressTest.php
│   │   │   │   ├── PersonTest.php
│   │   │   │   └── PhoneNumberTest.php
│   │   │   ├── UserAgentTest.php
│   │   │   ├── UuidTest.php
│   │   │   └── zh_TW
│   │   │   ├── CompanyTest.php
│   │   │   ├── PersonTest.php
│   │   │   └── TextTest.php
│   │   └── test.php
│   ├── hamcrest
│   │   └── hamcrest-php
│   │   ├── CHANGES.txt
│   │   ├── composer.json
│   │   ├── generator
│   │   │   ├── FactoryCall.php
│   │   │   ├── FactoryClass.php
│   │   │   ├── FactoryFile.php
│   │   │   ├── FactoryGenerator.php
│   │   │   ├── FactoryMethod.php
│   │   │   ├── FactoryParameter.php
│   │   │   ├── GlobalFunctionFile.php
│   │   │   ├── parts
│   │   │   │   ├── file_header.txt
│   │   │   │   ├── functions_footer.txt
│   │   │   │   ├── functions_header.txt
│   │   │   │   ├── functions_imports.txt
│   │   │   │   ├── matchers_footer.txt
│   │   │   │   ├── matchers_header.txt
│   │   │   │   └── matchers_imports.txt
│   │   │   ├── run.php
│   │   │   └── StaticMethodFile.php
│   │   ├── hamcrest
│   │   │   ├── Hamcrest
│   │   │   │   ├── Arrays
│   │   │   │   │   ├── IsArrayContainingInAnyOrder.php
│   │   │   │   │   ├── IsArrayContainingInOrder.php
│   │   │   │   │   ├── IsArrayContainingKey.php
│   │   │   │   │   ├── IsArrayContainingKeyValuePair.php
│   │   │   │   │   ├── IsArrayContaining.php
│   │   │   │   │   ├── IsArray.php
│   │   │   │   │   ├── IsArrayWithSize.php
│   │   │   │   │   ├── MatchingOnce.php
│   │   │   │   │   └── SeriesMatchingOnce.php
│   │   │   │   ├── AssertionError.php
│   │   │   │   ├── BaseDescription.php
│   │   │   │   ├── BaseMatcher.php
│   │   │   │   ├── Collection
│   │   │   │   │   ├── IsEmptyTraversable.php
│   │   │   │   │   └── IsTraversableWithSize.php
│   │   │   │   ├── Core
│   │   │   │   │   ├── AllOf.php
│   │   │   │   │   ├── AnyOf.php
│   │   │   │   │   ├── CombinableMatcher.php
│   │   │   │   │   ├── DescribedAs.php
│   │   │   │   │   ├── Every.php
│   │   │   │   │   ├── HasToString.php
│   │   │   │   │   ├── IsAnything.php
│   │   │   │   │   ├── IsCollectionContaining.php
│   │   │   │   │   ├── IsEqual.php
│   │   │   │   │   ├── IsIdentical.php
│   │   │   │   │   ├── IsInstanceOf.php
│   │   │   │   │   ├── IsNot.php
│   │   │   │   │   ├── IsNull.php
│   │   │   │   │   ├── Is.php
│   │   │   │   │   ├── IsSame.php
│   │   │   │   │   ├── IsTypeOf.php
│   │   │   │   │   ├── Set.php
│   │   │   │   │   └── ShortcutCombination.php
│   │   │   │   ├── Description.php
│   │   │   │   ├── DiagnosingMatcher.php
│   │   │   │   ├── FeatureMatcher.php
│   │   │   │   ├── Internal
│   │   │   │   │   └── SelfDescribingValue.php
│   │   │   │   ├── MatcherAssert.php
│   │   │   │   ├── Matcher.php
│   │   │   │   ├── Matchers.php
│   │   │   │   ├── NullDescription.php
│   │   │   │   ├── Number
│   │   │   │   │   ├── IsCloseTo.php
│   │   │   │   │   └── OrderingComparison.php
│   │   │   │   ├── SelfDescribing.php
│   │   │   │   ├── StringDescription.php
│   │   │   │   ├── Text
│   │   │   │   │   ├── IsEmptyString.php
│   │   │   │   │   ├── IsEqualIgnoringCase.php
│   │   │   │   │   ├── IsEqualIgnoringWhiteSpace.php
│   │   │   │   │   ├── MatchesPattern.php
│   │   │   │   │   ├── StringContainsIgnoringCase.php
│   │   │   │   │   ├── StringContainsInOrder.php
│   │   │   │   │   ├── StringContains.php
│   │   │   │   │   ├── StringEndsWith.php
│   │   │   │   │   ├── StringStartsWith.php
│   │   │   │   │   └── SubstringMatcher.php
│   │   │   │   ├── Type
│   │   │   │   │   ├── IsArray.php
│   │   │   │   │   ├── IsBoolean.php
│   │   │   │   │   ├── IsCallable.php
│   │   │   │   │   ├── IsDouble.php
│   │   │   │   │   ├── IsInteger.php
│   │   │   │   │   ├── IsNumeric.php
│   │   │   │   │   ├── IsObject.php
│   │   │   │   │   ├── IsResource.php
│   │   │   │   │   ├── IsScalar.php
│   │   │   │   │   └── IsString.php
│   │   │   │   ├── TypeSafeDiagnosingMatcher.php
│   │   │   │   ├── TypeSafeMatcher.php
│   │   │   │   ├── Util.php
│   │   │   │   └── Xml
│   │   │   │   └── HasXPath.php
│   │   │   └── Hamcrest.php
│   │   ├── LICENSE.txt
│   │   ├── README.md
│   │   ├── tests
│   │   │   ├── bootstrap.php
│   │   │   ├── Hamcrest
│   │   │   │   ├── AbstractMatcherTest.php
│   │   │   │   ├── Array
│   │   │   │   │   ├── IsArrayContainingInAnyOrderTest.php
│   │   │   │   │   ├── IsArrayContainingInOrderTest.php
│   │   │   │   │   ├── IsArrayContainingKeyTest.php
│   │   │   │   │   ├── IsArrayContainingKeyValuePairTest.php
│   │   │   │   │   ├── IsArrayContainingTest.php
│   │   │   │   │   ├── IsArrayTest.php
│   │   │   │   │   └── IsArrayWithSizeTest.php
│   │   │   │   ├── BaseMatcherTest.php
│   │   │   │   ├── Collection
│   │   │   │   │   ├── IsEmptyTraversableTest.php
│   │   │   │   │   └── IsTraversableWithSizeTest.php
│   │   │   │   ├── Core
│   │   │   │   │   ├── AllOfTest.php
│   │   │   │   │   ├── AnyOfTest.php
│   │   │   │   │   ├── CombinableMatcherTest.php
│   │   │   │   │   ├── DescribedAsTest.php
│   │   │   │   │   ├── EveryTest.php
│   │   │   │   │   ├── HasToStringTest.php
│   │   │   │   │   ├── IsAnythingTest.php
│   │   │   │   │   ├── IsCollectionContainingTest.php
│   │   │   │   │   ├── IsEqualTest.php
│   │   │   │   │   ├── IsIdenticalTest.php
│   │   │   │   │   ├── IsInstanceOfTest.php
│   │   │   │   │   ├── IsNotTest.php
│   │   │   │   │   ├── IsNullTest.php
│   │   │   │   │   ├── IsSameTest.php
│   │   │   │   │   ├── IsTest.php
│   │   │   │   │   ├── IsTypeOfTest.php
│   │   │   │   │   ├── SampleBaseClass.php
│   │   │   │   │   ├── SampleSubClass.php
│   │   │   │   │   └── SetTest.php
│   │   │   │   ├── FeatureMatcherTest.php
│   │   │   │   ├── MatcherAssertTest.php
│   │   │   │   ├── Number
│   │   │   │   │   ├── IsCloseToTest.php
│   │   │   │   │   └── OrderingComparisonTest.php
│   │   │   │   ├── StringDescriptionTest.php
│   │   │   │   ├── Text
│   │   │   │   │   ├── IsEmptyStringTest.php
│   │   │   │   │   ├── IsEqualIgnoringCaseTest.php
│   │   │   │   │   ├── IsEqualIgnoringWhiteSpaceTest.php
│   │   │   │   │   ├── MatchesPatternTest.php
│   │   │   │   │   ├── StringContainsIgnoringCaseTest.php
│   │   │   │   │   ├── StringContainsInOrderTest.php
│   │   │   │   │   ├── StringContainsTest.php
│   │   │   │   │   ├── StringEndsWithTest.php
│   │   │   │   │   └── StringStartsWithTest.php
│   │   │   │   ├── Type
│   │   │   │   │   ├── IsArrayTest.php
│   │   │   │   │   ├── IsBooleanTest.php
│   │   │   │   │   ├── IsCallableTest.php
│   │   │   │   │   ├── IsDoubleTest.php
│   │   │   │   │   ├── IsIntegerTest.php
│   │   │   │   │   ├── IsNumericTest.php
│   │   │   │   │   ├── IsObjectTest.php
│   │   │   │   │   ├── IsResourceTest.php
│   │   │   │   │   ├── IsScalarTest.php
│   │   │   │   │   └── IsStringTest.php
│   │   │   │   ├── UtilTest.php
│   │   │   │   └── Xml
│   │   │   │   └── HasXPathTest.php
│   │   │   └── phpunit.xml.dist
│   │   └── TODO.txt
│   ├── jakub-onderka
│   │   ├── php-console-color
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── example.php
│   │   │   ├── phpunit.xml
│   │   │   ├── src
│   │   │   │   └── JakubOnderka
│   │   │   │   └── PhpConsoleColor
│   │   │   │   ├── ConsoleColor.php
│   │   │   │   └── InvalidStyleException.php
│   │   │   └── tests
│   │   │   ├── bootstrap.php
│   │   │   └── JakubOnderka
│   │   │   └── PhpConsoleColor
│   │   │   └── ConsoleColorTest.php
│   │   └── php-console-highlighter
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── examples
│   │   │   ├── snippet.php
│   │   │   ├── whole_file_line_numbers.php
│   │   │   └── whole_file.php
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   └── JakubOnderka
│   │   │   └── PhpConsoleHighlighter
│   │   │   └── Highlighter.php
│   │   └── tests
│   │   ├── bootstrap.php
│   │   └── JakubOnderka
│   │   └── PhpConsoleHighligter
│   │   └── HigligterTest.php
│   ├── laravel
│   │   ├── framework
│   │   │   ├── composer.json
│   │   │   ├── LICENSE.md
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   └── Illuminate
│   │   │   ├── Auth
│   │   │   │   ├── Access
│   │   │   │   │   ├── AuthorizationException.php
│   │   │   │   │   ├── Gate.php
│   │   │   │   │   ├── HandlesAuthorization.php
│   │   │   │   │   └── Response.php
│   │   │   │   ├── Authenticatable.php
│   │   │   │   ├── AuthenticationException.php
│   │   │   │   ├── AuthManager.php
│   │   │   │   ├── AuthServiceProvider.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Console
│   │   │   │   │   ├── AuthMakeCommand.php
│   │   │   │   │   ├── ClearResetsCommand.php
│   │   │   │   │   └── stubs
│   │   │   │   │   └── make
│   │   │   │   │   ├── controllers
│   │   │   │   │   │   └── HomeController.stub
│   │   │   │   │   ├── routes.stub
│   │   │   │   │   └── views
│   │   │   │   │   ├── auth
│   │   │   │   │   │   ├── login.stub
│   │   │   │   │   │   ├── passwords
│   │   │   │   │   │   │   ├── email.stub
│   │   │   │   │   │   │   └── reset.stub
│   │   │   │   │   │   └── register.stub
│   │   │   │   │   ├── home.stub
│   │   │   │   │   └── layouts
│   │   │   │   │   └── app.stub
│   │   │   │   ├── CreatesUserProviders.php
│   │   │   │   ├── DatabaseUserProvider.php
│   │   │   │   ├── EloquentUserProvider.php
│   │   │   │   ├── Events
│   │   │   │   │   ├── Attempting.php
│   │   │   │   │   ├── Authenticated.php
│   │   │   │   │   ├── Failed.php
│   │   │   │   │   ├── Lockout.php
│   │   │   │   │   ├── Login.php
│   │   │   │   │   ├── Logout.php
│   │   │   │   │   └── Registered.php
│   │   │   │   ├── GenericUser.php
│   │   │   │   ├── GuardHelpers.php
│   │   │   │   ├── Middleware
│   │   │   │   │   ├── Authenticate.php
│   │   │   │   │   ├── AuthenticateWithBasicAuth.php
│   │   │   │   │   └── Authorize.php
│   │   │   │   ├── Notifications
│   │   │   │   │   └── ResetPassword.php
│   │   │   │   ├── Passwords
│   │   │   │   │   ├── CanResetPassword.php
│   │   │   │   │   ├── DatabaseTokenRepository.php
│   │   │   │   │   ├── PasswordBrokerManager.php
│   │   │   │   │   ├── PasswordBroker.php
│   │   │   │   │   ├── PasswordResetServiceProvider.php
│   │   │   │   │   └── TokenRepositoryInterface.php
│   │   │   │   ├── Recaller.php
│   │   │   │   ├── RequestGuard.php
│   │   │   │   ├── SessionGuard.php
│   │   │   │   └── TokenGuard.php
│   │   │   ├── Broadcasting
│   │   │   │   ├── BroadcastController.php
│   │   │   │   ├── Broadcasters
│   │   │   │   │   ├── Broadcaster.php
│   │   │   │   │   ├── LogBroadcaster.php
│   │   │   │   │   ├── NullBroadcaster.php
│   │   │   │   │   ├── PusherBroadcaster.php
│   │   │   │   │   └── RedisBroadcaster.php
│   │   │   │   ├── BroadcastEvent.php
│   │   │   │   ├── BroadcastException.php
│   │   │   │   ├── BroadcastManager.php
│   │   │   │   ├── BroadcastServiceProvider.php
│   │   │   │   ├── Channel.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── InteractsWithSockets.php
│   │   │   │   ├── PendingBroadcast.php
│   │   │   │   ├── PresenceChannel.php
│   │   │   │   └── PrivateChannel.php
│   │   │   ├── Bus
│   │   │   │   ├── BusServiceProvider.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Dispatcher.php
│   │   │   │   └── Queueable.php
│   │   │   ├── Cache
│   │   │   │   ├── ApcStore.php
│   │   │   │   ├── ApcWrapper.php
│   │   │   │   ├── ArrayStore.php
│   │   │   │   ├── CacheManager.php
│   │   │   │   ├── CacheServiceProvider.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Console
│   │   │   │   │   ├── CacheTableCommand.php
│   │   │   │   │   ├── ClearCommand.php
│   │   │   │   │   ├── ForgetCommand.php
│   │   │   │   │   └── stubs
│   │   │   │   │   └── cache.stub
│   │   │   │   ├── DatabaseStore.php
│   │   │   │   ├── Events
│   │   │   │   │   ├── CacheEvent.php
│   │   │   │   │   ├── CacheHit.php
│   │   │   │   │   ├── CacheMissed.php
│   │   │   │   │   ├── KeyForgotten.php
│   │   │   │   │   └── KeyWritten.php
│   │   │   │   ├── FileStore.php
│   │   │   │   ├── MemcachedConnector.php
│   │   │   │   ├── MemcachedStore.php
│   │   │   │   ├── NullStore.php
│   │   │   │   ├── RateLimiter.php
│   │   │   │   ├── RedisStore.php
│   │   │   │   ├── RedisTaggedCache.php
│   │   │   │   ├── Repository.php
│   │   │   │   ├── RetrievesMultipleKeys.php
│   │   │   │   ├── TaggableStore.php
│   │   │   │   ├── TaggedCache.php
│   │   │   │   └── TagSet.php
│   │   │   ├── Config
│   │   │   │   ├── composer.json
│   │   │   │   └── Repository.php
│   │   │   ├── Console
│   │   │   │   ├── Application.php
│   │   │   │   ├── Command.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── ConfirmableTrait.php
│   │   │   │   ├── DetectsApplicationNamespace.php
│   │   │   │   ├── Events
│   │   │   │   │   └── ArtisanStarting.php
│   │   │   │   ├── GeneratorCommand.php
│   │   │   │   ├── OutputStyle.php
│   │   │   │   ├── Parser.php
│   │   │   │   └── Scheduling
│   │   │   │   ├── CacheMutex.php
│   │   │   │   ├── CallbackEvent.php
│   │   │   │   ├── CommandBuilder.php
│   │   │   │   ├── Event.php
│   │   │   │   ├── ManagesFrequencies.php
│   │   │   │   ├── Mutex.php
│   │   │   │   ├── ScheduleFinishCommand.php
│   │   │   │   ├── Schedule.php
│   │   │   │   └── ScheduleRunCommand.php
│   │   │   ├── Container
│   │   │   │   ├── BoundMethod.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Container.php
│   │   │   │   └── ContextualBindingBuilder.php
│   │   │   ├── Contracts
│   │   │   │   ├── Auth
│   │   │   │   │   ├── Access
│   │   │   │   │   │   ├── Authorizable.php
│   │   │   │   │   │   └── Gate.php
│   │   │   │   │   ├── Authenticatable.php
│   │   │   │   │   ├── CanResetPassword.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── Guard.php
│   │   │   │   │   ├── PasswordBrokerFactory.php
│   │   │   │   │   ├── PasswordBroker.php
│   │   │   │   │   ├── StatefulGuard.php
│   │   │   │   │   ├── SupportsBasicAuth.php
│   │   │   │   │   └── UserProvider.php
│   │   │   │   ├── Broadcasting
│   │   │   │   │   ├── Broadcaster.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── ShouldBroadcastNow.php
│   │   │   │   │   └── ShouldBroadcast.php
│   │   │   │   ├── Bus
│   │   │   │   │   ├── Dispatcher.php
│   │   │   │   │   └── QueueingDispatcher.php
│   │   │   │   ├── Cache
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── Repository.php
│   │   │   │   │   └── Store.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Config
│   │   │   │   │   └── Repository.php
│   │   │   │   ├── Console
│   │   │   │   │   ├── Application.php
│   │   │   │   │   └── Kernel.php
│   │   │   │   ├── Container
│   │   │   │   │   ├── BindingResolutionException.php
│   │   │   │   │   ├── Container.php
│   │   │   │   │   └── ContextualBindingBuilder.php
│   │   │   │   ├── Cookie
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   └── QueueingFactory.php
│   │   │   │   ├── Database
│   │   │   │   │   └── ModelIdentifier.php
│   │   │   │   ├── Debug
│   │   │   │   │   └── ExceptionHandler.php
│   │   │   │   ├── Encryption
│   │   │   │   │   ├── DecryptException.php
│   │   │   │   │   ├── Encrypter.php
│   │   │   │   │   └── EncryptException.php
│   │   │   │   ├── Events
│   │   │   │   │   └── Dispatcher.php
│   │   │   │   ├── Filesystem
│   │   │   │   │   ├── Cloud.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── FileNotFoundException.php
│   │   │   │   │   └── Filesystem.php
│   │   │   │   ├── Foundation
│   │   │   │   │   └── Application.php
│   │   │   │   ├── Hashing
│   │   │   │   │   └── Hasher.php
│   │   │   │   ├── Http
│   │   │   │   │   └── Kernel.php
│   │   │   │   ├── Logging
│   │   │   │   │   └── Log.php
│   │   │   │   ├── Mail
│   │   │   │   │   ├── Mailable.php
│   │   │   │   │   ├── Mailer.php
│   │   │   │   │   └── MailQueue.php
│   │   │   │   ├── Notifications
│   │   │   │   │   ├── Dispatcher.php
│   │   │   │   │   └── Factory.php
│   │   │   │   ├── Pagination
│   │   │   │   │   ├── LengthAwarePaginator.php
│   │   │   │   │   └── Paginator.php
│   │   │   │   ├── Pipeline
│   │   │   │   │   ├── Hub.php
│   │   │   │   │   └── Pipeline.php
│   │   │   │   ├── Queue
│   │   │   │   │   ├── EntityNotFoundException.php
│   │   │   │   │   ├── EntityResolver.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── Job.php
│   │   │   │   │   ├── Monitor.php
│   │   │   │   │   ├── QueueableCollection.php
│   │   │   │   │   ├── QueueableEntity.php
│   │   │   │   │   ├── Queue.php
│   │   │   │   │   └── ShouldQueue.php
│   │   │   │   ├── Redis
│   │   │   │   │   └── Factory.php
│   │   │   │   ├── Routing
│   │   │   │   │   ├── BindingRegistrar.php
│   │   │   │   │   ├── Registrar.php
│   │   │   │   │   ├── ResponseFactory.php
│   │   │   │   │   ├── UrlGenerator.php
│   │   │   │   │   └── UrlRoutable.php
│   │   │   │   ├── Session
│   │   │   │   │   └── Session.php
│   │   │   │   ├── Support
│   │   │   │   │   ├── Arrayable.php
│   │   │   │   │   ├── Htmlable.php
│   │   │   │   │   ├── Jsonable.php
│   │   │   │   │   ├── MessageBag.php
│   │   │   │   │   ├── MessageProvider.php
│   │   │   │   │   └── Renderable.php
│   │   │   │   ├── Translation
│   │   │   │   │   └── Translator.php
│   │   │   │   ├── Validation
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── ValidatesWhenResolved.php
│   │   │   │   │   └── Validator.php
│   │   │   │   └── View
│   │   │   │   ├── Factory.php
│   │   │   │   └── View.php
│   │   │   ├── Cookie
│   │   │   │   ├── composer.json
│   │   │   │   ├── CookieJar.php
│   │   │   │   ├── CookieServiceProvider.php
│   │   │   │   └── Middleware
│   │   │   │   ├── AddQueuedCookiesToResponse.php
│   │   │   │   └── EncryptCookies.php
│   │   │   ├── Database
│   │   │   │   ├── Capsule
│   │   │   │   │   └── Manager.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Concerns
│   │   │   │   │   ├── BuildsQueries.php
│   │   │   │   │   └── ManagesTransactions.php
│   │   │   │   ├── ConnectionInterface.php
│   │   │   │   ├── Connection.php
│   │   │   │   ├── ConnectionResolverInterface.php
│   │   │   │   ├── ConnectionResolver.php
│   │   │   │   ├── Connectors
│   │   │   │   │   ├── ConnectionFactory.php
│   │   │   │   │   ├── ConnectorInterface.php
│   │   │   │   │   ├── Connector.php
│   │   │   │   │   ├── MySqlConnector.php
│   │   │   │   │   ├── PostgresConnector.php
│   │   │   │   │   ├── SQLiteConnector.php
│   │   │   │   │   └── SqlServerConnector.php
│   │   │   │   ├── Console
│   │   │   │   │   ├── Migrations
│   │   │   │   │   │   ├── BaseCommand.php
│   │   │   │   │   │   ├── InstallCommand.php
│   │   │   │   │   │   ├── MigrateCommand.php
│   │   │   │   │   │   ├── MigrateMakeCommand.php
│   │   │   │   │   │   ├── RefreshCommand.php
│   │   │   │   │   │   ├── ResetCommand.php
│   │   │   │   │   │   ├── RollbackCommand.php
│   │   │   │   │   │   └── StatusCommand.php
│   │   │   │   │   └── Seeds
│   │   │   │   │   ├── SeedCommand.php
│   │   │   │   │   ├── SeederMakeCommand.php
│   │   │   │   │   └── stubs
│   │   │   │   │   └── seeder.stub
│   │   │   │   ├── DatabaseManager.php
│   │   │   │   ├── DatabaseServiceProvider.php
│   │   │   │   ├── DetectsDeadlocks.php
│   │   │   │   ├── DetectsLostConnections.php
│   │   │   │   ├── Eloquent
│   │   │   │   │   ├── Builder.php
│   │   │   │   │   ├── Collection.php
│   │   │   │   │   ├── Concerns
│   │   │   │   │   │   ├── GuardsAttributes.php
│   │   │   │   │   │   ├── HasAttributes.php
│   │   │   │   │   │   ├── HasEvents.php
│   │   │   │   │   │   ├── HasGlobalScopes.php
│   │   │   │   │   │   ├── HasRelationships.php
│   │   │   │   │   │   ├── HasTimestamps.php
│   │   │   │   │   │   ├── HidesAttributes.php
│   │   │   │   │   │   └── QueriesRelationships.php
│   │   │   │   │   ├── FactoryBuilder.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── JsonEncodingException.php
│   │   │   │   │   ├── MassAssignmentException.php
│   │   │   │   │   ├── ModelNotFoundException.php
│   │   │   │   │   ├── Model.php
│   │   │   │   │   ├── QueueEntityResolver.php
│   │   │   │   │   ├── RelationNotFoundException.php
│   │   │   │   │   ├── Relations
│   │   │   │   │   │   ├── BelongsToMany.php
│   │   │   │   │   │   ├── BelongsTo.php
│   │   │   │   │   │   ├── Concerns
│   │   │   │   │   │   │   ├── InteractsWithPivotTable.php
│   │   │   │   │   │   │   └── SupportsDefaultModels.php
│   │   │   │   │   │   ├── HasMany.php
│   │   │   │   │   │   ├── HasManyThrough.php
│   │   │   │   │   │   ├── HasOneOrMany.php
│   │   │   │   │   │   ├── HasOne.php
│   │   │   │   │   │   ├── MorphMany.php
│   │   │   │   │   │   ├── MorphOneOrMany.php
│   │   │   │   │   │   ├── MorphOne.php
│   │   │   │   │   │   ├── MorphPivot.php
│   │   │   │   │   │   ├── MorphToMany.php
│   │   │   │   │   │   ├── MorphTo.php
│   │   │   │   │   │   ├── Pivot.php
│   │   │   │   │   │   └── Relation.php
│   │   │   │   │   ├── Scope.php
│   │   │   │   │   ├── SoftDeletes.php
│   │   │   │   │   └── SoftDeletingScope.php
│   │   │   │   ├── Events
│   │   │   │   │   ├── ConnectionEvent.php
│   │   │   │   │   ├── QueryExecuted.php
│   │   │   │   │   ├── StatementPrepared.php
│   │   │   │   │   ├── TransactionBeginning.php
│   │   │   │   │   ├── TransactionCommitted.php
│   │   │   │   │   └── TransactionRolledBack.php
│   │   │   │   ├── Grammar.php
│   │   │   │   ├── Migrations
│   │   │   │   │   ├── DatabaseMigrationRepository.php
│   │   │   │   │   ├── MigrationCreator.php
│   │   │   │   │   ├── Migration.php
│   │   │   │   │   ├── MigrationRepositoryInterface.php
│   │   │   │   │   ├── Migrator.php
│   │   │   │   │   └── stubs
│   │   │   │   │   ├── blank.stub
│   │   │   │   │   ├── create.stub
│   │   │   │   │   └── update.stub
│   │   │   │   ├── MigrationServiceProvider.php
│   │   │   │   ├── MySqlConnection.php
│   │   │   │   ├── PostgresConnection.php
│   │   │   │   ├── Query
│   │   │   │   │   ├── Builder.php
│   │   │   │   │   ├── Expression.php
│   │   │   │   │   ├── Grammars
│   │   │   │   │   │   ├── Grammar.php
│   │   │   │   │   │   ├── MySqlGrammar.php
│   │   │   │   │   │   ├── PostgresGrammar.php
│   │   │   │   │   │   ├── SQLiteGrammar.php
│   │   │   │   │   │   └── SqlServerGrammar.php
│   │   │   │   │   ├── JoinClause.php
│   │   │   │   │   ├── JsonExpression.php
│   │   │   │   │   └── Processors
│   │   │   │   │   ├── MySqlProcessor.php
│   │   │   │   │   ├── PostgresProcessor.php
│   │   │   │   │   ├── Processor.php
│   │   │   │   │   ├── SQLiteProcessor.php
│   │   │   │   │   └── SqlServerProcessor.php
│   │   │   │   ├── QueryException.php
│   │   │   │   ├── README.md
│   │   │   │   ├── Schema
│   │   │   │   │   ├── Blueprint.php
│   │   │   │   │   ├── Builder.php
│   │   │   │   │   ├── Grammars
│   │   │   │   │   │   ├── ChangeColumn.php
│   │   │   │   │   │   ├── Grammar.php
│   │   │   │   │   │   ├── MySqlGrammar.php
│   │   │   │   │   │   ├── PostgresGrammar.php
│   │   │   │   │   │   ├── RenameColumn.php
│   │   │   │   │   │   ├── SQLiteGrammar.php
│   │   │   │   │   │   └── SqlServerGrammar.php
│   │   │   │   │   ├── MySqlBuilder.php
│   │   │   │   │   └── PostgresBuilder.php
│   │   │   │   ├── Seeder.php
│   │   │   │   ├── SQLiteConnection.php
│   │   │   │   └── SqlServerConnection.php
│   │   │   ├── Encryption
│   │   │   │   ├── composer.json
│   │   │   │   ├── Encrypter.php
│   │   │   │   └── EncryptionServiceProvider.php
│   │   │   ├── Events
│   │   │   │   ├── CallQueuedHandler.php
│   │   │   │   ├── CallQueuedListener.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Dispatcher.php
│   │   │   │   └── EventServiceProvider.php
│   │   │   ├── Filesystem
│   │   │   │   ├── composer.json
│   │   │   │   ├── FilesystemAdapter.php
│   │   │   │   ├── FilesystemManager.php
│   │   │   │   ├── Filesystem.php
│   │   │   │   └── FilesystemServiceProvider.php
│   │   │   ├── Foundation
│   │   │   │   ├── AliasLoader.php
│   │   │   │   ├── Application.php
│   │   │   │   ├── Auth
│   │   │   │   │   ├── Access
│   │   │   │   │   │   ├── Authorizable.php
│   │   │   │   │   │   └── AuthorizesRequests.php
│   │   │   │   │   ├── AuthenticatesUsers.php
│   │   │   │   │   ├── RedirectsUsers.php
│   │   │   │   │   ├── RegistersUsers.php
│   │   │   │   │   ├── ResetsPasswords.php
│   │   │   │   │   ├── SendsPasswordResetEmails.php
│   │   │   │   │   ├── ThrottlesLogins.php
│   │   │   │   │   └── User.php
│   │   │   │   ├── Bootstrap
│   │   │   │   │   ├── BootProviders.php
│   │   │   │   │   ├── HandleExceptions.php
│   │   │   │   │   ├── LoadConfiguration.php
│   │   │   │   │   ├── LoadEnvironmentVariables.php
│   │   │   │   │   ├── RegisterFacades.php
│   │   │   │   │   ├── RegisterProviders.php
│   │   │   │   │   └── SetRequestForConsole.php
│   │   │   │   ├── Bus
│   │   │   │   │   ├── Dispatchable.php
│   │   │   │   │   ├── DispatchesJobs.php
│   │   │   │   │   └── PendingDispatch.php
│   │   │   │   ├── ComposerScripts.php
│   │   │   │   ├── Console
│   │   │   │   │   ├── AppNameCommand.php
│   │   │   │   │   ├── ClearCompiledCommand.php
│   │   │   │   │   ├── ClosureCommand.php
│   │   │   │   │   ├── ConfigCacheCommand.php
│   │   │   │   │   ├── ConfigClearCommand.php
│   │   │   │   │   ├── ConsoleMakeCommand.php
│   │   │   │   │   ├── DownCommand.php
│   │   │   │   │   ├── EnvironmentCommand.php
│   │   │   │   │   ├── EventGenerateCommand.php
│   │   │   │   │   ├── EventMakeCommand.php
│   │   │   │   │   ├── JobMakeCommand.php
│   │   │   │   │   ├── Kernel.php
│   │   │   │   │   ├── KeyGenerateCommand.php
│   │   │   │   │   ├── ListenerMakeCommand.php
│   │   │   │   │   ├── MailMakeCommand.php
│   │   │   │   │   ├── ModelMakeCommand.php
│   │   │   │   │   ├── NotificationMakeCommand.php
│   │   │   │   │   ├── OptimizeCommand.php
│   │   │   │   │   ├── PolicyMakeCommand.php
│   │   │   │   │   ├── ProviderMakeCommand.php
│   │   │   │   │   ├── QueuedCommand.php
│   │   │   │   │   ├── RequestMakeCommand.php
│   │   │   │   │   ├── RouteCacheCommand.php
│   │   │   │   │   ├── RouteClearCommand.php
│   │   │   │   │   ├── RouteListCommand.php
│   │   │   │   │   ├── ServeCommand.php
│   │   │   │   │   ├── StorageLinkCommand.php
│   │   │   │   │   ├── stubs
│   │   │   │   │   │   ├── console.stub
│   │   │   │   │   │   ├── event-handler-queued.stub
│   │   │   │   │   │   ├── event-handler.stub
│   │   │   │   │   │   ├── event.stub
│   │   │   │   │   │   ├── job-queued.stub
│   │   │   │   │   │   ├── job.stub
│   │   │   │   │   │   ├── listener-queued.stub
│   │   │   │   │   │   ├── listener.stub
│   │   │   │   │   │   ├── mail.stub
│   │   │   │   │   │   ├── markdown-mail.stub
│   │   │   │   │   │   ├── markdown-notification.stub
│   │   │   │   │   │   ├── markdown.stub
│   │   │   │   │   │   ├── model.stub
│   │   │   │   │   │   ├── notification.stub
│   │   │   │   │   │   ├── policy.plain.stub
│   │   │   │   │   │   ├── policy.stub
│   │   │   │   │   │   ├── provider.stub
│   │   │   │   │   │   ├── request.stub
│   │   │   │   │   │   ├── routes.stub
│   │   │   │   │   │   ├── test.stub
│   │   │   │   │   │   └── unit-test.stub
│   │   │   │   │   ├── TestMakeCommand.php
│   │   │   │   │   ├── UpCommand.php
│   │   │   │   │   ├── VendorPublishCommand.php
│   │   │   │   │   └── ViewClearCommand.php
│   │   │   │   ├── EnvironmentDetector.php
│   │   │   │   ├── Events
│   │   │   │   │   ├── Dispatchable.php
│   │   │   │   │   └── LocaleUpdated.php
│   │   │   │   ├── Exceptions
│   │   │   │   │   ├── Handler.php
│   │   │   │   │   └── views
│   │   │   │   │   └── 503.blade.php
│   │   │   │   ├── helpers.php
│   │   │   │   ├── Http
│   │   │   │   │   ├── Events
│   │   │   │   │   │   └── RequestHandled.php
│   │   │   │   │   ├── Exceptions
│   │   │   │   │   │   └── MaintenanceModeException.php
│   │   │   │   │   ├── FormRequest.php
│   │   │   │   │   ├── Kernel.php
│   │   │   │   │   └── Middleware
│   │   │   │   │   ├── CheckForMaintenanceMode.php
│   │   │   │   │   ├── ConvertEmptyStringsToNull.php
│   │   │   │   │   ├── TransformsRequest.php
│   │   │   │   │   ├── TrimStrings.php
│   │   │   │   │   ├── ValidatePostSize.php
│   │   │   │   │   └── VerifyCsrfToken.php
│   │   │   │   ├── Inspiring.php
│   │   │   │   ├── ProviderRepository.php
│   │   │   │   ├── Providers
│   │   │   │   │   ├── ArtisanServiceProvider.php
│   │   │   │   │   ├── ComposerServiceProvider.php
│   │   │   │   │   ├── ConsoleSupportServiceProvider.php
│   │   │   │   │   ├── FormRequestServiceProvider.php
│   │   │   │   │   └── FoundationServiceProvider.php
│   │   │   │   ├── stubs
│   │   │   │   │   └── facade.stub
│   │   │   │   ├── Support
│   │   │   │   │   └── Providers
│   │   │   │   │   ├── AuthServiceProvider.php
│   │   │   │   │   ├── EventServiceProvider.php
│   │   │   │   │   └── RouteServiceProvider.php
│   │   │   │   ├── Testing
│   │   │   │   │   ├── Concerns
│   │   │   │   │   │   ├── InteractsWithAuthentication.php
│   │   │   │   │   │   ├── InteractsWithConsole.php
│   │   │   │   │   │   ├── InteractsWithContainer.php
│   │   │   │   │   │   ├── InteractsWithDatabase.php
│   │   │   │   │   │   ├── InteractsWithSession.php
│   │   │   │   │   │   ├── MakesHttpRequests.php
│   │   │   │   │   │   └── MocksApplicationServices.php
│   │   │   │   │   ├── Constraints
│   │   │   │   │   │   ├── HasInDatabase.php
│   │   │   │   │   │   └── SoftDeletedInDatabase.php
│   │   │   │   │   ├── DatabaseMigrations.php
│   │   │   │   │   ├── DatabaseTransactions.php
│   │   │   │   │   ├── HttpException.php
│   │   │   │   │   ├── TestCase.php
│   │   │   │   │   ├── TestResponse.php
│   │   │   │   │   ├── WithoutEvents.php
│   │   │   │   │   └── WithoutMiddleware.php
│   │   │   │   └── Validation
│   │   │   │   └── ValidatesRequests.php
│   │   │   ├── Hashing
│   │   │   │   ├── BcryptHasher.php
│   │   │   │   ├── composer.json
│   │   │   │   └── HashServiceProvider.php
│   │   │   ├── Http
│   │   │   │   ├── composer.json
│   │   │   │   ├── Concerns
│   │   │   │   │   ├── InteractsWithContentTypes.php
│   │   │   │   │   ├── InteractsWithFlashData.php
│   │   │   │   │   └── InteractsWithInput.php
│   │   │   │   ├── Exceptions
│   │   │   │   │   ├── HttpResponseException.php
│   │   │   │   │   └── PostTooLargeException.php
│   │   │   │   ├── FileHelpers.php
│   │   │   │   ├── File.php
│   │   │   │   ├── JsonResponse.php
│   │   │   │   ├── Middleware
│   │   │   │   │   ├── CheckResponseForModifications.php
│   │   │   │   │   └── FrameGuard.php
│   │   │   │   ├── RedirectResponse.php
│   │   │   │   ├── Request.php
│   │   │   │   ├── Response.php
│   │   │   │   ├── ResponseTrait.php
│   │   │   │   ├── Testing
│   │   │   │   │   ├── FileFactory.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   └── MimeType.php
│   │   │   │   └── UploadedFile.php
│   │   │   ├── Log
│   │   │   │   ├── composer.json
│   │   │   │   ├── Events
│   │   │   │   │   └── MessageLogged.php
│   │   │   │   ├── LogServiceProvider.php
│   │   │   │   └── Writer.php
│   │   │   ├── Mail
│   │   │   │   ├── composer.json
│   │   │   │   ├── Events
│   │   │   │   │   ├── MessageSending.php
│   │   │   │   │   └── MessageSent.php
│   │   │   │   ├── Mailable.php
│   │   │   │   ├── Mailer.php
│   │   │   │   ├── MailServiceProvider.php
│   │   │   │   ├── Markdown.php
│   │   │   │   ├── Message.php
│   │   │   │   ├── PendingMail.php
│   │   │   │   ├── resources
│   │   │   │   │   └── views
│   │   │   │   │   ├── html
│   │   │   │   │   │   ├── button.blade.php
│   │   │   │   │   │   ├── footer.blade.php
│   │   │   │   │   │   ├── header.blade.php
│   │   │   │   │   │   ├── layout.blade.php
│   │   │   │   │   │   ├── message.blade.php
│   │   │   │   │   │   ├── panel.blade.php
│   │   │   │   │   │   ├── promotion
│   │   │   │   │   │   │   └── button.blade.php
│   │   │   │   │   │   ├── promotion.blade.php
│   │   │   │   │   │   ├── subcopy.blade.php
│   │   │   │   │   │   ├── table.blade.php
│   │   │   │   │   │   └── themes
│   │   │   │   │   │   └── default.css
│   │   │   │   │   └── markdown
│   │   │   │   │   ├── button.blade.php
│   │   │   │   │   ├── footer.blade.php
│   │   │   │   │   ├── header.blade.php
│   │   │   │   │   ├── layout.blade.php
│   │   │   │   │   ├── message.blade.php
│   │   │   │   │   ├── panel.blade.php
│   │   │   │   │   ├── promotion
│   │   │   │   │   │   └── button.blade.php
│   │   │   │   │   ├── promotion.blade.php
│   │   │   │   │   ├── subcopy.blade.php
│   │   │   │   │   └── table.blade.php
│   │   │   │   ├── SendQueuedMailable.php
│   │   │   │   ├── Transport
│   │   │   │   │   ├── ArrayTransport.php
│   │   │   │   │   ├── LogTransport.php
│   │   │   │   │   ├── MailgunTransport.php
│   │   │   │   │   ├── MandrillTransport.php
│   │   │   │   │   ├── SesTransport.php
│   │   │   │   │   ├── SparkPostTransport.php
│   │   │   │   │   └── Transport.php
│   │   │   │   └── TransportManager.php
│   │   │   ├── Notifications
│   │   │   │   ├── Action.php
│   │   │   │   ├── ChannelManager.php
│   │   │   │   ├── Channels
│   │   │   │   │   ├── BroadcastChannel.php
│   │   │   │   │   ├── DatabaseChannel.php
│   │   │   │   │   ├── MailChannel.php
│   │   │   │   │   ├── NexmoSmsChannel.php
│   │   │   │   │   └── SlackWebhookChannel.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Console
│   │   │   │   │   ├── NotificationTableCommand.php
│   │   │   │   │   └── stubs
│   │   │   │   │   └── notifications.stub
│   │   │   │   ├── DatabaseNotificationCollection.php
│   │   │   │   ├── DatabaseNotification.php
│   │   │   │   ├── Events
│   │   │   │   │   ├── BroadcastNotificationCreated.php
│   │   │   │   │   ├── NotificationFailed.php
│   │   │   │   │   ├── NotificationSending.php
│   │   │   │   │   └── NotificationSent.php
│   │   │   │   ├── HasDatabaseNotifications.php
│   │   │   │   ├── Messages
│   │   │   │   │   ├── BroadcastMessage.php
│   │   │   │   │   ├── DatabaseMessage.php
│   │   │   │   │   ├── MailMessage.php
│   │   │   │   │   ├── NexmoMessage.php
│   │   │   │   │   ├── SimpleMessage.php
│   │   │   │   │   ├── SlackAttachmentField.php
│   │   │   │   │   ├── SlackAttachment.php
│   │   │   │   │   └── SlackMessage.php
│   │   │   │   ├── Notifiable.php
│   │   │   │   ├── Notification.php
│   │   │   │   ├── NotificationSender.php
│   │   │   │   ├── NotificationServiceProvider.php
│   │   │   │   ├── resources
│   │   │   │   │   └── views
│   │   │   │   │   └── email.blade.php
│   │   │   │   ├── RoutesNotifications.php
│   │   │   │   └── SendQueuedNotifications.php
│   │   │   ├── Pagination
│   │   │   │   ├── AbstractPaginator.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── LengthAwarePaginator.php
│   │   │   │   ├── PaginationServiceProvider.php
│   │   │   │   ├── Paginator.php
│   │   │   │   ├── resources
│   │   │   │   │   └── views
│   │   │   │   │   ├── bootstrap-4.blade.php
│   │   │   │   │   ├── default.blade.php
│   │   │   │   │   ├── simple-bootstrap-4.blade.php
│   │   │   │   │   └── simple-default.blade.php
│   │   │   │   └── UrlWindow.php
│   │   │   ├── Pipeline
│   │   │   │   ├── composer.json
│   │   │   │   ├── Hub.php
│   │   │   │   ├── Pipeline.php
│   │   │   │   └── PipelineServiceProvider.php
│   │   │   ├── Queue
│   │   │   │   ├── BeanstalkdQueue.php
│   │   │   │   ├── CallQueuedHandler.php
│   │   │   │   ├── Capsule
│   │   │   │   │   └── Manager.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Connectors
│   │   │   │   │   ├── BeanstalkdConnector.php
│   │   │   │   │   ├── ConnectorInterface.php
│   │   │   │   │   ├── DatabaseConnector.php
│   │   │   │   │   ├── NullConnector.php
│   │   │   │   │   ├── RedisConnector.php
│   │   │   │   │   ├── SqsConnector.php
│   │   │   │   │   └── SyncConnector.php
│   │   │   │   ├── Console
│   │   │   │   │   ├── FailedTableCommand.php
│   │   │   │   │   ├── FlushFailedCommand.php
│   │   │   │   │   ├── ForgetFailedCommand.php
│   │   │   │   │   ├── ListenCommand.php
│   │   │   │   │   ├── ListFailedCommand.php
│   │   │   │   │   ├── RestartCommand.php
│   │   │   │   │   ├── RetryCommand.php
│   │   │   │   │   ├── stubs
│   │   │   │   │   │   ├── failed_jobs.stub
│   │   │   │   │   │   └── jobs.stub
│   │   │   │   │   ├── TableCommand.php
│   │   │   │   │   └── WorkCommand.php
│   │   │   │   ├── DatabaseQueue.php
│   │   │   │   ├── Events
│   │   │   │   │   ├── JobExceptionOccurred.php
│   │   │   │   │   ├── JobFailed.php
│   │   │   │   │   ├── JobProcessed.php
│   │   │   │   │   ├── JobProcessing.php
│   │   │   │   │   ├── Looping.php
│   │   │   │   │   └── WorkerStopping.php
│   │   │   │   ├── Failed
│   │   │   │   │   ├── DatabaseFailedJobProvider.php
│   │   │   │   │   ├── FailedJobProviderInterface.php
│   │   │   │   │   └── NullFailedJobProvider.php
│   │   │   │   ├── FailingJob.php
│   │   │   │   ├── InteractsWithQueue.php
│   │   │   │   ├── InteractsWithTime.php
│   │   │   │   ├── InvalidPayloadException.php
│   │   │   │   ├── Jobs
│   │   │   │   │   ├── BeanstalkdJob.php
│   │   │   │   │   ├── DatabaseJob.php
│   │   │   │   │   ├── DatabaseJobRecord.php
│   │   │   │   │   ├── JobName.php
│   │   │   │   │   ├── Job.php
│   │   │   │   │   ├── RedisJob.php
│   │   │   │   │   ├── SqsJob.php
│   │   │   │   │   └── SyncJob.php
│   │   │   │   ├── ListenerOptions.php
│   │   │   │   ├── Listener.php
│   │   │   │   ├── LuaScripts.php
│   │   │   │   ├── ManuallyFailedException.php
│   │   │   │   ├── MaxAttemptsExceededException.php
│   │   │   │   ├── NullQueue.php
│   │   │   │   ├── QueueManager.php
│   │   │   │   ├── Queue.php
│   │   │   │   ├── QueueServiceProvider.php
│   │   │   │   ├── README.md
│   │   │   │   ├── RedisQueue.php
│   │   │   │   ├── SerializesAndRestoresModelIdentifiers.php
│   │   │   │   ├── SerializesModels.php
│   │   │   │   ├── SqsQueue.php
│   │   │   │   ├── SyncQueue.php
│   │   │   │   ├── WorkerOptions.php
│   │   │   │   └── Worker.php
│   │   │   ├── Redis
│   │   │   │   ├── composer.json
│   │   │   │   ├── Connections
│   │   │   │   │   ├── Connection.php
│   │   │   │   │   ├── PhpRedisClusterConnection.php
│   │   │   │   │   ├── PhpRedisConnection.php
│   │   │   │   │   ├── PredisClusterConnection.php
│   │   │   │   │   └── PredisConnection.php
│   │   │   │   ├── Connectors
│   │   │   │   │   ├── PhpRedisConnector.php
│   │   │   │   │   └── PredisConnector.php
│   │   │   │   ├── RedisManager.php
│   │   │   │   └── RedisServiceProvider.php
│   │   │   ├── Routing
│   │   │   │   ├── composer.json
│   │   │   │   ├── Console
│   │   │   │   │   ├── ControllerMakeCommand.php
│   │   │   │   │   ├── MiddlewareMakeCommand.php
│   │   │   │   │   └── stubs
│   │   │   │   │   ├── controller.model.stub
│   │   │   │   │   ├── controller.nested.stub
│   │   │   │   │   ├── controller.plain.stub
│   │   │   │   │   ├── controller.stub
│   │   │   │   │   └── middleware.stub
│   │   │   │   ├── ControllerDispatcher.php
│   │   │   │   ├── ControllerMiddlewareOptions.php
│   │   │   │   ├── Controller.php
│   │   │   │   ├── Events
│   │   │   │   │   └── RouteMatched.php
│   │   │   │   ├── Exceptions
│   │   │   │   │   └── UrlGenerationException.php
│   │   │   │   ├── ImplicitRouteBinding.php
│   │   │   │   ├── Matching
│   │   │   │   │   ├── HostValidator.php
│   │   │   │   │   ├── MethodValidator.php
│   │   │   │   │   ├── SchemeValidator.php
│   │   │   │   │   ├── UriValidator.php
│   │   │   │   │   └── ValidatorInterface.php
│   │   │   │   ├── Middleware
│   │   │   │   │   ├── SubstituteBindings.php
│   │   │   │   │   └── ThrottleRequests.php
│   │   │   │   ├── MiddlewareNameResolver.php
│   │   │   │   ├── Pipeline.php
│   │   │   │   ├── Redirector.php
│   │   │   │   ├── ResourceRegistrar.php
│   │   │   │   ├── ResponseFactory.php
│   │   │   │   ├── RouteAction.php
│   │   │   │   ├── RouteBinding.php
│   │   │   │   ├── RouteCollection.php
│   │   │   │   ├── RouteCompiler.php
│   │   │   │   ├── RouteDependencyResolverTrait.php
│   │   │   │   ├── RouteGroup.php
│   │   │   │   ├── RouteParameterBinder.php
│   │   │   │   ├── Route.php
│   │   │   │   ├── RouteRegistrar.php
│   │   │   │   ├── Router.php
│   │   │   │   ├── RouteSignatureParameters.php
│   │   │   │   ├── RouteUrlGenerator.php
│   │   │   │   ├── RoutingServiceProvider.php
│   │   │   │   ├── SortedMiddleware.php
│   │   │   │   └── UrlGenerator.php
│   │   │   ├── Session
│   │   │   │   ├── CacheBasedSessionHandler.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Console
│   │   │   │   │   ├── SessionTableCommand.php
│   │   │   │   │   └── stubs
│   │   │   │   │   └── database.stub
│   │   │   │   ├── CookieSessionHandler.php
│   │   │   │   ├── DatabaseSessionHandler.php
│   │   │   │   ├── EncryptedStore.php
│   │   │   │   ├── ExistenceAwareInterface.php
│   │   │   │   ├── FileSessionHandler.php
│   │   │   │   ├── Middleware
│   │   │   │   │   ├── AuthenticateSession.php
│   │   │   │   │   └── StartSession.php
│   │   │   │   ├── SessionManager.php
│   │   │   │   ├── SessionServiceProvider.php
│   │   │   │   ├── Store.php
│   │   │   │   └── TokenMismatchException.php
│   │   │   ├── Support
│   │   │   │   ├── AggregateServiceProvider.php
│   │   │   │   ├── Arr.php
│   │   │   │   ├── Collection.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── Composer.php
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Dumper.php
│   │   │   │   │   └── HtmlDumper.php
│   │   │   │   ├── Facades
│   │   │   │   │   ├── App.php
│   │   │   │   │   ├── Artisan.php
│   │   │   │   │   ├── Auth.php
│   │   │   │   │   ├── Blade.php
│   │   │   │   │   ├── Broadcast.php
│   │   │   │   │   ├── Bus.php
│   │   │   │   │   ├── Cache.php
│   │   │   │   │   ├── Config.php
│   │   │   │   │   ├── Cookie.php
│   │   │   │   │   ├── Crypt.php
│   │   │   │   │   ├── DB.php
│   │   │   │   │   ├── Event.php
│   │   │   │   │   ├── Facade.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   ├── Gate.php
│   │   │   │   │   ├── Hash.php
│   │   │   │   │   ├── Input.php
│   │   │   │   │   ├── Lang.php
│   │   │   │   │   ├── Log.php
│   │   │   │   │   ├── Mail.php
│   │   │   │   │   ├── Notification.php
│   │   │   │   │   ├── Password.php
│   │   │   │   │   ├── Queue.php
│   │   │   │   │   ├── Redirect.php
│   │   │   │   │   ├── Redis.php
│   │   │   │   │   ├── Request.php
│   │   │   │   │   ├── Response.php
│   │   │   │   │   ├── Route.php
│   │   │   │   │   ├── Schema.php
│   │   │   │   │   ├── Session.php
│   │   │   │   │   ├── Storage.php
│   │   │   │   │   ├── URL.php
│   │   │   │   │   ├── Validator.php
│   │   │   │   │   └── View.php
│   │   │   │   ├── Fluent.php
│   │   │   │   ├── helpers.php
│   │   │   │   ├── HigherOrderCollectionProxy.php
│   │   │   │   ├── HigherOrderTapProxy.php
│   │   │   │   ├── HtmlString.php
│   │   │   │   ├── Manager.php
│   │   │   │   ├── MessageBag.php
│   │   │   │   ├── NamespacedItemResolver.php
│   │   │   │   ├── Pluralizer.php
│   │   │   │   ├── ServiceProvider.php
│   │   │   │   ├── Str.php
│   │   │   │   ├── Testing
│   │   │   │   │   └── Fakes
│   │   │   │   │   ├── BusFake.php
│   │   │   │   │   ├── EventFake.php
│   │   │   │   │   ├── MailFake.php
│   │   │   │   │   ├── NotificationFake.php
│   │   │   │   │   ├── PendingMailFake.php
│   │   │   │   │   └── QueueFake.php
│   │   │   │   ├── Traits
│   │   │   │   │   ├── CapsuleManagerTrait.php
│   │   │   │   │   └── Macroable.php
│   │   │   │   └── ViewErrorBag.php
│   │   │   ├── Translation
│   │   │   │   ├── ArrayLoader.php
│   │   │   │   ├── composer.json
│   │   │   │   ├── FileLoader.php
│   │   │   │   ├── LoaderInterface.php
│   │   │   │   ├── MessageSelector.php
│   │   │   │   ├── TranslationServiceProvider.php
│   │   │   │   └── Translator.php
│   │   │   ├── Validation
│   │   │   │   ├── composer.json
│   │   │   │   ├── Concerns
│   │   │   │   │   ├── FormatsMessages.php
│   │   │   │   │   ├── ReplacesAttributes.php
│   │   │   │   │   └── ValidatesAttributes.php
│   │   │   │   ├── DatabasePresenceVerifier.php
│   │   │   │   ├── Factory.php
│   │   │   │   ├── PresenceVerifierInterface.php
│   │   │   │   ├── Rule.php
│   │   │   │   ├── Rules
│   │   │   │   │   ├── Dimensions.php
│   │   │   │   │   ├── Exists.php
│   │   │   │   │   ├── In.php
│   │   │   │   │   ├── NotIn.php
│   │   │   │   │   └── Unique.php
│   │   │   │   ├── UnauthorizedException.php
│   │   │   │   ├── ValidatesWhenResolvedTrait.php
│   │   │   │   ├── ValidationData.php
│   │   │   │   ├── ValidationException.php
│   │   │   │   ├── ValidationRuleParser.php
│   │   │   │   ├── ValidationServiceProvider.php
│   │   │   │   └── Validator.php
│   │   │   └── View
│   │   │   ├── Compilers
│   │   │   │   ├── BladeCompiler.php
│   │   │   │   ├── CompilerInterface.php
│   │   │   │   ├── Compiler.php
│   │   │   │   └── Concerns
│   │   │   │   ├── CompilesAuthorizations.php
│   │   │   │   ├── CompilesComments.php
│   │   │   │   ├── CompilesComponents.php
│   │   │   │   ├── CompilesConditionals.php
│   │   │   │   ├── CompilesEchos.php
│   │   │   │   ├── CompilesIncludes.php
│   │   │   │   ├── CompilesInjections.php
│   │   │   │   ├── CompilesLayouts.php
│   │   │   │   ├── CompilesLoops.php
│   │   │   │   ├── CompilesRawPhp.php
│   │   │   │   ├── CompilesStacks.php
│   │   │   │   └── CompilesTranslations.php
│   │   │   ├── composer.json
│   │   │   ├── Concerns
│   │   │   │   ├── ManagesComponents.php
│   │   │   │   ├── ManagesEvents.php
│   │   │   │   ├── ManagesLayouts.php
│   │   │   │   ├── ManagesLoops.php
│   │   │   │   ├── ManagesStacks.php
│   │   │   │   └── ManagesTranslations.php
│   │   │   ├── Engines
│   │   │   │   ├── CompilerEngine.php
│   │   │   │   ├── EngineInterface.php
│   │   │   │   ├── Engine.php
│   │   │   │   ├── EngineResolver.php
│   │   │   │   ├── FileEngine.php
│   │   │   │   └── PhpEngine.php
│   │   │   ├── Factory.php
│   │   │   ├── FileViewFinder.php
│   │   │   ├── Middleware
│   │   │   │   └── ShareErrorsFromSession.php
│   │   │   ├── ViewFinderInterface.php
│   │   │   ├── ViewName.php
│   │   │   ├── View.php
│   │   │   └── ViewServiceProvider.php
│   │   └── tinker
│   │   ├── composer.json
│   │   ├── config
│   │   │   └── tinker.php
│   │   ├── LICENSE.txt
│   │   ├── README.md
│   │   └── src
│   │   ├── ClassAliasAutoloader.php
│   │   ├── Console
│   │   │   └── TinkerCommand.php
│   │   ├── TinkerCaster.php
│   │   └── TinkerServiceProvider.php
│   ├── league
│   │   └── flysystem
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   └── src
│   │   ├── Adapter
│   │   │   ├── AbstractAdapter.php
│   │   │   ├── AbstractFtpAdapter.php
│   │   │   ├── CanOverwriteFiles.php
│   │   │   ├── Ftpd.php
│   │   │   ├── Ftp.php
│   │   │   ├── Local.php
│   │   │   ├── NullAdapter.php
│   │   │   ├── Polyfill
│   │   │   │   ├── NotSupportingVisibilityTrait.php
│   │   │   │   ├── StreamedCopyTrait.php
│   │   │   │   ├── StreamedReadingTrait.php
│   │   │   │   ├── StreamedTrait.php
│   │   │   │   └── StreamedWritingTrait.php
│   │   │   └── SynologyFtp.php
│   │   ├── AdapterInterface.php
│   │   ├── ConfigAwareTrait.php
│   │   ├── Config.php
│   │   ├── Directory.php
│   │   ├── Exception.php
│   │   ├── FileExistsException.php
│   │   ├── FileNotFoundException.php
│   │   ├── File.php
│   │   ├── FilesystemInterface.php
│   │   ├── FilesystemNotFoundException.php
│   │   ├── Filesystem.php
│   │   ├── Handler.php
│   │   ├── MountManager.php
│   │   ├── NotSupportedException.php
│   │   ├── Plugin
│   │   │   ├── AbstractPlugin.php
│   │   │   ├── EmptyDir.php
│   │   │   ├── ForcedCopy.php
│   │   │   ├── ForcedRename.php
│   │   │   ├── GetWithMetadata.php
│   │   │   ├── ListFiles.php
│   │   │   ├── ListPaths.php
│   │   │   ├── ListWith.php
│   │   │   ├── PluggableTrait.php
│   │   │   └── PluginNotFoundException.php
│   │   ├── PluginInterface.php
│   │   ├── ReadInterface.php
│   │   ├── RootViolationException.php
│   │   ├── SafeStorage.php
│   │   ├── UnreadableFileException.php
│   │   ├── Util
│   │   │   ├── ContentListingFormatter.php
│   │   │   ├── MimeType.php
│   │   │   └── StreamHasher.php
│   │   └── Util.php
│   ├── mockery
│   │   └── mockery
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── docs
│   │   │   ├── conf.py
│   │   │   ├── cookbook
│   │   │   │   ├── default_expectations.rst
│   │   │   │   ├── detecting_mock_objects.rst
│   │   │   │   ├── index.rst
│   │   │   │   ├── map.rst.inc
│   │   │   │   └── mocking_hard_dependencies.rst
│   │   │   ├── getting_started
│   │   │   │   ├── index.rst
│   │   │   │   ├── installation.rst
│   │   │   │   ├── map.rst.inc
│   │   │   │   ├── simple_example.rst
│   │   │   │   └── upgrading.rst
│   │   │   ├── index.rst
│   │   │   ├── Makefile
│   │   │   ├── README.md
│   │   │   └── reference
│   │   │   ├── argument_validation.rst
│   │   │   ├── demeter_chains.rst
│   │   │   ├── expectations.rst
│   │   │   ├── final_methods_classes.rst
│   │   │   ├── index.rst
│   │   │   ├── instance_mocking.rst
│   │   │   ├── magic_methods.rst
│   │   │   ├── map.rst.inc
│   │   │   ├── mockery
│   │   │   │   ├── configuration.rst
│   │   │   │   ├── exceptions.rst
│   │   │   │   ├── gotchas.rst
│   │   │   │   ├── index.rst
│   │   │   │   └── reserved_method_names.rst
│   │   │   ├── object_recording.rst
│   │   │   ├── partial_mocks.rst
│   │   │   ├── pass_by_reference_behaviours.rst
│   │   │   ├── phpunit_integration.rst
│   │   │   ├── public_properties.rst
│   │   │   ├── public_static_properties.rst
│   │   │   ├── quick_examples.rst
│   │   │   └── startup_methods.rst
│   │   ├── examples
│   │   │   └── starship
│   │   │   ├── Bootstrap.php
│   │   │   ├── phpunit.xml
│   │   │   ├── Starship.php
│   │   │   └── StarshipTest.php
│   │   ├── library
│   │   │   ├── Mockery
│   │   │   │   ├── Adapter
│   │   │   │   │   └── Phpunit
│   │   │   │   │   ├── MockeryPHPUnitIntegration.php
│   │   │   │   │   ├── MockeryTestCase.php
│   │   │   │   │   └── TestListener.php
│   │   │   │   ├── CompositeExpectation.php
│   │   │   │   ├── Configuration.php
│   │   │   │   ├── Container.php
│   │   │   │   ├── CountValidator
│   │   │   │   │   ├── AtLeast.php
│   │   │   │   │   ├── AtMost.php
│   │   │   │   │   ├── CountValidatorAbstract.php
│   │   │   │   │   ├── Exact.php
│   │   │   │   │   └── Exception.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── InvalidCountException.php
│   │   │   │   │   ├── InvalidOrderException.php
│   │   │   │   │   ├── NoMatchingExpectationException.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── ExpectationDirector.php
│   │   │   │   ├── ExpectationInterface.php
│   │   │   │   ├── Expectation.php
│   │   │   │   ├── Generator
│   │   │   │   │   ├── CachingGenerator.php
│   │   │   │   │   ├── DefinedTargetClass.php
│   │   │   │   │   ├── Generator.php
│   │   │   │   │   ├── Method.php
│   │   │   │   │   ├── MockConfigurationBuilder.php
│   │   │   │   │   ├── MockConfiguration.php
│   │   │   │   │   ├── MockDefinition.php
│   │   │   │   │   ├── Parameter.php
│   │   │   │   │   ├── StringManipulation
│   │   │   │   │   │   └── Pass
│   │   │   │   │   │   ├── CallTypeHintPass.php
│   │   │   │   │   │   ├── ClassNamePass.php
│   │   │   │   │   │   ├── ClassPass.php
│   │   │   │   │   │   ├── InstanceMockPass.php
│   │   │   │   │   │   ├── InterfacePass.php
│   │   │   │   │   │   ├── MethodDefinitionPass.php
│   │   │   │   │   │   ├── Pass.php
│   │   │   │   │   │   ├── RemoveBuiltinMethodsThatAreFinalPass.php
│   │   │   │   │   │   └── RemoveUnserializeForInternalSerializableClassesPass.php
│   │   │   │   │   ├── StringManipulationGenerator.php
│   │   │   │   │   ├── TargetClass.php
│   │   │   │   │   └── UndefinedTargetClass.php
│   │   │   │   ├── Instantiator.php
│   │   │   │   ├── Loader
│   │   │   │   │   ├── EvalLoader.php
│   │   │   │   │   ├── Loader.php
│   │   │   │   │   └── RequireLoader.php
│   │   │   │   ├── Loader.php
│   │   │   │   ├── Matcher
│   │   │   │   │   ├── AnyOf.php
│   │   │   │   │   ├── Any.php
│   │   │   │   │   ├── Closure.php
│   │   │   │   │   ├── Contains.php
│   │   │   │   │   ├── Ducktype.php
│   │   │   │   │   ├── HasKey.php
│   │   │   │   │   ├── HasValue.php
│   │   │   │   │   ├── MatcherAbstract.php
│   │   │   │   │   ├── MustBe.php
│   │   │   │   │   ├── NotAnyOf.php
│   │   │   │   │   ├── Not.php
│   │   │   │   │   ├── Subset.php
│   │   │   │   │   └── Type.php
│   │   │   │   ├── MethodCall.php
│   │   │   │   ├── MockInterface.php
│   │   │   │   ├── Mock.php
│   │   │   │   ├── ReceivedMethodCalls.php
│   │   │   │   ├── Recorder.php
│   │   │   │   ├── Undefined.php
│   │   │   │   ├── VerificationDirector.php
│   │   │   │   └── VerificationExpectation.php
│   │   │   └── Mockery.php
│   │   ├── LICENSE
│   │   ├── package.xml
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── tests
│   │   │   ├── Bootstrap.php
│   │   │   └── Mockery
│   │   │   ├── AdhocTest.php
│   │   │   ├── ContainerTest.php
│   │   │   ├── DemeterChainTest.php
│   │   │   ├── ExpectationTest.php
│   │   │   ├── _files
│   │   │   │   └── file.txt
│   │   │   ├── Fixtures
│   │   │   │   ├── MethodWithNullableParameters.php
│   │   │   │   ├── MethodWithNullableReturnType.php
│   │   │   │   └── VoidMethod.php
│   │   │   ├── Generator
│   │   │   │   ├── DefinedTargetClassTest.php
│   │   │   │   ├── MockConfigurationTest.php
│   │   │   │   └── StringManipulation
│   │   │   │   └── Pass
│   │   │   │   ├── CallTypeHintPassTest.php
│   │   │   │   ├── ClassNamePassTest.php
│   │   │   │   ├── InstanceMockPassTest.php
│   │   │   │   └── InterfacePassTest.php
│   │   │   ├── HamcrestExpectationTest.php
│   │   │   ├── Loader
│   │   │   │   ├── EvalLoaderTest.php
│   │   │   │   ├── LoaderTestCase.php
│   │   │   │   └── RequireLoaderTest.php
│   │   │   ├── LoaderTest.php
│   │   │   ├── MockClassWithFinalWakeupTest.php
│   │   │   ├── MockClassWithUnknownTypeHintTest.php
│   │   │   ├── MockeryCanMockMultipleInterfacesWhichOverlapTest.php
│   │   │   ├── MockingMethodsWithNullableParametersTest.php
│   │   │   ├── MockingNullableMethodsTest.php
│   │   │   ├── MockingParameterAndReturnTypesTest.php
│   │   │   ├── MockingProtectedMethodsTest.php
│   │   │   ├── MockingVariadicArgumentsTest.php
│   │   │   ├── MockingVoidMethodsTest.php
│   │   │   ├── MockTest.php
│   │   │   ├── NamedMockTest.php
│   │   │   ├── RecorderTest.php
│   │   │   ├── SpyTest.php
│   │   │   ├── Test
│   │   │   │   └── Generator
│   │   │   │   └── MockConfigurationBuilderTest.php
│   │   │   └── WithFormatterExpectationTest.php
│   │   └── travis
│   │   ├── after_success.sh
│   │   ├── before_script.sh
│   │   ├── extra.ini
│   │   ├── install.sh
│   │   └── script.sh
│   ├── monolog
│   │   └── monolog
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── doc
│   │   │   ├── 01-usage.md
│   │   │   ├── 02-handlers-formatters-processors.md
│   │   │   ├── 03-utilities.md
│   │   │   ├── 04-extending.md
│   │   │   └── sockets.md
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Monolog
│   │   │   ├── ErrorHandler.php
│   │   │   ├── Formatter
│   │   │   │   ├── ChromePHPFormatter.php
│   │   │   │   ├── ElasticaFormatter.php
│   │   │   │   ├── FlowdockFormatter.php
│   │   │   │   ├── FluentdFormatter.php
│   │   │   │   ├── FormatterInterface.php
│   │   │   │   ├── GelfMessageFormatter.php
│   │   │   │   ├── HtmlFormatter.php
│   │   │   │   ├── JsonFormatter.php
│   │   │   │   ├── LineFormatter.php
│   │   │   │   ├── LogglyFormatter.php
│   │   │   │   ├── LogstashFormatter.php
│   │   │   │   ├── MongoDBFormatter.php
│   │   │   │   ├── NormalizerFormatter.php
│   │   │   │   ├── ScalarFormatter.php
│   │   │   │   └── WildfireFormatter.php
│   │   │   ├── Handler
│   │   │   │   ├── AbstractHandler.php
│   │   │   │   ├── AbstractProcessingHandler.php
│   │   │   │   ├── AbstractSyslogHandler.php
│   │   │   │   ├── AmqpHandler.php
│   │   │   │   ├── BrowserConsoleHandler.php
│   │   │   │   ├── BufferHandler.php
│   │   │   │   ├── ChromePHPHandler.php
│   │   │   │   ├── CouchDBHandler.php
│   │   │   │   ├── CubeHandler.php
│   │   │   │   ├── Curl
│   │   │   │   │   └── Util.php
│   │   │   │   ├── DeduplicationHandler.php
│   │   │   │   ├── DoctrineCouchDBHandler.php
│   │   │   │   ├── DynamoDbHandler.php
│   │   │   │   ├── ElasticSearchHandler.php
│   │   │   │   ├── ErrorLogHandler.php
│   │   │   │   ├── FilterHandler.php
│   │   │   │   ├── FingersCrossed
│   │   │   │   │   ├── ActivationStrategyInterface.php
│   │   │   │   │   ├── ChannelLevelActivationStrategy.php
│   │   │   │   │   └── ErrorLevelActivationStrategy.php
│   │   │   │   ├── FingersCrossedHandler.php
│   │   │   │   ├── FirePHPHandler.php
│   │   │   │   ├── FleepHookHandler.php
│   │   │   │   ├── FlowdockHandler.php
│   │   │   │   ├── GelfHandler.php
│   │   │   │   ├── GroupHandler.php
│   │   │   │   ├── HandlerInterface.php
│   │   │   │   ├── HandlerWrapper.php
│   │   │   │   ├── HipChatHandler.php
│   │   │   │   ├── IFTTTHandler.php
│   │   │   │   ├── LogEntriesHandler.php
│   │   │   │   ├── LogglyHandler.php
│   │   │   │   ├── MailHandler.php
│   │   │   │   ├── MandrillHandler.php
│   │   │   │   ├── MissingExtensionException.php
│   │   │   │   ├── MongoDBHandler.php
│   │   │   │   ├── NativeMailerHandler.php
│   │   │   │   ├── NewRelicHandler.php
│   │   │   │   ├── NullHandler.php
│   │   │   │   ├── PHPConsoleHandler.php
│   │   │   │   ├── PsrHandler.php
│   │   │   │   ├── PushoverHandler.php
│   │   │   │   ├── RavenHandler.php
│   │   │   │   ├── RedisHandler.php
│   │   │   │   ├── RollbarHandler.php
│   │   │   │   ├── RotatingFileHandler.php
│   │   │   │   ├── SamplingHandler.php
│   │   │   │   ├── Slack
│   │   │   │   │   └── SlackRecord.php
│   │   │   │   ├── SlackbotHandler.php
│   │   │   │   ├── SlackHandler.php
│   │   │   │   ├── SlackWebhookHandler.php
│   │   │   │   ├── SocketHandler.php
│   │   │   │   ├── StreamHandler.php
│   │   │   │   ├── SwiftMailerHandler.php
│   │   │   │   ├── SyslogHandler.php
│   │   │   │   ├── SyslogUdp
│   │   │   │   │   └── UdpSocket.php
│   │   │   │   ├── SyslogUdpHandler.php
│   │   │   │   ├── TestHandler.php
│   │   │   │   ├── WhatFailureGroupHandler.php
│   │   │   │   └── ZendMonitorHandler.php
│   │   │   ├── Logger.php
│   │   │   ├── Processor
│   │   │   │   ├── GitProcessor.php
│   │   │   │   ├── IntrospectionProcessor.php
│   │   │   │   ├── MemoryPeakUsageProcessor.php
│   │   │   │   ├── MemoryProcessor.php
│   │   │   │   ├── MemoryUsageProcessor.php
│   │   │   │   ├── MercurialProcessor.php
│   │   │   │   ├── ProcessIdProcessor.php
│   │   │   │   ├── PsrLogMessageProcessor.php
│   │   │   │   ├── TagProcessor.php
│   │   │   │   ├── UidProcessor.php
│   │   │   │   └── WebProcessor.php
│   │   │   └── Registry.php
│   │   └── tests
│   │   └── Monolog
│   │   ├── ErrorHandlerTest.php
│   │   ├── Formatter
│   │   │   ├── ChromePHPFormatterTest.php
│   │   │   ├── ElasticaFormatterTest.php
│   │   │   ├── FlowdockFormatterTest.php
│   │   │   ├── FluentdFormatterTest.php
│   │   │   ├── GelfMessageFormatterTest.php
│   │   │   ├── JsonFormatterTest.php
│   │   │   ├── LineFormatterTest.php
│   │   │   ├── LogglyFormatterTest.php
│   │   │   ├── LogstashFormatterTest.php
│   │   │   ├── MongoDBFormatterTest.php
│   │   │   ├── NormalizerFormatterTest.php
│   │   │   ├── ScalarFormatterTest.php
│   │   │   └── WildfireFormatterTest.php
│   │   ├── Handler
│   │   │   ├── AbstractHandlerTest.php
│   │   │   ├── AbstractProcessingHandlerTest.php
│   │   │   ├── AmqpHandlerTest.php
│   │   │   ├── BrowserConsoleHandlerTest.php
│   │   │   ├── BufferHandlerTest.php
│   │   │   ├── ChromePHPHandlerTest.php
│   │   │   ├── CouchDBHandlerTest.php
│   │   │   ├── DeduplicationHandlerTest.php
│   │   │   ├── DoctrineCouchDBHandlerTest.php
│   │   │   ├── DynamoDbHandlerTest.php
│   │   │   ├── ElasticSearchHandlerTest.php
│   │   │   ├── ErrorLogHandlerTest.php
│   │   │   ├── FilterHandlerTest.php
│   │   │   ├── FingersCrossedHandlerTest.php
│   │   │   ├── FirePHPHandlerTest.php
│   │   │   ├── Fixtures
│   │   │   ├── FleepHookHandlerTest.php
│   │   │   ├── FlowdockHandlerTest.php
│   │   │   ├── GelfHandlerLegacyTest.php
│   │   │   ├── GelfHandlerTest.php
│   │   │   ├── GelfMockMessagePublisher.php
│   │   │   ├── GroupHandlerTest.php
│   │   │   ├── HandlerWrapperTest.php
│   │   │   ├── HipChatHandlerTest.php
│   │   │   ├── LogEntriesHandlerTest.php
│   │   │   ├── MailHandlerTest.php
│   │   │   ├── MockRavenClient.php
│   │   │   ├── MongoDBHandlerTest.php
│   │   │   ├── NativeMailerHandlerTest.php
│   │   │   ├── NewRelicHandlerTest.php
│   │   │   ├── NullHandlerTest.php
│   │   │   ├── PHPConsoleHandlerTest.php
│   │   │   ├── PsrHandlerTest.php
│   │   │   ├── PushoverHandlerTest.php
│   │   │   ├── RavenHandlerTest.php
│   │   │   ├── RedisHandlerTest.php
│   │   │   ├── RollbarHandlerTest.php
│   │   │   ├── RotatingFileHandlerTest.php
│   │   │   ├── SamplingHandlerTest.php
│   │   │   ├── Slack
│   │   │   │   └── SlackRecordTest.php
│   │   │   ├── SlackbotHandlerTest.php
│   │   │   ├── SlackHandlerTest.php
│   │   │   ├── SlackWebhookHandlerTest.php
│   │   │   ├── SocketHandlerTest.php
│   │   │   ├── StreamHandlerTest.php
│   │   │   ├── SwiftMailerHandlerTest.php
│   │   │   ├── SyslogHandlerTest.php
│   │   │   ├── SyslogUdpHandlerTest.php
│   │   │   ├── TestHandlerTest.php
│   │   │   ├── UdpSocketTest.php
│   │   │   ├── WhatFailureGroupHandlerTest.php
│   │   │   └── ZendMonitorHandlerTest.php
│   │   ├── LoggerTest.php
│   │   ├── Processor
│   │   │   ├── GitProcessorTest.php
│   │   │   ├── IntrospectionProcessorTest.php
│   │   │   ├── MemoryPeakUsageProcessorTest.php
│   │   │   ├── MemoryUsageProcessorTest.php
│   │   │   ├── MercurialProcessorTest.php
│   │   │   ├── ProcessIdProcessorTest.php
│   │   │   ├── PsrLogMessageProcessorTest.php
│   │   │   ├── TagProcessorTest.php
│   │   │   ├── UidProcessorTest.php
│   │   │   └── WebProcessorTest.php
│   │   ├── PsrLogCompatTest.php
│   │   ├── RegistryTest.php
│   │   └── TestCase.php
│   ├── mtdowling
│   │   └── cron-expression
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Cron
│   │   │   ├── AbstractField.php
│   │   │   ├── CronExpression.php
│   │   │   ├── DayOfMonthField.php
│   │   │   ├── DayOfWeekField.php
│   │   │   ├── FieldFactory.php
│   │   │   ├── FieldInterface.php
│   │   │   ├── HoursField.php
│   │   │   ├── MinutesField.php
│   │   │   ├── MonthField.php
│   │   │   └── YearField.php
│   │   └── tests
│   │   └── Cron
│   │   ├── AbstractFieldTest.php
│   │   ├── CronExpressionTest.php
│   │   ├── DayOfMonthFieldTest.php
│   │   ├── DayOfWeekFieldTest.php
│   │   ├── FieldFactoryTest.php
│   │   ├── HoursFieldTest.php
│   │   ├── MinutesFieldTest.php
│   │   ├── MonthFieldTest.php
│   │   └── YearFieldTest.php
│   ├── myclabs
│   │   └── deep-copy
│   │   ├── composer.json
│   │   ├── doc
│   │   │   ├── clone.png
│   │   │   ├── deep-clone.png
│   │   │   ├── deep-copy.png
│   │   │   └── graph.png
│   │   ├── fixtures
│   │   │   ├── f001
│   │   │   │   ├── A.php
│   │   │   │   └── B.php
│   │   │   ├── f002
│   │   │   │   └── A.php
│   │   │   ├── f003
│   │   │   │   └── Foo.php
│   │   │   ├── f004
│   │   │   │   └── UnclonableItem.php
│   │   │   ├── f005
│   │   │   │   └── Foo.php
│   │   │   ├── f006
│   │   │   │   ├── A.php
│   │   │   │   └── B.php
│   │   │   ├── f007
│   │   │   │   ├── FooDateInterval.php
│   │   │   │   └── FooDateTimeZone.php
│   │   │   └── f008
│   │   │   ├── A.php
│   │   │   └── B.php
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── DeepCopy
│   │   ├── deep_copy.php
│   │   ├── DeepCopy.php
│   │   ├── Exception
│   │   │   ├── CloneException.php
│   │   │   └── PropertyException.php
│   │   ├── Filter
│   │   │   ├── Doctrine
│   │   │   │   ├── DoctrineCollectionFilter.php
│   │   │   │   ├── DoctrineEmptyCollectionFilter.php
│   │   │   │   └── DoctrineProxyFilter.php
│   │   │   ├── Filter.php
│   │   │   ├── KeepFilter.php
│   │   │   ├── ReplaceFilter.php
│   │   │   └── SetNullFilter.php
│   │   ├── Matcher
│   │   │   ├── Doctrine
│   │   │   │   └── DoctrineProxyMatcher.php
│   │   │   ├── Matcher.php
│   │   │   ├── PropertyMatcher.php
│   │   │   ├── PropertyNameMatcher.php
│   │   │   └── PropertyTypeMatcher.php
│   │   ├── Reflection
│   │   │   └── ReflectionHelper.php
│   │   ├── TypeFilter
│   │   │   ├── Date
│   │   │   │   └── DateIntervalFilter.php
│   │   │   ├── ReplaceFilter.php
│   │   │   ├── ShallowCopyFilter.php
│   │   │   ├── Spl
│   │   │   │   ├── SplDoublyLinkedListFilter.php
│   │   │   │   └── SplDoublyLinkedList.php
│   │   │   └── TypeFilter.php
│   │   └── TypeMatcher
│   │   └── TypeMatcher.php
│   ├── nesbot
│   │   └── carbon
│   │   ├── build.php
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── readme.md
│   │   └── src
│   │   └── Carbon
│   │   ├── CarbonInterval.php
│   │   ├── Carbon.php
│   │   ├── Exceptions
│   │   │   └── InvalidDateException.php
│   │   └── Lang
│   │   ├── af.php
│   │   ├── ar.php
│   │   ├── ar_Shakl.php
│   │   ├── az.php
│   │   ├── bg.php
│   │   ├── bn.php
│   │   ├── ca.php
│   │   ├── cs.php
│   │   ├── da.php
│   │   ├── de.php
│   │   ├── dv_MV.php
│   │   ├── el.php
│   │   ├── en.php
│   │   ├── eo.php
│   │   ├── es.php
│   │   ├── et.php
│   │   ├── eu.php
│   │   ├── fa.php
│   │   ├── fi.php
│   │   ├── fo.php
│   │   ├── fr.php
│   │   ├── gl.php
│   │   ├── he.php
│   │   ├── hr.php
│   │   ├── hu.php
│   │   ├── hy.php
│   │   ├── id.php
│   │   ├── it.php
│   │   ├── ja.php
│   │   ├── ka.php
│   │   ├── kk.php
│   │   ├── km.php
│   │   ├── ko.php
│   │   ├── lt.php
│   │   ├── lv.php
│   │   ├── mk.php
│   │   ├── mn.php
│   │   ├── ms.php
│   │   ├── nl.php
│   │   ├── no.php
│   │   ├── pl.php
│   │   ├── ps.php
│   │   ├── pt_BR.php
│   │   ├── pt.php
│   │   ├── ro.php
│   │   ├── ru.php
│   │   ├── sk.php
│   │   ├── sl.php
│   │   ├── sq.php
│   │   ├── sr_Cyrl_ME.php
│   │   ├── sr_Cyrl.php
│   │   ├── sr_Latn_ME.php
│   │   ├── sr_ME.php
│   │   ├── sr.php
│   │   ├── sv.php
│   │   ├── th.php
│   │   ├── tr.php
│   │   ├── uk.php
│   │   ├── ur.php
│   │   ├── uz.php
│   │   ├── vi.php
│   │   ├── zh.php
│   │   └── zh_TW.php
│   ├── nikic
│   │   └── php-parser
│   │   ├── bin
│   │   │   └── php-parse
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── doc
│   │   │   ├── 0_Introduction.markdown
│   │   │   ├── 2_Usage_of_basic_components.markdown
│   │   │   ├── 3_Other_node_tree_representations.markdown
│   │   │   ├── 4_Code_generation.markdown
│   │   │   └── component
│   │   │   ├── Error_handling.markdown
│   │   │   └── Lexer.markdown
│   │   ├── grammar
│   │   │   ├── parser.template
│   │   │   ├── php5.y
│   │   │   ├── php7.y
│   │   │   ├── README.md
│   │   │   ├── rebuildParsers.php
│   │   │   ├── tokens.template
│   │   │   └── tokens.y
│   │   ├── lib
│   │   │   ├── bootstrap.php
│   │   │   └── PhpParser
│   │   │   ├── Autoloader.php
│   │   │   ├── Builder
│   │   │   │   ├── Class_.php
│   │   │   │   ├── Declaration.php
│   │   │   │   ├── FunctionLike.php
│   │   │   │   ├── Function_.php
│   │   │   │   ├── Interface_.php
│   │   │   │   ├── Method.php
│   │   │   │   ├── Namespace_.php
│   │   │   │   ├── Param.php
│   │   │   │   ├── Property.php
│   │   │   │   ├── Trait_.php
│   │   │   │   └── Use_.php
│   │   │   ├── BuilderAbstract.php
│   │   │   ├── BuilderFactory.php
│   │   │   ├── Builder.php
│   │   │   ├── Comment
│   │   │   │   └── Doc.php
│   │   │   ├── Comment.php
│   │   │   ├── ErrorHandler
│   │   │   │   ├── Collecting.php
│   │   │   │   └── Throwing.php
│   │   │   ├── ErrorHandler.php
│   │   │   ├── Error.php
│   │   │   ├── Lexer
│   │   │   │   └── Emulative.php
│   │   │   ├── Lexer.php
│   │   │   ├── Node
│   │   │   │   ├── Arg.php
│   │   │   │   ├── Const_.php
│   │   │   │   ├── Expr
│   │   │   │   │   ├── ArrayDimFetch.php
│   │   │   │   │   ├── ArrayItem.php
│   │   │   │   │   ├── Array_.php
│   │   │   │   │   ├── AssignOp
│   │   │   │   │   │   ├── BitwiseAnd.php
│   │   │   │   │   │   ├── BitwiseOr.php
│   │   │   │   │   │   ├── BitwiseXor.php
│   │   │   │   │   │   ├── Concat.php
│   │   │   │   │   │   ├── Div.php
│   │   │   │   │   │   ├── Minus.php
│   │   │   │   │   │   ├── Mod.php
│   │   │   │   │   │   ├── Mul.php
│   │   │   │   │   │   ├── Plus.php
│   │   │   │   │   │   ├── Pow.php
│   │   │   │   │   │   ├── ShiftLeft.php
│   │   │   │   │   │   └── ShiftRight.php
│   │   │   │   │   ├── AssignOp.php
│   │   │   │   │   ├── Assign.php
│   │   │   │   │   ├── AssignRef.php
│   │   │   │   │   ├── BinaryOp
│   │   │   │   │   │   ├── BitwiseAnd.php
│   │   │   │   │   │   ├── BitwiseOr.php
│   │   │   │   │   │   ├── BitwiseXor.php
│   │   │   │   │   │   ├── BooleanAnd.php
│   │   │   │   │   │   ├── BooleanOr.php
│   │   │   │   │   │   ├── Coalesce.php
│   │   │   │   │   │   ├── Concat.php
│   │   │   │   │   │   ├── Div.php
│   │   │   │   │   │   ├── Equal.php
│   │   │   │   │   │   ├── GreaterOrEqual.php
│   │   │   │   │   │   ├── Greater.php
│   │   │   │   │   │   ├── Identical.php
│   │   │   │   │   │   ├── LogicalAnd.php
│   │   │   │   │   │   ├── LogicalOr.php
│   │   │   │   │   │   ├── LogicalXor.php
│   │   │   │   │   │   ├── Minus.php
│   │   │   │   │   │   ├── Mod.php
│   │   │   │   │   │   ├── Mul.php
│   │   │   │   │   │   ├── NotEqual.php
│   │   │   │   │   │   ├── NotIdentical.php
│   │   │   │   │   │   ├── Plus.php
│   │   │   │   │   │   ├── Pow.php
│   │   │   │   │   │   ├── ShiftLeft.php
│   │   │   │   │   │   ├── ShiftRight.php
│   │   │   │   │   │   ├── SmallerOrEqual.php
│   │   │   │   │   │   ├── Smaller.php
│   │   │   │   │   │   └── Spaceship.php
│   │   │   │   │   ├── BinaryOp.php
│   │   │   │   │   ├── BitwiseNot.php
│   │   │   │   │   ├── BooleanNot.php
│   │   │   │   │   ├── Cast
│   │   │   │   │   │   ├── Array_.php
│   │   │   │   │   │   ├── Bool_.php
│   │   │   │   │   │   ├── Double.php
│   │   │   │   │   │   ├── Int_.php
│   │   │   │   │   │   ├── Object_.php
│   │   │   │   │   │   ├── String_.php
│   │   │   │   │   │   └── Unset_.php
│   │   │   │   │   ├── Cast.php
│   │   │   │   │   ├── ClassConstFetch.php
│   │   │   │   │   ├── Clone_.php
│   │   │   │   │   ├── Closure.php
│   │   │   │   │   ├── ClosureUse.php
│   │   │   │   │   ├── ConstFetch.php
│   │   │   │   │   ├── Empty_.php
│   │   │   │   │   ├── Error.php
│   │   │   │   │   ├── ErrorSuppress.php
│   │   │   │   │   ├── Eval_.php
│   │   │   │   │   ├── Exit_.php
│   │   │   │   │   ├── FuncCall.php
│   │   │   │   │   ├── Include_.php
│   │   │   │   │   ├── Instanceof_.php
│   │   │   │   │   ├── Isset_.php
│   │   │   │   │   ├── List_.php
│   │   │   │   │   ├── MethodCall.php
│   │   │   │   │   ├── New_.php
│   │   │   │   │   ├── PostDec.php
│   │   │   │   │   ├── PostInc.php
│   │   │   │   │   ├── PreDec.php
│   │   │   │   │   ├── PreInc.php
│   │   │   │   │   ├── Print_.php
│   │   │   │   │   ├── PropertyFetch.php
│   │   │   │   │   ├── ShellExec.php
│   │   │   │   │   ├── StaticCall.php
│   │   │   │   │   ├── StaticPropertyFetch.php
│   │   │   │   │   ├── Ternary.php
│   │   │   │   │   ├── UnaryMinus.php
│   │   │   │   │   ├── UnaryPlus.php
│   │   │   │   │   ├── Variable.php
│   │   │   │   │   ├── YieldFrom.php
│   │   │   │   │   └── Yield_.php
│   │   │   │   ├── Expr.php
│   │   │   │   ├── FunctionLike.php
│   │   │   │   ├── Name
│   │   │   │   │   ├── FullyQualified.php
│   │   │   │   │   └── Relative.php
│   │   │   │   ├── Name.php
│   │   │   │   ├── NullableType.php
│   │   │   │   ├── Param.php
│   │   │   │   ├── Scalar
│   │   │   │   │   ├── DNumber.php
│   │   │   │   │   ├── Encapsed.php
│   │   │   │   │   ├── EncapsedStringPart.php
│   │   │   │   │   ├── LNumber.php
│   │   │   │   │   ├── MagicConst
│   │   │   │   │   │   ├── Class_.php
│   │   │   │   │   │   ├── Dir.php
│   │   │   │   │   │   ├── File.php
│   │   │   │   │   │   ├── Function_.php
│   │   │   │   │   │   ├── Line.php
│   │   │   │   │   │   ├── Method.php
│   │   │   │   │   │   ├── Namespace_.php
│   │   │   │   │   │   └── Trait_.php
│   │   │   │   │   ├── MagicConst.php
│   │   │   │   │   └── String_.php
│   │   │   │   ├── Scalar.php
│   │   │   │   ├── Stmt
│   │   │   │   │   ├── Break_.php
│   │   │   │   │   ├── Case_.php
│   │   │   │   │   ├── Catch_.php
│   │   │   │   │   ├── ClassConst.php
│   │   │   │   │   ├── ClassLike.php
│   │   │   │   │   ├── ClassMethod.php
│   │   │   │   │   ├── Class_.php
│   │   │   │   │   ├── Const_.php
│   │   │   │   │   ├── Continue_.php
│   │   │   │   │   ├── DeclareDeclare.php
│   │   │   │   │   ├── Declare_.php
│   │   │   │   │   ├── Do_.php
│   │   │   │   │   ├── Echo_.php
│   │   │   │   │   ├── ElseIf_.php
│   │   │   │   │   ├── Else_.php
│   │   │   │   │   ├── Finally_.php
│   │   │   │   │   ├── Foreach_.php
│   │   │   │   │   ├── For_.php
│   │   │   │   │   ├── Function_.php
│   │   │   │   │   ├── Global_.php
│   │   │   │   │   ├── Goto_.php
│   │   │   │   │   ├── GroupUse.php
│   │   │   │   │   ├── HaltCompiler.php
│   │   │   │   │   ├── If_.php
│   │   │   │   │   ├── InlineHTML.php
│   │   │   │   │   ├── Interface_.php
│   │   │   │   │   ├── Label.php
│   │   │   │   │   ├── Namespace_.php
│   │   │   │   │   ├── Nop.php
│   │   │   │   │   ├── Property.php
│   │   │   │   │   ├── PropertyProperty.php
│   │   │   │   │   ├── Return_.php
│   │   │   │   │   ├── Static_.php
│   │   │   │   │   ├── StaticVar.php
│   │   │   │   │   ├── Switch_.php
│   │   │   │   │   ├── Throw_.php
│   │   │   │   │   ├── Trait_.php
│   │   │   │   │   ├── TraitUseAdaptation
│   │   │   │   │   │   ├── Alias.php
│   │   │   │   │   │   └── Precedence.php
│   │   │   │   │   ├── TraitUseAdaptation.php
│   │   │   │   │   ├── TraitUse.php
│   │   │   │   │   ├── TryCatch.php
│   │   │   │   │   ├── Unset_.php
│   │   │   │   │   ├── Use_.php
│   │   │   │   │   ├── UseUse.php
│   │   │   │   │   └── While_.php
│   │   │   │   └── Stmt.php
│   │   │   ├── NodeAbstract.php
│   │   │   ├── NodeDumper.php
│   │   │   ├── Node.php
│   │   │   ├── NodeTraverserInterface.php
│   │   │   ├── NodeTraverser.php
│   │   │   ├── NodeVisitor
│   │   │   │   └── NameResolver.php
│   │   │   ├── NodeVisitorAbstract.php
│   │   │   ├── NodeVisitor.php
│   │   │   ├── Parser
│   │   │   │   ├── Multiple.php
│   │   │   │   ├── Php5.php
│   │   │   │   ├── Php7.php
│   │   │   │   └── Tokens.php
│   │   │   ├── ParserAbstract.php
│   │   │   ├── ParserFactory.php
│   │   │   ├── Parser.php
│   │   │   ├── PrettyPrinter
│   │   │   │   └── Standard.php
│   │   │   ├── PrettyPrinterAbstract.php
│   │   │   ├── Serializer
│   │   │   │   └── XML.php
│   │   │   ├── Serializer.php
│   │   │   ├── Unserializer
│   │   │   │   └── XML.php
│   │   │   └── Unserializer.php
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── test
│   │   │   ├── bootstrap.php
│   │   │   ├── code
│   │   │   │   ├── parser
│   │   │   │   │   ├── blockComments.test
│   │   │   │   │   ├── comments.test
│   │   │   │   │   ├── errorHandling
│   │   │   │   │   │   ├── eofError.test
│   │   │   │   │   │   ├── lexerErrors.test
│   │   │   │   │   │   └── recovery.test
│   │   │   │   │   ├── expr
│   │   │   │   │   │   ├── arrayDef.test
│   │   │   │   │   │   ├── arrayDestructuring.test
│   │   │   │   │   │   ├── assignNewByRef.test
│   │   │   │   │   │   ├── assign.test
│   │   │   │   │   │   ├── cast.test
│   │   │   │   │   │   ├── clone.test
│   │   │   │   │   │   ├── closure.test
│   │   │   │   │   │   ├── comparison.test
│   │   │   │   │   │   ├── constant_expr.test
│   │   │   │   │   │   ├── errorSuppress.test
│   │   │   │   │   │   ├── exit.test
│   │   │   │   │   │   ├── fetchAndCall
│   │   │   │   │   │   │   ├── args.test
│   │   │   │   │   │   │   ├── constantDeref.test
│   │   │   │   │   │   │   ├── constFetch.test
│   │   │   │   │   │   │   ├── funcCall.test
│   │   │   │   │   │   │   ├── newDeref.test
│   │   │   │   │   │   │   ├── objectAccess.test
│   │   │   │   │   │   │   ├── simpleArrayAccess.test
│   │   │   │   │   │   │   ├── staticCall.test
│   │   │   │   │   │   │   └── staticPropertyFetch.test
│   │   │   │   │   │   ├── includeAndEval.test
│   │   │   │   │   │   ├── issetAndEmpty.test
│   │   │   │   │   │   ├── listWithKeys.test
│   │   │   │   │   │   ├── logic.test
│   │   │   │   │   │   ├── math.test
│   │   │   │   │   │   ├── new.test
│   │   │   │   │   │   ├── newWithoutClass.test
│   │   │   │   │   │   ├── print.test
│   │   │   │   │   │   ├── shellExec.test
│   │   │   │   │   │   ├── ternaryAndCoalesce.test
│   │   │   │   │   │   ├── uvs
│   │   │   │   │   │   │   ├── globalNonSimpleVarError.test
│   │   │   │   │   │   │   ├── indirectCall.test
│   │   │   │   │   │   │   ├── isset.test
│   │   │   │   │   │   │   ├── misc.test
│   │   │   │   │   │   │   ├── new.test
│   │   │   │   │   │   │   └── staticProperty.test
│   │   │   │   │   │   └── variable.test
│   │   │   │   │   ├── scalar
│   │   │   │   │   │   ├── constantString.test
│   │   │   │   │   │   ├── docStringNewlines.test
│   │   │   │   │   │   ├── docString.test
│   │   │   │   │   │   ├── encapsedNegVarOffset.test
│   │   │   │   │   │   ├── encapsedString.test
│   │   │   │   │   │   ├── float.test
│   │   │   │   │   │   ├── int.test
│   │   │   │   │   │   ├── invalidOctal.test
│   │   │   │   │   │   ├── magicConst.test
│   │   │   │   │   │   └── unicodeEscape.test
│   │   │   │   │   ├── semiReserved.test
│   │   │   │   │   └── stmt
│   │   │   │   │   ├── blocklessStatement.test
│   │   │   │   │   ├── class
│   │   │   │   │   │   ├── abstract.test
│   │   │   │   │   │   ├── anonymous.test
│   │   │   │   │   │   ├── conditional.test
│   │   │   │   │   │   ├── constModifierErrors.test
│   │   │   │   │   │   ├── constModifiers.test
│   │   │   │   │   │   ├── final.test
│   │   │   │   │   │   ├── implicitPublic.test
│   │   │   │   │   │   ├── interface.test
│   │   │   │   │   │   ├── modifier.test
│   │   │   │   │   │   ├── name.test
│   │   │   │   │   │   ├── php4Style.test
│   │   │   │   │   │   ├── simple.test
│   │   │   │   │   │   ├── staticMethod.test
│   │   │   │   │   │   └── trait.test
│   │   │   │   │   ├── const.test
│   │   │   │   │   ├── controlFlow.test
│   │   │   │   │   ├── declare.test
│   │   │   │   │   ├── echo.test
│   │   │   │   │   ├── function
│   │   │   │   │   │   ├── builtinTypeDeclarations.test
│   │   │   │   │   │   ├── byRef.test
│   │   │   │   │   │   ├── conditional.test
│   │   │   │   │   │   ├── defaultValues.test
│   │   │   │   │   │   ├── nullableTypes.test
│   │   │   │   │   │   ├── returnTypes.test
│   │   │   │   │   │   ├── specialVars.test
│   │   │   │   │   │   ├── typeDeclarations.test
│   │   │   │   │   │   ├── variadicDefaultValue.test
│   │   │   │   │   │   └── variadic.test
│   │   │   │   │   ├── generator
│   │   │   │   │   │   ├── basic.test
│   │   │   │   │   │   ├── yieldPrecedence.test
│   │   │   │   │   │   └── yieldUnaryPrecedence.test
│   │   │   │   │   ├── haltCompilerInvalidSyntax.test
│   │   │   │   │   ├── haltCompilerOffset.test
│   │   │   │   │   ├── haltCompilerOutermostScope.test
│   │   │   │   │   ├── haltCompiler.test
│   │   │   │   │   ├── hashbang.test
│   │   │   │   │   ├── if.test
│   │   │   │   │   ├── inlineHTML.test
│   │   │   │   │   ├── loop
│   │   │   │   │   │   ├── do.test
│   │   │   │   │   │   ├── foreach.test
│   │   │   │   │   │   ├── for.test
│   │   │   │   │   │   └── while.test
│   │   │   │   │   ├── multiCatch.test
│   │   │   │   │   ├── namespace
│   │   │   │   │   │   ├── alias.test
│   │   │   │   │   │   ├── braced.test
│   │   │   │   │   │   ├── commentAfterNamespace.test
│   │   │   │   │   │   ├── groupUseErrors.test
│   │   │   │   │   │   ├── groupUsePositions.test
│   │   │   │   │   │   ├── groupUse.test
│   │   │   │   │   │   ├── groupUseTrailingComma.test
│   │   │   │   │   │   ├── invalidName.test
│   │   │   │   │   │   ├── mix.test
│   │   │   │   │   │   ├── name.test
│   │   │   │   │   │   ├── nested.test
│   │   │   │   │   │   ├── notBraced.test
│   │   │   │   │   │   ├── nsAfterHashbang.test
│   │   │   │   │   │   ├── outsideStmtInvalid.test
│   │   │   │   │   │   └── outsideStmt.test
│   │   │   │   │   ├── switch.test
│   │   │   │   │   ├── tryCatch.test
│   │   │   │   │   ├── tryWithoutCatch.test
│   │   │   │   │   └── unset.test
│   │   │   │   └── prettyPrinter
│   │   │   │   ├── commentsInCommaList.test
│   │   │   │   ├── comments.test
│   │   │   │   ├── expr
│   │   │   │   │   ├── anonymousClass.test
│   │   │   │   │   ├── arrayDestructuring.test
│   │   │   │   │   ├── call.test
│   │   │   │   │   ├── closure.test
│   │   │   │   │   ├── constant_deref.test
│   │   │   │   │   ├── docStrings.test
│   │   │   │   │   ├── include.test
│   │   │   │   │   ├── intrinsics.test
│   │   │   │   │   ├── list.test
│   │   │   │   │   ├── literals.test
│   │   │   │   │   ├── numbers.test
│   │   │   │   │   ├── operators.test
│   │   │   │   │   ├── parentheses.test
│   │   │   │   │   ├── shortArraySyntax.test
│   │   │   │   │   ├── stringEscaping.test
│   │   │   │   │   ├── uvs.test
│   │   │   │   │   ├── variables.test
│   │   │   │   │   └── yield.test
│   │   │   │   ├── inlineHTMLandPHPtest.file-test
│   │   │   │   ├── onlyInlineHTML.file-test
│   │   │   │   ├── onlyPHP.file-test
│   │   │   │   └── stmt
│   │   │   │   ├── alias.test
│   │   │   │   ├── break_continue.test
│   │   │   │   ├── class_const.test
│   │   │   │   ├── class.test
│   │   │   │   ├── const.test
│   │   │   │   ├── declare.test
│   │   │   │   ├── do_while.test
│   │   │   │   ├── foreach.test
│   │   │   │   ├── for.test
│   │   │   │   ├── function_signatures.test
│   │   │   │   ├── global_static_variables.test
│   │   │   │   ├── goto.test
│   │   │   │   ├── groupUse.test
│   │   │   │   ├── haltCompiler.file-test
│   │   │   │   ├── if.test
│   │   │   │   ├── multiCatch.test
│   │   │   │   ├── namespaces.test
│   │   │   │   ├── nullable_types.test
│   │   │   │   ├── switch.test
│   │   │   │   ├── throw.test
│   │   │   │   ├── traitUse.test
│   │   │   │   ├── tryCatch.test
│   │   │   │   └── while.test
│   │   │   └── PhpParser
│   │   │   ├── AutoloaderTest.php
│   │   │   ├── Builder
│   │   │   │   ├── ClassTest.php
│   │   │   │   ├── FunctionTest.php
│   │   │   │   ├── InterfaceTest.php
│   │   │   │   ├── MethodTest.php
│   │   │   │   ├── NamespaceTest.php
│   │   │   │   ├── ParamTest.php
│   │   │   │   ├── PropertyTest.php
│   │   │   │   ├── TraitTest.php
│   │   │   │   └── UseTest.php
│   │   │   ├── BuilderFactoryTest.php
│   │   │   ├── CodeParsingTest.php
│   │   │   ├── CodeTestAbstract.php
│   │   │   ├── CommentTest.php
│   │   │   ├── ErrorHandler
│   │   │   │   ├── CollectingTest.php
│   │   │   │   └── ThrowingTest.php
│   │   │   ├── ErrorTest.php
│   │   │   ├── Lexer
│   │   │   │   └── EmulativeTest.php
│   │   │   ├── LexerTest.php
│   │   │   ├── Node
│   │   │   │   ├── NameTest.php
│   │   │   │   ├── Scalar
│   │   │   │   │   ├── MagicConstTest.php
│   │   │   │   │   └── StringTest.php
│   │   │   │   └── Stmt
│   │   │   │   ├── ClassConstTest.php
│   │   │   │   ├── ClassMethodTest.php
│   │   │   │   ├── ClassTest.php
│   │   │   │   ├── InterfaceTest.php
│   │   │   │   └── PropertyTest.php
│   │   │   ├── NodeAbstractTest.php
│   │   │   ├── NodeDumperTest.php
│   │   │   ├── NodeTraverserTest.php
│   │   │   ├── NodeVisitor
│   │   │   │   └── NameResolverTest.php
│   │   │   ├── Parser
│   │   │   │   ├── MultipleTest.php
│   │   │   │   ├── Php5Test.php
│   │   │   │   └── Php7Test.php
│   │   │   ├── ParserFactoryTest.php
│   │   │   ├── ParserTest.php
│   │   │   ├── PrettyPrinterTest.php
│   │   │   ├── Serializer
│   │   │   │   └── XMLTest.php
│   │   │   └── Unserializer
│   │   │   └── XMLTest.php
│   │   ├── test_old
│   │   │   ├── run.php
│   │   │   └── run-php-src.sh
│   │   ├── UPGRADE-1.0.md
│   │   ├── UPGRADE-2.0.md
│   │   └── UPGRADE-3.0.md
│   ├── paragonie
│   │   └── random_compat
│   │   ├── build-phar.sh
│   │   ├── composer.json
│   │   ├── dist
│   │   │   ├── random_compat.phar.pubkey
│   │   │   └── random_compat.phar.pubkey.asc
│   │   ├── lib
│   │   │   ├── byte_safe_strings.php
│   │   │   ├── cast_to_int.php
│   │   │   ├── error_polyfill.php
│   │   │   ├── random_bytes_com_dotnet.php
│   │   │   ├── random_bytes_dev_urandom.php
│   │   │   ├── random_bytes_libsodium_legacy.php
│   │   │   ├── random_bytes_libsodium.php
│   │   │   ├── random_bytes_mcrypt.php
│   │   │   ├── random_int.php
│   │   │   └── random.php
│   │   ├── LICENSE
│   │   ├── other
│   │   │   └── build_phar.php
│   │   ├── psalm-autoload.php
│   │   └── psalm.xml
│   ├── phpdocumentor
│   │   ├── reflection-common
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── Element.php
│   │   │   ├── File.php
│   │   │   ├── Fqsen.php
│   │   │   ├── Location.php
│   │   │   ├── ProjectFactory.php
│   │   │   └── Project.php
│   │   ├── reflection-docblock
│   │   │   ├── composer.json
│   │   │   ├── easy-coding-standard.neon
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── DocBlock
│   │   │   │   ├── DescriptionFactory.php
│   │   │   │   ├── Description.php
│   │   │   │   ├── ExampleFinder.php
│   │   │   │   ├── Serializer.php
│   │   │   │   ├── StandardTagFactory.php
│   │   │   │   ├── TagFactory.php
│   │   │   │   ├── Tag.php
│   │   │   │   └── Tags
│   │   │   │   ├── Author.php
│   │   │   │   ├── BaseTag.php
│   │   │   │   ├── Covers.php
│   │   │   │   ├── Deprecated.php
│   │   │   │   ├── Example.php
│   │   │   │   ├── Factory
│   │   │   │   │   ├── StaticMethod.php
│   │   │   │   │   └── Strategy.php
│   │   │   │   ├── Formatter
│   │   │   │   │   ├── AlignFormatter.php
│   │   │   │   │   └── PassthroughFormatter.php
│   │   │   │   ├── Formatter.php
│   │   │   │   ├── Generic.php
│   │   │   │   ├── Link.php
│   │   │   │   ├── Method.php
│   │   │   │   ├── Param.php
│   │   │   │   ├── Property.php
│   │   │   │   ├── PropertyRead.php
│   │   │   │   ├── PropertyWrite.php
│   │   │   │   ├── Reference
│   │   │   │   │   ├── Fqsen.php
│   │   │   │   │   ├── Reference.php
│   │   │   │   │   └── Url.php
│   │   │   │   ├── Return_.php
│   │   │   │   ├── See.php
│   │   │   │   ├── Since.php
│   │   │   │   ├── Source.php
│   │   │   │   ├── Throws.php
│   │   │   │   ├── Uses.php
│   │   │   │   ├── Var_.php
│   │   │   │   └── Version.php
│   │   │   ├── DocBlockFactoryInterface.php
│   │   │   ├── DocBlockFactory.php
│   │   │   └── DocBlock.php
│   │   └── type-resolver
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── FqsenResolver.php
│   │   ├── Type.php
│   │   ├── TypeResolver.php
│   │   └── Types
│   │   ├── Array_.php
│   │   ├── Boolean.php
│   │   ├── Callable_.php
│   │   ├── Compound.php
│   │   ├── ContextFactory.php
│   │   ├── Context.php
│   │   ├── Float_.php
│   │   ├── Integer.php
│   │   ├── Iterable_.php
│   │   ├── Mixed_.php
│   │   ├── Nullable.php
│   │   ├── Null_.php
│   │   ├── Object_.php
│   │   ├── Parent_.php
│   │   ├── Resource_.php
│   │   ├── Scalar.php
│   │   ├── Self_.php
│   │   ├── Static_.php
│   │   ├── String_.php
│   │   ├── This.php
│   │   └── Void_.php
│   ├── phpspec
│   │   └── prophecy
│   │   ├── CHANGES.md
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── Prophecy
│   │   ├── Argument
│   │   │   ├── ArgumentsWildcard.php
│   │   │   └── Token
│   │   │   ├── AnyValuesToken.php
│   │   │   ├── AnyValueToken.php
│   │   │   ├── ApproximateValueToken.php
│   │   │   ├── ArrayCountToken.php
│   │   │   ├── ArrayEntryToken.php
│   │   │   ├── ArrayEveryEntryToken.php
│   │   │   ├── CallbackToken.php
│   │   │   ├── ExactValueToken.php
│   │   │   ├── IdenticalValueToken.php
│   │   │   ├── LogicalAndToken.php
│   │   │   ├── LogicalNotToken.php
│   │   │   ├── ObjectStateToken.php
│   │   │   ├── StringContainsToken.php
│   │   │   ├── TokenInterface.php
│   │   │   └── TypeToken.php
│   │   ├── Argument.php
│   │   ├── Call
│   │   │   ├── CallCenter.php
│   │   │   └── Call.php
│   │   ├── Comparator
│   │   │   ├── ClosureComparator.php
│   │   │   ├── Factory.php
│   │   │   └── ProphecyComparator.php
│   │   ├── Doubler
│   │   │   ├── CachedDoubler.php
│   │   │   ├── ClassPatch
│   │   │   │   ├── ClassPatchInterface.php
│   │   │   │   ├── DisableConstructorPatch.php
│   │   │   │   ├── HhvmExceptionPatch.php
│   │   │   │   ├── KeywordPatch.php
│   │   │   │   ├── MagicCallPatch.php
│   │   │   │   ├── ProphecySubjectPatch.php
│   │   │   │   ├── ReflectionClassNewInstancePatch.php
│   │   │   │   ├── SplFileInfoPatch.php
│   │   │   │   └── TraversablePatch.php
│   │   │   ├── DoubleInterface.php
│   │   │   ├── Doubler.php
│   │   │   ├── Generator
│   │   │   │   ├── ClassCodeGenerator.php
│   │   │   │   ├── ClassCreator.php
│   │   │   │   ├── ClassMirror.php
│   │   │   │   ├── Node
│   │   │   │   │   ├── ArgumentNode.php
│   │   │   │   │   ├── ClassNode.php
│   │   │   │   │   └── MethodNode.php
│   │   │   │   ├── ReflectionInterface.php
│   │   │   │   └── TypeHintReference.php
│   │   │   ├── LazyDouble.php
│   │   │   └── NameGenerator.php
│   │   ├── Exception
│   │   │   ├── Call
│   │   │   │   └── UnexpectedCallException.php
│   │   │   ├── Doubler
│   │   │   │   ├── ClassCreatorException.php
│   │   │   │   ├── ClassMirrorException.php
│   │   │   │   ├── ClassNotFoundException.php
│   │   │   │   ├── DoubleException.php
│   │   │   │   ├── DoublerException.php
│   │   │   │   ├── InterfaceNotFoundException.php
│   │   │   │   ├── MethodNotExtendableException.php
│   │   │   │   ├── MethodNotFoundException.php
│   │   │   │   └── ReturnByReferenceException.php
│   │   │   ├── Exception.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── Prediction
│   │   │   │   ├── AggregateException.php
│   │   │   │   ├── FailedPredictionException.php
│   │   │   │   ├── NoCallsException.php
│   │   │   │   ├── PredictionException.php
│   │   │   │   ├── UnexpectedCallsCountException.php
│   │   │   │   └── UnexpectedCallsException.php
│   │   │   └── Prophecy
│   │   │   ├── MethodProphecyException.php
│   │   │   ├── ObjectProphecyException.php
│   │   │   └── ProphecyException.php
│   │   ├── PhpDocumentor
│   │   │   ├── ClassAndInterfaceTagRetriever.php
│   │   │   ├── ClassTagRetriever.php
│   │   │   ├── LegacyClassTagRetriever.php
│   │   │   └── MethodTagRetrieverInterface.php
│   │   ├── Prediction
│   │   │   ├── CallbackPrediction.php
│   │   │   ├── CallPrediction.php
│   │   │   ├── CallTimesPrediction.php
│   │   │   ├── NoCallsPrediction.php
│   │   │   └── PredictionInterface.php
│   │   ├── Promise
│   │   │   ├── CallbackPromise.php
│   │   │   ├── PromiseInterface.php
│   │   │   ├── ReturnArgumentPromise.php
│   │   │   ├── ReturnPromise.php
│   │   │   └── ThrowPromise.php
│   │   ├── Prophecy
│   │   │   ├── MethodProphecy.php
│   │   │   ├── ObjectProphecy.php
│   │   │   ├── ProphecyInterface.php
│   │   │   ├── ProphecySubjectInterface.php
│   │   │   ├── RevealerInterface.php
│   │   │   └── Revealer.php
│   │   ├── Prophet.php
│   │   └── Util
│   │   ├── ExportUtil.php
│   │   └── StringUtil.php
│   ├── phpunit
│   │   ├── php-code-coverage
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog-2.2.md
│   │   │   ├── ChangeLog-3.0.md
│   │   │   ├── ChangeLog-3.1.md
│   │   │   ├── ChangeLog-3.2.md
│   │   │   ├── ChangeLog-3.3.md
│   │   │   ├── ChangeLog-4.0.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── 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
│   │   │   │   │   │   ├── Facade.php
│   │   │   │   │   │   ├── Renderer
│   │   │   │   │   │   │   ├── Dashboard.php
│   │   │   │   │   │   │   ├── Directory.php
│   │   │   │   │   │   │   ├── File.php
│   │   │   │   │   │   │   └── Template
│   │   │   │   │   │   │   ├── coverage_bar.html.dist
│   │   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   │   │   │   ├── nv.d3.min.css
│   │   │   │   │   │   │   │   └── style.css
│   │   │   │   │   │   │   ├── dashboard.html.dist
│   │   │   │   │   │   │   ├── directory.html.dist
│   │   │   │   │   │   │   ├── directory_item.html.dist
│   │   │   │   │   │   │   ├── file.html.dist
│   │   │   │   │   │   │   ├── file_item.html.dist
│   │   │   │   │   │   │   ├── fonts
│   │   │   │   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   │   │   │   ├── d3.min.js
│   │   │   │   │   │   │   │   ├── holder.min.js
│   │   │   │   │   │   │   │   ├── html5shiv.min.js
│   │   │   │   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   │   │   │   ├── nv.d3.min.js
│   │   │   │   │   │   │   │   └── respond.min.js
│   │   │   │   │   │   │   └── method_item.html.dist
│   │   │   │   │   │   └── Renderer.php
│   │   │   │   │   ├── PHP.php
│   │   │   │   │   ├── Text.php
│   │   │   │   │   └── Xml
│   │   │   │   │   ├── Coverage.php
│   │   │   │   │   ├── Directory.php
│   │   │   │   │   ├── Facade.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   ├── Method.php
│   │   │   │   │   ├── Node.php
│   │   │   │   │   ├── Project.php
│   │   │   │   │   ├── Report.php
│   │   │   │   │   ├── Tests.php
│   │   │   │   │   ├── Totals.php
│   │   │   │   │   └── Unit.php
│   │   │   │   └── Util.php
│   │   │   └── tests
│   │   │   ├── bootstrap.php
│   │   │   ├── _files
│   │   │   │   ├── BankAccount-clover.xml
│   │   │   │   ├── BankAccount-crap4j.xml
│   │   │   │   ├── BankAccount.php
│   │   │   │   ├── BankAccountTest.php
│   │   │   │   ├── BankAccount-text.txt
│   │   │   │   ├── class-with-anonymous-function-clover.xml
│   │   │   │   ├── class-with-anonymous-function-crap4j.xml
│   │   │   │   ├── class-with-anonymous-function-text.txt
│   │   │   │   ├── CoverageClassExtendedTest.php
│   │   │   │   ├── CoverageClassTest.php
│   │   │   │   ├── CoverageFunctionParenthesesTest.php
│   │   │   │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│   │   │   │   ├── CoverageFunctionTest.php
│   │   │   │   ├── CoverageMethodOneLineAnnotationTest.php
│   │   │   │   ├── CoverageMethodParenthesesTest.php
│   │   │   │   ├── CoverageMethodParenthesesWhitespaceTest.php
│   │   │   │   ├── CoverageMethodTest.php
│   │   │   │   ├── CoverageNoneTest.php
│   │   │   │   ├── CoverageNothingTest.php
│   │   │   │   ├── CoverageNotPrivateTest.php
│   │   │   │   ├── CoverageNotProtectedTest.php
│   │   │   │   ├── CoverageNotPublicTest.php
│   │   │   │   ├── CoveragePrivateTest.php
│   │   │   │   ├── CoverageProtectedTest.php
│   │   │   │   ├── CoveragePublicTest.php
│   │   │   │   ├── CoverageTwoDefaultClassAnnotations.php
│   │   │   │   ├── CoveredClass.php
│   │   │   │   ├── CoveredFunction.php
│   │   │   │   ├── ignored-lines-clover.xml
│   │   │   │   ├── ignored-lines-crap4j.xml
│   │   │   │   ├── ignored-lines-text.txt
│   │   │   │   ├── NamespaceCoverageClassExtendedTest.php
│   │   │   │   ├── NamespaceCoverageClassTest.php
│   │   │   │   ├── NamespaceCoverageCoversClassPublicTest.php
│   │   │   │   ├── NamespaceCoverageCoversClassTest.php
│   │   │   │   ├── NamespaceCoverageMethodTest.php
│   │   │   │   ├── NamespaceCoverageNotPrivateTest.php
│   │   │   │   ├── NamespaceCoverageNotProtectedTest.php
│   │   │   │   ├── NamespaceCoverageNotPublicTest.php
│   │   │   │   ├── NamespaceCoveragePrivateTest.php
│   │   │   │   ├── NamespaceCoverageProtectedTest.php
│   │   │   │   ├── NamespaceCoveragePublicTest.php
│   │   │   │   ├── NamespaceCoveredClass.php
│   │   │   │   ├── NotExistingCoveredElementTest.php
│   │   │   │   ├── Report
│   │   │   │   │   ├── HTML
│   │   │   │   │   │   ├── CoverageForBankAccount
│   │   │   │   │   │   │   ├── BankAccount.php.html
│   │   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   │   └── index.html
│   │   │   │   │   │   ├── CoverageForClassWithAnonymousFunction
│   │   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   │   └── source_with_class_and_anonymous_function.php.html
│   │   │   │   │   │   └── CoverageForFileWithIgnoredLines
│   │   │   │   │   │   ├── dashboard.html
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   └── source_with_ignore.php.html
│   │   │   │   │   └── XML
│   │   │   │   │   ├── CoverageForBankAccount
│   │   │   │   │   │   ├── BankAccount.php.xml
│   │   │   │   │   │   └── index.xml
│   │   │   │   │   ├── CoverageForClassWithAnonymousFunction
│   │   │   │   │   │   ├── index.xml
│   │   │   │   │   │   └── source_with_class_and_anonymous_function.php.xml
│   │   │   │   │   └── CoverageForFileWithIgnoredLines
│   │   │   │   │   ├── index.xml
│   │   │   │   │   └── source_with_ignore.php.xml
│   │   │   │   ├── source_with_class_and_anonymous_function.php
│   │   │   │   ├── source_with_ignore.php
│   │   │   │   ├── source_with_namespace.php
│   │   │   │   ├── source_with_oneline_annotations.php
│   │   │   │   ├── source_without_ignore.php
│   │   │   │   └── source_without_namespace.php
│   │   │   ├── TestCase.php
│   │   │   └── tests
│   │   │   ├── BuilderTest.php
│   │   │   ├── CloverTest.php
│   │   │   ├── CodeCoverageTest.php
│   │   │   ├── Crap4jTest.php
│   │   │   ├── FilterTest.php
│   │   │   ├── HTMLTest.php
│   │   │   ├── TextTest.php
│   │   │   ├── UtilTest.php
│   │   │   └── XMLTest.php
│   │   ├── php-file-iterator
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   ├── Facade.php
│   │   │   ├── Factory.php
│   │   │   └── Iterator.php
│   │   ├── php-text-template
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   └── Template.php
│   │   ├── php-timer
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   └── Timer.php
│   │   │   └── tests
│   │   │   └── TimerTest.php
│   │   ├── php-token-stream
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Token
│   │   │   │   │   ├── Stream
│   │   │   │   │   │   └── CachingFactory.php
│   │   │   │   │   └── Stream.php
│   │   │   │   └── Token.php
│   │   │   └── tests
│   │   │   ├── bootstrap.php
│   │   │   ├── _fixture
│   │   │   │   ├── classExtendsNamespacedClass.php
│   │   │   │   ├── classInNamespace.php
│   │   │   │   ├── classInScopedNamespace.php
│   │   │   │   ├── classUsesNamespacedFunction.php
│   │   │   │   ├── class_with_method_named_empty.php
│   │   │   │   ├── class_with_method_that_declares_anonymous_class2.php
│   │   │   │   ├── class_with_method_that_declares_anonymous_class.php
│   │   │   │   ├── class_with_multiple_anonymous_classes_and_functions.php
│   │   │   │   ├── closure.php
│   │   │   │   ├── issue19.php
│   │   │   │   ├── issue30.php
│   │   │   │   ├── multipleNamespacesWithOneClassUsingBraces.php
│   │   │   │   ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│   │   │   │   ├── php-code-coverage-issue-424.php
│   │   │   │   ├── source2.php
│   │   │   │   ├── source3.php
│   │   │   │   ├── source4.php
│   │   │   │   ├── source5.php
│   │   │   │   └── source.php
│   │   │   ├── Token
│   │   │   │   ├── ClassTest.php
│   │   │   │   ├── ClosureTest.php
│   │   │   │   ├── FunctionTest.php
│   │   │   │   ├── IncludeTest.php
│   │   │   │   ├── InterfaceTest.php
│   │   │   │   └── NamespaceTest.php
│   │   │   └── TokenTest.php
│   │   ├── phpunit
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog-5.7.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit
│   │   │   ├── phpunit.xml
│   │   │   ├── phpunit.xsd
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Exception.php
│   │   │   │   ├── Extensions
│   │   │   │   │   ├── GroupTestSuite.php
│   │   │   │   │   ├── PhptTestCase.php
│   │   │   │   │   ├── PhptTestSuite.php
│   │   │   │   │   ├── RepeatedTest.php
│   │   │   │   │   ├── TestDecorator.php
│   │   │   │   │   └── TicketListener.php
│   │   │   │   ├── ForwardCompatibility
│   │   │   │   │   ├── AssertionFailedError.php
│   │   │   │   │   ├── Assert.php
│   │   │   │   │   ├── BaseTestListener.php
│   │   │   │   │   ├── TestCase.php
│   │   │   │   │   ├── TestListener.php
│   │   │   │   │   ├── Test.php
│   │   │   │   │   └── TestSuite.php
│   │   │   │   ├── Framework
│   │   │   │   │   ├── Assert
│   │   │   │   │   │   └── Functions.php
│   │   │   │   │   ├── AssertionFailedError.php
│   │   │   │   │   ├── Assert.php
│   │   │   │   │   ├── BaseTestListener.php
│   │   │   │   │   ├── CodeCoverageException.php
│   │   │   │   │   ├── Constraint
│   │   │   │   │   │   ├── And.php
│   │   │   │   │   │   ├── ArrayHasKey.php
│   │   │   │   │   │   ├── ArraySubset.php
│   │   │   │   │   │   ├── Attribute.php
│   │   │   │   │   │   ├── Callback.php
│   │   │   │   │   │   ├── ClassHasAttribute.php
│   │   │   │   │   │   ├── ClassHasStaticAttribute.php
│   │   │   │   │   │   ├── Composite.php
│   │   │   │   │   │   ├── Count.php
│   │   │   │   │   │   ├── DirectoryExists.php
│   │   │   │   │   │   ├── ExceptionCode.php
│   │   │   │   │   │   ├── ExceptionMessage.php
│   │   │   │   │   │   ├── ExceptionMessageRegExp.php
│   │   │   │   │   │   ├── Exception.php
│   │   │   │   │   │   ├── FileExists.php
│   │   │   │   │   │   ├── GreaterThan.php
│   │   │   │   │   │   ├── IsAnything.php
│   │   │   │   │   │   ├── IsEmpty.php
│   │   │   │   │   │   ├── IsEqual.php
│   │   │   │   │   │   ├── IsFalse.php
│   │   │   │   │   │   ├── IsFinite.php
│   │   │   │   │   │   ├── IsIdentical.php
│   │   │   │   │   │   ├── IsInfinite.php
│   │   │   │   │   │   ├── IsInstanceOf.php
│   │   │   │   │   │   ├── IsJson.php
│   │   │   │   │   │   ├── IsNan.php
│   │   │   │   │   │   ├── IsNull.php
│   │   │   │   │   │   ├── IsReadable.php
│   │   │   │   │   │   ├── IsTrue.php
│   │   │   │   │   │   ├── IsType.php
│   │   │   │   │   │   ├── IsWritable.php
│   │   │   │   │   │   ├── JsonMatches
│   │   │   │   │   │   │   └── ErrorMessageProvider.php
│   │   │   │   │   │   ├── JsonMatches.php
│   │   │   │   │   │   ├── LessThan.php
│   │   │   │   │   │   ├── Not.php
│   │   │   │   │   │   ├── ObjectHasAttribute.php
│   │   │   │   │   │   ├── Or.php
│   │   │   │   │   │   ├── PCREMatch.php
│   │   │   │   │   │   ├── SameSize.php
│   │   │   │   │   │   ├── StringContains.php
│   │   │   │   │   │   ├── StringEndsWith.php
│   │   │   │   │   │   ├── StringMatches.php
│   │   │   │   │   │   ├── StringStartsWith.php
│   │   │   │   │   │   ├── TraversableContainsOnly.php
│   │   │   │   │   │   ├── TraversableContains.php
│   │   │   │   │   │   └── Xor.php
│   │   │   │   │   ├── Constraint.php
│   │   │   │   │   ├── CoveredCodeNotExecutedException.php
│   │   │   │   │   ├── Error
│   │   │   │   │   │   ├── Deprecated.php
│   │   │   │   │   │   ├── Notice.php
│   │   │   │   │   │   └── Warning.php
│   │   │   │   │   ├── Error.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── ExceptionWrapper.php
│   │   │   │   │   ├── ExpectationFailedException.php
│   │   │   │   │   ├── IncompleteTestCase.php
│   │   │   │   │   ├── IncompleteTestError.php
│   │   │   │   │   ├── IncompleteTest.php
│   │   │   │   │   ├── InvalidCoversTargetException.php
│   │   │   │   │   ├── MissingCoversAnnotationException.php
│   │   │   │   │   ├── OutputError.php
│   │   │   │   │   ├── RiskyTestError.php
│   │   │   │   │   ├── RiskyTest.php
│   │   │   │   │   ├── SelfDescribing.php
│   │   │   │   │   ├── SkippedTestCase.php
│   │   │   │   │   ├── SkippedTestError.php
│   │   │   │   │   ├── SkippedTest.php
│   │   │   │   │   ├── SkippedTestSuiteError.php
│   │   │   │   │   ├── SyntheticError.php
│   │   │   │   │   ├── TestCase.php
│   │   │   │   │   ├── TestFailure.php
│   │   │   │   │   ├── TestListener.php
│   │   │   │   │   ├── Test.php
│   │   │   │   │   ├── TestResult.php
│   │   │   │   │   ├── TestSuite
│   │   │   │   │   │   └── DataProvider.php
│   │   │   │   │   ├── TestSuite.php
│   │   │   │   │   ├── UnintentionallyCoveredCodeError.php
│   │   │   │   │   ├── Warning.php
│   │   │   │   │   └── WarningTestCase.php
│   │   │   │   ├── Runner
│   │   │   │   │   ├── BaseTestRunner.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── Filter
│   │   │   │   │   │   ├── Factory.php
│   │   │   │   │   │   ├── Group
│   │   │   │   │   │   │   ├── Exclude.php
│   │   │   │   │   │   │   └── Include.php
│   │   │   │   │   │   ├── Group.php
│   │   │   │   │   │   └── Test.php
│   │   │   │   │   ├── StandardTestSuiteLoader.php
│   │   │   │   │   ├── TestSuiteLoader.php
│   │   │   │   │   └── Version.php
│   │   │   │   ├── TextUI
│   │   │   │   │   ├── Command.php
│   │   │   │   │   ├── ResultPrinter.php
│   │   │   │   │   └── TestRunner.php
│   │   │   │   └── Util
│   │   │   │   ├── Blacklist.php
│   │   │   │   ├── ConfigurationGenerator.php
│   │   │   │   ├── Configuration.php
│   │   │   │   ├── ErrorHandler.php
│   │   │   │   ├── Fileloader.php
│   │   │   │   ├── Filesystem.php
│   │   │   │   ├── Filter.php
│   │   │   │   ├── Getopt.php
│   │   │   │   ├── GlobalState.php
│   │   │   │   ├── InvalidArgumentHelper.php
│   │   │   │   ├── Log
│   │   │   │   │   ├── JSON.php
│   │   │   │   │   ├── JUnit.php
│   │   │   │   │   ├── TAP.php
│   │   │   │   │   └── TeamCity.php
│   │   │   │   ├── PHP
│   │   │   │   │   ├── Default.php
│   │   │   │   │   ├── eval-stdin.php
│   │   │   │   │   ├── Template
│   │   │   │   │   │   └── TestCaseMethod.tpl.dist
│   │   │   │   │   └── Windows.php
│   │   │   │   ├── PHP.php
│   │   │   │   ├── Printer.php
│   │   │   │   ├── Regex.php
│   │   │   │   ├── String.php
│   │   │   │   ├── TestDox
│   │   │   │   │   ├── NamePrettifier.php
│   │   │   │   │   ├── ResultPrinter
│   │   │   │   │   │   ├── HTML.php
│   │   │   │   │   │   ├── Text.php
│   │   │   │   │   │   └── XML.php
│   │   │   │   │   └── ResultPrinter.php
│   │   │   │   ├── Test.php
│   │   │   │   ├── TestSuiteIterator.php
│   │   │   │   ├── Type.php
│   │   │   │   └── XML.php
│   │   │   └── tests
│   │   │   ├── bootstrap.php
│   │   │   ├── Extensions
│   │   │   │   ├── PhptTestCaseTest.php
│   │   │   │   └── RepeatedTestTest.php
│   │   │   ├── Fail
│   │   │   │   └── fail.phpt
│   │   │   ├── _files
│   │   │   │   ├── AbstractTest.php
│   │   │   │   ├── ArrayAccessible.php
│   │   │   │   ├── AssertionExample.php
│   │   │   │   ├── AssertionExampleTest.php
│   │   │   │   ├── Author.php
│   │   │   │   ├── BankAccount.php
│   │   │   │   ├── BankAccountTest2.php
│   │   │   │   ├── BankAccountTest.php
│   │   │   │   ├── BankAccountTest.test.php
│   │   │   │   ├── bar.xml
│   │   │   │   ├── 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
│   │   │   │   ├── configuration.colors.empty.xml
│   │   │   │   ├── configuration.colors.false.xml
│   │   │   │   ├── configuration.colors.invalid.xml
│   │   │   │   ├── configuration.colors.true.xml
│   │   │   │   ├── configuration.custom-printer.xml
│   │   │   │   ├── configuration_empty.xml
│   │   │   │   ├── configuration_stop_on_warning.xml
│   │   │   │   ├── configuration.suites.xml
│   │   │   │   ├── configuration_xinclude.xml
│   │   │   │   ├── configuration.xml
│   │   │   │   ├── CoverageClassExtendedTest.php
│   │   │   │   ├── CoverageClassTest.php
│   │   │   │   ├── CoverageFunctionParenthesesTest.php
│   │   │   │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│   │   │   │   ├── CoverageFunctionTest.php
│   │   │   │   ├── CoverageMethodOneLineAnnotationTest.php
│   │   │   │   ├── CoverageMethodParenthesesTest.php
│   │   │   │   ├── CoverageMethodParenthesesWhitespaceTest.php
│   │   │   │   ├── CoverageMethodTest.php
│   │   │   │   ├── CoverageNamespacedFunctionTest.php
│   │   │   │   ├── CoverageNoneTest.php
│   │   │   │   ├── CoverageNothingTest.php
│   │   │   │   ├── CoverageNotPrivateTest.php
│   │   │   │   ├── CoverageNotProtectedTest.php
│   │   │   │   ├── CoverageNotPublicTest.php
│   │   │   │   ├── CoveragePrivateTest.php
│   │   │   │   ├── CoverageProtectedTest.php
│   │   │   │   ├── CoveragePublicTest.php
│   │   │   │   ├── CoverageTwoDefaultClassAnnotations.php
│   │   │   │   ├── CoveredClass.php
│   │   │   │   ├── CoveredFunction.php
│   │   │   │   ├── CustomPrinter.php
│   │   │   │   ├── DataProviderDebugTest.php
│   │   │   │   ├── DataProviderDependencyTest.php
│   │   │   │   ├── DataProviderFilterTest.php
│   │   │   │   ├── DataProviderIncompleteTest.php
│   │   │   │   ├── DataProviderIssue2833
│   │   │   │   │   ├── FirstTest.php
│   │   │   │   │   └── SecondTest.php
│   │   │   │   ├── DataProviderIssue2859
│   │   │   │   │   ├── phpunit.xml
│   │   │   │   │   └── tests
│   │   │   │   │   └── another
│   │   │   │   │   └── TestWithDataProviderTest.php
│   │   │   │   ├── DataProviderIssue2922
│   │   │   │   │   ├── FirstTest.php
│   │   │   │   │   └── SecondTest.php
│   │   │   │   ├── DataProviderSkippedTest.php
│   │   │   │   ├── DataProviderTestDoxTest.php
│   │   │   │   ├── DataProviderTest.php
│   │   │   │   ├── DependencyFailureTest.php
│   │   │   │   ├── DependencySuccessTest.php
│   │   │   │   ├── DependencyTestSuite.php
│   │   │   │   ├── DoubleTestCase.php
│   │   │   │   ├── DummyException.php
│   │   │   │   ├── EmptyTestCaseTest.php
│   │   │   │   ├── ExceptionInAssertPostConditionsTest.php
│   │   │   │   ├── ExceptionInAssertPreConditionsTest.php
│   │   │   │   ├── ExceptionInSetUpTest.php
│   │   │   │   ├── ExceptionInTearDownTest.php
│   │   │   │   ├── ExceptionInTest.php
│   │   │   │   ├── ExceptionNamespaceTest.php
│   │   │   │   ├── ExceptionStackTest.php
│   │   │   │   ├── ExceptionTest.php
│   │   │   │   ├── expectedFileFormat.txt
│   │   │   │   ├── Failure.php
│   │   │   │   ├── FailureTest.php
│   │   │   │   ├── FatalTest.php
│   │   │   │   ├── foo.xml
│   │   │   │   ├── IgnoreCodeCoverageClass.php
│   │   │   │   ├── IgnoreCodeCoverageClassTest.php
│   │   │   │   ├── IncompleteTest.php
│   │   │   │   ├── Inheritance
│   │   │   │   │   ├── InheritanceA.php
│   │   │   │   │   └── InheritanceB.php
│   │   │   │   ├── InheritedTestCase.php
│   │   │   │   ├── IniTest.php
│   │   │   │   ├── IsolationTest.php
│   │   │   │   ├── JsonData
│   │   │   │   │   ├── arrayObject.json
│   │   │   │   │   └── simpleObject.json
│   │   │   │   ├── Mockable.php
│   │   │   │   ├── MockRunner.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
│   │   │   │   ├── NonStatic.php
│   │   │   │   ├── NoTestCaseClass.php
│   │   │   │   ├── NoTestCases.php
│   │   │   │   ├── NotExistingCoveredElementTest.php
│   │   │   │   ├── NothingTest.php
│   │   │   │   ├── NotPublicTestCase.php
│   │   │   │   ├── NotVoidTestCase.php
│   │   │   │   ├── OneTestCase.php
│   │   │   │   ├── OutputTestCase.php
│   │   │   │   ├── OverrideTestCase.php
│   │   │   │   ├── phpt-for-coverage.phpt
│   │   │   │   ├── phpt-xfail.phpt
│   │   │   │   ├── phpunit-example-extension
│   │   │   │   │   ├── phpunit.xml
│   │   │   │   │   ├── tests
│   │   │   │   │   │   └── OneTest.php
│   │   │   │   │   └── tools
│   │   │   │   │   └── phpunit.d
│   │   │   │   │   └── phpunit-example-extension-1.0.0.phar
│   │   │   │   ├── RequirementsClassBeforeClassHookTest.php
│   │   │   │   ├── RequirementsClassDocBlockTest.php
│   │   │   │   ├── RequirementsTest.php
│   │   │   │   ├── SampleArrayAccess.php
│   │   │   │   ├── SampleClass.php
│   │   │   │   ├── Singleton.php
│   │   │   │   ├── StackTest.php
│   │   │   │   ├── StatusTest.php
│   │   │   │   ├── StopOnWarningTestSuite.php
│   │   │   │   ├── StopsOnWarningTest.php
│   │   │   │   ├── Struct.php
│   │   │   │   ├── structureAttributesAreSameButValuesAreNot.xml
│   │   │   │   ├── structureExpected.xml
│   │   │   │   ├── structureIgnoreTextNodes.xml
│   │   │   │   ├── structureIsSameButDataIsNot.xml
│   │   │   │   ├── structureWrongNumberOfAttributes.xml
│   │   │   │   ├── structureWrongNumberOfNodes.xml
│   │   │   │   ├── Success.php
│   │   │   │   ├── TemplateMethodsTest.php
│   │   │   │   ├── TestAutoreferenced.php
│   │   │   │   ├── TestDoxGroupTest.php
│   │   │   │   ├── TestGeneratorMaker.php
│   │   │   │   ├── TestIncomplete.php
│   │   │   │   ├── TestIterator2.php
│   │   │   │   ├── TestIterator.php
│   │   │   │   ├── TestSkipped.php
│   │   │   │   ├── TestTestError.php
│   │   │   │   ├── TestWithTest.php
│   │   │   │   ├── ThrowExceptionTestCase.php
│   │   │   │   ├── ThrowNoExceptionTestCase.php
│   │   │   │   └── WasRun.php
│   │   │   ├── Framework
│   │   │   │   ├── AssertTest.php
│   │   │   │   ├── BaseTestListenerTest.php
│   │   │   │   ├── Constraint
│   │   │   │   │   ├── ArraySubsetTest.php
│   │   │   │   │   ├── CountTest.php
│   │   │   │   │   ├── ExceptionMessageRegExpTest.php
│   │   │   │   │   ├── ExceptionMessageTest.php
│   │   │   │   │   ├── IsJsonTest.php
│   │   │   │   │   ├── JsonMatches
│   │   │   │   │   │   └── ErrorMessageProviderTest.php
│   │   │   │   │   └── JsonMatchesTest.php
│   │   │   │   ├── ConstraintTest.php
│   │   │   │   ├── SuiteTest.php
│   │   │   │   ├── TestCaseTest.php
│   │   │   │   ├── TestFailureTest.php
│   │   │   │   ├── TestImplementorTest.php
│   │   │   │   └── TestListenerTest.php
│   │   │   ├── Regression
│   │   │   │   ├── GitHub
│   │   │   │   │   ├── 1149
│   │   │   │   │   │   └── Issue1149Test.php
│   │   │   │   │   ├── 1149.phpt
│   │   │   │   │   ├── 1216
│   │   │   │   │   │   ├── bootstrap1216.php
│   │   │   │   │   │   ├── Issue1216Test.php
│   │   │   │   │   │   └── phpunit1216.xml
│   │   │   │   │   ├── 1216.phpt
│   │   │   │   │   ├── 1265
│   │   │   │   │   │   ├── Issue1265Test.php
│   │   │   │   │   │   └── phpunit1265.xml
│   │   │   │   │   ├── 1265.phpt
│   │   │   │   │   ├── 1330
│   │   │   │   │   │   ├── Issue1330Test.php
│   │   │   │   │   │   └── phpunit1330.xml
│   │   │   │   │   ├── 1330.phpt
│   │   │   │   │   ├── 1335
│   │   │   │   │   │   ├── bootstrap1335.php
│   │   │   │   │   │   └── Issue1335Test.php
│   │   │   │   │   ├── 1335.phpt
│   │   │   │   │   ├── 1337
│   │   │   │   │   │   └── Issue1337Test.php
│   │   │   │   │   ├── 1337.phpt
│   │   │   │   │   ├── 1348
│   │   │   │   │   │   └── Issue1348Test.php
│   │   │   │   │   ├── 1348.phpt
│   │   │   │   │   ├── 1351
│   │   │   │   │   │   ├── ChildProcessClass1351.php
│   │   │   │   │   │   └── Issue1351Test.php
│   │   │   │   │   ├── 1351.phpt
│   │   │   │   │   ├── 1374
│   │   │   │   │   │   └── Issue1374Test.php
│   │   │   │   │   ├── 1374.phpt
│   │   │   │   │   ├── 1437
│   │   │   │   │   │   └── Issue1437Test.php
│   │   │   │   │   ├── 1437.phpt
│   │   │   │   │   ├── 1468
│   │   │   │   │   │   └── Issue1468Test.php
│   │   │   │   │   ├── 1468.phpt
│   │   │   │   │   ├── 1471
│   │   │   │   │   │   └── Issue1471Test.php
│   │   │   │   │   ├── 1471.phpt
│   │   │   │   │   ├── 1472
│   │   │   │   │   │   └── Issue1472Test.php
│   │   │   │   │   ├── 1472.phpt
│   │   │   │   │   ├── 1570
│   │   │   │   │   │   └── Issue1570Test.php
│   │   │   │   │   ├── 1570.phpt
│   │   │   │   │   ├── 2137
│   │   │   │   │   │   └── Issue2137Test.php
│   │   │   │   │   ├── 2137-filter.phpt
│   │   │   │   │   ├── 2137-no_filter.phpt
│   │   │   │   │   ├── 2145
│   │   │   │   │   │   └── Issue2145Test.php
│   │   │   │   │   ├── 2145.phpt
│   │   │   │   │   ├── 2158
│   │   │   │   │   │   ├── constant.inc
│   │   │   │   │   │   └── Issue2158Test.php
│   │   │   │   │   ├── 2158.phpt
│   │   │   │   │   ├── 2299
│   │   │   │   │   │   └── Issue2299Test.php
│   │   │   │   │   ├── 2366
│   │   │   │   │   │   └── Issue2366Test.php
│   │   │   │   │   ├── 2366.phpt
│   │   │   │   │   ├── 2380
│   │   │   │   │   │   └── Issue2380Test.php
│   │   │   │   │   ├── 2380.phpt
│   │   │   │   │   ├── 2382
│   │   │   │   │   │   └── Issue2382Test.php
│   │   │   │   │   ├── 2382.phpt
│   │   │   │   │   ├── 2435
│   │   │   │   │   │   └── Issue2435Test.php
│   │   │   │   │   ├── 2435.phpt
│   │   │   │   │   ├── 244
│   │   │   │   │   │   └── Issue244Test.php
│   │   │   │   │   ├── 244.phpt
│   │   │   │   │   ├── 2731
│   │   │   │   │   │   └── Issue2731Test.php
│   │   │   │   │   ├── 2731.phpt
│   │   │   │   │   ├── 2758
│   │   │   │   │   │   ├── Issue2758TestListener.php
│   │   │   │   │   │   ├── Issue2758Test.php
│   │   │   │   │   │   └── phpunit.xml
│   │   │   │   │   ├── 2758.phpt
│   │   │   │   │   ├── 2811
│   │   │   │   │   │   └── Issue2811Test.php
│   │   │   │   │   ├── 2811.phpt
│   │   │   │   │   ├── 2972
│   │   │   │   │   │   ├── issue-2972-test.phpt
│   │   │   │   │   │   └── unconventiallyNamedIssue2972Test.php
│   │   │   │   │   ├── 2972.phpt
│   │   │   │   │   ├── 322
│   │   │   │   │   │   ├── Issue322Test.php
│   │   │   │   │   │   └── phpunit322.xml
│   │   │   │   │   ├── 322.phpt
│   │   │   │   │   ├── 433
│   │   │   │   │   │   └── Issue433Test.php
│   │   │   │   │   ├── 433.phpt
│   │   │   │   │   ├── 445
│   │   │   │   │   │   └── Issue445Test.php
│   │   │   │   │   ├── 445.phpt
│   │   │   │   │   ├── 498
│   │   │   │   │   │   └── Issue498Test.php
│   │   │   │   │   ├── 498.phpt
│   │   │   │   │   ├── 503
│   │   │   │   │   │   └── Issue503Test.php
│   │   │   │   │   ├── 503.phpt
│   │   │   │   │   ├── 581
│   │   │   │   │   │   └── Issue581Test.php
│   │   │   │   │   ├── 581.phpt
│   │   │   │   │   ├── 74
│   │   │   │   │   │   ├── Issue74Test.php
│   │   │   │   │   │   └── NewException.php
│   │   │   │   │   ├── 74.phpt
│   │   │   │   │   ├── 765
│   │   │   │   │   │   └── Issue765Test.php
│   │   │   │   │   ├── 765.phpt
│   │   │   │   │   ├── 797
│   │   │   │   │   │   ├── bootstrap797.php
│   │   │   │   │   │   └── Issue797Test.php
│   │   │   │   │   ├── 797.phpt
│   │   │   │   │   ├── 863.phpt
│   │   │   │   │   ├── 873
│   │   │   │   │   │   └── Issue873Test.php
│   │   │   │   │   ├── 873-php5.phpt
│   │   │   │   │   └── 873-php7.phpt
│   │   │   │   └── Trac
│   │   │   │   ├── 1021
│   │   │   │   │   └── Issue1021Test.php
│   │   │   │   ├── 1021.phpt
│   │   │   │   ├── 523
│   │   │   │   │   └── Issue523Test.php
│   │   │   │   ├── 523.phpt
│   │   │   │   ├── 578
│   │   │   │   │   └── Issue578Test.php
│   │   │   │   ├── 578.phpt
│   │   │   │   ├── 684
│   │   │   │   │   └── Issue684Test.php
│   │   │   │   ├── 684.phpt
│   │   │   │   ├── 783
│   │   │   │   │   ├── ChildSuite.php
│   │   │   │   │   ├── OneTest.php
│   │   │   │   │   ├── ParentSuite.php
│   │   │   │   │   └── TwoTest.php
│   │   │   │   └── 783.phpt
│   │   │   ├── Runner
│   │   │   │   └── BaseTestRunnerTest.php
│   │   │   ├── TextUI
│   │   │   │   ├── abstract-test-class.phpt
│   │   │   │   ├── 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-issue-2833.phpt
│   │   │   │   ├── dataprovider-issue-2859.phpt
│   │   │   │   ├── dataprovider-issue-2922.phpt
│   │   │   │   ├── dataprovider-log-xml-isolation.phpt
│   │   │   │   ├── dataprovider-log-xml.phpt
│   │   │   │   ├── dataprovider-testdox.phpt
│   │   │   │   ├── debug.phpt
│   │   │   │   ├── default-isolation.phpt
│   │   │   │   ├── default.phpt
│   │   │   │   ├── dependencies2-isolation.phpt
│   │   │   │   ├── dependencies2.phpt
│   │   │   │   ├── dependencies3-isolation.phpt
│   │   │   │   ├── dependencies3.phpt
│   │   │   │   ├── dependencies-clone.phpt
│   │   │   │   ├── dependencies-isolation.phpt
│   │   │   │   ├── dependencies.phpt
│   │   │   │   ├── disable-code-coverage-ignore.phpt
│   │   │   │   ├── empty-testcase.phpt
│   │   │   │   ├── exception-stack.phpt
│   │   │   │   ├── exclude-group-isolation.phpt
│   │   │   │   ├── exclude-group.phpt
│   │   │   │   ├── failure-isolation.phpt
│   │   │   │   ├── failure.phpt
│   │   │   │   ├── failure-reverse-list.phpt
│   │   │   │   ├── fatal-isolation.phpt
│   │   │   │   ├── _files
│   │   │   │   │   ├── expect_external.txt
│   │   │   │   │   ├── phpt-env.expected.txt
│   │   │   │   │   └── phpt_external.php
│   │   │   │   ├── filter-class-isolation.phpt
│   │   │   │   ├── filter-class.phpt
│   │   │   │   ├── filter-dataprovider-by-classname-and-range-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-classname-and-range.phpt
│   │   │   │   ├── filter-dataprovider-by-number-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-number.phpt
│   │   │   │   ├── filter-dataprovider-by-only-range-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-only-range.phpt
│   │   │   │   ├── filter-dataprovider-by-only-regexp-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-only-regexp.phpt
│   │   │   │   ├── filter-dataprovider-by-only-string-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-only-string.phpt
│   │   │   │   ├── filter-dataprovider-by-range-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-range.phpt
│   │   │   │   ├── filter-dataprovider-by-regexp-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-regexp.phpt
│   │   │   │   ├── filter-dataprovider-by-string-isolation.phpt
│   │   │   │   ├── filter-dataprovider-by-string.phpt
│   │   │   │   ├── filter-method-case-insensitive.phpt
│   │   │   │   ├── filter-method-case-sensitive-no-result.phpt
│   │   │   │   ├── filter-method-isolation.phpt
│   │   │   │   ├── filter-method.phpt
│   │   │   │   ├── filter-no-results.phpt
│   │   │   │   ├── forward-compatibility.phpt
│   │   │   │   ├── group-isolation.phpt
│   │   │   │   ├── group.phpt
│   │   │   │   ├── help2.phpt
│   │   │   │   ├── help.phpt
│   │   │   │   ├── ini-isolation.phpt
│   │   │   │   ├── list-groups.phpt
│   │   │   │   ├── list-suites.phpt
│   │   │   │   ├── log-json-post-66021.phpt
│   │   │   │   ├── log-junit.phpt
│   │   │   │   ├── log-tap.phpt
│   │   │   │   ├── log-teamcity.phpt
│   │   │   │   ├── mycommand.phpt
│   │   │   │   ├── options-after-arguments.phpt
│   │   │   │   ├── output-isolation.phpt
│   │   │   │   ├── phar-extension.phpt
│   │   │   │   ├── phar-extension-suppressed.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
│   │   │   │   ├── tap.phpt
│   │   │   │   ├── teamcity-inner-exceptions.phpt
│   │   │   │   ├── teamcity.phpt
│   │   │   │   ├── testdox-exclude-group.phpt
│   │   │   │   ├── testdox-group.phpt
│   │   │   │   ├── testdox-html.phpt
│   │   │   │   ├── testdox.phpt
│   │   │   │   ├── testdox-text.phpt
│   │   │   │   ├── testdox-xml.phpt
│   │   │   │   ├── test-suffix-multiple.phpt
│   │   │   │   └── test-suffix-single.phpt
│   │   │   └── Util
│   │   │   ├── ConfigurationTest.php
│   │   │   ├── GetoptTest.php
│   │   │   ├── GlobalStateTest.php
│   │   │   ├── PHPTest.php
│   │   │   ├── RegexTest.php
│   │   │   ├── TestDox
│   │   │   │   └── NamePrettifierTest.php
│   │   │   ├── TestTest.php
│   │   │   └── XMLTest.php
│   │   └── phpunit-mock-objects
│   │   ├── build.xml
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── LICENSE
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Framework
│   │   │   └── MockObject
│   │   │   ├── Builder
│   │   │   │   ├── Identity.php
│   │   │   │   ├── InvocationMocker.php
│   │   │   │   ├── Match.php
│   │   │   │   ├── MethodNameMatch.php
│   │   │   │   ├── Namespace.php
│   │   │   │   ├── ParametersMatch.php
│   │   │   │   └── Stub.php
│   │   │   ├── Exception
│   │   │   │   ├── BadMethodCallException.php
│   │   │   │   ├── Exception.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Generator
│   │   │   │   ├── deprecation.tpl.dist
│   │   │   │   ├── mocked_class_method.tpl.dist
│   │   │   │   ├── mocked_class.tpl.dist
│   │   │   │   ├── mocked_clone.tpl.dist
│   │   │   │   ├── mocked_method.tpl.dist
│   │   │   │   ├── mocked_method_void.tpl.dist
│   │   │   │   ├── mocked_static_method.tpl.dist
│   │   │   │   ├── proxied_method.tpl.dist
│   │   │   │   ├── proxied_method_void.tpl.dist
│   │   │   │   ├── trait_class.tpl.dist
│   │   │   │   ├── unmocked_clone.tpl.dist
│   │   │   │   ├── wsdl_class.tpl.dist
│   │   │   │   └── wsdl_method.tpl.dist
│   │   │   ├── Generator.php
│   │   │   ├── Invocation
│   │   │   │   ├── Object.php
│   │   │   │   └── Static.php
│   │   │   ├── InvocationMocker.php
│   │   │   ├── Invocation.php
│   │   │   ├── Invokable.php
│   │   │   ├── Matcher
│   │   │   │   ├── AnyInvokedCount.php
│   │   │   │   ├── AnyParameters.php
│   │   │   │   ├── ConsecutiveParameters.php
│   │   │   │   ├── Invocation.php
│   │   │   │   ├── InvokedAtIndex.php
│   │   │   │   ├── InvokedAtLeastCount.php
│   │   │   │   ├── InvokedAtLeastOnce.php
│   │   │   │   ├── InvokedAtMostCount.php
│   │   │   │   ├── InvokedCount.php
│   │   │   │   ├── InvokedRecorder.php
│   │   │   │   ├── MethodName.php
│   │   │   │   ├── Parameters.php
│   │   │   │   └── StatelessInvocation.php
│   │   │   ├── Matcher.php
│   │   │   ├── MockBuilder.php
│   │   │   ├── MockObject.php
│   │   │   ├── Stub
│   │   │   │   ├── ConsecutiveCalls.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── MatcherCollection.php
│   │   │   │   ├── ReturnArgument.php
│   │   │   │   ├── ReturnCallback.php
│   │   │   │   ├── Return.php
│   │   │   │   ├── ReturnReference.php
│   │   │   │   ├── ReturnSelf.php
│   │   │   │   └── ReturnValueMap.php
│   │   │   ├── Stub.php
│   │   │   └── Verifiable.php
│   │   └── tests
│   │   ├── bootstrap.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
│   │   │   ├── MethodCallbackByReference.php
│   │   │   ├── MethodCallback.php
│   │   │   ├── Mockable.php
│   │   │   ├── MockTestInterface.php
│   │   │   ├── PartialMockTestClass.php
│   │   │   ├── SingletonClass.php
│   │   │   ├── SomeClass.php
│   │   │   ├── StaticMockTestClass.php
│   │   │   ├── StringableClass.php
│   │   │   └── TraversableMockTestInterface.php
│   │   ├── GeneratorTest.php
│   │   ├── MockBuilderTest.php
│   │   ├── MockObject
│   │   │   ├── Builder
│   │   │   │   └── InvocationMockerTest.php
│   │   │   ├── class_with_deprecated_method.phpt
│   │   │   ├── Generator
│   │   │   │   ├── 232.phpt
│   │   │   │   ├── abstract_class.phpt
│   │   │   │   ├── class_call_parent_clone.phpt
│   │   │   │   ├── class_call_parent_constructor.phpt
│   │   │   │   ├── class_dont_call_parent_clone.phpt
│   │   │   │   ├── class_dont_call_parent_constructor.phpt
│   │   │   │   ├── class_implementing_interface_call_parent_constructor.phpt
│   │   │   │   ├── class_implementing_interface_dont_call_parent_constructor.phpt
│   │   │   │   ├── class_partial.phpt
│   │   │   │   ├── class.phpt
│   │   │   │   ├── class_with_method_named_method.phpt
│   │   │   │   ├── class_with_method_with_variadic_arguments.phpt
│   │   │   │   ├── interface.phpt
│   │   │   │   ├── invocation_object_clone_object.phpt
│   │   │   │   ├── namespaced_class_call_parent_clone.phpt
│   │   │   │   ├── namespaced_class_call_parent_constructor.phpt
│   │   │   │   ├── namespaced_class_dont_call_parent_clone.phpt
│   │   │   │   ├── namespaced_class_dont_call_parent_constructor.phpt
│   │   │   │   ├── namespaced_class_implementing_interface_call_parent_constructor.phpt
│   │   │   │   ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt
│   │   │   │   ├── namespaced_class_partial.phpt
│   │   │   │   ├── namespaced_class.phpt
│   │   │   │   ├── namespaced_interface.phpt
│   │   │   │   ├── nonexistent_class.phpt
│   │   │   │   ├── nonexistent_class_with_namespace.phpt
│   │   │   │   ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│   │   │   │   ├── nullable_types.phpt
│   │   │   │   ├── proxy.phpt
│   │   │   │   ├── return_type_declarations_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_namespace.phpt
│   │   │   │   ├── wsdl_class_partial.phpt
│   │   │   │   └── wsdl_class.phpt
│   │   │   ├── Invocation
│   │   │   │   ├── ObjectTest.php
│   │   │   │   └── StaticTest.php
│   │   │   └── Matcher
│   │   │   └── ConsecutiveParametersTest.php
│   │   ├── MockObjectTest.php
│   │   └── ProxyObjectTest.php
│   ├── predis
│   │   └── predis
│   │   ├── autoload.php
│   │   ├── bin
│   │   │   ├── create-command-test
│   │   │   ├── create-pear
│   │   │   ├── create-phar
│   │   │   └── create-single-file
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── examples
│   │   │   ├── custom_cluster_distributor.php
│   │   │   ├── debuggable_connection.php
│   │   │   ├── dispatcher_loop.php
│   │   │   ├── executing_redis_commands.php
│   │   │   ├── key_prefixing.php
│   │   │   ├── lua_scripting_abstraction.php
│   │   │   ├── monitor_consumer.php
│   │   │   ├── pipelining_commands.php
│   │   │   ├── pubsub_consumer.php
│   │   │   ├── redis_collections_iterators.php
│   │   │   ├── replication_complex.php
│   │   │   ├── replication_sentinel.php
│   │   │   ├── replication_simple.php
│   │   │   ├── session_handler.php
│   │   │   ├── shared.php
│   │   │   └── transaction_using_cas.php
│   │   ├── FAQ.md
│   │   ├── LICENSE
│   │   ├── package.ini
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── Autoloader.php
│   │   │   ├── ClientContextInterface.php
│   │   │   ├── ClientException.php
│   │   │   ├── ClientInterface.php
│   │   │   ├── Client.php
│   │   │   ├── Cluster
│   │   │   │   ├── ClusterStrategy.php
│   │   │   │   ├── Distributor
│   │   │   │   │   ├── DistributorInterface.php
│   │   │   │   │   ├── EmptyRingException.php
│   │   │   │   │   ├── HashRing.php
│   │   │   │   │   └── KetamaRing.php
│   │   │   │   ├── Hash
│   │   │   │   │   ├── CRC16.php
│   │   │   │   │   └── HashGeneratorInterface.php
│   │   │   │   ├── PredisStrategy.php
│   │   │   │   ├── RedisStrategy.php
│   │   │   │   └── StrategyInterface.php
│   │   │   ├── Collection
│   │   │   │   └── Iterator
│   │   │   │   ├── CursorBasedIterator.php
│   │   │   │   ├── HashKey.php
│   │   │   │   ├── Keyspace.php
│   │   │   │   ├── ListKey.php
│   │   │   │   ├── SetKey.php
│   │   │   │   └── SortedSetKey.php
│   │   │   ├── Command
│   │   │   │   ├── CommandInterface.php
│   │   │   │   ├── Command.php
│   │   │   │   ├── ConnectionAuth.php
│   │   │   │   ├── ConnectionEcho.php
│   │   │   │   ├── ConnectionPing.php
│   │   │   │   ├── ConnectionQuit.php
│   │   │   │   ├── ConnectionSelect.php
│   │   │   │   ├── GeospatialGeoAdd.php
│   │   │   │   ├── GeospatialGeoDist.php
│   │   │   │   ├── GeospatialGeoHash.php
│   │   │   │   ├── GeospatialGeoPos.php
│   │   │   │   ├── GeospatialGeoRadiusByMember.php
│   │   │   │   ├── GeospatialGeoRadius.php
│   │   │   │   ├── HashDelete.php
│   │   │   │   ├── HashExists.php
│   │   │   │   ├── HashGetAll.php
│   │   │   │   ├── HashGetMultiple.php
│   │   │   │   ├── HashGet.php
│   │   │   │   ├── HashIncrementByFloat.php
│   │   │   │   ├── HashIncrementBy.php
│   │   │   │   ├── HashKeys.php
│   │   │   │   ├── HashLength.php
│   │   │   │   ├── HashScan.php
│   │   │   │   ├── HashSetMultiple.php
│   │   │   │   ├── HashSet.php
│   │   │   │   ├── HashSetPreserve.php
│   │   │   │   ├── HashStringLength.php
│   │   │   │   ├── HashValues.php
│   │   │   │   ├── HyperLogLogAdd.php
│   │   │   │   ├── HyperLogLogCount.php
│   │   │   │   ├── HyperLogLogMerge.php
│   │   │   │   ├── KeyDelete.php
│   │   │   │   ├── KeyDump.php
│   │   │   │   ├── KeyExists.php
│   │   │   │   ├── KeyExpireAt.php
│   │   │   │   ├── KeyExpire.php
│   │   │   │   ├── KeyKeys.php
│   │   │   │   ├── KeyMigrate.php
│   │   │   │   ├── KeyMove.php
│   │   │   │   ├── KeyPersist.php
│   │   │   │   ├── KeyPreciseExpireAt.php
│   │   │   │   ├── KeyPreciseExpire.php
│   │   │   │   ├── KeyPreciseTimeToLive.php
│   │   │   │   ├── KeyRandom.php
│   │   │   │   ├── KeyRename.php
│   │   │   │   ├── KeyRenamePreserve.php
│   │   │   │   ├── KeyRestore.php
│   │   │   │   ├── KeyScan.php
│   │   │   │   ├── KeySort.php
│   │   │   │   ├── KeyTimeToLive.php
│   │   │   │   ├── KeyType.php
│   │   │   │   ├── ListIndex.php
│   │   │   │   ├── ListInsert.php
│   │   │   │   ├── ListLength.php
│   │   │   │   ├── ListPopFirstBlocking.php
│   │   │   │   ├── ListPopFirst.php
│   │   │   │   ├── ListPopLastBlocking.php
│   │   │   │   ├── ListPopLast.php
│   │   │   │   ├── ListPopLastPushHeadBlocking.php
│   │   │   │   ├── ListPopLastPushHead.php
│   │   │   │   ├── ListPushHead.php
│   │   │   │   ├── ListPushHeadX.php
│   │   │   │   ├── ListPushTail.php
│   │   │   │   ├── ListPushTailX.php
│   │   │   │   ├── ListRange.php
│   │   │   │   ├── ListRemove.php
│   │   │   │   ├── ListSet.php
│   │   │   │   ├── ListTrim.php
│   │   │   │   ├── PrefixableCommandInterface.php
│   │   │   │   ├── Processor
│   │   │   │   │   ├── KeyPrefixProcessor.php
│   │   │   │   │   ├── ProcessorChain.php
│   │   │   │   │   └── ProcessorInterface.php
│   │   │   │   ├── PubSubPublish.php
│   │   │   │   ├── PubSubPubsub.php
│   │   │   │   ├── PubSubSubscribeByPattern.php
│   │   │   │   ├── PubSubSubscribe.php
│   │   │   │   ├── PubSubUnsubscribeByPattern.php
│   │   │   │   ├── PubSubUnsubscribe.php
│   │   │   │   ├── RawCommand.php
│   │   │   │   ├── ScriptCommand.php
│   │   │   │   ├── ServerBackgroundRewriteAOF.php
│   │   │   │   ├── ServerBackgroundSave.php
│   │   │   │   ├── ServerClient.php
│   │   │   │   ├── ServerCommand.php
│   │   │   │   ├── ServerConfig.php
│   │   │   │   ├── ServerDatabaseSize.php
│   │   │   │   ├── ServerEval.php
│   │   │   │   ├── ServerEvalSHA.php
│   │   │   │   ├── ServerFlushAll.php
│   │   │   │   ├── ServerFlushDatabase.php
│   │   │   │   ├── ServerInfo.php
│   │   │   │   ├── ServerInfoV26x.php
│   │   │   │   ├── ServerLastSave.php
│   │   │   │   ├── ServerMonitor.php
│   │   │   │   ├── ServerObject.php
│   │   │   │   ├── ServerSave.php
│   │   │   │   ├── ServerScript.php
│   │   │   │   ├── ServerSentinel.php
│   │   │   │   ├── ServerShutdown.php
│   │   │   │   ├── ServerSlaveOf.php
│   │   │   │   ├── ServerSlowlog.php
│   │   │   │   ├── ServerTime.php
│   │   │   │   ├── SetAdd.php
│   │   │   │   ├── SetCardinality.php
│   │   │   │   ├── SetDifference.php
│   │   │   │   ├── SetDifferenceStore.php
│   │   │   │   ├── SetIntersection.php
│   │   │   │   ├── SetIntersectionStore.php
│   │   │   │   ├── SetIsMember.php
│   │   │   │   ├── SetMembers.php
│   │   │   │   ├── SetMove.php
│   │   │   │   ├── SetPop.php
│   │   │   │   ├── SetRandomMember.php
│   │   │   │   ├── SetRemove.php
│   │   │   │   ├── SetScan.php
│   │   │   │   ├── SetUnion.php
│   │   │   │   ├── SetUnionStore.php
│   │   │   │   ├── StringAppend.php
│   │   │   │   ├── StringBitCount.php
│   │   │   │   ├── StringBitField.php
│   │   │   │   ├── StringBitOp.php
│   │   │   │   ├── StringBitPos.php
│   │   │   │   ├── StringDecrementBy.php
│   │   │   │   ├── StringDecrement.php
│   │   │   │   ├── StringGetBit.php
│   │   │   │   ├── StringGetMultiple.php
│   │   │   │   ├── StringGet.php
│   │   │   │   ├── StringGetRange.php
│   │   │   │   ├── StringGetSet.php
│   │   │   │   ├── StringIncrementByFloat.php
│   │   │   │   ├── StringIncrementBy.php
│   │   │   │   ├── StringIncrement.php
│   │   │   │   ├── StringPreciseSetExpire.php
│   │   │   │   ├── StringSetBit.php
│   │   │   │   ├── StringSetExpire.php
│   │   │   │   ├── StringSetMultiple.php
│   │   │   │   ├── StringSetMultiplePreserve.php
│   │   │   │   ├── StringSet.php
│   │   │   │   ├── StringSetPreserve.php
│   │   │   │   ├── StringSetRange.php
│   │   │   │   ├── StringStrlen.php
│   │   │   │   ├── StringSubstr.php
│   │   │   │   ├── TransactionDiscard.php
│   │   │   │   ├── TransactionExec.php
│   │   │   │   ├── TransactionMulti.php
│   │   │   │   ├── TransactionUnwatch.php
│   │   │   │   ├── TransactionWatch.php
│   │   │   │   ├── ZSetAdd.php
│   │   │   │   ├── ZSetCardinality.php
│   │   │   │   ├── ZSetCount.php
│   │   │   │   ├── ZSetIncrementBy.php
│   │   │   │   ├── ZSetIntersectionStore.php
│   │   │   │   ├── ZSetLexCount.php
│   │   │   │   ├── ZSetRangeByLex.php
│   │   │   │   ├── ZSetRangeByScore.php
│   │   │   │   ├── ZSetRange.php
│   │   │   │   ├── ZSetRank.php
│   │   │   │   ├── ZSetRemove.php
│   │   │   │   ├── ZSetRemoveRangeByLex.php
│   │   │   │   ├── ZSetRemoveRangeByRank.php
│   │   │   │   ├── ZSetRemoveRangeByScore.php
│   │   │   │   ├── ZSetReverseRangeByLex.php
│   │   │   │   ├── ZSetReverseRangeByScore.php
│   │   │   │   ├── ZSetReverseRange.php
│   │   │   │   ├── ZSetReverseRank.php
│   │   │   │   ├── ZSetScan.php
│   │   │   │   ├── ZSetScore.php
│   │   │   │   └── ZSetUnionStore.php
│   │   │   ├── CommunicationException.php
│   │   │   ├── Configuration
│   │   │   │   ├── ClusterOption.php
│   │   │   │   ├── ConnectionFactoryOption.php
│   │   │   │   ├── ExceptionsOption.php
│   │   │   │   ├── OptionInterface.php
│   │   │   │   ├── OptionsInterface.php
│   │   │   │   ├── Options.php
│   │   │   │   ├── PrefixOption.php
│   │   │   │   ├── ProfileOption.php
│   │   │   │   └── ReplicationOption.php
│   │   │   ├── Connection
│   │   │   │   ├── AbstractConnection.php
│   │   │   │   ├── Aggregate
│   │   │   │   │   ├── ClusterInterface.php
│   │   │   │   │   ├── MasterSlaveReplication.php
│   │   │   │   │   ├── PredisCluster.php
│   │   │   │   │   ├── RedisCluster.php
│   │   │   │   │   ├── ReplicationInterface.php
│   │   │   │   │   └── SentinelReplication.php
│   │   │   │   ├── AggregateConnectionInterface.php
│   │   │   │   ├── CompositeConnectionInterface.php
│   │   │   │   ├── CompositeStreamConnection.php
│   │   │   │   ├── ConnectionException.php
│   │   │   │   ├── ConnectionInterface.php
│   │   │   │   ├── FactoryInterface.php
│   │   │   │   ├── Factory.php
│   │   │   │   ├── NodeConnectionInterface.php
│   │   │   │   ├── ParametersInterface.php
│   │   │   │   ├── Parameters.php
│   │   │   │   ├── PhpiredisSocketConnection.php
│   │   │   │   ├── PhpiredisStreamConnection.php
│   │   │   │   ├── StreamConnection.php
│   │   │   │   └── WebdisConnection.php
│   │   │   ├── Monitor
│   │   │   │   └── Consumer.php
│   │   │   ├── NotSupportedException.php
│   │   │   ├── Pipeline
│   │   │   │   ├── Atomic.php
│   │   │   │   ├── ConnectionErrorProof.php
│   │   │   │   ├── FireAndForget.php
│   │   │   │   └── Pipeline.php
│   │   │   ├── PredisException.php
│   │   │   ├── Profile
│   │   │   │   ├── Factory.php
│   │   │   │   ├── ProfileInterface.php
│   │   │   │   ├── RedisProfile.php
│   │   │   │   ├── RedisUnstable.php
│   │   │   │   ├── RedisVersion200.php
│   │   │   │   ├── RedisVersion220.php
│   │   │   │   ├── RedisVersion240.php
│   │   │   │   ├── RedisVersion260.php
│   │   │   │   ├── RedisVersion280.php
│   │   │   │   ├── RedisVersion300.php
│   │   │   │   └── RedisVersion320.php
│   │   │   ├── Protocol
│   │   │   │   ├── ProtocolException.php
│   │   │   │   ├── ProtocolProcessorInterface.php
│   │   │   │   ├── RequestSerializerInterface.php
│   │   │   │   ├── ResponseReaderInterface.php
│   │   │   │   └── Text
│   │   │   │   ├── CompositeProtocolProcessor.php
│   │   │   │   ├── Handler
│   │   │   │   │   ├── BulkResponse.php
│   │   │   │   │   ├── ErrorResponse.php
│   │   │   │   │   ├── IntegerResponse.php
│   │   │   │   │   ├── MultiBulkResponse.php
│   │   │   │   │   ├── ResponseHandlerInterface.php
│   │   │   │   │   ├── StatusResponse.php
│   │   │   │   │   └── StreamableMultiBulkResponse.php
│   │   │   │   ├── ProtocolProcessor.php
│   │   │   │   ├── RequestSerializer.php
│   │   │   │   └── ResponseReader.php
│   │   │   ├── PubSub
│   │   │   │   ├── AbstractConsumer.php
│   │   │   │   ├── Consumer.php
│   │   │   │   └── DispatcherLoop.php
│   │   │   ├── Replication
│   │   │   │   ├── MissingMasterException.php
│   │   │   │   ├── ReplicationStrategy.php
│   │   │   │   └── RoleException.php
│   │   │   ├── Response
│   │   │   │   ├── ErrorInterface.php
│   │   │   │   ├── Error.php
│   │   │   │   ├── Iterator
│   │   │   │   │   ├── MultiBulkIterator.php
│   │   │   │   │   ├── MultiBulk.php
│   │   │   │   │   └── MultiBulkTuple.php
│   │   │   │   ├── ResponseInterface.php
│   │   │   │   ├── ServerException.php
│   │   │   │   └── Status.php
│   │   │   ├── Session
│   │   │   │   └── Handler.php
│   │   │   └── Transaction
│   │   │   ├── AbortedMultiExecException.php
│   │   │   ├── MultiExec.php
│   │   │   └── MultiExecState.php
│   │   └── VERSION
│   ├── psr
│   │   └── log
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── Psr
│   │   │   └── Log
│   │   │   ├── AbstractLogger.php
│   │   │   ├── InvalidArgumentException.php
│   │   │   ├── LoggerAwareInterface.php
│   │   │   ├── LoggerAwareTrait.php
│   │   │   ├── LoggerInterface.php
│   │   │   ├── LoggerTrait.php
│   │   │   ├── LogLevel.php
│   │   │   ├── NullLogger.php
│   │   │   └── Test
│   │   │   └── LoggerInterfaceTest.php
│   │   └── README.md
│   ├── psy
│   │   └── psysh
│   │   ├── bin
│   │   │   ├── build
│   │   │   ├── build-manual
│   │   │   ├── build-phar
│   │   │   ├── build-vendor
│   │   │   ├── build-vendor-compat
│   │   │   ├── package
│   │   │   └── psysh
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── src
│   │   │   └── Psy
│   │   │   ├── Autoloader.php
│   │   │   ├── CodeCleaner
│   │   │   │   ├── AbstractClassPass.php
│   │   │   │   ├── AssignThisVariablePass.php
│   │   │   │   ├── CalledClassPass.php
│   │   │   │   ├── CallTimePassByReferencePass.php
│   │   │   │   ├── CodeCleanerPass.php
│   │   │   │   ├── ExitPass.php
│   │   │   │   ├── FinalClassPass.php
│   │   │   │   ├── FunctionContextPass.php
│   │   │   │   ├── FunctionReturnInWriteContextPass.php
│   │   │   │   ├── ImplicitReturnPass.php
│   │   │   │   ├── InstanceOfPass.php
│   │   │   │   ├── LeavePsyshAlonePass.php
│   │   │   │   ├── LegacyEmptyPass.php
│   │   │   │   ├── LoopContextPass.php
│   │   │   │   ├── MagicConstantsPass.php
│   │   │   │   ├── NamespaceAwarePass.php
│   │   │   │   ├── NamespacePass.php
│   │   │   │   ├── NoReturnValue.php
│   │   │   │   ├── PassableByReferencePass.php
│   │   │   │   ├── RequirePass.php
│   │   │   │   ├── StaticConstructorPass.php
│   │   │   │   ├── StrictTypesPass.php
│   │   │   │   ├── UseStatementPass.php
│   │   │   │   ├── ValidClassNamePass.php
│   │   │   │   ├── ValidConstantPass.php
│   │   │   │   └── ValidFunctionNamePass.php
│   │   │   ├── CodeCleaner.php
│   │   │   ├── Command
│   │   │   │   ├── BufferCommand.php
│   │   │   │   ├── ClearCommand.php
│   │   │   │   ├── Command.php
│   │   │   │   ├── DocCommand.php
│   │   │   │   ├── DumpCommand.php
│   │   │   │   ├── EditCommand.php
│   │   │   │   ├── ExitCommand.php
│   │   │   │   ├── HelpCommand.php
│   │   │   │   ├── HistoryCommand.php
│   │   │   │   ├── ListCommand
│   │   │   │   │   ├── ClassConstantEnumerator.php
│   │   │   │   │   ├── ClassEnumerator.php
│   │   │   │   │   ├── ConstantEnumerator.php
│   │   │   │   │   ├── Enumerator.php
│   │   │   │   │   ├── FunctionEnumerator.php
│   │   │   │   │   ├── GlobalVariableEnumerator.php
│   │   │   │   │   ├── InterfaceEnumerator.php
│   │   │   │   │   ├── MethodEnumerator.php
│   │   │   │   │   ├── PropertyEnumerator.php
│   │   │   │   │   ├── TraitEnumerator.php
│   │   │   │   │   └── VariableEnumerator.php
│   │   │   │   ├── ListCommand.php
│   │   │   │   ├── ParseCommand.php
│   │   │   │   ├── PsyVersionCommand.php
│   │   │   │   ├── ReflectingCommand.php
│   │   │   │   ├── ShowCommand.php
│   │   │   │   ├── SudoCommand.php
│   │   │   │   ├── ThrowUpCommand.php
│   │   │   │   ├── TraceCommand.php
│   │   │   │   ├── WhereamiCommand.php
│   │   │   │   └── WtfCommand.php
│   │   │   ├── Compiler.php
│   │   │   ├── ConfigPaths.php
│   │   │   ├── Configuration.php
│   │   │   ├── ConsoleColorFactory.php
│   │   │   ├── ContextAware.php
│   │   │   ├── Context.php
│   │   │   ├── Exception
│   │   │   │   ├── BreakException.php
│   │   │   │   ├── DeprecatedException.php
│   │   │   │   ├── ErrorException.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── FatalErrorException.php
│   │   │   │   ├── ParseErrorException.php
│   │   │   │   ├── RuntimeException.php
│   │   │   │   ├── ThrowUpException.php
│   │   │   │   └── TypeErrorException.php
│   │   │   ├── ExecutionLoop
│   │   │   │   ├── ForkingLoop.php
│   │   │   │   └── Loop.php
│   │   │   ├── Formatter
│   │   │   │   ├── CodeFormatter.php
│   │   │   │   ├── DocblockFormatter.php
│   │   │   │   ├── Formatter.php
│   │   │   │   └── SignatureFormatter.php
│   │   │   ├── functions.php
│   │   │   ├── Input
│   │   │   │   ├── CodeArgument.php
│   │   │   │   ├── FilterOptions.php
│   │   │   │   ├── ShellInput.php
│   │   │   │   └── SilentInput.php
│   │   │   ├── Output
│   │   │   │   ├── OutputPager.php
│   │   │   │   ├── PassthruPager.php
│   │   │   │   ├── ProcOutputPager.php
│   │   │   │   └── ShellOutput.php
│   │   │   ├── ParserFactory.php
│   │   │   ├── Readline
│   │   │   │   ├── GNUReadline.php
│   │   │   │   ├── HoaConsole.php
│   │   │   │   ├── Libedit.php
│   │   │   │   ├── Readline.php
│   │   │   │   └── Transient.php
│   │   │   ├── Reflection
│   │   │   │   ├── ReflectionConstant.php
│   │   │   │   ├── ReflectionLanguageConstructParameter.php
│   │   │   │   └── ReflectionLanguageConstruct.php
│   │   │   ├── Shell.php
│   │   │   ├── Sudo
│   │   │   │   └── SudoVisitor.php
│   │   │   ├── Sudo.php
│   │   │   ├── TabCompletion
│   │   │   │   ├── AutoCompleter.php
│   │   │   │   └── Matcher
│   │   │   │   ├── AbstractContextAwareMatcher.php
│   │   │   │   ├── AbstractDefaultParametersMatcher.php
│   │   │   │   ├── AbstractMatcher.php
│   │   │   │   ├── ClassAttributesMatcher.php
│   │   │   │   ├── ClassMethodDefaultParametersMatcher.php
│   │   │   │   ├── ClassMethodsMatcher.php
│   │   │   │   ├── ClassNamesMatcher.php
│   │   │   │   ├── CommandsMatcher.php
│   │   │   │   ├── ConstantsMatcher.php
│   │   │   │   ├── FunctionDefaultParametersMatcher.php
│   │   │   │   ├── FunctionsMatcher.php
│   │   │   │   ├── KeywordsMatcher.php
│   │   │   │   ├── MongoClientMatcher.php
│   │   │   │   ├── MongoDatabaseMatcher.php
│   │   │   │   ├── ObjectAttributesMatcher.php
│   │   │   │   ├── ObjectMethodDefaultParametersMatcher.php
│   │   │   │   ├── ObjectMethodsMatcher.php
│   │   │   │   └── VariablesMatcher.php
│   │   │   ├── Util
│   │   │   │   ├── Docblock.php
│   │   │   │   ├── Json.php
│   │   │   │   ├── Mirror.php
│   │   │   │   └── Str.php
│   │   │   ├── VarDumper
│   │   │   │   ├── Cloner.php
│   │   │   │   ├── Dumper.php
│   │   │   │   ├── PresenterAware.php
│   │   │   │   └── Presenter.php
│   │   │   └── VersionUpdater
│   │   │   ├── Checker.php
│   │   │   ├── GitHubChecker.php
│   │   │   ├── IntervalChecker.php
│   │   │   └── NoopChecker.php
│   │   └── test
│   │   ├── fixtures
│   │   │   ├── config.php
│   │   │   ├── default
│   │   │   ├── empty.php
│   │   │   ├── legacy
│   │   │   ├── mixed
│   │   │   ├── project
│   │   │   └── unvis_fixtures.json
│   │   ├── Psy
│   │   │   └── Test
│   │   │   ├── AutoloaderTest.php
│   │   │   ├── CodeCleaner
│   │   │   │   ├── AbstractClassPassTest.php
│   │   │   │   ├── AssignThisVariablePassTest.php
│   │   │   │   ├── CalledClassPassTest.php
│   │   │   │   ├── CallTimePassByReferencePassTest.php
│   │   │   │   ├── CodeCleanerTestCase.php
│   │   │   │   ├── ExitPassTest.php
│   │   │   │   ├── FinalClassPassTest.php
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── ClassWithCallStatic.php
│   │   │   │   │   └── ClassWithStatic.php
│   │   │   │   ├── FunctionContextPassTest.php
│   │   │   │   ├── FunctionReturnInWriteContextPassTest.php
│   │   │   │   ├── ImplicitReturnPassTest.php
│   │   │   │   ├── InstanceOfPassTest.php
│   │   │   │   ├── LeavePsyshAlonePassTest.php
│   │   │   │   ├── LegacyEmptyPassTest.php
│   │   │   │   ├── LoopContextPassTest.php
│   │   │   │   ├── MagicConstantsPassTest.php
│   │   │   │   ├── NamespacePassTest.php
│   │   │   │   ├── PassableByReferencePassTest.php
│   │   │   │   ├── RequirePassTest.php
│   │   │   │   ├── StaticConstructorPassTest.php
│   │   │   │   ├── StrictTypesPassTest.php
│   │   │   │   ├── UseStatementPassTest.php
│   │   │   │   ├── ValidClassNamePassTest.php
│   │   │   │   ├── ValidConstantPassTest.php
│   │   │   │   └── ValidFunctionNamePassTest.php
│   │   │   ├── CodeCleanerTest.php
│   │   │   ├── ConfigurationTest.php
│   │   │   ├── ConsoleColorFactoryTest.php
│   │   │   ├── Exception
│   │   │   │   ├── BreakExceptionTest.php
│   │   │   │   ├── ErrorExceptionTest.php
│   │   │   │   ├── FatalErrorExceptionTest.php
│   │   │   │   ├── ParseErrorExceptionTest.php
│   │   │   │   └── RuntimeExceptionTest.php
│   │   │   ├── Formatter
│   │   │   │   ├── CodeFormatterTest.php
│   │   │   │   ├── DocblockFormatterTest.php
│   │   │   │   └── SignatureFormatterTest.php
│   │   │   ├── Input
│   │   │   │   ├── CodeArgumentTest.php
│   │   │   │   └── ShellInputTest.php
│   │   │   ├── Readline
│   │   │   │   ├── GNUReadlineTest.php
│   │   │   │   ├── HoaConsoleTest.php
│   │   │   │   ├── LibeditTest.php
│   │   │   │   └── TransientTest.php
│   │   │   ├── Reflection
│   │   │   │   └── ReflectionConstantTest.php
│   │   │   ├── ShellTest.php
│   │   │   ├── TabCompletion
│   │   │   │   ├── AutoCompleterTest.php
│   │   │   │   └── StaticSample.php
│   │   │   ├── Util
│   │   │   │   ├── DocblockTest.php
│   │   │   │   ├── MirrorTest.php
│   │   │   │   └── StrTest.php
│   │   │   └── VersionUpdater
│   │   │   └── GitHubCheckerTest.php
│   │   └── tools
│   │   ├── gen_unvis_fixtures.py
│   │   └── vis.py
│   ├── ramsey
│   │   └── uuid
│   │   ├── CHANGELOG.md
│   │   ├── CODE_OF_CONDUCT.md
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── docs
│   │   │   ├── conf.py
│   │   │   ├── index.rst
│   │   │   ├── Makefile
│   │   │   └── _static
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── BinaryUtils.php
│   │   ├── Builder
│   │   │   ├── DefaultUuidBuilder.php
│   │   │   ├── DegradedUuidBuilder.php
│   │   │   └── UuidBuilderInterface.php
│   │   ├── Codec
│   │   │   ├── CodecInterface.php
│   │   │   ├── GuidStringCodec.php
│   │   │   ├── OrderedTimeCodec.php
│   │   │   ├── StringCodec.php
│   │   │   ├── TimestampFirstCombCodec.php
│   │   │   └── TimestampLastCombCodec.php
│   │   ├── Converter
│   │   │   ├── Number
│   │   │   │   ├── BigNumberConverter.php
│   │   │   │   └── DegradedNumberConverter.php
│   │   │   ├── NumberConverterInterface.php
│   │   │   ├── Time
│   │   │   │   ├── BigNumberTimeConverter.php
│   │   │   │   ├── DegradedTimeConverter.php
│   │   │   │   └── PhpTimeConverter.php
│   │   │   └── TimeConverterInterface.php
│   │   ├── DegradedUuid.php
│   │   ├── Exception
│   │   │   ├── InvalidUuidStringException.php
│   │   │   ├── UnsatisfiedDependencyException.php
│   │   │   └── UnsupportedOperationException.php
│   │   ├── FeatureSet.php
│   │   ├── Generator
│   │   │   ├── CombGenerator.php
│   │   │   ├── DefaultTimeGenerator.php
│   │   │   ├── MtRandGenerator.php
│   │   │   ├── OpenSslGenerator.php
│   │   │   ├── PeclUuidRandomGenerator.php
│   │   │   ├── PeclUuidTimeGenerator.php
│   │   │   ├── RandomBytesGenerator.php
│   │   │   ├── RandomGeneratorFactory.php
│   │   │   ├── RandomGeneratorInterface.php
│   │   │   ├── RandomLibAdapter.php
│   │   │   ├── SodiumRandomGenerator.php
│   │   │   ├── TimeGeneratorFactory.php
│   │   │   └── TimeGeneratorInterface.php
│   │   ├── Provider
│   │   │   ├── Node
│   │   │   │   ├── FallbackNodeProvider.php
│   │   │   │   ├── RandomNodeProvider.php
│   │   │   │   └── SystemNodeProvider.php
│   │   │   ├── NodeProviderInterface.php
│   │   │   ├── Time
│   │   │   │   ├── FixedTimeProvider.php
│   │   │   │   └── SystemTimeProvider.php
│   │   │   └── TimeProviderInterface.php
│   │   ├── UuidFactoryInterface.php
│   │   ├── UuidFactory.php
│   │   ├── UuidInterface.php
│   │   └── Uuid.php
│   ├── sebastian
│   │   ├── code-unit-reverse-lookup
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   └── Wizard.php
│   │   │   └── tests
│   │   │   └── WizardTest.php
│   │   ├── comparator
│   │   │   ├── build
│   │   │   │   └── travis-ci.xml
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── ArrayComparator.php
│   │   │   │   ├── Comparator.php
│   │   │   │   ├── ComparisonFailure.php
│   │   │   │   ├── DateTimeComparator.php
│   │   │   │   ├── DOMNodeComparator.php
│   │   │   │   ├── DoubleComparator.php
│   │   │   │   ├── ExceptionComparator.php
│   │   │   │   ├── Factory.php
│   │   │   │   ├── MockObjectComparator.php
│   │   │   │   ├── NumericComparator.php
│   │   │   │   ├── ObjectComparator.php
│   │   │   │   ├── ResourceComparator.php
│   │   │   │   ├── ScalarComparator.php
│   │   │   │   ├── SplObjectStorageComparator.php
│   │   │   │   └── TypeComparator.php
│   │   │   └── tests
│   │   │   ├── ArrayComparatorTest.php
│   │   │   ├── autoload.php
│   │   │   ├── bootstrap.php
│   │   │   ├── DateTimeComparatorTest.php
│   │   │   ├── DOMNodeComparatorTest.php
│   │   │   ├── DoubleComparatorTest.php
│   │   │   ├── ExceptionComparatorTest.php
│   │   │   ├── FactoryTest.php
│   │   │   ├── _files
│   │   │   │   ├── Author.php
│   │   │   │   ├── Book.php
│   │   │   │   ├── ClassWithToString.php
│   │   │   │   ├── SampleClass.php
│   │   │   │   ├── Struct.php
│   │   │   │   ├── TestClassComparator.php
│   │   │   │   └── TestClass.php
│   │   │   ├── MockObjectComparatorTest.php
│   │   │   ├── NumericComparatorTest.php
│   │   │   ├── ObjectComparatorTest.php
│   │   │   ├── ResourceComparatorTest.php
│   │   │   ├── ScalarComparatorTest.php
│   │   │   ├── SplObjectStorageComparatorTest.php
│   │   │   └── TypeComparatorTest.php
│   │   ├── diff
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Chunk.php
│   │   │   │   ├── Differ.php
│   │   │   │   ├── Diff.php
│   │   │   │   ├── LCS
│   │   │   │   │   ├── LongestCommonSubsequence.php
│   │   │   │   │   ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│   │   │   │   │   └── TimeEfficientLongestCommonSubsequenceImplementation.php
│   │   │   │   ├── Line.php
│   │   │   │   └── Parser.php
│   │   │   └── tests
│   │   │   ├── ChunkTest.php
│   │   │   ├── DifferTest.php
│   │   │   ├── DiffTest.php
│   │   │   ├── fixtures
│   │   │   │   ├── patch2.txt
│   │   │   │   └── patch.txt
│   │   │   ├── LCS
│   │   │   │   ├── LongestCommonSubsequenceTest.php
│   │   │   │   ├── MemoryEfficientImplementationTest.php
│   │   │   │   └── TimeEfficientImplementationTest.php
│   │   │   ├── LineTest.php
│   │   │   └── ParserTest.php
│   │   ├── environment
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Console.php
│   │   │   │   └── Runtime.php
│   │   │   └── tests
│   │   │   ├── ConsoleTest.php
│   │   │   └── RuntimeTest.php
│   │   ├── exporter
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   └── Exporter.php
│   │   │   └── tests
│   │   │   └── ExporterTest.php
│   │   ├── global-state
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Blacklist.php
│   │   │   │   ├── CodeExporter.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── Restorer.php
│   │   │   │   ├── RuntimeException.php
│   │   │   │   └── Snapshot.php
│   │   │   └── tests
│   │   │   ├── BlacklistTest.php
│   │   │   ├── _fixture
│   │   │   │   ├── BlacklistedChildClass.php
│   │   │   │   ├── BlacklistedClass.php
│   │   │   │   ├── BlacklistedImplementor.php
│   │   │   │   ├── BlacklistedInterface.php
│   │   │   │   ├── SnapshotClass.php
│   │   │   │   ├── SnapshotDomDocument.php
│   │   │   │   ├── SnapshotFunctions.php
│   │   │   │   └── SnapshotTrait.php
│   │   │   └── SnapshotTest.php
│   │   ├── object-enumerator
│   │   │   ├── build.xml
│   │   │   ├── ChangeLog.md
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Enumerator.php
│   │   │   │   ├── Exception.php
│   │   │   │   └── InvalidArgumentException.php
│   │   │   └── tests
│   │   │   ├── EnumeratorTest.php
│   │   │   └── Fixtures
│   │   │   └── ExceptionThrower.php
│   │   ├── recursion-context
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── Context.php
│   │   │   │   ├── Exception.php
│   │   │   │   └── InvalidArgumentException.php
│   │   │   └── tests
│   │   │   └── ContextTest.php
│   │   ├── resource-operations
│   │   │   ├── build
│   │   │   │   └── generate.php
│   │   │   ├── build.xml
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── src
│   │   │   └── ResourceOperations.php
│   │   └── version
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   └── Version.php
│   ├── swiftmailer
│   │   └── swiftmailer
│   │   ├── CHANGES
│   │   ├── 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
│   │   │   │   │   ├── Attachment.php
│   │   │   │   │   ├── ByteStream
│   │   │   │   │   │   ├── AbstractFilterableInputStream.php
│   │   │   │   │   │   ├── ArrayByteStream.php
│   │   │   │   │   │   ├── FileByteStream.php
│   │   │   │   │   │   └── TemporaryFileByteStream.php
│   │   │   │   │   ├── CharacterReader
│   │   │   │   │   │   ├── GenericFixedWidthReader.php
│   │   │   │   │   │   ├── UsAsciiReader.php
│   │   │   │   │   │   └── Utf8Reader.php
│   │   │   │   │   ├── CharacterReaderFactory
│   │   │   │   │   │   └── SimpleCharacterReaderFactory.php
│   │   │   │   │   ├── CharacterReaderFactory.php
│   │   │   │   │   ├── CharacterReader.php
│   │   │   │   │   ├── CharacterStream
│   │   │   │   │   │   ├── ArrayCharacterStream.php
│   │   │   │   │   │   └── NgCharacterStream.php
│   │   │   │   │   ├── CharacterStream.php
│   │   │   │   │   ├── ConfigurableSpool.php
│   │   │   │   │   ├── DependencyContainer.php
│   │   │   │   │   ├── DependencyException.php
│   │   │   │   │   ├── EmbeddedFile.php
│   │   │   │   │   ├── Encoder
│   │   │   │   │   │   ├── Base64Encoder.php
│   │   │   │   │   │   ├── QpEncoder.php
│   │   │   │   │   │   └── Rfc2231Encoder.php
│   │   │   │   │   ├── Encoder.php
│   │   │   │   │   ├── Encoding.php
│   │   │   │   │   ├── Events
│   │   │   │   │   │   ├── CommandEvent.php
│   │   │   │   │   │   ├── CommandListener.php
│   │   │   │   │   │   ├── EventDispatcher.php
│   │   │   │   │   │   ├── EventListener.php
│   │   │   │   │   │   ├── EventObject.php
│   │   │   │   │   │   ├── Event.php
│   │   │   │   │   │   ├── ResponseEvent.php
│   │   │   │   │   │   ├── ResponseListener.php
│   │   │   │   │   │   ├── SendEvent.php
│   │   │   │   │   │   ├── SendListener.php
│   │   │   │   │   │   ├── SimpleEventDispatcher.php
│   │   │   │   │   │   ├── TransportChangeEvent.php
│   │   │   │   │   │   ├── TransportChangeListener.php
│   │   │   │   │   │   ├── TransportExceptionEvent.php
│   │   │   │   │   │   └── TransportExceptionListener.php
│   │   │   │   │   ├── FailoverTransport.php
│   │   │   │   │   ├── FileSpool.php
│   │   │   │   │   ├── FileStream.php
│   │   │   │   │   ├── Filterable.php
│   │   │   │   │   ├── Image.php
│   │   │   │   │   ├── InputByteStream.php
│   │   │   │   │   ├── IoException.php
│   │   │   │   │   ├── KeyCache
│   │   │   │   │   │   ├── ArrayKeyCache.php
│   │   │   │   │   │   ├── DiskKeyCache.php
│   │   │   │   │   │   ├── KeyCacheInputStream.php
│   │   │   │   │   │   ├── NullKeyCache.php
│   │   │   │   │   │   └── SimpleKeyCacheInputStream.php
│   │   │   │   │   ├── KeyCache.php
│   │   │   │   │   ├── LoadBalancedTransport.php
│   │   │   │   │   ├── Mailer
│   │   │   │   │   │   ├── ArrayRecipientIterator.php
│   │   │   │   │   │   └── RecipientIterator.php
│   │   │   │   │   ├── Mailer.php
│   │   │   │   │   ├── MailTransport.php
│   │   │   │   │   ├── MemorySpool.php
│   │   │   │   │   ├── Message.php
│   │   │   │   │   ├── Mime
│   │   │   │   │   │   ├── Attachment.php
│   │   │   │   │   │   ├── CharsetObserver.php
│   │   │   │   │   │   ├── ContentEncoder
│   │   │   │   │   │   │   ├── Base64ContentEncoder.php
│   │   │   │   │   │   │   ├── NativeQpContentEncoder.php
│   │   │   │   │   │   │   ├── PlainContentEncoder.php
│   │   │   │   │   │   │   ├── QpContentEncoder.php
│   │   │   │   │   │   │   ├── QpContentEncoderProxy.php
│   │   │   │   │   │   │   └── RawContentEncoder.php
│   │   │   │   │   │   ├── ContentEncoder.php
│   │   │   │   │   │   ├── EmbeddedFile.php
│   │   │   │   │   │   ├── EncodingObserver.php
│   │   │   │   │   │   ├── Grammar.php
│   │   │   │   │   │   ├── HeaderEncoder
│   │   │   │   │   │   │   ├── Base64HeaderEncoder.php
│   │   │   │   │   │   │   └── QpHeaderEncoder.php
│   │   │   │   │   │   ├── HeaderEncoder.php
│   │   │   │   │   │   ├── HeaderFactory.php
│   │   │   │   │   │   ├── Header.php
│   │   │   │   │   │   ├── Headers
│   │   │   │   │   │   │   ├── AbstractHeader.php
│   │   │   │   │   │   │   ├── DateHeader.php
│   │   │   │   │   │   │   ├── IdentificationHeader.php
│   │   │   │   │   │   │   ├── MailboxHeader.php
│   │   │   │   │   │   │   ├── OpenDKIMHeader.php
│   │   │   │   │   │   │   ├── ParameterizedHeader.php
│   │   │   │   │   │   │   ├── PathHeader.php
│   │   │   │   │   │   │   └── UnstructuredHeader.php
│   │   │   │   │   │   ├── HeaderSet.php
│   │   │   │   │   │   ├── Message.php
│   │   │   │   │   │   ├── MimeEntity.php
│   │   │   │   │   │   ├── MimePart.php
│   │   │   │   │   │   ├── ParameterizedHeader.php
│   │   │   │   │   │   ├── SimpleHeaderFactory.php
│   │   │   │   │   │   ├── SimpleHeaderSet.php
│   │   │   │   │   │   ├── SimpleMessage.php
│   │   │   │   │   │   └── SimpleMimeEntity.php
│   │   │   │   │   ├── MimePart.php
│   │   │   │   │   ├── NullTransport.php
│   │   │   │   │   ├── OutputByteStream.php
│   │   │   │   │   ├── Plugins
│   │   │   │   │   │   ├── AntiFloodPlugin.php
│   │   │   │   │   │   ├── BandwidthMonitorPlugin.php
│   │   │   │   │   │   ├── Decorator
│   │   │   │   │   │   │   └── Replacements.php
│   │   │   │   │   │   ├── DecoratorPlugin.php
│   │   │   │   │   │   ├── ImpersonatePlugin.php
│   │   │   │   │   │   ├── Logger.php
│   │   │   │   │   │   ├── LoggerPlugin.php
│   │   │   │   │   │   ├── Loggers
│   │   │   │   │   │   │   ├── ArrayLogger.php
│   │   │   │   │   │   │   └── EchoLogger.php
│   │   │   │   │   │   ├── MessageLogger.php
│   │   │   │   │   │   ├── Pop
│   │   │   │   │   │   │   ├── Pop3Connection.php
│   │   │   │   │   │   │   └── Pop3Exception.php
│   │   │   │   │   │   ├── PopBeforeSmtpPlugin.php
│   │   │   │   │   │   ├── RedirectingPlugin.php
│   │   │   │   │   │   ├── Reporter.php
│   │   │   │   │   │   ├── ReporterPlugin.php
│   │   │   │   │   │   ├── Reporters
│   │   │   │   │   │   │   ├── HitReporter.php
│   │   │   │   │   │   │   └── HtmlReporter.php
│   │   │   │   │   │   ├── Sleeper.php
│   │   │   │   │   │   ├── ThrottlerPlugin.php
│   │   │   │   │   │   └── Timer.php
│   │   │   │   │   ├── Preferences.php
│   │   │   │   │   ├── ReplacementFilterFactory.php
│   │   │   │   │   ├── RfcComplianceException.php
│   │   │   │   │   ├── SendmailTransport.php
│   │   │   │   │   ├── SignedMessage.php
│   │   │   │   │   ├── Signer.php
│   │   │   │   │   ├── Signers
│   │   │   │   │   │   ├── BodySigner.php
│   │   │   │   │   │   ├── DKIMSigner.php
│   │   │   │   │   │   ├── DomainKeySigner.php
│   │   │   │   │   │   ├── HeaderSigner.php
│   │   │   │   │   │   ├── OpenDKIMSigner.php
│   │   │   │   │   │   └── SMimeSigner.php
│   │   │   │   │   ├── SmtpTransport.php
│   │   │   │   │   ├── Spool.php
│   │   │   │   │   ├── SpoolTransport.php
│   │   │   │   │   ├── StreamFilter.php
│   │   │   │   │   ├── StreamFilters
│   │   │   │   │   │   ├── ByteArrayReplacementFilter.php
│   │   │   │   │   │   ├── StringReplacementFilterFactory.php
│   │   │   │   │   │   └── StringReplacementFilter.php
│   │   │   │   │   ├── SwiftException.php
│   │   │   │   │   ├── Transport
│   │   │   │   │   │   ├── AbstractSmtpTransport.php
│   │   │   │   │   │   ├── Esmtp
│   │   │   │   │   │   │   ├── Auth
│   │   │   │   │   │   │   │   ├── CramMd5Authenticator.php
│   │   │   │   │   │   │   │   ├── LoginAuthenticator.php
│   │   │   │   │   │   │   │   ├── NTLMAuthenticator.php
│   │   │   │   │   │   │   │   ├── PlainAuthenticator.php
│   │   │   │   │   │   │   │   └── XOAuth2Authenticator.php
│   │   │   │   │   │   │   ├── Authenticator.php
│   │   │   │   │   │   │   └── AuthHandler.php
│   │   │   │   │   │   ├── EsmtpHandler.php
│   │   │   │   │   │   ├── EsmtpTransport.php
│   │   │   │   │   │   ├── FailoverTransport.php
│   │   │   │   │   │   ├── IoBuffer.php
│   │   │   │   │   │   ├── LoadBalancedTransport.php
│   │   │   │   │   │   ├── MailInvoker.php
│   │   │   │   │   │   ├── MailTransport.php
│   │   │   │   │   │   ├── NullTransport.php
│   │   │   │   │   │   ├── SendmailTransport.php
│   │   │   │   │   │   ├── SimpleMailInvoker.php
│   │   │   │   │   │   ├── SmtpAgent.php
│   │   │   │   │   │   ├── SpoolTransport.php
│   │   │   │   │   │   └── StreamBuffer.php
│   │   │   │   │   ├── TransportException.php
│   │   │   │   │   ├── Transport.php
│   │   │   │   │   └── Validate.php
│   │   │   │   └── Swift.php
│   │   │   ├── dependency_maps
│   │   │   │   ├── cache_deps.php
│   │   │   │   ├── message_deps.php
│   │   │   │   ├── mime_deps.php
│   │   │   │   └── transport_deps.php
│   │   │   ├── mime_types.php
│   │   │   ├── preferences.php
│   │   │   ├── swift_init.php
│   │   │   ├── swiftmailer_generate_mimes_config.php
│   │   │   ├── swift_required_pear.php
│   │   │   └── swift_required.php
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   ├── README
│   │   ├── tests
│   │   │   ├── acceptance
│   │   │   │   └── Swift
│   │   │   │   ├── AttachmentAcceptanceTest.php
│   │   │   │   ├── ByteStream
│   │   │   │   │   └── FileByteStreamAcceptanceTest.php
│   │   │   │   ├── CharacterReaderFactory
│   │   │   │   │   └── SimpleCharacterReaderFactoryAcceptanceTest.php
│   │   │   │   ├── DependencyContainerAcceptanceTest.php
│   │   │   │   ├── EmbeddedFileAcceptanceTest.php
│   │   │   │   ├── Encoder
│   │   │   │   │   ├── Base64EncoderAcceptanceTest.php
│   │   │   │   │   ├── QpEncoderAcceptanceTest.php
│   │   │   │   │   └── Rfc2231EncoderAcceptanceTest.php
│   │   │   │   ├── EncodingAcceptanceTest.php
│   │   │   │   ├── KeyCache
│   │   │   │   │   ├── ArrayKeyCacheAcceptanceTest.php
│   │   │   │   │   └── DiskKeyCacheAcceptanceTest.php
│   │   │   │   ├── MessageAcceptanceTest.php
│   │   │   │   ├── Mime
│   │   │   │   │   ├── AttachmentAcceptanceTest.php
│   │   │   │   │   ├── ContentEncoder
│   │   │   │   │   │   ├── Base64ContentEncoderAcceptanceTest.php
│   │   │   │   │   │   ├── NativeQpContentEncoderAcceptanceTest.php
│   │   │   │   │   │   ├── PlainContentEncoderAcceptanceTest.php
│   │   │   │   │   │   └── QpContentEncoderAcceptanceTest.php
│   │   │   │   │   ├── EmbeddedFileAcceptanceTest.php
│   │   │   │   │   ├── HeaderEncoder
│   │   │   │   │   │   └── Base64HeaderEncoderAcceptanceTest.php
│   │   │   │   │   ├── MimePartAcceptanceTest.php
│   │   │   │   │   └── SimpleMessageAcceptanceTest.php
│   │   │   │   ├── MimePartAcceptanceTest.php
│   │   │   │   └── Transport
│   │   │   │   └── StreamBuffer
│   │   │   │   ├── AbstractStreamBufferAcceptanceTest.php
│   │   │   │   ├── BasicSocketAcceptanceTest.php
│   │   │   │   ├── ProcessAcceptanceTest.php
│   │   │   │   ├── SocketTimeoutTest.php
│   │   │   │   ├── SslSocketAcceptanceTest.php
│   │   │   │   └── TlsSocketAcceptanceTest.php
│   │   │   ├── acceptance.conf.php.default
│   │   │   ├── bootstrap.php
│   │   │   ├── bug
│   │   │   │   └── Swift
│   │   │   │   ├── Bug111Test.php
│   │   │   │   ├── Bug118Test.php
│   │   │   │   ├── Bug206Test.php
│   │   │   │   ├── Bug274Test.php
│   │   │   │   ├── Bug34Test.php
│   │   │   │   ├── Bug35Test.php
│   │   │   │   ├── Bug38Test.php
│   │   │   │   ├── Bug518Test.php
│   │   │   │   ├── Bug51Test.php
│   │   │   │   ├── Bug534Test.php
│   │   │   │   ├── Bug650Test.php
│   │   │   │   ├── Bug71Test.php
│   │   │   │   ├── Bug76Test.php
│   │   │   │   └── BugFileByteStreamConsecutiveReadCallsTest.php
│   │   │   ├── fixtures
│   │   │   │   └── MimeEntityFixture.php
│   │   │   ├── IdenticalBinaryConstraint.php
│   │   │   ├── _samples
│   │   │   │   ├── charsets
│   │   │   │   │   ├── iso-2022-jp
│   │   │   │   │   │   └── one.txt
│   │   │   │   │   ├── iso-8859-1
│   │   │   │   │   │   └── one.txt
│   │   │   │   │   └── utf-8
│   │   │   │   │   ├── one.txt
│   │   │   │   │   ├── three.txt
│   │   │   │   │   └── two.txt
│   │   │   │   ├── dkim
│   │   │   │   │   ├── dkim.test.priv
│   │   │   │   │   └── dkim.test.pub
│   │   │   │   ├── files
│   │   │   │   │   ├── data.txt
│   │   │   │   │   ├── swiftmailer.png
│   │   │   │   │   └── textfile.zip
│   │   │   │   └── smime
│   │   │   │   ├── ca.crt
│   │   │   │   ├── ca.key
│   │   │   │   ├── CA.srl
│   │   │   │   ├── create-cert.sh
│   │   │   │   ├── encrypt2.crt
│   │   │   │   ├── encrypt2.key
│   │   │   │   ├── encrypt.crt
│   │   │   │   ├── encrypt.key
│   │   │   │   ├── intermediate.crt
│   │   │   │   ├── intermediate.key
│   │   │   │   ├── sign2.crt
│   │   │   │   ├── sign2.key
│   │   │   │   ├── sign.crt
│   │   │   │   └── sign.key
│   │   │   ├── smoke
│   │   │   │   └── Swift
│   │   │   │   └── Smoke
│   │   │   │   ├── AttachmentSmokeTest.php
│   │   │   │   ├── BasicSmokeTest.php
│   │   │   │   ├── HtmlWithAttachmentSmokeTest.php
│   │   │   │   └── InternationalSmokeTest.php
│   │   │   ├── smoke.conf.php.default
│   │   │   ├── StreamCollector.php
│   │   │   ├── SwiftMailerSmokeTestCase.php
│   │   │   ├── SwiftMailerTestCase.php
│   │   │   └── unit
│   │   │   └── Swift
│   │   │   ├── ByteStream
│   │   │   │   └── ArrayByteStreamTest.php
│   │   │   ├── CharacterReader
│   │   │   │   ├── GenericFixedWidthReaderTest.php
│   │   │   │   ├── UsAsciiReaderTest.php
│   │   │   │   └── Utf8ReaderTest.php
│   │   │   ├── CharacterStream
│   │   │   │   └── ArrayCharacterStreamTest.php
│   │   │   ├── DependencyContainerTest.php
│   │   │   ├── Encoder
│   │   │   │   ├── Base64EncoderTest.php
│   │   │   │   ├── QpEncoderTest.php
│   │   │   │   └── Rfc2231EncoderTest.php
│   │   │   ├── Events
│   │   │   │   ├── CommandEventTest.php
│   │   │   │   ├── EventObjectTest.php
│   │   │   │   ├── ResponseEventTest.php
│   │   │   │   ├── SendEventTest.php
│   │   │   │   ├── SimpleEventDispatcherTest.php
│   │   │   │   ├── TransportChangeEventTest.php
│   │   │   │   └── TransportExceptionEventTest.php
│   │   │   ├── KeyCache
│   │   │   │   ├── ArrayKeyCacheTest.php
│   │   │   │   └── SimpleKeyCacheInputStreamTest.php
│   │   │   ├── Mailer
│   │   │   │   └── ArrayRecipientIteratorTest.php
│   │   │   ├── MailerTest.php
│   │   │   ├── MessageTest.php
│   │   │   ├── Mime
│   │   │   │   ├── AbstractMimeEntityTest.php
│   │   │   │   ├── AttachmentTest.php
│   │   │   │   ├── ContentEncoder
│   │   │   │   │   ├── Base64ContentEncoderTest.php
│   │   │   │   │   ├── PlainContentEncoderTest.php
│   │   │   │   │   └── QpContentEncoderTest.php
│   │   │   │   ├── EmbeddedFileTest.php
│   │   │   │   ├── HeaderEncoder
│   │   │   │   │   ├── Base64HeaderEncoderTest.php
│   │   │   │   │   └── QpHeaderEncoderTest.php
│   │   │   │   ├── Headers
│   │   │   │   │   ├── DateHeaderTest.php
│   │   │   │   │   ├── IdentificationHeaderTest.php
│   │   │   │   │   ├── MailboxHeaderTest.php
│   │   │   │   │   ├── ParameterizedHeaderTest.php
│   │   │   │   │   ├── PathHeaderTest.php
│   │   │   │   │   └── UnstructuredHeaderTest.php
│   │   │   │   ├── MimePartTest.php
│   │   │   │   ├── SimpleHeaderFactoryTest.php
│   │   │   │   ├── SimpleHeaderSetTest.php
│   │   │   │   ├── SimpleMessageTest.php
│   │   │   │   └── SimpleMimeEntityTest.php
│   │   │   ├── Plugins
│   │   │   │   ├── AntiFloodPluginTest.php
│   │   │   │   ├── BandwidthMonitorPluginTest.php
│   │   │   │   ├── DecoratorPluginTest.php
│   │   │   │   ├── LoggerPluginTest.php
│   │   │   │   ├── Loggers
│   │   │   │   │   ├── ArrayLoggerTest.php
│   │   │   │   │   └── EchoLoggerTest.php
│   │   │   │   ├── PopBeforeSmtpPluginTest.php
│   │   │   │   ├── RedirectingPluginTest.php
│   │   │   │   ├── ReporterPluginTest.php
│   │   │   │   ├── Reporters
│   │   │   │   │   ├── HitReporterTest.php
│   │   │   │   │   └── HtmlReporterTest.php
│   │   │   │   └── ThrottlerPluginTest.php
│   │   │   ├── Signers
│   │   │   │   ├── DKIMSignerTest.php
│   │   │   │   ├── OpenDKIMSignerTest.php
│   │   │   │   └── SMimeSignerTest.php
│   │   │   ├── StreamFilters
│   │   │   │   ├── ByteArrayReplacementFilterTest.php
│   │   │   │   ├── StringReplacementFilterFactoryTest.php
│   │   │   │   └── StringReplacementFilterTest.php
│   │   │   └── Transport
│   │   │   ├── AbstractSmtpEventSupportTest.php
│   │   │   ├── AbstractSmtpTest.php
│   │   │   ├── Esmtp
│   │   │   │   ├── Auth
│   │   │   │   │   ├── CramMd5AuthenticatorTest.php
│   │   │   │   │   ├── LoginAuthenticatorTest.php
│   │   │   │   │   ├── NTLMAuthenticatorTest.php
│   │   │   │   │   └── PlainAuthenticatorTest.php
│   │   │   │   └── AuthHandlerTest.php
│   │   │   ├── EsmtpTransport
│   │   │   │   └── ExtensionSupportTest.php
│   │   │   ├── EsmtpTransportTest.php
│   │   │   ├── FailoverTransportTest.php
│   │   │   ├── LoadBalancedTransportTest.php
│   │   │   ├── MailTransportTest.php
│   │   │   ├── SendmailTransportTest.php
│   │   │   └── StreamBufferTest.php
│   │   └── VERSION
│   ├── symfony
│   │   ├── class-loader
│   │   │   ├── ApcClassLoader.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── ClassCollectionLoader.php
│   │   │   ├── ClassLoader.php
│   │   │   ├── ClassMapGenerator.php
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── MapClassLoader.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── Psr4ClassLoader.php
│   │   │   ├── README.md
│   │   │   ├── Tests
│   │   │   │   ├── ApcClassLoaderTest.php
│   │   │   │   ├── ClassCollectionLoaderTest.php
│   │   │   │   ├── ClassLoaderTest.php
│   │   │   │   ├── ClassMapGeneratorTest.php
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── alpha
│   │   │   │   │   │   ├── NamespaceCollision
│   │   │   │   │   │   │   ├── A
│   │   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   │   └── C
│   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   └── PrefixCollision
│   │   │   │   │   │   ├── A
│   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   └── C
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   └── Foo.php
│   │   │   │   │   ├── Apc
│   │   │   │   │   │   ├── alpha
│   │   │   │   │   │   │   └── Apc
│   │   │   │   │   │   │   ├── ApcPrefixCollision
│   │   │   │   │   │   │   │   └── A
│   │   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   │   └── NamespaceCollision
│   │   │   │   │   │   │   └── A
│   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   ├── beta
│   │   │   │   │   │   │   └── Apc
│   │   │   │   │   │   │   ├── ApcPrefixCollision
│   │   │   │   │   │   │   │   └── A
│   │   │   │   │   │   │   │   └── B
│   │   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   │   └── NamespaceCollision
│   │   │   │   │   │   │   └── A
│   │   │   │   │   │   │   └── B
│   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   ├── fallback
│   │   │   │   │   │   │   ├── Apc
│   │   │   │   │   │   │   │   └── Pearlike
│   │   │   │   │   │   │   │   └── FooBar.php
│   │   │   │   │   │   │   └── Namespaced
│   │   │   │   │   │   │   └── FooBar.php
│   │   │   │   │   │   ├── Namespaced
│   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   │   ├── FooBar.php
│   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   └── Pearlike
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   └── Foo.php
│   │   │   │   │   ├── beta
│   │   │   │   │   │   ├── NamespaceCollision
│   │   │   │   │   │   │   ├── A
│   │   │   │   │   │   │   │   └── B
│   │   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   │   └── C
│   │   │   │   │   │   │   └── B
│   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   └── PrefixCollision
│   │   │   │   │   │   ├── A
│   │   │   │   │   │   │   └── B
│   │   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   │   └── Foo.php
│   │   │   │   │   │   └── C
│   │   │   │   │   │   └── B
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   └── Foo.php
│   │   │   │   │   ├── ClassesWithParents
│   │   │   │   │   │   ├── A.php
│   │   │   │   │   │   ├── ATrait.php
│   │   │   │   │   │   ├── B.php
│   │   │   │   │   │   ├── BTrait.php
│   │   │   │   │   │   ├── CInterface.php
│   │   │   │   │   │   ├── CTrait.php
│   │   │   │   │   │   ├── D.php
│   │   │   │   │   │   ├── E.php
│   │   │   │   │   │   ├── F.php
│   │   │   │   │   │   ├── GInterface.php
│   │   │   │   │   │   └── G.php
│   │   │   │   │   ├── classmap
│   │   │   │   │   │   ├── multipleNs.php
│   │   │   │   │   │   ├── notAClass.php
│   │   │   │   │   │   ├── notPhpFile.md
│   │   │   │   │   │   ├── sameNsMultipleClasses.php
│   │   │   │   │   │   ├── SomeClass.php
│   │   │   │   │   │   ├── SomeInterface.php
│   │   │   │   │   │   └── SomeParent.php
│   │   │   │   │   ├── DeclaredClass.php
│   │   │   │   │   ├── DeclaredInterface.php
│   │   │   │   │   ├── deps
│   │   │   │   │   │   └── traits.php
│   │   │   │   │   ├── fallback
│   │   │   │   │   │   ├── Namespaced
│   │   │   │   │   │   │   └── FooBar.php
│   │   │   │   │   │   ├── Namespaced2
│   │   │   │   │   │   │   └── FooBar.php
│   │   │   │   │   │   ├── Pearlike
│   │   │   │   │   │   │   └── FooBar.php
│   │   │   │   │   │   └── Pearlike2
│   │   │   │   │   │   └── FooBar.php
│   │   │   │   │   ├── includepath
│   │   │   │   │   │   └── Foo.php
│   │   │   │   │   ├── Namespaced
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   ├── Foo.php
│   │   │   │   │   │   ├── WithComments.php
│   │   │   │   │   │   ├── WithDirMagic.php
│   │   │   │   │   │   ├── WithFileMagic.php
│   │   │   │   │   │   ├── WithHaltCompiler.php
│   │   │   │   │   │   └── WithStrictTypes.php
│   │   │   │   │   ├── Namespaced2
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   └── Foo.php
│   │   │   │   │   ├── Pearlike
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   ├── Foo.php
│   │   │   │   │   │   └── WithComments.php
│   │   │   │   │   ├── Pearlike2
│   │   │   │   │   │   ├── Bar.php
│   │   │   │   │   │   ├── Baz.php
│   │   │   │   │   │   └── Foo.php
│   │   │   │   │   ├── php5.4
│   │   │   │   │   │   └── traits.php
│   │   │   │   │   ├── php5.5
│   │   │   │   │   │   └── class_cons.php
│   │   │   │   │   ├── psr-4
│   │   │   │   │   │   ├── Class_With_Underscores.php
│   │   │   │   │   │   ├── Foo.php
│   │   │   │   │   │   └── Lets
│   │   │   │   │   │   └── Go
│   │   │   │   │   │   └── Deeper
│   │   │   │   │   │   ├── Class_With_Underscores.php
│   │   │   │   │   │   └── Foo.php
│   │   │   │   │   ├── WarmedClass.php
│   │   │   │   │   └── WarmedInterface.php
│   │   │   │   └── Psr4ClassLoaderTest.php
│   │   │   ├── WinCacheClassLoader.php
│   │   │   └── XcacheClassLoader.php
│   │   ├── console
│   │   │   ├── Application.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Command
│   │   │   │   ├── Command.php
│   │   │   │   ├── HelpCommand.php
│   │   │   │   ├── ListCommand.php
│   │   │   │   └── LockableTrait.php
│   │   │   ├── CommandLoader
│   │   │   │   ├── CommandLoaderInterface.php
│   │   │   │   ├── ContainerCommandLoader.php
│   │   │   │   └── FactoryCommandLoader.php
│   │   │   ├── composer.json
│   │   │   ├── ConsoleEvents.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── AddConsoleCommandPass.php
│   │   │   ├── Descriptor
│   │   │   │   ├── ApplicationDescription.php
│   │   │   │   ├── DescriptorInterface.php
│   │   │   │   ├── Descriptor.php
│   │   │   │   ├── JsonDescriptor.php
│   │   │   │   ├── MarkdownDescriptor.php
│   │   │   │   ├── TextDescriptor.php
│   │   │   │   └── XmlDescriptor.php
│   │   │   ├── Event
│   │   │   │   ├── ConsoleCommandEvent.php
│   │   │   │   ├── ConsoleErrorEvent.php
│   │   │   │   ├── ConsoleEvent.php
│   │   │   │   ├── ConsoleExceptionEvent.php
│   │   │   │   └── ConsoleTerminateEvent.php
│   │   │   ├── EventListener
│   │   │   │   └── ErrorListener.php
│   │   │   ├── Exception
│   │   │   │   ├── CommandNotFoundException.php
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── InvalidOptionException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Formatter
│   │   │   │   ├── OutputFormatterInterface.php
│   │   │   │   ├── OutputFormatter.php
│   │   │   │   ├── OutputFormatterStyleInterface.php
│   │   │   │   ├── OutputFormatterStyle.php
│   │   │   │   └── OutputFormatterStyleStack.php
│   │   │   ├── Helper
│   │   │   │   ├── DebugFormatterHelper.php
│   │   │   │   ├── DescriptorHelper.php
│   │   │   │   ├── FormatterHelper.php
│   │   │   │   ├── HelperInterface.php
│   │   │   │   ├── Helper.php
│   │   │   │   ├── HelperSet.php
│   │   │   │   ├── InputAwareHelper.php
│   │   │   │   ├── ProcessHelper.php
│   │   │   │   ├── ProgressBar.php
│   │   │   │   ├── ProgressIndicator.php
│   │   │   │   ├── QuestionHelper.php
│   │   │   │   ├── SymfonyQuestionHelper.php
│   │   │   │   ├── TableCell.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TableSeparator.php
│   │   │   │   └── TableStyle.php
│   │   │   ├── Input
│   │   │   │   ├── ArgvInput.php
│   │   │   │   ├── ArrayInput.php
│   │   │   │   ├── InputArgument.php
│   │   │   │   ├── InputAwareInterface.php
│   │   │   │   ├── InputDefinition.php
│   │   │   │   ├── InputInterface.php
│   │   │   │   ├── InputOption.php
│   │   │   │   ├── Input.php
│   │   │   │   ├── StreamableInputInterface.php
│   │   │   │   └── StringInput.php
│   │   │   ├── LICENSE
│   │   │   ├── Logger
│   │   │   │   └── ConsoleLogger.php
│   │   │   ├── Output
│   │   │   │   ├── BufferedOutput.php
│   │   │   │   ├── ConsoleOutputInterface.php
│   │   │   │   ├── ConsoleOutput.php
│   │   │   │   ├── NullOutput.php
│   │   │   │   ├── OutputInterface.php
│   │   │   │   ├── Output.php
│   │   │   │   └── StreamOutput.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── Question
│   │   │   │   ├── ChoiceQuestion.php
│   │   │   │   ├── ConfirmationQuestion.php
│   │   │   │   └── Question.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── bin
│   │   │   │   └── hiddeninput.exe
│   │   │   ├── Style
│   │   │   │   ├── OutputStyle.php
│   │   │   │   ├── StyleInterface.php
│   │   │   │   └── SymfonyStyle.php
│   │   │   ├── Terminal.php
│   │   │   ├── Tester
│   │   │   │   ├── ApplicationTester.php
│   │   │   │   └── CommandTester.php
│   │   │   └── Tests
│   │   │   ├── ApplicationTest.php
│   │   │   ├── Command
│   │   │   │   ├── CommandTest.php
│   │   │   │   ├── HelpCommandTest.php
│   │   │   │   ├── ListCommandTest.php
│   │   │   │   └── LockableTraitTest.php
│   │   │   ├── CommandLoader
│   │   │   │   ├── ContainerCommandLoaderTest.php
│   │   │   │   └── FactoryCommandLoaderTest.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── AddConsoleCommandPassTest.php
│   │   │   ├── Descriptor
│   │   │   │   ├── AbstractDescriptorTest.php
│   │   │   │   ├── JsonDescriptorTest.php
│   │   │   │   ├── MarkdownDescriptorTest.php
│   │   │   │   ├── ObjectsProvider.php
│   │   │   │   ├── TextDescriptorTest.php
│   │   │   │   └── XmlDescriptorTest.php
│   │   │   ├── EventListener
│   │   │   │   └── ErrorListenerTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── application_1.json
│   │   │   │   ├── application_1.md
│   │   │   │   ├── application_1.txt
│   │   │   │   ├── application_1.xml
│   │   │   │   ├── application_2.json
│   │   │   │   ├── application_2.md
│   │   │   │   ├── application_2.txt
│   │   │   │   ├── application_2.xml
│   │   │   │   ├── application_filtered_namespace.txt
│   │   │   │   ├── application_gethelp.txt
│   │   │   │   ├── application_mbstring.md
│   │   │   │   ├── application_mbstring.txt
│   │   │   │   ├── application_renderexception1.txt
│   │   │   │   ├── application_renderexception2.txt
│   │   │   │   ├── application_renderexception3decorated.txt
│   │   │   │   ├── application_renderexception3.txt
│   │   │   │   ├── application_renderexception4.txt
│   │   │   │   ├── application_renderexception_doublewidth1decorated.txt
│   │   │   │   ├── application_renderexception_doublewidth1.txt
│   │   │   │   ├── application_renderexception_doublewidth2.txt
│   │   │   │   ├── application_renderexception_escapeslines.txt
│   │   │   │   ├── application_renderexception_linebreaks.txt
│   │   │   │   ├── application_run1.txt
│   │   │   │   ├── application_run2.txt
│   │   │   │   ├── application_run3.txt
│   │   │   │   ├── application_run4.txt
│   │   │   │   ├── BarBucCommand.php
│   │   │   │   ├── command_1.json
│   │   │   │   ├── command_1.md
│   │   │   │   ├── command_1.txt
│   │   │   │   ├── command_1.xml
│   │   │   │   ├── command_2.json
│   │   │   │   ├── command_2.md
│   │   │   │   ├── command_2.txt
│   │   │   │   ├── command_2.xml
│   │   │   │   ├── command_mbstring.md
│   │   │   │   ├── command_mbstring.txt
│   │   │   │   ├── DescriptorApplication1.php
│   │   │   │   ├── DescriptorApplication2.php
│   │   │   │   ├── DescriptorApplicationMbString.php
│   │   │   │   ├── DescriptorCommand1.php
│   │   │   │   ├── DescriptorCommand2.php
│   │   │   │   ├── DescriptorCommand3.php
│   │   │   │   ├── DescriptorCommand4.php
│   │   │   │   ├── DescriptorCommandMbString.php
│   │   │   │   ├── DummyOutput.php
│   │   │   │   ├── Foo1Command.php
│   │   │   │   ├── Foo2Command.php
│   │   │   │   ├── Foo3Command.php
│   │   │   │   ├── Foo4Command.php
│   │   │   │   ├── Foo5Command.php
│   │   │   │   ├── Foo6Command.php
│   │   │   │   ├── FoobarCommand.php
│   │   │   │   ├── FooCommand.php
│   │   │   │   ├── FooLock2Command.php
│   │   │   │   ├── FooLockCommand.php
│   │   │   │   ├── FooOptCommand.php
│   │   │   │   ├── FooSameCaseLowercaseCommand.php
│   │   │   │   ├── FooSameCaseUppercaseCommand.php
│   │   │   │   ├── FooSubnamespaced1Command.php
│   │   │   │   ├── FooSubnamespaced2Command.php
│   │   │   │   ├── input_argument_1.json
│   │   │   │   ├── input_argument_1.md
│   │   │   │   ├── input_argument_1.txt
│   │   │   │   ├── input_argument_1.xml
│   │   │   │   ├── input_argument_2.json
│   │   │   │   ├── input_argument_2.md
│   │   │   │   ├── input_argument_2.txt
│   │   │   │   ├── input_argument_2.xml
│   │   │   │   ├── input_argument_3.json
│   │   │   │   ├── input_argument_3.md
│   │   │   │   ├── input_argument_3.txt
│   │   │   │   ├── input_argument_3.xml
│   │   │   │   ├── input_argument_4.json
│   │   │   │   ├── input_argument_4.md
│   │   │   │   ├── input_argument_4.txt
│   │   │   │   ├── input_argument_4.xml
│   │   │   │   ├── input_argument_with_default_inf_value.json
│   │   │   │   ├── input_argument_with_default_inf_value.md
│   │   │   │   ├── input_argument_with_default_inf_value.txt
│   │   │   │   ├── input_argument_with_default_inf_value.xml
│   │   │   │   ├── input_argument_with_style.json
│   │   │   │   ├── input_argument_with_style.md
│   │   │   │   ├── input_argument_with_style.txt
│   │   │   │   ├── input_argument_with_style.xml
│   │   │   │   ├── input_definition_1.json
│   │   │   │   ├── input_definition_1.md
│   │   │   │   ├── input_definition_1.txt
│   │   │   │   ├── input_definition_1.xml
│   │   │   │   ├── input_definition_2.json
│   │   │   │   ├── input_definition_2.md
│   │   │   │   ├── input_definition_2.txt
│   │   │   │   ├── input_definition_2.xml
│   │   │   │   ├── input_definition_3.json
│   │   │   │   ├── input_definition_3.md
│   │   │   │   ├── input_definition_3.txt
│   │   │   │   ├── input_definition_3.xml
│   │   │   │   ├── input_definition_4.json
│   │   │   │   ├── input_definition_4.md
│   │   │   │   ├── input_definition_4.txt
│   │   │   │   ├── input_definition_4.xml
│   │   │   │   ├── input_option_1.json
│   │   │   │   ├── input_option_1.md
│   │   │   │   ├── input_option_1.txt
│   │   │   │   ├── input_option_1.xml
│   │   │   │   ├── input_option_2.json
│   │   │   │   ├── input_option_2.md
│   │   │   │   ├── input_option_2.txt
│   │   │   │   ├── input_option_2.xml
│   │   │   │   ├── input_option_3.json
│   │   │   │   ├── input_option_3.md
│   │   │   │   ├── input_option_3.txt
│   │   │   │   ├── input_option_3.xml
│   │   │   │   ├── input_option_4.json
│   │   │   │   ├── input_option_4.md
│   │   │   │   ├── input_option_4.txt
│   │   │   │   ├── input_option_4.xml
│   │   │   │   ├── input_option_5.json
│   │   │   │   ├── input_option_5.md
│   │   │   │   ├── input_option_5.txt
│   │   │   │   ├── input_option_5.xml
│   │   │   │   ├── input_option_6.json
│   │   │   │   ├── input_option_6.md
│   │   │   │   ├── input_option_6.txt
│   │   │   │   ├── input_option_6.xml
│   │   │   │   ├── input_option_with_default_inf_value.json
│   │   │   │   ├── input_option_with_default_inf_value.md
│   │   │   │   ├── input_option_with_default_inf_value.txt
│   │   │   │   ├── input_option_with_default_inf_value.xml
│   │   │   │   ├── input_option_with_style_array.json
│   │   │   │   ├── input_option_with_style_array.md
│   │   │   │   ├── input_option_with_style_array.txt
│   │   │   │   ├── input_option_with_style_array.xml
│   │   │   │   ├── input_option_with_style.json
│   │   │   │   ├── input_option_with_style.md
│   │   │   │   ├── input_option_with_style.txt
│   │   │   │   ├── input_option_with_style.xml
│   │   │   │   ├── Style
│   │   │   │   │   └── SymfonyStyle
│   │   │   │   │   ├── command
│   │   │   │   │   │   ├── command_0.php
│   │   │   │   │   │   ├── command_10.php
│   │   │   │   │   │   ├── command_11.php
│   │   │   │   │   │   ├── command_12.php
│   │   │   │   │   │   ├── command_13.php
│   │   │   │   │   │   ├── command_14.php
│   │   │   │   │   │   ├── command_15.php
│   │   │   │   │   │   ├── command_16.php
│   │   │   │   │   │   ├── command_17.php
│   │   │   │   │   │   ├── command_1.php
│   │   │   │   │   │   ├── command_2.php
│   │   │   │   │   │   ├── command_3.php
│   │   │   │   │   │   ├── command_4.php
│   │   │   │   │   │   ├── command_5.php
│   │   │   │   │   │   ├── command_6.php
│   │   │   │   │   │   ├── command_7.php
│   │   │   │   │   │   ├── command_8.php
│   │   │   │   │   │   ├── command_9.php
│   │   │   │   │   │   └── interactive_command_1.php
│   │   │   │   │   └── output
│   │   │   │   │   ├── interactive_output_1.txt
│   │   │   │   │   ├── output_0.txt
│   │   │   │   │   ├── output_10.txt
│   │   │   │   │   ├── output_11.txt
│   │   │   │   │   ├── output_12.txt
│   │   │   │   │   ├── output_13.txt
│   │   │   │   │   ├── output_14.txt
│   │   │   │   │   ├── output_15.txt
│   │   │   │   │   ├── output_16.txt
│   │   │   │   │   ├── output_17.txt
│   │   │   │   │   ├── output_1.txt
│   │   │   │   │   ├── output_2.txt
│   │   │   │   │   ├── output_3.txt
│   │   │   │   │   ├── output_4.txt
│   │   │   │   │   ├── output_5.txt
│   │   │   │   │   ├── output_6.txt
│   │   │   │   │   ├── output_7.txt
│   │   │   │   │   ├── output_8.txt
│   │   │   │   │   └── output_9.txt
│   │   │   │   ├── TestCommand.php
│   │   │   │   ├── TestTiti.php
│   │   │   │   └── TestToto.php
│   │   │   ├── Formatter
│   │   │   │   ├── OutputFormatterStyleStackTest.php
│   │   │   │   ├── OutputFormatterStyleTest.php
│   │   │   │   └── OutputFormatterTest.php
│   │   │   ├── Helper
│   │   │   │   ├── AbstractQuestionHelperTest.php
│   │   │   │   ├── FormatterHelperTest.php
│   │   │   │   ├── HelperSetTest.php
│   │   │   │   ├── HelperTest.php
│   │   │   │   ├── ProcessHelperTest.php
│   │   │   │   ├── ProgressBarTest.php
│   │   │   │   ├── ProgressIndicatorTest.php
│   │   │   │   ├── QuestionHelperTest.php
│   │   │   │   ├── SymfonyQuestionHelperTest.php
│   │   │   │   ├── TableStyleTest.php
│   │   │   │   └── TableTest.php
│   │   │   ├── Input
│   │   │   │   ├── ArgvInputTest.php
│   │   │   │   ├── ArrayInputTest.php
│   │   │   │   ├── InputArgumentTest.php
│   │   │   │   ├── InputDefinitionTest.php
│   │   │   │   ├── InputOptionTest.php
│   │   │   │   ├── InputTest.php
│   │   │   │   └── StringInputTest.php
│   │   │   ├── Logger
│   │   │   │   └── ConsoleLoggerTest.php
│   │   │   ├── Output
│   │   │   │   ├── ConsoleOutputTest.php
│   │   │   │   ├── NullOutputTest.php
│   │   │   │   ├── OutputTest.php
│   │   │   │   └── StreamOutputTest.php
│   │   │   ├── Style
│   │   │   │   └── SymfonyStyleTest.php
│   │   │   ├── TerminalTest.php
│   │   │   └── Tester
│   │   │   ├── ApplicationTesterTest.php
│   │   │   └── CommandTesterTest.php
│   │   ├── css-selector
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── CssSelectorConverter.php
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── ExpressionErrorException.php
│   │   │   │   ├── InternalErrorException.php
│   │   │   │   ├── ParseException.php
│   │   │   │   └── SyntaxErrorException.php
│   │   │   ├── LICENSE
│   │   │   ├── Node
│   │   │   │   ├── AbstractNode.php
│   │   │   │   ├── AttributeNode.php
│   │   │   │   ├── ClassNode.php
│   │   │   │   ├── CombinedSelectorNode.php
│   │   │   │   ├── ElementNode.php
│   │   │   │   ├── FunctionNode.php
│   │   │   │   ├── HashNode.php
│   │   │   │   ├── NegationNode.php
│   │   │   │   ├── NodeInterface.php
│   │   │   │   ├── PseudoNode.php
│   │   │   │   ├── SelectorNode.php
│   │   │   │   └── Specificity.php
│   │   │   ├── Parser
│   │   │   │   ├── Handler
│   │   │   │   │   ├── CommentHandler.php
│   │   │   │   │   ├── HandlerInterface.php
│   │   │   │   │   ├── HashHandler.php
│   │   │   │   │   ├── IdentifierHandler.php
│   │   │   │   │   ├── NumberHandler.php
│   │   │   │   │   ├── StringHandler.php
│   │   │   │   │   └── WhitespaceHandler.php
│   │   │   │   ├── ParserInterface.php
│   │   │   │   ├── Parser.php
│   │   │   │   ├── Reader.php
│   │   │   │   ├── Shortcut
│   │   │   │   │   ├── ClassParser.php
│   │   │   │   │   ├── ElementParser.php
│   │   │   │   │   ├── EmptyStringParser.php
│   │   │   │   │   └── HashParser.php
│   │   │   │   ├── Tokenizer
│   │   │   │   │   ├── TokenizerEscaping.php
│   │   │   │   │   ├── TokenizerPatterns.php
│   │   │   │   │   └── Tokenizer.php
│   │   │   │   ├── Token.php
│   │   │   │   └── TokenStream.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── Tests
│   │   │   │   ├── CssSelectorConverterTest.php
│   │   │   │   ├── Node
│   │   │   │   │   ├── AbstractNodeTest.php
│   │   │   │   │   ├── AttributeNodeTest.php
│   │   │   │   │   ├── ClassNodeTest.php
│   │   │   │   │   ├── CombinedSelectorNodeTest.php
│   │   │   │   │   ├── ElementNodeTest.php
│   │   │   │   │   ├── FunctionNodeTest.php
│   │   │   │   │   ├── HashNodeTest.php
│   │   │   │   │   ├── NegationNodeTest.php
│   │   │   │   │   ├── PseudoNodeTest.php
│   │   │   │   │   ├── SelectorNodeTest.php
│   │   │   │   │   └── SpecificityTest.php
│   │   │   │   ├── Parser
│   │   │   │   │   ├── Handler
│   │   │   │   │   │   ├── AbstractHandlerTest.php
│   │   │   │   │   │   ├── CommentHandlerTest.php
│   │   │   │   │   │   ├── HashHandlerTest.php
│   │   │   │   │   │   ├── IdentifierHandlerTest.php
│   │   │   │   │   │   ├── NumberHandlerTest.php
│   │   │   │   │   │   ├── StringHandlerTest.php
│   │   │   │   │   │   └── WhitespaceHandlerTest.php
│   │   │   │   │   ├── ParserTest.php
│   │   │   │   │   ├── ReaderTest.php
│   │   │   │   │   ├── Shortcut
│   │   │   │   │   │   ├── ClassParserTest.php
│   │   │   │   │   │   ├── ElementParserTest.php
│   │   │   │   │   │   ├── EmptyStringParserTest.php
│   │   │   │   │   │   └── HashParserTest.php
│   │   │   │   │   └── TokenStreamTest.php
│   │   │   │   └── XPath
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── ids.html
│   │   │   │   │   ├── lang.xml
│   │   │   │   │   └── shakespear.html
│   │   │   │   └── TranslatorTest.php
│   │   │   └── XPath
│   │   │   ├── Extension
│   │   │   │   ├── AbstractExtension.php
│   │   │   │   ├── AttributeMatchingExtension.php
│   │   │   │   ├── CombinationExtension.php
│   │   │   │   ├── ExtensionInterface.php
│   │   │   │   ├── FunctionExtension.php
│   │   │   │   ├── HtmlExtension.php
│   │   │   │   ├── NodeExtension.php
│   │   │   │   └── PseudoClassExtension.php
│   │   │   ├── TranslatorInterface.php
│   │   │   ├── Translator.php
│   │   │   └── XPathExpr.php
│   │   ├── debug
│   │   │   ├── BufferingLogger.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── DebugClassLoader.php
│   │   │   ├── Debug.php
│   │   │   ├── ErrorHandler.php
│   │   │   ├── Exception
│   │   │   │   ├── ClassNotFoundException.php
│   │   │   │   ├── ContextErrorException.php
│   │   │   │   ├── FatalErrorException.php
│   │   │   │   ├── FatalThrowableError.php
│   │   │   │   ├── FlattenException.php
│   │   │   │   ├── OutOfMemoryException.php
│   │   │   │   ├── SilencedErrorContext.php
│   │   │   │   ├── UndefinedFunctionException.php
│   │   │   │   └── UndefinedMethodException.php
│   │   │   ├── ExceptionHandler.php
│   │   │   ├── FatalErrorHandler
│   │   │   │   ├── ClassNotFoundFatalErrorHandler.php
│   │   │   │   ├── FatalErrorHandlerInterface.php
│   │   │   │   ├── UndefinedFunctionFatalErrorHandler.php
│   │   │   │   └── UndefinedMethodFatalErrorHandler.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── ext
│   │   │   │   ├── config.m4
│   │   │   │   ├── config.w32
│   │   │   │   ├── php_symfony_debug.h
│   │   │   │   ├── README.md
│   │   │   │   ├── symfony_debug.c
│   │   │   │   └── tests
│   │   │   │   ├── 001.phpt
│   │   │   │   ├── 002_1.phpt
│   │   │   │   ├── 002.phpt
│   │   │   │   └── 003.phpt
│   │   │   └── Tests
│   │   │   ├── DebugClassLoaderTest.php
│   │   │   ├── ErrorHandlerTest.php
│   │   │   ├── Exception
│   │   │   │   └── FlattenExceptionTest.php
│   │   │   ├── ExceptionHandlerTest.php
│   │   │   ├── FatalErrorHandler
│   │   │   │   ├── ClassNotFoundFatalErrorHandlerTest.php
│   │   │   │   ├── UndefinedFunctionFatalErrorHandlerTest.php
│   │   │   │   └── UndefinedMethodFatalErrorHandlerTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── AnnotatedClass.php
│   │   │   │   ├── casemismatch.php
│   │   │   │   ├── ClassAlias.php
│   │   │   │   ├── DeprecatedClass.php
│   │   │   │   ├── DeprecatedInterface.php
│   │   │   │   ├── ExtendedFinalMethod.php
│   │   │   │   ├── FinalClass.php
│   │   │   │   ├── FinalMethod.php
│   │   │   │   ├── InternalClass.php
│   │   │   │   ├── InternalInterface.php
│   │   │   │   ├── InternalTrait2.php
│   │   │   │   ├── InternalTrait.php
│   │   │   │   ├── NonDeprecatedInterface.php
│   │   │   │   ├── notPsr0Bis.php
│   │   │   │   ├── PEARClass.php
│   │   │   │   ├── psr4
│   │   │   │   │   └── Psr4CaseMismatch.php
│   │   │   │   ├── reallyNotPsr0.php
│   │   │   │   ├── Throwing.php
│   │   │   │   └── ToStringThrower.php
│   │   │   ├── Fixtures2
│   │   │   │   └── RequiredTwice.php
│   │   │   ├── HeaderMock.php
│   │   │   ├── MockExceptionHandler.php
│   │   │   └── phpt
│   │   │   ├── debug_class_loader.phpt
│   │   │   ├── decorate_exception_hander.phpt
│   │   │   ├── exception_rethrown.phpt
│   │   │   └── fatal_with_nested_handlers.phpt
│   │   ├── event-dispatcher
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── ContainerAwareEventDispatcher.php
│   │   │   ├── Debug
│   │   │   │   ├── TraceableEventDispatcherInterface.php
│   │   │   │   ├── TraceableEventDispatcher.php
│   │   │   │   └── WrappedListener.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── RegisterListenersPass.php
│   │   │   ├── EventDispatcherInterface.php
│   │   │   ├── EventDispatcher.php
│   │   │   ├── Event.php
│   │   │   ├── EventSubscriberInterface.php
│   │   │   ├── GenericEvent.php
│   │   │   ├── ImmutableEventDispatcher.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   └── Tests
│   │   │   ├── AbstractEventDispatcherTest.php
│   │   │   ├── ContainerAwareEventDispatcherTest.php
│   │   │   ├── Debug
│   │   │   │   └── TraceableEventDispatcherTest.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── RegisterListenersPassTest.php
│   │   │   ├── EventDispatcherTest.php
│   │   │   ├── EventTest.php
│   │   │   ├── GenericEventTest.php
│   │   │   └── ImmutableEventDispatcherTest.php
│   │   ├── finder
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Comparator
│   │   │   │   ├── Comparator.php
│   │   │   │   ├── DateComparator.php
│   │   │   │   └── NumberComparator.php
│   │   │   ├── composer.json
│   │   │   ├── Exception
│   │   │   │   ├── AccessDeniedException.php
│   │   │   │   └── ExceptionInterface.php
│   │   │   ├── Finder.php
│   │   │   ├── Glob.php
│   │   │   ├── Iterator
│   │   │   │   ├── CustomFilterIterator.php
│   │   │   │   ├── DateRangeFilterIterator.php
│   │   │   │   ├── DepthRangeFilterIterator.php
│   │   │   │   ├── ExcludeDirectoryFilterIterator.php
│   │   │   │   ├── FilecontentFilterIterator.php
│   │   │   │   ├── FilenameFilterIterator.php
│   │   │   │   ├── FileTypeFilterIterator.php
│   │   │   │   ├── FilterIterator.php
│   │   │   │   ├── MultiplePcreFilterIterator.php
│   │   │   │   ├── PathFilterIterator.php
│   │   │   │   ├── RecursiveDirectoryIterator.php
│   │   │   │   ├── SizeRangeFilterIterator.php
│   │   │   │   └── SortableIterator.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── SplFileInfo.php
│   │   │   └── Tests
│   │   │   ├── Comparator
│   │   │   │   ├── ComparatorTest.php
│   │   │   │   ├── DateComparatorTest.php
│   │   │   │   └── NumberComparatorTest.php
│   │   │   ├── FinderTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── A
│   │   │   │   │   ├── a.dat
│   │   │   │   │   └── B
│   │   │   │   │   ├── ab.dat
│   │   │   │   │   └── C
│   │   │   │   │   └── abc.dat
│   │   │   │   ├── copy
│   │   │   │   │   └── A
│   │   │   │   │   ├── a.dat.copy
│   │   │   │   │   └── B
│   │   │   │   │   ├── ab.dat.copy
│   │   │   │   │   └── C
│   │   │   │   │   └── abc.dat.copy
│   │   │   │   ├── dolor.txt
│   │   │   │   ├── ipsum.txt
│   │   │   │   ├── lorem.txt
│   │   │   │   ├── one
│   │   │   │   │   ├── a
│   │   │   │   │   └── b
│   │   │   │   │   ├── c.neon
│   │   │   │   │   └── d.neon
│   │   │   │   ├── r+e.gex[c]a(r)s
│   │   │   │   │   └── dir
│   │   │   │   │   └── bar.dat
│   │   │   │   └── with space
│   │   │   │   └── foo.txt
│   │   │   ├── GlobTest.php
│   │   │   └── Iterator
│   │   │   ├── CustomFilterIteratorTest.php
│   │   │   ├── DateRangeFilterIteratorTest.php
│   │   │   ├── DepthRangeFilterIteratorTest.php
│   │   │   ├── ExcludeDirectoryFilterIteratorTest.php
│   │   │   ├── FilecontentFilterIteratorTest.php
│   │   │   ├── FilenameFilterIteratorTest.php
│   │   │   ├── FileTypeFilterIteratorTest.php
│   │   │   ├── FilterIteratorTest.php
│   │   │   ├── Iterator.php
│   │   │   ├── IteratorTestCase.php
│   │   │   ├── MockFileListIterator.php
│   │   │   ├── MockSplFileInfo.php
│   │   │   ├── MultiplePcreFilterIteratorTest.php
│   │   │   ├── PathFilterIteratorTest.php
│   │   │   ├── RealIteratorTestCase.php
│   │   │   ├── RecursiveDirectoryIteratorTest.php
│   │   │   ├── SizeRangeFilterIteratorTest.php
│   │   │   └── SortableIteratorTest.php
│   │   ├── http-foundation
│   │   │   ├── AcceptHeaderItem.php
│   │   │   ├── AcceptHeader.php
│   │   │   ├── ApacheRequest.php
│   │   │   ├── BinaryFileResponse.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── Cookie.php
│   │   │   ├── Exception
│   │   │   │   ├── ConflictingHeadersException.php
│   │   │   │   ├── RequestExceptionInterface.php
│   │   │   │   └── SuspiciousOperationException.php
│   │   │   ├── ExpressionRequestMatcher.php
│   │   │   ├── File
│   │   │   │   ├── Exception
│   │   │   │   │   ├── AccessDeniedException.php
│   │   │   │   │   ├── FileException.php
│   │   │   │   │   ├── FileNotFoundException.php
│   │   │   │   │   ├── UnexpectedTypeException.php
│   │   │   │   │   └── UploadException.php
│   │   │   │   ├── File.php
│   │   │   │   ├── MimeType
│   │   │   │   │   ├── ExtensionGuesserInterface.php
│   │   │   │   │   ├── ExtensionGuesser.php
│   │   │   │   │   ├── FileBinaryMimeTypeGuesser.php
│   │   │   │   │   ├── FileinfoMimeTypeGuesser.php
│   │   │   │   │   ├── MimeTypeExtensionGuesser.php
│   │   │   │   │   ├── MimeTypeGuesserInterface.php
│   │   │   │   │   └── MimeTypeGuesser.php
│   │   │   │   ├── Stream.php
│   │   │   │   └── UploadedFile.php
│   │   │   ├── FileBag.php
│   │   │   ├── HeaderBag.php
│   │   │   ├── IpUtils.php
│   │   │   ├── JsonResponse.php
│   │   │   ├── LICENSE
│   │   │   ├── ParameterBag.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── RedirectResponse.php
│   │   │   ├── RequestMatcherInterface.php
│   │   │   ├── RequestMatcher.php
│   │   │   ├── Request.php
│   │   │   ├── RequestStack.php
│   │   │   ├── ResponseHeaderBag.php
│   │   │   ├── Response.php
│   │   │   ├── ServerBag.php
│   │   │   ├── Session
│   │   │   │   ├── Attribute
│   │   │   │   │   ├── AttributeBagInterface.php
│   │   │   │   │   ├── AttributeBag.php
│   │   │   │   │   └── NamespacedAttributeBag.php
│   │   │   │   ├── Flash
│   │   │   │   │   ├── AutoExpireFlashBag.php
│   │   │   │   │   ├── FlashBagInterface.php
│   │   │   │   │   └── FlashBag.php
│   │   │   │   ├── SessionBagInterface.php
│   │   │   │   ├── SessionBagProxy.php
│   │   │   │   ├── SessionInterface.php
│   │   │   │   ├── Session.php
│   │   │   │   └── Storage
│   │   │   │   ├── Handler
│   │   │   │   │   ├── AbstractSessionHandler.php
│   │   │   │   │   ├── MemcachedSessionHandler.php
│   │   │   │   │   ├── MemcacheSessionHandler.php
│   │   │   │   │   ├── MongoDbSessionHandler.php
│   │   │   │   │   ├── NativeFileSessionHandler.php
│   │   │   │   │   ├── NativeSessionHandler.php
│   │   │   │   │   ├── NullSessionHandler.php
│   │   │   │   │   ├── PdoSessionHandler.php
│   │   │   │   │   ├── StrictSessionHandler.php
│   │   │   │   │   └── WriteCheckSessionHandler.php
│   │   │   │   ├── MetadataBag.php
│   │   │   │   ├── MockArraySessionStorage.php
│   │   │   │   ├── MockFileSessionStorage.php
│   │   │   │   ├── NativeSessionStorage.php
│   │   │   │   ├── PhpBridgeSessionStorage.php
│   │   │   │   ├── Proxy
│   │   │   │   │   ├── AbstractProxy.php
│   │   │   │   │   ├── NativeProxy.php
│   │   │   │   │   └── SessionHandlerProxy.php
│   │   │   │   └── SessionStorageInterface.php
│   │   │   ├── StreamedResponse.php
│   │   │   └── Tests
│   │   │   ├── AcceptHeaderItemTest.php
│   │   │   ├── AcceptHeaderTest.php
│   │   │   ├── ApacheRequestTest.php
│   │   │   ├── BinaryFileResponseTest.php
│   │   │   ├── CookieTest.php
│   │   │   ├── ExpressionRequestMatcherTest.php
│   │   │   ├── File
│   │   │   │   ├── FakeFile.php
│   │   │   │   ├── FileTest.php
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── directory
│   │   │   │   │   ├── other-file.example
│   │   │   │   │   ├── test
│   │   │   │   │   └── test.gif
│   │   │   │   ├── MimeType
│   │   │   │   │   └── MimeTypeTest.php
│   │   │   │   └── UploadedFileTest.php
│   │   │   ├── FileBagTest.php
│   │   │   ├── HeaderBagTest.php
│   │   │   ├── IpUtilsTest.php
│   │   │   ├── JsonResponseTest.php
│   │   │   ├── ParameterBagTest.php
│   │   │   ├── RedirectResponseTest.php
│   │   │   ├── RequestMatcherTest.php
│   │   │   ├── RequestStackTest.php
│   │   │   ├── RequestTest.php
│   │   │   ├── ResponseHeaderBagTest.php
│   │   │   ├── ResponseTestCase.php
│   │   │   ├── ResponseTest.php
│   │   │   ├── schema
│   │   │   │   ├── http-status-codes.rng
│   │   │   │   └── iana-registry.rng
│   │   │   ├── ServerBagTest.php
│   │   │   ├── Session
│   │   │   │   ├── Attribute
│   │   │   │   │   ├── AttributeBagTest.php
│   │   │   │   │   └── NamespacedAttributeBagTest.php
│   │   │   │   ├── Flash
│   │   │   │   │   ├── AutoExpireFlashBagTest.php
│   │   │   │   │   └── FlashBagTest.php
│   │   │   │   ├── SessionTest.php
│   │   │   │   └── Storage
│   │   │   │   ├── Handler
│   │   │   │   │   ├── AbstractSessionHandlerTest.php
│   │   │   │   │   ├── Fixtures
│   │   │   │   │   │   ├── common.inc
│   │   │   │   │   │   ├── empty_destroys.expected
│   │   │   │   │   │   ├── empty_destroys.php
│   │   │   │   │   │   ├── read_only.expected
│   │   │   │   │   │   ├── read_only.php
│   │   │   │   │   │   ├── regenerate.expected
│   │   │   │   │   │   ├── regenerate.php
│   │   │   │   │   │   ├── storage.expected
│   │   │   │   │   │   ├── storage.php
│   │   │   │   │   │   ├── with_cookie_and_session.expected
│   │   │   │   │   │   ├── with_cookie_and_session.php
│   │   │   │   │   │   ├── with_cookie.expected
│   │   │   │   │   │   └── with_cookie.php
│   │   │   │   │   ├── MemcachedSessionHandlerTest.php
│   │   │   │   │   ├── MemcacheSessionHandlerTest.php
│   │   │   │   │   ├── MongoDbSessionHandlerTest.php
│   │   │   │   │   ├── NativeFileSessionHandlerTest.php
│   │   │   │   │   ├── NativeSessionHandlerTest.php
│   │   │   │   │   ├── NullSessionHandlerTest.php
│   │   │   │   │   ├── PdoSessionHandlerTest.php
│   │   │   │   │   ├── StrictSessionHandlerTest.php
│   │   │   │   │   └── WriteCheckSessionHandlerTest.php
│   │   │   │   ├── MetadataBagTest.php
│   │   │   │   ├── MockArraySessionStorageTest.php
│   │   │   │   ├── MockFileSessionStorageTest.php
│   │   │   │   ├── NativeSessionStorageTest.php
│   │   │   │   ├── PhpBridgeSessionStorageTest.php
│   │   │   │   └── Proxy
│   │   │   │   ├── AbstractProxyTest.php
│   │   │   │   ├── NativeProxyTest.php
│   │   │   │   └── SessionHandlerProxyTest.php
│   │   │   └── StreamedResponseTest.php
│   │   ├── http-kernel
│   │   │   ├── Bundle
│   │   │   │   ├── BundleInterface.php
│   │   │   │   └── Bundle.php
│   │   │   ├── CacheClearer
│   │   │   │   ├── CacheClearerInterface.php
│   │   │   │   ├── ChainCacheClearer.php
│   │   │   │   └── Psr6CacheClearer.php
│   │   │   ├── CacheWarmer
│   │   │   │   ├── CacheWarmerAggregate.php
│   │   │   │   ├── CacheWarmerInterface.php
│   │   │   │   ├── CacheWarmer.php
│   │   │   │   └── WarmableInterface.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Client.php
│   │   │   ├── composer.json
│   │   │   ├── Config
│   │   │   │   ├── EnvParametersResource.php
│   │   │   │   └── FileLocator.php
│   │   │   ├── Controller
│   │   │   │   ├── ArgumentResolver
│   │   │   │   │   ├── DefaultValueResolver.php
│   │   │   │   │   ├── RequestAttributeValueResolver.php
│   │   │   │   │   ├── RequestValueResolver.php
│   │   │   │   │   ├── ServiceValueResolver.php
│   │   │   │   │   ├── SessionValueResolver.php
│   │   │   │   │   └── VariadicValueResolver.php
│   │   │   │   ├── ArgumentResolverInterface.php
│   │   │   │   ├── ArgumentResolver.php
│   │   │   │   ├── ArgumentValueResolverInterface.php
│   │   │   │   ├── ContainerControllerResolver.php
│   │   │   │   ├── ControllerReference.php
│   │   │   │   ├── ControllerResolverInterface.php
│   │   │   │   ├── ControllerResolver.php
│   │   │   │   ├── TraceableArgumentResolver.php
│   │   │   │   └── TraceableControllerResolver.php
│   │   │   ├── ControllerMetadata
│   │   │   │   ├── ArgumentMetadataFactoryInterface.php
│   │   │   │   ├── ArgumentMetadataFactory.php
│   │   │   │   └── ArgumentMetadata.php
│   │   │   ├── DataCollector
│   │   │   │   ├── AjaxDataCollector.php
│   │   │   │   ├── ConfigDataCollector.php
│   │   │   │   ├── DataCollectorInterface.php
│   │   │   │   ├── DataCollector.php
│   │   │   │   ├── DumpDataCollector.php
│   │   │   │   ├── EventDataCollector.php
│   │   │   │   ├── ExceptionDataCollector.php
│   │   │   │   ├── LateDataCollectorInterface.php
│   │   │   │   ├── LoggerDataCollector.php
│   │   │   │   ├── MemoryDataCollector.php
│   │   │   │   ├── RequestDataCollector.php
│   │   │   │   ├── RouterDataCollector.php
│   │   │   │   ├── TimeDataCollector.php
│   │   │   │   └── Util
│   │   │   │   └── ValueExporter.php
│   │   │   ├── Debug
│   │   │   │   ├── FileLinkFormatter.php
│   │   │   │   └── TraceableEventDispatcher.php
│   │   │   ├── DependencyInjection
│   │   │   │   ├── AddAnnotatedClassesToCachePass.php
│   │   │   │   ├── AddClassesToCachePass.php
│   │   │   │   ├── ConfigurableExtension.php
│   │   │   │   ├── ControllerArgumentValueResolverPass.php
│   │   │   │   ├── Extension.php
│   │   │   │   ├── FragmentRendererPass.php
│   │   │   │   ├── LazyLoadingFragmentHandler.php
│   │   │   │   ├── LoggerPass.php
│   │   │   │   ├── MergeExtensionConfigurationPass.php
│   │   │   │   ├── RegisterControllerArgumentLocatorsPass.php
│   │   │   │   ├── RemoveEmptyControllerArgumentLocatorsPass.php
│   │   │   │   ├── ResettableServicePass.php
│   │   │   │   └── ServicesResetter.php
│   │   │   ├── Event
│   │   │   │   ├── FilterControllerArgumentsEvent.php
│   │   │   │   ├── FilterControllerEvent.php
│   │   │   │   ├── FilterResponseEvent.php
│   │   │   │   ├── FinishRequestEvent.php
│   │   │   │   ├── GetResponseEvent.php
│   │   │   │   ├── GetResponseForControllerResultEvent.php
│   │   │   │   ├── GetResponseForExceptionEvent.php
│   │   │   │   ├── KernelEvent.php
│   │   │   │   └── PostResponseEvent.php
│   │   │   ├── EventListener
│   │   │   │   ├── AbstractSessionListener.php
│   │   │   │   ├── AbstractTestSessionListener.php
│   │   │   │   ├── AddRequestFormatsListener.php
│   │   │   │   ├── DebugHandlersListener.php
│   │   │   │   ├── DumpListener.php
│   │   │   │   ├── ExceptionListener.php
│   │   │   │   ├── FragmentListener.php
│   │   │   │   ├── LocaleListener.php
│   │   │   │   ├── ProfilerListener.php
│   │   │   │   ├── ResponseListener.php
│   │   │   │   ├── RouterListener.php
│   │   │   │   ├── SaveSessionListener.php
│   │   │   │   ├── SessionListener.php
│   │   │   │   ├── StreamedResponseListener.php
│   │   │   │   ├── SurrogateListener.php
│   │   │   │   ├── TestSessionListener.php
│   │   │   │   ├── TranslatorListener.php
│   │   │   │   └── ValidateRequestListener.php
│   │   │   ├── Exception
│   │   │   │   ├── AccessDeniedHttpException.php
│   │   │   │   ├── BadRequestHttpException.php
│   │   │   │   ├── ConflictHttpException.php
│   │   │   │   ├── GoneHttpException.php
│   │   │   │   ├── HttpExceptionInterface.php
│   │   │   │   ├── HttpException.php
│   │   │   │   ├── LengthRequiredHttpException.php
│   │   │   │   ├── MethodNotAllowedHttpException.php
│   │   │   │   ├── NotAcceptableHttpException.php
│   │   │   │   ├── NotFoundHttpException.php
│   │   │   │   ├── PreconditionFailedHttpException.php
│   │   │   │   ├── PreconditionRequiredHttpException.php
│   │   │   │   ├── ServiceUnavailableHttpException.php
│   │   │   │   ├── TooManyRequestsHttpException.php
│   │   │   │   ├── UnauthorizedHttpException.php
│   │   │   │   ├── UnprocessableEntityHttpException.php
│   │   │   │   └── UnsupportedMediaTypeHttpException.php
│   │   │   ├── Fragment
│   │   │   │   ├── AbstractSurrogateFragmentRenderer.php
│   │   │   │   ├── EsiFragmentRenderer.php
│   │   │   │   ├── FragmentHandler.php
│   │   │   │   ├── FragmentRendererInterface.php
│   │   │   │   ├── HIncludeFragmentRenderer.php
│   │   │   │   ├── InlineFragmentRenderer.php
│   │   │   │   ├── RoutableFragmentRenderer.php
│   │   │   │   └── SsiFragmentRenderer.php
│   │   │   ├── HttpCache
│   │   │   │   ├── AbstractSurrogate.php
│   │   │   │   ├── Esi.php
│   │   │   │   ├── HttpCache.php
│   │   │   │   ├── ResponseCacheStrategyInterface.php
│   │   │   │   ├── ResponseCacheStrategy.php
│   │   │   │   ├── Ssi.php
│   │   │   │   ├── StoreInterface.php
│   │   │   │   ├── Store.php
│   │   │   │   └── SurrogateInterface.php
│   │   │   ├── HttpKernelInterface.php
│   │   │   ├── HttpKernel.php
│   │   │   ├── KernelEvents.php
│   │   │   ├── KernelInterface.php
│   │   │   ├── Kernel.php
│   │   │   ├── LICENSE
│   │   │   ├── Log
│   │   │   │   ├── DebugLoggerInterface.php
│   │   │   │   └── Logger.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── Profiler
│   │   │   │   ├── FileProfilerStorage.php
│   │   │   │   ├── Profile.php
│   │   │   │   ├── Profiler.php
│   │   │   │   └── ProfilerStorageInterface.php
│   │   │   ├── README.md
│   │   │   ├── RebootableInterface.php
│   │   │   ├── Resources
│   │   │   │   └── welcome.html.php
│   │   │   ├── TerminableInterface.php
│   │   │   ├── Tests
│   │   │   │   ├── Bundle
│   │   │   │   │   └── BundleTest.php
│   │   │   │   ├── CacheClearer
│   │   │   │   │   ├── ChainCacheClearerTest.php
│   │   │   │   │   └── Psr6CacheClearerTest.php
│   │   │   │   ├── CacheWarmer
│   │   │   │   │   ├── CacheWarmerAggregateTest.php
│   │   │   │   │   └── CacheWarmerTest.php
│   │   │   │   ├── ClientTest.php
│   │   │   │   ├── Config
│   │   │   │   │   ├── EnvParametersResourceTest.php
│   │   │   │   │   └── FileLocatorTest.php
│   │   │   │   ├── Controller
│   │   │   │   │   ├── ArgumentResolver
│   │   │   │   │   │   └── ServiceValueResolverTest.php
│   │   │   │   │   ├── ArgumentResolverTest.php
│   │   │   │   │   ├── ContainerControllerResolverTest.php
│   │   │   │   │   └── ControllerResolverTest.php
│   │   │   │   ├── ControllerMetadata
│   │   │   │   │   ├── ArgumentMetadataFactoryTest.php
│   │   │   │   │   └── ArgumentMetadataTest.php
│   │   │   │   ├── DataCollector
│   │   │   │   │   ├── Compiler.log
│   │   │   │   │   ├── ConfigDataCollectorTest.php
│   │   │   │   │   ├── DataCollectorTest.php
│   │   │   │   │   ├── DumpDataCollectorTest.php
│   │   │   │   │   ├── ExceptionDataCollectorTest.php
│   │   │   │   │   ├── LoggerDataCollectorTest.php
│   │   │   │   │   ├── MemoryDataCollectorTest.php
│   │   │   │   │   ├── RequestDataCollectorTest.php
│   │   │   │   │   ├── TimeDataCollectorTest.php
│   │   │   │   │   └── Util
│   │   │   │   │   └── ValueExporterTest.php
│   │   │   │   ├── Debug
│   │   │   │   │   ├── FileLinkFormatterTest.php
│   │   │   │   │   └── TraceableEventDispatcherTest.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── AddAnnotatedClassesToCachePassTest.php
│   │   │   │   │   ├── ControllerArgumentValueResolverPassTest.php
│   │   │   │   │   ├── FragmentRendererPassTest.php
│   │   │   │   │   ├── LazyLoadingFragmentHandlerTest.php
│   │   │   │   │   ├── LoggerPassTest.php
│   │   │   │   │   ├── MergeExtensionConfigurationPassTest.php
│   │   │   │   │   ├── RegisterControllerArgumentLocatorsPassTest.php
│   │   │   │   │   ├── RemoveEmptyControllerArgumentLocatorsPassTest.php
│   │   │   │   │   ├── ResettableServicePassTest.php
│   │   │   │   │   └── ServicesResetterTest.php
│   │   │   │   ├── Event
│   │   │   │   │   ├── FilterControllerArgumentsEventTest.php
│   │   │   │   │   └── GetResponseForExceptionEventTest.php
│   │   │   │   ├── EventListener
│   │   │   │   │   ├── AddRequestFormatsListenerTest.php
│   │   │   │   │   ├── DebugHandlersListenerTest.php
│   │   │   │   │   ├── DumpListenerTest.php
│   │   │   │   │   ├── ExceptionListenerTest.php
│   │   │   │   │   ├── FragmentListenerTest.php
│   │   │   │   │   ├── LocaleListenerTest.php
│   │   │   │   │   ├── ProfilerListenerTest.php
│   │   │   │   │   ├── ResponseListenerTest.php
│   │   │   │   │   ├── RouterListenerTest.php
│   │   │   │   │   ├── SaveSessionListenerTest.php
│   │   │   │   │   ├── SessionListenerTest.php
│   │   │   │   │   ├── SurrogateListenerTest.php
│   │   │   │   │   ├── TestSessionListenerTest.php
│   │   │   │   │   ├── TranslatorListenerTest.php
│   │   │   │   │   └── ValidateRequestListenerTest.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── AccessDeniedHttpExceptionTest.php
│   │   │   │   │   ├── BadRequestHttpExceptionTest.php
│   │   │   │   │   ├── ConflictHttpExceptionTest.php
│   │   │   │   │   ├── GoneHttpExceptionTest.php
│   │   │   │   │   ├── HttpExceptionTest.php
│   │   │   │   │   ├── LengthRequiredHttpExceptionTest.php
│   │   │   │   │   ├── MethodNotAllowedHttpExceptionTest.php
│   │   │   │   │   ├── NotAcceptableHttpExceptionTest.php
│   │   │   │   │   ├── NotFoundHttpExceptionTest.php
│   │   │   │   │   ├── PreconditionFailedHttpExceptionTest.php
│   │   │   │   │   ├── PreconditionRequiredHttpExceptionTest.php
│   │   │   │   │   ├── ServiceUnavailableHttpExceptionTest.php
│   │   │   │   │   ├── TooManyRequestsHttpExceptionTest.php
│   │   │   │   │   ├── UnauthorizedHttpExceptionTest.php
│   │   │   │   │   ├── UnprocessableEntityHttpExceptionTest.php
│   │   │   │   │   └── UnsupportedMediaTypeHttpExceptionTest.php
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── 123
│   │   │   │   │   │   └── Kernel123.php
│   │   │   │   │   ├── BaseBundle
│   │   │   │   │   │   └── Resources
│   │   │   │   │   │   ├── foo.txt
│   │   │   │   │   │   └── hide.txt
│   │   │   │   │   ├── Bundle1Bundle
│   │   │   │   │   │   ├── bar.txt
│   │   │   │   │   │   ├── foo.txt
│   │   │   │   │   │   └── Resources
│   │   │   │   │   │   └── foo.txt
│   │   │   │   │   ├── Bundle2Bundle
│   │   │   │   │   │   └── foo.txt
│   │   │   │   │   ├── ChildBundle
│   │   │   │   │   │   └── Resources
│   │   │   │   │   │   ├── foo.txt
│   │   │   │   │   │   └── hide.txt
│   │   │   │   │   ├── ClearableService.php
│   │   │   │   │   ├── Controller
│   │   │   │   │   │   ├── BasicTypesController.php
│   │   │   │   │   │   ├── ExtendingRequest.php
│   │   │   │   │   │   ├── ExtendingSession.php
│   │   │   │   │   │   ├── NullableController.php
│   │   │   │   │   │   └── VariadicController.php
│   │   │   │   │   ├── DataCollector
│   │   │   │   │   │   └── CloneVarDataCollector.php
│   │   │   │   │   ├── ExtensionAbsentBundle
│   │   │   │   │   │   └── ExtensionAbsentBundle.php
│   │   │   │   │   ├── ExtensionLoadedBundle
│   │   │   │   │   │   ├── DependencyInjection
│   │   │   │   │   │   │   └── ExtensionLoadedExtension.php
│   │   │   │   │   │   └── ExtensionLoadedBundle.php
│   │   │   │   │   ├── ExtensionNotValidBundle
│   │   │   │   │   │   ├── DependencyInjection
│   │   │   │   │   │   │   └── ExtensionNotValidExtension.php
│   │   │   │   │   │   └── ExtensionNotValidBundle.php
│   │   │   │   │   ├── ExtensionPresentBundle
│   │   │   │   │   │   ├── Command
│   │   │   │   │   │   │   ├── BarCommand.php
│   │   │   │   │   │   │   └── FooCommand.php
│   │   │   │   │   │   ├── DependencyInjection
│   │   │   │   │   │   │   └── ExtensionPresentExtension.php
│   │   │   │   │   │   └── ExtensionPresentBundle.php
│   │   │   │   │   ├── KernelForOverrideName.php
│   │   │   │   │   ├── KernelForTest.php
│   │   │   │   │   ├── KernelWithoutBundles.php
│   │   │   │   │   ├── ResettableService.php
│   │   │   │   │   ├── Resources
│   │   │   │   │   │   ├── BaseBundle
│   │   │   │   │   │   │   └── hide.txt
│   │   │   │   │   │   ├── Bundle1Bundle
│   │   │   │   │   │   │   └── foo.txt
│   │   │   │   │   │   ├── ChildBundle
│   │   │   │   │   │   │   └── foo.txt
│   │   │   │   │   │   └── FooBundle
│   │   │   │   │   │   └── foo.txt
│   │   │   │   │   ├── TestClient.php
│   │   │   │   │   └── TestEventDispatcher.php
│   │   │   │   ├── Fragment
│   │   │   │   │   ├── EsiFragmentRendererTest.php
│   │   │   │   │   ├── FragmentHandlerTest.php
│   │   │   │   │   ├── HIncludeFragmentRendererTest.php
│   │   │   │   │   ├── InlineFragmentRendererTest.php
│   │   │   │   │   ├── RoutableFragmentRendererTest.php
│   │   │   │   │   └── SsiFragmentRendererTest.php
│   │   │   │   ├── HttpCache
│   │   │   │   │   ├── EsiTest.php
│   │   │   │   │   ├── HttpCacheTestCase.php
│   │   │   │   │   ├── HttpCacheTest.php
│   │   │   │   │   ├── ResponseCacheStrategyTest.php
│   │   │   │   │   ├── SsiTest.php
│   │   │   │   │   ├── StoreTest.php
│   │   │   │   │   ├── TestHttpKernel.php
│   │   │   │   │   └── TestMultipleHttpKernel.php
│   │   │   │   ├── HttpKernelTest.php
│   │   │   │   ├── KernelTest.php
│   │   │   │   ├── Log
│   │   │   │   │   └── LoggerTest.php
│   │   │   │   ├── Logger.php
│   │   │   │   ├── Profiler
│   │   │   │   │   ├── FileProfilerStorageTest.php
│   │   │   │   │   └── ProfilerTest.php
│   │   │   │   ├── TestHttpKernel.php
│   │   │   │   └── UriSignerTest.php
│   │   │   └── UriSigner.php
│   │   ├── polyfill-mbstring
│   │   │   ├── bootstrap.php
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── Mbstring.php
│   │   │   ├── README.md
│   │   │   └── Resources
│   │   │   └── unidata
│   │   │   ├── lowerCase.php
│   │   │   └── upperCase.php
│   │   ├── polyfill-php70
│   │   │   ├── bootstrap.php
│   │   │   ├── composer.json
│   │   │   ├── LICENSE
│   │   │   ├── Php70.php
│   │   │   ├── README.md
│   │   │   └── Resources
│   │   │   └── stubs
│   │   │   ├── ArithmeticError.php
│   │   │   ├── AssertionError.php
│   │   │   ├── DivisionByZeroError.php
│   │   │   ├── Error.php
│   │   │   ├── ParseError.php
│   │   │   ├── SessionUpdateTimestampHandlerInterface.php
│   │   │   └── TypeError.php
│   │   ├── process
│   │   │   ├── CHANGELOG.md
│   │   │   ├── composer.json
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── ProcessFailedException.php
│   │   │   │   ├── ProcessTimedOutException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── ExecutableFinder.php
│   │   │   ├── InputStream.php
│   │   │   ├── LICENSE
│   │   │   ├── PhpExecutableFinder.php
│   │   │   ├── PhpProcess.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── Pipes
│   │   │   │   ├── AbstractPipes.php
│   │   │   │   ├── PipesInterface.php
│   │   │   │   ├── UnixPipes.php
│   │   │   │   └── WindowsPipes.php
│   │   │   ├── ProcessBuilder.php
│   │   │   ├── Process.php
│   │   │   ├── ProcessUtils.php
│   │   │   ├── README.md
│   │   │   └── Tests
│   │   │   ├── ExecutableFinderTest.php
│   │   │   ├── NonStopableProcess.php
│   │   │   ├── PhpExecutableFinderTest.php
│   │   │   ├── PhpProcessTest.php
│   │   │   ├── PipeStdinInStdoutStdErrStreamSelect.php
│   │   │   ├── ProcessBuilderTest.php
│   │   │   ├── ProcessFailedExceptionTest.php
│   │   │   ├── ProcessTest.php
│   │   │   ├── ProcessUtilsTest.php
│   │   │   └── SignalListener.php
│   │   ├── routing
│   │   │   ├── Annotation
│   │   │   │   └── Route.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── CompiledRoute.php
│   │   │   ├── composer.json
│   │   │   ├── DependencyInjection
│   │   │   │   └── RoutingResolverPass.php
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidParameterException.php
│   │   │   │   ├── MethodNotAllowedException.php
│   │   │   │   ├── MissingMandatoryParametersException.php
│   │   │   │   ├── NoConfigurationException.php
│   │   │   │   ├── ResourceNotFoundException.php
│   │   │   │   └── RouteNotFoundException.php
│   │   │   ├── Generator
│   │   │   │   ├── ConfigurableRequirementsInterface.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── GeneratorDumperInterface.php
│   │   │   │   │   ├── GeneratorDumper.php
│   │   │   │   │   └── PhpGeneratorDumper.php
│   │   │   │   ├── UrlGeneratorInterface.php
│   │   │   │   └── UrlGenerator.php
│   │   │   ├── LICENSE
│   │   │   ├── Loader
│   │   │   │   ├── AnnotationClassLoader.php
│   │   │   │   ├── AnnotationDirectoryLoader.php
│   │   │   │   ├── AnnotationFileLoader.php
│   │   │   │   ├── ClosureLoader.php
│   │   │   │   ├── Configurator
│   │   │   │   │   ├── CollectionConfigurator.php
│   │   │   │   │   ├── ImportConfigurator.php
│   │   │   │   │   ├── RouteConfigurator.php
│   │   │   │   │   ├── RoutingConfigurator.php
│   │   │   │   │   └── Traits
│   │   │   │   │   ├── AddTrait.php
│   │   │   │   │   └── RouteTrait.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   └── ServiceRouterLoader.php
│   │   │   │   ├── DirectoryLoader.php
│   │   │   │   ├── GlobFileLoader.php
│   │   │   │   ├── ObjectRouteLoader.php
│   │   │   │   ├── PhpFileLoader.php
│   │   │   │   ├── schema
│   │   │   │   │   └── routing
│   │   │   │   │   └── routing-1.0.xsd
│   │   │   │   ├── XmlFileLoader.php
│   │   │   │   └── YamlFileLoader.php
│   │   │   ├── Matcher
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── DumperCollection.php
│   │   │   │   │   ├── DumperRoute.php
│   │   │   │   │   ├── MatcherDumperInterface.php
│   │   │   │   │   ├── MatcherDumper.php
│   │   │   │   │   ├── PhpMatcherDumper.php
│   │   │   │   │   └── StaticPrefixCollection.php
│   │   │   │   ├── RedirectableUrlMatcherInterface.php
│   │   │   │   ├── RedirectableUrlMatcher.php
│   │   │   │   ├── RequestMatcherInterface.php
│   │   │   │   ├── TraceableUrlMatcher.php
│   │   │   │   ├── UrlMatcherInterface.php
│   │   │   │   └── UrlMatcher.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── RequestContextAwareInterface.php
│   │   │   ├── RequestContext.php
│   │   │   ├── RouteCollectionBuilder.php
│   │   │   ├── RouteCollection.php
│   │   │   ├── RouteCompilerInterface.php
│   │   │   ├── RouteCompiler.php
│   │   │   ├── Route.php
│   │   │   ├── RouterInterface.php
│   │   │   ├── Router.php
│   │   │   └── Tests
│   │   │   ├── Annotation
│   │   │   │   └── RouteTest.php
│   │   │   ├── CompiledRouteTest.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── RoutingResolverPassTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── AnnotatedClasses
│   │   │   │   │   ├── AbstractClass.php
│   │   │   │   │   ├── BarClass.php
│   │   │   │   │   ├── BazClass.php
│   │   │   │   │   ├── FooClass.php
│   │   │   │   │   └── FooTrait.php
│   │   │   │   ├── annotated.php
│   │   │   │   ├── bad_format.yml
│   │   │   │   ├── bar.xml
│   │   │   │   ├── controller
│   │   │   │   │   ├── import__controller.xml
│   │   │   │   │   ├── import_controller.xml
│   │   │   │   │   ├── import__controller.yml
│   │   │   │   │   ├── import_controller.yml
│   │   │   │   │   ├── import_override_defaults.xml
│   │   │   │   │   ├── import_override_defaults.yml
│   │   │   │   │   ├── override_defaults.xml
│   │   │   │   │   ├── override_defaults.yml
│   │   │   │   │   ├── routing.xml
│   │   │   │   │   └── routing.yml
│   │   │   │   ├── CustomCompiledRoute.php
│   │   │   │   ├── CustomRouteCompiler.php
│   │   │   │   ├── CustomXmlFileLoader.php
│   │   │   │   ├── directory
│   │   │   │   │   ├── recurse
│   │   │   │   │   │   ├── routes1.yml
│   │   │   │   │   │   └── routes2.yml
│   │   │   │   │   └── routes3.yml
│   │   │   │   ├── directory_import
│   │   │   │   │   └── import.yml
│   │   │   │   ├── dumper
│   │   │   │   │   ├── url_matcher0.php
│   │   │   │   │   ├── url_matcher1.php
│   │   │   │   │   ├── url_matcher2.php
│   │   │   │   │   ├── url_matcher3.php
│   │   │   │   │   ├── url_matcher4.php
│   │   │   │   │   ├── url_matcher5.php
│   │   │   │   │   ├── url_matcher6.php
│   │   │   │   │   └── url_matcher7.php
│   │   │   │   ├── empty.yml
│   │   │   │   ├── file_resource.yml
│   │   │   │   ├── foo1.xml
│   │   │   │   ├── foo.xml
│   │   │   │   ├── incomplete.yml
│   │   │   │   ├── list_defaults.xml
│   │   │   │   ├── list_in_list_defaults.xml
│   │   │   │   ├── list_in_map_defaults.xml
│   │   │   │   ├── list_null_values.xml
│   │   │   │   ├── map_defaults.xml
│   │   │   │   ├── map_in_list_defaults.xml
│   │   │   │   ├── map_in_map_defaults.xml
│   │   │   │   ├── map_null_values.xml
│   │   │   │   ├── missing_id.xml
│   │   │   │   ├── missing_path.xml
│   │   │   │   ├── namespaceprefix.xml
│   │   │   │   ├── nonesense_resource_plus_path.yml
│   │   │   │   ├── nonesense_type_without_resource.yml
│   │   │   │   ├── nonvalid2.yml
│   │   │   │   ├── nonvalidkeys.yml
│   │   │   │   ├── nonvalidnode.xml
│   │   │   │   ├── nonvalidroute.xml
│   │   │   │   ├── nonvalid.xml
│   │   │   │   ├── nonvalid.yml
│   │   │   │   ├── null_values.xml
│   │   │   │   ├── OtherAnnotatedClasses
│   │   │   │   │   ├── AnonymousClassInTrait.php
│   │   │   │   │   ├── NoStartTagClass.php
│   │   │   │   │   └── VariadicClass.php
│   │   │   │   ├── php_dsl.php
│   │   │   │   ├── php_dsl_sub.php
│   │   │   │   ├── RedirectableUrlMatcher.php
│   │   │   │   ├── scalar_defaults.xml
│   │   │   │   ├── special_route_name.yml
│   │   │   │   ├── validpattern.php
│   │   │   │   ├── validpattern.xml
│   │   │   │   ├── validpattern.yml
│   │   │   │   ├── validresource.php
│   │   │   │   ├── validresource.xml
│   │   │   │   ├── validresource.yml
│   │   │   │   ├── with_define_path_variable.php
│   │   │   │   └── withdoctype.xml
│   │   │   ├── Generator
│   │   │   │   ├── Dumper
│   │   │   │   │   └── PhpGeneratorDumperTest.php
│   │   │   │   └── UrlGeneratorTest.php
│   │   │   ├── Loader
│   │   │   │   ├── AbstractAnnotationLoaderTest.php
│   │   │   │   ├── AnnotationClassLoaderTest.php
│   │   │   │   ├── AnnotationDirectoryLoaderTest.php
│   │   │   │   ├── AnnotationFileLoaderTest.php
│   │   │   │   ├── ClosureLoaderTest.php
│   │   │   │   ├── DirectoryLoaderTest.php
│   │   │   │   ├── GlobFileLoaderTest.php
│   │   │   │   ├── ObjectRouteLoaderTest.php
│   │   │   │   ├── PhpFileLoaderTest.php
│   │   │   │   ├── XmlFileLoaderTest.php
│   │   │   │   └── YamlFileLoaderTest.php
│   │   │   ├── Matcher
│   │   │   │   ├── DumpedRedirectableUrlMatcherTest.php
│   │   │   │   ├── DumpedUrlMatcherTest.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── DumperCollectionTest.php
│   │   │   │   │   ├── PhpMatcherDumperTest.php
│   │   │   │   │   └── StaticPrefixCollectionTest.php
│   │   │   │   ├── RedirectableUrlMatcherTest.php
│   │   │   │   ├── TraceableUrlMatcherTest.php
│   │   │   │   └── UrlMatcherTest.php
│   │   │   ├── RequestContextTest.php
│   │   │   ├── RouteCollectionBuilderTest.php
│   │   │   ├── RouteCollectionTest.php
│   │   │   ├── RouteCompilerTest.php
│   │   │   ├── RouterTest.php
│   │   │   └── RouteTest.php
│   │   ├── translation
│   │   │   ├── Catalogue
│   │   │   │   ├── AbstractOperation.php
│   │   │   │   ├── MergeOperation.php
│   │   │   │   ├── OperationInterface.php
│   │   │   │   └── TargetOperation.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Command
│   │   │   │   └── XliffLintCommand.php
│   │   │   ├── composer.json
│   │   │   ├── DataCollector
│   │   │   │   └── TranslationDataCollector.php
│   │   │   ├── DataCollectorTranslator.php
│   │   │   ├── DependencyInjection
│   │   │   │   ├── TranslationDumperPass.php
│   │   │   │   ├── TranslationExtractorPass.php
│   │   │   │   └── TranslatorPass.php
│   │   │   ├── Dumper
│   │   │   │   ├── CsvFileDumper.php
│   │   │   │   ├── DumperInterface.php
│   │   │   │   ├── FileDumper.php
│   │   │   │   ├── IcuResFileDumper.php
│   │   │   │   ├── IniFileDumper.php
│   │   │   │   ├── JsonFileDumper.php
│   │   │   │   ├── MoFileDumper.php
│   │   │   │   ├── PhpFileDumper.php
│   │   │   │   ├── PoFileDumper.php
│   │   │   │   ├── QtFileDumper.php
│   │   │   │   ├── XliffFileDumper.php
│   │   │   │   └── YamlFileDumper.php
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── InvalidResourceException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── NotFoundResourceException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Extractor
│   │   │   │   ├── AbstractFileExtractor.php
│   │   │   │   ├── ChainExtractor.php
│   │   │   │   ├── ExtractorInterface.php
│   │   │   │   ├── PhpExtractor.php
│   │   │   │   └── PhpStringTokenParser.php
│   │   │   ├── Formatter
│   │   │   │   ├── ChoiceMessageFormatterInterface.php
│   │   │   │   ├── MessageFormatterInterface.php
│   │   │   │   └── MessageFormatter.php
│   │   │   ├── IdentityTranslator.php
│   │   │   ├── Interval.php
│   │   │   ├── LICENSE
│   │   │   ├── Loader
│   │   │   │   ├── ArrayLoader.php
│   │   │   │   ├── CsvFileLoader.php
│   │   │   │   ├── FileLoader.php
│   │   │   │   ├── IcuDatFileLoader.php
│   │   │   │   ├── IcuResFileLoader.php
│   │   │   │   ├── IniFileLoader.php
│   │   │   │   ├── JsonFileLoader.php
│   │   │   │   ├── LoaderInterface.php
│   │   │   │   ├── MoFileLoader.php
│   │   │   │   ├── PhpFileLoader.php
│   │   │   │   ├── PoFileLoader.php
│   │   │   │   ├── QtFileLoader.php
│   │   │   │   ├── schema
│   │   │   │   │   └── dic
│   │   │   │   │   └── xliff-core
│   │   │   │   │   ├── xliff-core-1.2-strict.xsd
│   │   │   │   │   ├── xliff-core-2.0.xsd
│   │   │   │   │   └── xml.xsd
│   │   │   │   ├── XliffFileLoader.php
│   │   │   │   └── YamlFileLoader.php
│   │   │   ├── LoggingTranslator.php
│   │   │   ├── MessageCatalogueInterface.php
│   │   │   ├── MessageCatalogue.php
│   │   │   ├── MessageSelector.php
│   │   │   ├── MetadataAwareInterface.php
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── PluralizationRules.php
│   │   │   ├── Reader
│   │   │   │   ├── TranslationReaderInterface.php
│   │   │   │   └── TranslationReader.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── schemas
│   │   │   │   └── xliff-core-1.2-strict.xsd
│   │   │   ├── Tests
│   │   │   │   ├── Catalogue
│   │   │   │   │   ├── AbstractOperationTest.php
│   │   │   │   │   ├── MergeOperationTest.php
│   │   │   │   │   └── TargetOperationTest.php
│   │   │   │   ├── DataCollector
│   │   │   │   │   └── TranslationDataCollectorTest.php
│   │   │   │   ├── DataCollectorTranslatorTest.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── TranslationDumperPassTest.php
│   │   │   │   │   ├── TranslationExtractorPassTest.php
│   │   │   │   │   └── TranslationPassTest.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── CsvFileDumperTest.php
│   │   │   │   │   ├── FileDumperTest.php
│   │   │   │   │   ├── IcuResFileDumperTest.php
│   │   │   │   │   ├── IniFileDumperTest.php
│   │   │   │   │   ├── JsonFileDumperTest.php
│   │   │   │   │   ├── MoFileDumperTest.php
│   │   │   │   │   ├── PhpFileDumperTest.php
│   │   │   │   │   ├── PoFileDumperTest.php
│   │   │   │   │   ├── QtFileDumperTest.php
│   │   │   │   │   ├── XliffFileDumperTest.php
│   │   │   │   │   └── YamlFileDumperTest.php
│   │   │   │   ├── Extractor
│   │   │   │   │   └── PhpExtractorTest.php
│   │   │   │   ├── fixtures
│   │   │   │   │   ├── empty.csv
│   │   │   │   │   ├── empty.ini
│   │   │   │   │   ├── empty.json
│   │   │   │   │   ├── empty.mo
│   │   │   │   │   ├── empty.po
│   │   │   │   │   ├── empty-translation.mo
│   │   │   │   │   ├── empty-translation.po
│   │   │   │   │   ├── empty.xlf
│   │   │   │   │   ├── empty.yml
│   │   │   │   │   ├── encoding.xlf
│   │   │   │   │   ├── escaped-id-plurals.po
│   │   │   │   │   ├── escaped-id.po
│   │   │   │   │   ├── extractor
│   │   │   │   │   │   ├── resource.format.engine
│   │   │   │   │   │   ├── this.is.a.template.format.engine
│   │   │   │   │   │   └── translation.html.php
│   │   │   │   │   ├── fuzzy-translations.po
│   │   │   │   │   ├── invalid-xml-resources.xlf
│   │   │   │   │   ├── malformed.json
│   │   │   │   │   ├── messages_linear.yml
│   │   │   │   │   ├── messages.yml
│   │   │   │   │   ├── non-valid.xlf
│   │   │   │   │   ├── non-valid.yml
│   │   │   │   │   ├── plurals.mo
│   │   │   │   │   ├── plurals.po
│   │   │   │   │   ├── resname.xlf
│   │   │   │   │   ├── resourcebundle
│   │   │   │   │   │   ├── corrupted
│   │   │   │   │   │   │   └── resources.dat
│   │   │   │   │   │   ├── dat
│   │   │   │   │   │   │   ├── en.res
│   │   │   │   │   │   │   ├── en.txt
│   │   │   │   │   │   │   ├── fr.res
│   │   │   │   │   │   │   ├── fr.txt
│   │   │   │   │   │   │   ├── packagelist.txt
│   │   │   │   │   │   │   └── resources.dat
│   │   │   │   │   │   └── res
│   │   │   │   │   │   └── en.res
│   │   │   │   │   ├── resources-2.0-clean.xlf
│   │   │   │   │   ├── resources-2.0-multi-segment-unit.xlf
│   │   │   │   │   ├── resources-2.0.xlf
│   │   │   │   │   ├── resources-clean.xlf
│   │   │   │   │   ├── resources.csv
│   │   │   │   │   ├── resources.dump.json
│   │   │   │   │   ├── resources.ini
│   │   │   │   │   ├── resources.json
│   │   │   │   │   ├── resources.mo
│   │   │   │   │   ├── resources-notes-meta.xlf
│   │   │   │   │   ├── resources.php
│   │   │   │   │   ├── resources.po
│   │   │   │   │   ├── resources-target-attributes.xlf
│   │   │   │   │   ├── resources-tool-info.xlf
│   │   │   │   │   ├── resources.ts
│   │   │   │   │   ├── resources.xlf
│   │   │   │   │   ├── resources.yml
│   │   │   │   │   ├── valid.csv
│   │   │   │   │   ├── with-attributes.xlf
│   │   │   │   │   ├── withdoctype.xlf
│   │   │   │   │   └── withnote.xlf
│   │   │   │   ├── Formatter
│   │   │   │   │   └── MessageFormatterTest.php
│   │   │   │   ├── IdentityTranslatorTest.php
│   │   │   │   ├── IntervalTest.php
│   │   │   │   ├── Loader
│   │   │   │   │   ├── CsvFileLoaderTest.php
│   │   │   │   │   ├── IcuDatFileLoaderTest.php
│   │   │   │   │   ├── IcuResFileLoaderTest.php
│   │   │   │   │   ├── IniFileLoaderTest.php
│   │   │   │   │   ├── JsonFileLoaderTest.php
│   │   │   │   │   ├── LocalizedTestCase.php
│   │   │   │   │   ├── MoFileLoaderTest.php
│   │   │   │   │   ├── PhpFileLoaderTest.php
│   │   │   │   │   ├── PoFileLoaderTest.php
│   │   │   │   │   ├── QtFileLoaderTest.php
│   │   │   │   │   ├── XliffFileLoaderTest.php
│   │   │   │   │   └── YamlFileLoaderTest.php
│   │   │   │   ├── LoggingTranslatorTest.php
│   │   │   │   ├── MessageCatalogueTest.php
│   │   │   │   ├── MessageSelectorTest.php
│   │   │   │   ├── PluralizationRulesTest.php
│   │   │   │   ├── TranslatorCacheTest.php
│   │   │   │   ├── TranslatorTest.php
│   │   │   │   ├── Util
│   │   │   │   │   └── ArrayConverterTest.php
│   │   │   │   └── Writer
│   │   │   │   └── TranslationWriterTest.php
│   │   │   ├── TranslatorBagInterface.php
│   │   │   ├── TranslatorInterface.php
│   │   │   ├── Translator.php
│   │   │   ├── Util
│   │   │   │   └── ArrayConverter.php
│   │   │   └── Writer
│   │   │   ├── TranslationWriterInterface.php
│   │   │   └── TranslationWriter.php
│   │   ├── var-dumper
│   │   │   ├── Caster
│   │   │   │   ├── AmqpCaster.php
│   │   │   │   ├── ArgsStub.php
│   │   │   │   ├── Caster.php
│   │   │   │   ├── ClassStub.php
│   │   │   │   ├── ConstStub.php
│   │   │   │   ├── CutArrayStub.php
│   │   │   │   ├── CutStub.php
│   │   │   │   ├── DateCaster.php
│   │   │   │   ├── DoctrineCaster.php
│   │   │   │   ├── DOMCaster.php
│   │   │   │   ├── EnumStub.php
│   │   │   │   ├── ExceptionCaster.php
│   │   │   │   ├── FrameStub.php
│   │   │   │   ├── LinkStub.php
│   │   │   │   ├── MongoCaster.php
│   │   │   │   ├── PdoCaster.php
│   │   │   │   ├── PgSqlCaster.php
│   │   │   │   ├── RedisCaster.php
│   │   │   │   ├── ReflectionCaster.php
│   │   │   │   ├── ResourceCaster.php
│   │   │   │   ├── SplCaster.php
│   │   │   │   ├── StubCaster.php
│   │   │   │   ├── SymfonyCaster.php
│   │   │   │   ├── TraceStub.php
│   │   │   │   ├── XmlReaderCaster.php
│   │   │   │   └── XmlResourceCaster.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Cloner
│   │   │   │   ├── AbstractCloner.php
│   │   │   │   ├── ClonerInterface.php
│   │   │   │   ├── Cursor.php
│   │   │   │   ├── Data.php
│   │   │   │   ├── DumperInterface.php
│   │   │   │   ├── Stub.php
│   │   │   │   └── VarCloner.php
│   │   │   ├── composer.json
│   │   │   ├── Dumper
│   │   │   │   ├── AbstractDumper.php
│   │   │   │   ├── CliDumper.php
│   │   │   │   ├── DataDumperInterface.php
│   │   │   │   └── HtmlDumper.php
│   │   │   ├── Exception
│   │   │   │   └── ThrowingCasterException.php
│   │   │   ├── LICENSE
│   │   │   ├── phpunit.xml.dist
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── functions
│   │   │   │   └── dump.php
│   │   │   ├── Test
│   │   │   │   └── VarDumperTestTrait.php
│   │   │   ├── Tests
│   │   │   │   ├── Caster
│   │   │   │   │   ├── CasterTest.php
│   │   │   │   │   ├── DateCasterTest.php
│   │   │   │   │   ├── ExceptionCasterTest.php
│   │   │   │   │   ├── PdoCasterTest.php
│   │   │   │   │   ├── RedisCasterTest.php
│   │   │   │   │   ├── ReflectionCasterTest.php
│   │   │   │   │   ├── SplCasterTest.php
│   │   │   │   │   ├── StubCasterTest.php
│   │   │   │   │   └── XmlReaderCasterTest.php
│   │   │   │   ├── Cloner
│   │   │   │   │   ├── DataTest.php
│   │   │   │   │   └── VarClonerTest.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── CliDumperTest.php
│   │   │   │   │   └── HtmlDumperTest.php
│   │   │   │   ├── Fixtures
│   │   │   │   │   ├── dumb-var.php
│   │   │   │   │   ├── FooInterface.php
│   │   │   │   │   ├── GeneratorDemo.php
│   │   │   │   │   ├── NotLoadableClass.php
│   │   │   │   │   ├── Twig.php
│   │   │   │   │   └── xml_reader.xml
│   │   │   │   └── Test
│   │   │   │   └── VarDumperTestTraitTest.php
│   │   │   └── VarDumper.php
│   │   └── yaml
│   │   ├── CHANGELOG.md
│   │   ├── Command
│   │   │   └── LintCommand.php
│   │   ├── composer.json
│   │   ├── Dumper.php
│   │   ├── Escaper.php
│   │   ├── Exception
│   │   │   ├── DumpException.php
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── ParseException.php
│   │   │   └── RuntimeException.php
│   │   ├── Inline.php
│   │   ├── LICENSE
│   │   ├── Parser.php
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   ├── Tag
│   │   │   └── TaggedValue.php
│   │   ├── Tests
│   │   │   ├── Command
│   │   │   │   └── LintCommandTest.php
│   │   │   ├── DumperTest.php
│   │   │   ├── Fixtures
│   │   │   │   ├── arrow.gif
│   │   │   │   ├── booleanMappingKeys.yml
│   │   │   │   ├── embededPhp.yml
│   │   │   │   ├── escapedCharacters.yml
│   │   │   │   ├── index.yml
│   │   │   │   ├── legacyBooleanMappingKeys.yml
│   │   │   │   ├── legacyNonStringKeys.yml
│   │   │   │   ├── legacyNullMappingKey.yml
│   │   │   │   ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml
│   │   │   │   ├── multiple_lines_as_literal_block.yml
│   │   │   │   ├── nonStringKeys.yml
│   │   │   │   ├── not_readable.yml
│   │   │   │   ├── nullMappingKey.yml
│   │   │   │   ├── numericMappingKeys.yml
│   │   │   │   ├── sfComments.yml
│   │   │   │   ├── sfCompact.yml
│   │   │   │   ├── sfMergeKey.yml
│   │   │   │   ├── sfObjects.yml
│   │   │   │   ├── sfQuotes.yml
│   │   │   │   ├── sfTests.yml
│   │   │   │   ├── unindentedCollections.yml
│   │   │   │   ├── YtsAnchorAlias.yml
│   │   │   │   ├── YtsBasicTests.yml
│   │   │   │   ├── YtsBlockMapping.yml
│   │   │   │   ├── YtsDocumentSeparator.yml
│   │   │   │   ├── YtsErrorTests.yml
│   │   │   │   ├── YtsFlowCollections.yml
│   │   │   │   ├── YtsFoldedScalars.yml
│   │   │   │   ├── YtsNullsAndEmpties.yml
│   │   │   │   ├── YtsSpecificationExamples.yml
│   │   │   │   └── YtsTypeTransfers.yml
│   │   │   ├── InlineTest.php
│   │   │   ├── ParseExceptionTest.php
│   │   │   ├── ParserTest.php
│   │   │   └── YamlTest.php
│   │   ├── Unescaper.php
│   │   └── Yaml.php
│   ├── tijsverkoyen
│   │   └── css-to-inline-styles
│   │   ├── composer.json
│   │   ├── LICENSE.md
│   │   ├── phpunit.xml.dist
│   │   └── src
│   │   ├── Css
│   │   │   ├── Processor.php
│   │   │   ├── Property
│   │   │   │   ├── Processor.php
│   │   │   │   └── Property.php
│   │   │   └── Rule
│   │   │   ├── Processor.php
│   │   │   └── Rule.php
│   │   └── CssToInlineStyles.php
│   ├── vlucas
│   │   └── phpdotenv
│   │   ├── composer.json
│   │   ├── LICENSE.txt
│   │   └── src
│   │   ├── Dotenv.php
│   │   ├── Exception
│   │   │   ├── ExceptionInterface.php
│   │   │   ├── InvalidCallbackException.php
│   │   │   ├── InvalidFileException.php
│   │   │   ├── InvalidPathException.php
│   │   │   └── ValidationException.php
│   │   ├── Loader.php
│   │   └── Validator.php
│   └── webmozart
│   └── assert
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── Assert.php
└── webpack.mix.js

1520 directories, 6868 files

标签:

实例下载地址

学员综合素质评测系统源代码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警