实例介绍
Laravel5.2博客项目实战开发视频教程 演示代码
【实例截图】
【核心代码】
blog
└── blog
├── app
│ ├── Console
│ │ ├── Commands
│ │ │ └── Inspire.php
│ │ └── Kernel.php
│ ├── Events
│ │ └── Event.php
│ ├── Exceptions
│ │ └── Handler.php
│ ├── Http
│ │ ├── Controllers
│ │ │ ├── Admin
│ │ │ │ ├── ArticleController.php
│ │ │ │ ├── CategoryController.php
│ │ │ │ ├── CommonController.php
│ │ │ │ ├── IndexController.php
│ │ │ │ └── LoginController.php
│ │ │ ├── Auth
│ │ │ │ ├── AuthController.php
│ │ │ │ └── PasswordController.php
│ │ │ └── Controller.php
│ │ ├── Kernel.php
│ │ ├── Middleware
│ │ │ ├── AdminLogin.php
│ │ │ ├── Authenticate.php
│ │ │ ├── EncryptCookies.php
│ │ │ ├── RedirectIfAuthenticated.php
│ │ │ └── VerifyCsrfToken.php
│ │ ├── Model
│ │ │ ├── Article.php
│ │ │ ├── Category.php
│ │ │ └── User.php
│ │ ├── Requests
│ │ │ └── Request.php
│ │ └── routes.php
│ ├── Jobs
│ │ └── Job.php
│ ├── Listeners
│ ├── Policies
│ └── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.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
│ ├── compile.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
│ └── seeds
│ └── DatabaseSeeder.php
├── gulpfile.js
├── index.php
├── package.json
├── phpunit.xml
├── public
│ ├── favicon.ico
│ ├── index.php
│ ├── robots.txt
│ └── web.config
├── readme.md
├── resources
│ ├── assets
│ │ └── sass
│ │ └── app.scss
│ ├── lang
│ │ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
│ ├── org
│ │ ├── code
│ │ │ ├── Code.class.php
│ │ │ └── consola.ttf
│ │ ├── layer
│ │ │ ├── extend
│ │ │ │ └── layer.ext.js
│ │ │ ├── layer.js
│ │ │ └── skin
│ │ │ ├── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── layer.css
│ │ │ └── layer.ext.css
│ │ ├── ueditor
│ │ │ ├── dialogs
│ │ │ │ ├── anchor
│ │ │ │ │ └── anchor.html
│ │ │ │ ├── attachment
│ │ │ │ │ ├── attachment.css
│ │ │ │ │ ├── attachment.html
│ │ │ │ │ ├── attachment.js
│ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ ├── alignicon.png
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── background
│ │ │ │ │ ├── background.css
│ │ │ │ │ ├── background.html
│ │ │ │ │ ├── background.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ └── success.png
│ │ │ │ ├── charts
│ │ │ │ │ ├── chart.config.js
│ │ │ │ │ ├── charts.css
│ │ │ │ │ ├── charts.html
│ │ │ │ │ ├── charts.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── charts0.png
│ │ │ │ │ ├── charts1.png
│ │ │ │ │ ├── charts2.png
│ │ │ │ │ ├── charts3.png
│ │ │ │ │ ├── charts4.png
│ │ │ │ │ └── charts5.png
│ │ │ │ ├── emotion
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.html
│ │ │ │ │ ├── emotion.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── bface.gif
│ │ │ │ │ ├── cface.gif
│ │ │ │ │ ├── fface.gif
│ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── tface.gif
│ │ │ │ │ ├── wface.gif
│ │ │ │ │ └── yface.gif
│ │ │ │ ├── gmap
│ │ │ │ │ └── gmap.html
│ │ │ │ ├── help
│ │ │ │ │ ├── help.css
│ │ │ │ │ ├── help.html
│ │ │ │ │ └── help.js
│ │ │ │ ├── image
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.html
│ │ │ │ │ ├── image.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── insertframe
│ │ │ │ │ └── insertframe.html
│ │ │ │ ├── internal.js
│ │ │ │ ├── link
│ │ │ │ │ └── link.html
│ │ │ │ ├── map
│ │ │ │ │ ├── map.html
│ │ │ │ │ └── show.html
│ │ │ │ ├── music
│ │ │ │ │ ├── music.css
│ │ │ │ │ ├── music.html
│ │ │ │ │ └── music.js
│ │ │ │ ├── preview
│ │ │ │ │ └── preview.html
│ │ │ │ ├── scrawl
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ ├── undoH.png
│ │ │ │ │ │ └── undo.png
│ │ │ │ │ ├── scrawl.css
│ │ │ │ │ ├── scrawl.html
│ │ │ │ │ └── scrawl.js
│ │ │ │ ├── searchreplace
│ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ └── searchreplace.js
│ │ │ │ ├── snapscreen
│ │ │ │ │ └── snapscreen.html
│ │ │ │ ├── spechars
│ │ │ │ │ ├── spechars.html
│ │ │ │ │ └── spechars.js
│ │ │ │ ├── table
│ │ │ │ │ ├── dragicon.png
│ │ │ │ │ ├── edittable.css
│ │ │ │ │ ├── edittable.html
│ │ │ │ │ ├── edittable.js
│ │ │ │ │ ├── edittd.html
│ │ │ │ │ └── edittip.html
│ │ │ │ ├── template
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ └── pre4.png
│ │ │ │ │ ├── template.css
│ │ │ │ │ ├── template.html
│ │ │ │ │ └── template.js
│ │ │ │ ├── video
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── video.css
│ │ │ │ │ ├── video.html
│ │ │ │ │ └── video.js
│ │ │ │ ├── webapp
│ │ │ │ │ └── webapp.html
│ │ │ │ └── wordimage
│ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ ├── imageUploader.swf
│ │ │ │ ├── tangram.js
│ │ │ │ ├── wordimage.html
│ │ │ │ └── wordimage.js
│ │ │ ├── index.html
│ │ │ ├── lang
│ │ │ │ ├── en
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── addimage.png
│ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ ├── listbackground.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn
│ │ │ │ ├── images
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ └── upload.png
│ │ │ │ └── zh-cn.js
│ │ │ ├── php
│ │ │ │ ├── action_crawler.php
│ │ │ │ ├── action_list.php
│ │ │ │ ├── action_upload.php
│ │ │ │ ├── config.json
│ │ │ │ ├── controller.php
│ │ │ │ └── Uploader.class.php
│ │ │ ├── themes
│ │ │ │ ├── default
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ └── images
│ │ │ │ │ ├── anchor.gif
│ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ ├── arrow.png
│ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ ├── charts.png
│ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ ├── filescan.png
│ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── loaderror.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── lock.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── sortable.png
│ │ │ │ │ ├── spacer.gif
│ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ ├── upload.png
│ │ │ │ │ ├── videologo.gif
│ │ │ │ │ ├── word.gif
│ │ │ │ │ └── wordpaste.png
│ │ │ │ └── iframe.css
│ │ │ ├── third-party
│ │ │ │ ├── codemirror
│ │ │ │ │ ├── codemirror.css
│ │ │ │ │ └── codemirror.js
│ │ │ │ ├── highcharts
│ │ │ │ │ ├── adapters
│ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ ├── highcharts.js
│ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ ├── modules
│ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ ├── map.src.js
│ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ │ └── themes
│ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ ├── dark-green.js
│ │ │ │ │ ├── gray.js
│ │ │ │ │ ├── grid.js
│ │ │ │ │ └── skies.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ ├── snapscreen
│ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ └── shCore.js
│ │ │ │ ├── video-js
│ │ │ │ │ ├── font
│ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ ├── video.dev.js
│ │ │ │ │ ├── video.js
│ │ │ │ │ ├── video-js.css
│ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ └── video-js.swf
│ │ │ │ ├── webuploader
│ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ ├── webuploader.css
│ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ ├── webuploader.js
│ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ └── zeroclipboard
│ │ │ │ ├── ZeroClipboard.js
│ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ └── ZeroClipboard.swf
│ │ │ ├── ueditor.all.js
│ │ │ ├── ueditor.all.min.js
│ │ │ ├── ueditor.config.js
│ │ │ ├── ueditor.parse.js
│ │ │ └── ueditor.parse.min.js
│ │ └── uploadify
│ │ ├── Change Log.txt
│ │ ├── check-exists.php
│ │ ├── index.php
│ │ ├── jquery.uploadify.js
│ │ ├── jquery.uploadify.min.js
│ │ ├── license.txt
│ │ ├── uploadify-cancel.png
│ │ ├── uploadify.css
│ │ ├── uploadify.php
│ │ └── uploadify.swf
│ └── views
│ ├── admin
│ │ ├── add.html
│ │ ├── article
│ │ │ ├── add.blade.php
│ │ │ ├── edit.blade.php
│ │ │ └── index.blade.php
│ │ ├── category
│ │ │ ├── add.blade.php
│ │ │ ├── edit.blade.php
│ │ │ └── index.blade.php
│ │ ├── element.html
│ │ ├── img.html
│ │ ├── index.blade.php
│ │ ├── info.blade.php
│ │ ├── list.html
│ │ ├── login.blade.php
│ │ ├── pass.blade.php
│ │ ├── style
│ │ │ ├── css
│ │ │ │ └── ch-ui.admin.css
│ │ │ ├── font
│ │ │ │ ├── css
│ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ └── font-awesome.min.css
│ │ │ │ └── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ └── js
│ │ │ ├── ch-ui.admin.js
│ │ │ └── jquery.js
│ │ └── tab.html
│ ├── errors
│ │ └── 503.blade.php
│ ├── layouts
│ │ └── admin.blade.php
│ ├── vendor
│ └── welcome.blade.php
├── storage
│ ├── app
│ │ └── public
│ ├── framework
│ │ ├── cache
│ │ ├── sessions
│ │ │ └── 227cb26e6a8baf109fd007b770e29c5207c4b5de
│ │ └── views
│ │ ├── 08613a01bbd66c8ebc2a325b41109c88cfea0bf8.php
│ │ ├── 1ea8a67224292978523ef860ef07ce007f23ed64.php
│ │ ├── 27ae29a9b2c6be45d6f6f64b404240f49c8a4c92.php
│ │ ├── 2bc1a3fe6feac8a7ac45c23ffba45062b165225f.php
│ │ ├── 31bd32fd5b26af80ab9cae5ae2b1d40d3da5b8b3.php
│ │ ├── 3eeb4b2903e782c83c0a7a2698cd4e698689cebd.php
│ │ ├── 432dd8cb221430d30500ba3202358d3546b2b880.php
│ │ ├── 6c3d58d2e75d257b520e584db3e2426dbe583fe2.php
│ │ ├── 8fb04307d16f3b6319ad978cb2fcf16f1e86062b.php
│ │ ├── 9afcfb66289381ae58e907d0692ba68d67e0b216.php
│ │ ├── a3dbcd017bbe820591794e7a25ad891bfa96f2e6.php
│ │ └── c85fd065c6137e3c6fe10afbb14b761b63080218.php
│ └── logs
│ └── laravel.log
├── tests
│ ├── ExampleTest.php
│ └── TestCase.php
├── ueditor
│ └── php
│ └── upload
│ └── image
│ └── 20160407
│ └── 1460018361185897.jpg
├── uploads
│ ├── 20160407122602153.png
│ ├── 20160407122959540.png
│ ├── 20160407123141200.png
│ ├── 20160407123300448.png
│ ├── 20160407123428346.png
│ ├── 20160407123610546.png
│ ├── 20160407123704926.png
│ ├── 20160407123804129.png
│ ├── 20160407123850374.png
│ ├── 20160407124018641.png
│ ├── 20160407124039277.png
│ ├── 20160408091742986.jpg
│ ├── 20160408101155467.jpg
│ ├── 20160408101316515.jpg
│ ├── 20160408101409922.jpg
│ ├── 20160408101541221.jpg
│ ├── 20160408101821971.jpg
│ ├── 20160408101938116.jpg
│ ├── 20160408102048702.jpg
│ ├── 20160408102224712.jpg
│ ├── 20160408102557869.jpg
│ ├── 20160408102712947.jpg
│ ├── 20160408103118110.jpg
│ ├── 20160408103259301.jpg
│ └── 20160408113758707.jpg
└── vendor
├── autoload.php
├── bin
│ ├── php-parse
│ ├── php-parse.bat
│ ├── phpunit
│ ├── phpunit.bat
│ ├── psysh
│ └── psysh.bat
├── classpreloader
│ └── classpreloader
│ ├── composer.json
│ ├── LICENSE
│ └── src
│ ├── ClassList.php
│ ├── ClassLoader.php
│ ├── ClassNode.php
│ ├── ClassPreloader.php
│ ├── Config.php
│ ├── Exceptions
│ │ ├── DirConstantException.php
│ │ ├── FileConstantException.php
│ │ ├── StrictTypesException.php
│ │ └── VisitorExceptionInterface.php
│ ├── Factory.php
│ └── Parser
│ ├── AbstractNodeVisitor.php
│ ├── DirVisitor.php
│ ├── FileVisitor.php
│ ├── NodeTraverser.php
│ └── StrictTypesVisitor.php
├── composer
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.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
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ └── tests
│ │ └── Doctrine
│ │ └── Tests
│ │ ├── Common
│ │ │ └── Inflector
│ │ │ └── InflectorTest.php
│ │ ├── DoctrineTestCase.php
│ │ └── TestInit.php
│ └── 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
├── fzaninotto
│ └── faker
│ ├── CHANGELOG.md
│ ├── composer.json
│ ├── CONTRIBUTING.md
│ ├── LICENSE
│ ├── Makefile
│ ├── phpunit.xml.dist
│ ├── readme.md
│ ├── src
│ │ ├── autoload.php
│ │ └── Faker
│ │ ├── Calculator
│ │ │ └── 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
│ │ ├── Provider
│ │ │ ├── Address.php
│ │ │ ├── ar_JO
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Person.php
│ │ │ │ └── Text.php
│ │ │ ├── at_AT
│ │ │ │ └── Payment.php
│ │ │ ├── Barcode.php
│ │ │ ├── Base.php
│ │ │ ├── be_BE
│ │ │ │ └── Payment.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
│ │ │ ├── de_DE
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ └── Text.php
│ │ │ ├── el_GR
│ │ │ │ ├── Address.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.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_NZ
│ │ │ │ ├── Address.php
│ │ │ │ ├── Internet.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── en_PH
│ │ │ │ └── Address.php
│ │ │ ├── en_UG
│ │ │ │ ├── Address.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── en_US
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ └── Text.php
│ │ │ ├── en_ZA
│ │ │ │ ├── Address.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
│ │ │ ├── es_PE
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── es_VE
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── fa_IR
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Person.php
│ │ │ │ └── Text.php
│ │ │ ├── fi_FI
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.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
│ │ │ │ └── Person.php
│ │ │ ├── fr_FR
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ └── Text.php
│ │ │ ├── hu_HU
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ └── Text.php
│ │ │ ├── hy_AM
│ │ │ │ ├── Address.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_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
│ │ │ ├── ka_GE
│ │ │ │ ├── Person.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
│ │ │ ├── Lorem.php
│ │ │ ├── lv_LV
│ │ │ │ ├── Address.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── me_ME
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── Miscellaneous.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
│ │ │ ├── no_NO
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.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
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── ro_RO
│ │ │ │ ├── Address.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.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
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── Text.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
│ │ │ │ ├── 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
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.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
│ └── test
│ ├── documentor.php
│ ├── Faker
│ │ ├── Calculator
│ │ │ └── LuhnTest.php
│ │ ├── DefaultGeneratorTest.php
│ │ ├── GeneratorTest.php
│ │ └── Provider
│ │ ├── AddressTest.php
│ │ ├── at_AT
│ │ │ └── PaymentTest.php
│ │ ├── BarcodeTest.php
│ │ ├── BaseTest.php
│ │ ├── be_BE
│ │ │ └── PaymentTest.php
│ │ ├── bg_BG
│ │ │ └── PaymentTest.php
│ │ ├── BiasedTest.php
│ │ ├── ColorTest.php
│ │ ├── DateTimeTest.php
│ │ ├── de_AT
│ │ │ ├── InternetTest.php
│ │ │ └── PhoneNumberTest.php
│ │ ├── fr_FR
│ │ │ └── CompanyTest.php
│ │ ├── id_ID
│ │ │ └── PersonTest.php
│ │ ├── ImageTest.php
│ │ ├── InternetTest.php
│ │ ├── ja_JP
│ │ │ └── PersonTest.php
│ │ ├── LocalizationTest.php
│ │ ├── LoremTest.php
│ │ ├── MiscellaneousTest.php
│ │ ├── PaymentTest.php
│ │ ├── PersonTest.php
│ │ ├── ProviderOverrideTest.php
│ │ ├── pt_BR
│ │ │ ├── CompanyTest.php
│ │ │ └── PersonTest.php
│ │ ├── pt_PT
│ │ │ ├── AddressTest.php
│ │ │ ├── PersonTest.php
│ │ │ └── PhoneNumberTest.php
│ │ ├── ro_RO
│ │ │ ├── PersonTest.php
│ │ │ └── PhoneNumberTest.php
│ │ ├── sv_SE
│ │ │ └── PersonTest.php
│ │ ├── TextTest.php
│ │ ├── uk_UA
│ │ │ ├── AddressTest.php
│ │ │ └── PhoneNumberTest.php
│ │ ├── UserAgentTest.php
│ │ └── UuidTest.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
├── jeremeamia
│ └── SuperClosure
│ ├── composer.json
│ ├── LICENSE.md
│ └── src
│ ├── Analyzer
│ │ ├── AstAnalyzer.php
│ │ ├── ClosureAnalyzer.php
│ │ ├── TokenAnalyzer.php
│ │ ├── Token.php
│ │ └── Visitor
│ │ ├── ClosureLocatorVisitor.php
│ │ ├── MagicConstantVisitor.php
│ │ └── ThisDetectorVisitor.php
│ ├── Exception
│ │ ├── ClosureAnalysisException.php
│ │ ├── ClosureUnserializationException.php
│ │ └── SuperClosureException.php
│ ├── SerializableClosure.php
│ ├── SerializerInterface.php
│ └── Serializer.php
├── laravel
│ └── framework
│ ├── composer.json
│ ├── CONTRIBUTING.md
│ ├── LICENSE.txt
│ ├── readme.md
│ └── src
│ └── Illuminate
│ ├── Auth
│ │ ├── Access
│ │ │ ├── AuthorizationException.php
│ │ │ ├── Gate.php
│ │ │ ├── HandlesAuthorization.php
│ │ │ └── Response.php
│ │ ├── Authenticatable.php
│ │ ├── AuthManager.php
│ │ ├── AuthServiceProvider.php
│ │ ├── composer.json
│ │ ├── Console
│ │ │ ├── ClearResetsCommand.php
│ │ │ ├── MakeAuthCommand.php
│ │ │ └── stubs
│ │ │ └── make
│ │ │ ├── controllers
│ │ │ │ └── HomeController.stub
│ │ │ ├── routes.stub
│ │ │ └── views
│ │ │ ├── auth
│ │ │ │ ├── emails
│ │ │ │ │ └── password.stub
│ │ │ │ ├── login.stub
│ │ │ │ ├── passwords
│ │ │ │ │ ├── email.stub
│ │ │ │ │ └── reset.stub
│ │ │ │ └── register.stub
│ │ │ ├── home.stub
│ │ │ ├── layouts
│ │ │ │ └── app.stub
│ │ │ └── welcome.stub
│ │ ├── CreatesUserProviders.php
│ │ ├── DatabaseUserProvider.php
│ │ ├── EloquentUserProvider.php
│ │ ├── Events
│ │ │ ├── Attempting.php
│ │ │ ├── Lockout.php
│ │ │ ├── Login.php
│ │ │ └── Logout.php
│ │ ├── GenericUser.php
│ │ ├── GuardHelpers.php
│ │ ├── Middleware
│ │ │ └── AuthenticateWithBasicAuth.php
│ │ ├── Passwords
│ │ │ ├── CanResetPassword.php
│ │ │ ├── DatabaseTokenRepository.php
│ │ │ ├── PasswordBrokerManager.php
│ │ │ ├── PasswordBroker.php
│ │ │ ├── PasswordResetServiceProvider.php
│ │ │ └── TokenRepositoryInterface.php
│ │ ├── RequestGuard.php
│ │ ├── SessionGuard.php
│ │ └── TokenGuard.php
│ ├── Broadcasting
│ │ ├── Broadcasters
│ │ │ ├── LogBroadcaster.php
│ │ │ ├── PusherBroadcaster.php
│ │ │ └── RedisBroadcaster.php
│ │ ├── BroadcastEvent.php
│ │ ├── BroadcastManager.php
│ │ ├── BroadcastServiceProvider.php
│ │ └── composer.json
│ ├── 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
│ │ │ └── stubs
│ │ │ └── cache.stub
│ │ ├── DatabaseStore.php
│ │ ├── Events
│ │ │ ├── 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
│ │ ├── AppNamespaceDetectorTrait.php
│ │ ├── Command.php
│ │ ├── composer.json
│ │ ├── ConfirmableTrait.php
│ │ ├── Events
│ │ │ └── ArtisanStarting.php
│ │ ├── GeneratorCommand.php
│ │ ├── OutputStyle.php
│ │ ├── Parser.php
│ │ ├── ScheduleServiceProvider.php
│ │ └── Scheduling
│ │ ├── CallbackEvent.php
│ │ ├── Event.php
│ │ ├── Schedule.php
│ │ └── ScheduleRunCommand.php
│ ├── Container
│ │ ├── 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
│ │ │ ├── Registrar.php
│ │ │ ├── StatefulGuard.php
│ │ │ ├── SupportsBasicAuth.php
│ │ │ └── UserProvider.php
│ │ ├── Broadcasting
│ │ │ ├── Broadcaster.php
│ │ │ ├── Factory.php
│ │ │ ├── ShouldBroadcastNow.php
│ │ │ └── ShouldBroadcast.php
│ │ ├── Bus
│ │ │ ├── Dispatcher.php
│ │ │ ├── QueueingDispatcher.php
│ │ │ └── SelfHandling.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
│ │ │ ├── Mailer.php
│ │ │ └── MailQueue.php
│ │ ├── Pagination
│ │ │ ├── LengthAwarePaginator.php
│ │ │ ├── Paginator.php
│ │ │ └── Presenter.php
│ │ ├── Pipeline
│ │ │ ├── Hub.php
│ │ │ └── Pipeline.php
│ │ ├── Queue
│ │ │ ├── EntityNotFoundException.php
│ │ │ ├── EntityResolver.php
│ │ │ ├── Factory.php
│ │ │ ├── Job.php
│ │ │ ├── Monitor.php
│ │ │ ├── QueueableEntity.php
│ │ │ ├── Queue.php
│ │ │ └── ShouldQueue.php
│ │ ├── Redis
│ │ │ └── Database.php
│ │ ├── Routing
│ │ │ ├── Registrar.php
│ │ │ ├── ResponseFactory.php
│ │ │ ├── UrlGenerator.php
│ │ │ └── UrlRoutable.php
│ │ ├── Support
│ │ │ ├── Arrayable.php
│ │ │ ├── Htmlable.php
│ │ │ ├── Jsonable.php
│ │ │ ├── MessageBag.php
│ │ │ ├── MessageProvider.php
│ │ │ └── Renderable.php
│ │ ├── Validation
│ │ │ ├── Factory.php
│ │ │ ├── UnauthorizedException.php
│ │ │ ├── ValidatesWhenResolved.php
│ │ │ ├── ValidationException.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
│ │ ├── 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
│ │ ├── DetectsLostConnections.php
│ │ ├── Eloquent
│ │ │ ├── Builder.php
│ │ │ ├── Collection.php
│ │ │ ├── FactoryBuilder.php
│ │ │ ├── Factory.php
│ │ │ ├── MassAssignmentException.php
│ │ │ ├── ModelNotFoundException.php
│ │ │ ├── Model.php
│ │ │ ├── QueueEntityResolver.php
│ │ │ ├── Relations
│ │ │ │ ├── BelongsToMany.php
│ │ │ │ ├── BelongsTo.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
│ │ │ ├── ScopeInterface.php
│ │ │ ├── Scope.php
│ │ │ ├── SoftDeletes.php
│ │ │ └── SoftDeletingScope.php
│ │ ├── Events
│ │ │ ├── ConnectionEvent.php
│ │ │ ├── QueryExecuted.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
│ │ │ └── Processors
│ │ │ ├── MySqlProcessor.php
│ │ │ ├── PostgresProcessor.php
│ │ │ ├── Processor.php
│ │ │ ├── SQLiteProcessor.php
│ │ │ └── SqlServerProcessor.php
│ │ ├── QueryException.php
│ │ ├── README.md
│ │ ├── Schema
│ │ │ ├── Blueprint.php
│ │ │ ├── Builder.php
│ │ │ ├── Grammars
│ │ │ │ ├── Grammar.php
│ │ │ │ ├── MySqlGrammar.php
│ │ │ │ ├── PostgresGrammar.php
│ │ │ │ ├── SQLiteGrammar.php
│ │ │ │ └── SqlServerGrammar.php
│ │ │ └── MySqlBuilder.php
│ │ ├── Seeder.php
│ │ ├── SeedServiceProvider.php
│ │ ├── SQLiteConnection.php
│ │ └── SqlServerConnection.php
│ ├── Encryption
│ │ ├── BaseEncrypter.php
│ │ ├── composer.json
│ │ ├── Encrypter.php
│ │ ├── EncryptionServiceProvider.php
│ │ └── McryptEncrypter.php
│ ├── Events
│ │ ├── CallQueuedHandler.php
│ │ ├── composer.json
│ │ ├── Dispatcher.php
│ │ └── EventServiceProvider.php
│ ├── Filesystem
│ │ ├── ClassFinder.php
│ │ ├── composer.json
│ │ ├── FilesystemAdapter.php
│ │ ├── FilesystemManager.php
│ │ ├── Filesystem.php
│ │ └── FilesystemServiceProvider.php
│ ├── Foundation
│ │ ├── AliasLoader.php
│ │ ├── Application.php
│ │ ├── Auth
│ │ │ ├── Access
│ │ │ │ ├── Authorizable.php
│ │ │ │ └── AuthorizesRequests.php
│ │ │ ├── AuthenticatesAndRegistersUsers.php
│ │ │ ├── AuthenticatesUsers.php
│ │ │ ├── RedirectsUsers.php
│ │ │ ├── RegistersUsers.php
│ │ │ ├── ResetsPasswords.php
│ │ │ ├── ThrottlesLogins.php
│ │ │ └── User.php
│ │ ├── Bootstrap
│ │ │ ├── BootProviders.php
│ │ │ ├── ConfigureLogging.php
│ │ │ ├── DetectEnvironment.php
│ │ │ ├── HandleExceptions.php
│ │ │ ├── LoadConfiguration.php
│ │ │ ├── RegisterFacades.php
│ │ │ ├── RegisterProviders.php
│ │ │ └── SetRequestForConsole.php
│ │ ├── Bus
│ │ │ └── DispatchesJobs.php
│ │ ├── ComposerScripts.php
│ │ ├── Console
│ │ │ ├── AppNameCommand.php
│ │ │ ├── ClearCompiledCommand.php
│ │ │ ├── ConfigCacheCommand.php
│ │ │ ├── ConfigClearCommand.php
│ │ │ ├── ConsoleMakeCommand.php
│ │ │ ├── DownCommand.php
│ │ │ ├── EnvironmentCommand.php
│ │ │ ├── EventGenerateCommand.php
│ │ │ ├── EventMakeCommand.php
│ │ │ ├── IlluminateCaster.php
│ │ │ ├── JobMakeCommand.php
│ │ │ ├── Kernel.php
│ │ │ ├── KeyGenerateCommand.php
│ │ │ ├── ListenerMakeCommand.php
│ │ │ ├── ModelMakeCommand.php
│ │ │ ├── Optimize
│ │ │ │ └── config.php
│ │ │ ├── OptimizeCommand.php
│ │ │ ├── PolicyMakeCommand.php
│ │ │ ├── ProviderMakeCommand.php
│ │ │ ├── QueuedJob.php
│ │ │ ├── RequestMakeCommand.php
│ │ │ ├── RouteCacheCommand.php
│ │ │ ├── RouteClearCommand.php
│ │ │ ├── RouteListCommand.php
│ │ │ ├── ServeCommand.php
│ │ │ ├── stubs
│ │ │ │ ├── console.stub
│ │ │ │ ├── event-handler-queued.stub
│ │ │ │ ├── event-handler.stub
│ │ │ │ ├── event.stub
│ │ │ │ ├── job-queued.stub
│ │ │ │ ├── job.stub
│ │ │ │ ├── listener-queued.stub
│ │ │ │ ├── listener.stub
│ │ │ │ ├── model.stub
│ │ │ │ ├── policy.stub
│ │ │ │ ├── provider.stub
│ │ │ │ ├── request.stub
│ │ │ │ ├── routes.stub
│ │ │ │ └── test.stub
│ │ │ ├── TestMakeCommand.php
│ │ │ ├── TinkerCommand.php
│ │ │ ├── UpCommand.php
│ │ │ ├── VendorPublishCommand.php
│ │ │ └── ViewClearCommand.php
│ │ ├── EnvironmentDetector.php
│ │ ├── Exceptions
│ │ │ └── Handler.php
│ │ ├── helpers.php
│ │ ├── Http
│ │ │ ├── FormRequest.php
│ │ │ ├── Kernel.php
│ │ │ └── Middleware
│ │ │ ├── CheckForMaintenanceMode.php
│ │ │ ├── VerifyCsrfToken.php
│ │ │ └── VerifyPostSize.php
│ │ ├── Inspiring.php
│ │ ├── ProviderRepository.php
│ │ ├── Providers
│ │ │ ├── ArtisanServiceProvider.php
│ │ │ ├── ComposerServiceProvider.php
│ │ │ ├── ConsoleSupportServiceProvider.php
│ │ │ └── FoundationServiceProvider.php
│ │ ├── Support
│ │ │ └── Providers
│ │ │ ├── AuthServiceProvider.php
│ │ │ ├── EventServiceProvider.php
│ │ │ └── RouteServiceProvider.php
│ │ ├── Testing
│ │ │ ├── Concerns
│ │ │ │ ├── ImpersonatesUsers.php
│ │ │ │ ├── InteractsWithAuthentication.php
│ │ │ │ ├── InteractsWithConsole.php
│ │ │ │ ├── InteractsWithContainer.php
│ │ │ │ ├── InteractsWithDatabase.php
│ │ │ │ ├── InteractsWithPages.php
│ │ │ │ ├── InteractsWithSession.php
│ │ │ │ ├── MakesHttpRequests.php
│ │ │ │ └── MocksApplicationServices.php
│ │ │ ├── Constraints
│ │ │ │ ├── FormFieldConstraint.php
│ │ │ │ ├── HasElement.php
│ │ │ │ ├── HasInElement.php
│ │ │ │ ├── HasLink.php
│ │ │ │ ├── HasSource.php
│ │ │ │ ├── HasText.php
│ │ │ │ ├── HasValue.php
│ │ │ │ ├── IsChecked.php
│ │ │ │ ├── IsSelected.php
│ │ │ │ ├── PageConstraint.php
│ │ │ │ └── ReversePageConstraint.php
│ │ │ ├── DatabaseMigrations.php
│ │ │ ├── DatabaseTransactions.php
│ │ │ ├── HttpException.php
│ │ │ ├── TestCase.php
│ │ │ ├── WithoutEvents.php
│ │ │ └── WithoutMiddleware.php
│ │ └── Validation
│ │ ├── ValidatesRequests.php
│ │ └── ValidationException.php
│ ├── Hashing
│ │ ├── BcryptHasher.php
│ │ ├── composer.json
│ │ └── HashServiceProvider.php
│ ├── Http
│ │ ├── composer.json
│ │ ├── Exception
│ │ │ ├── HttpResponseException.php
│ │ │ └── PostTooLargeException.php
│ │ ├── JsonResponse.php
│ │ ├── Middleware
│ │ │ ├── CheckResponseForModifications.php
│ │ │ └── FrameGuard.php
│ │ ├── RedirectResponse.php
│ │ ├── Request.php
│ │ ├── Response.php
│ │ ├── ResponseTrait.php
│ │ └── UploadedFile.php
│ ├── Log
│ │ ├── composer.json
│ │ └── Writer.php
│ │ ├── composer.json
│ │ ├── Events
│ │ │ └── MessageSending.php
│ │ ├── Mailer.php
│ │ ├── MailServiceProvider.php
│ │ ├── Message.php
│ │ ├── Transport
│ │ │ ├── LogTransport.php
│ │ │ ├── MailgunTransport.php
│ │ │ ├── MandrillTransport.php
│ │ │ ├── SesTransport.php
│ │ │ ├── SparkPostTransport.php
│ │ │ └── Transport.php
│ │ └── TransportManager.php
│ ├── Pagination
│ │ ├── AbstractPaginator.php
│ │ ├── BootstrapFourNextPreviousButtonRendererTrait.php
│ │ ├── BootstrapFourPresenter.php
│ │ ├── BootstrapThreeNextPreviousButtonRendererTrait.php
│ │ ├── BootstrapThreePresenter.php
│ │ ├── composer.json
│ │ ├── LengthAwarePaginator.php
│ │ ├── PaginationServiceProvider.php
│ │ ├── Paginator.php
│ │ ├── SimpleBootstrapFourPresenter.php
│ │ ├── SimpleBootstrapThreePresenter.php
│ │ ├── UrlWindow.php
│ │ └── UrlWindowPresenterTrait.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
│ │ ├── ConsoleServiceProvider.php
│ │ ├── DatabaseQueue.php
│ │ ├── Events
│ │ │ ├── JobExceptionOccurred.php
│ │ │ ├── JobFailed.php
│ │ │ ├── JobProcessed.php
│ │ │ ├── JobProcessing.php
│ │ │ └── WorkerStopping.php
│ │ ├── Failed
│ │ │ ├── DatabaseFailedJobProvider.php
│ │ │ ├── FailedJobProviderInterface.php
│ │ │ └── NullFailedJobProvider.php
│ │ ├── IlluminateQueueClosure.php
│ │ ├── InteractsWithQueue.php
│ │ ├── Jobs
│ │ │ ├── BeanstalkdJob.php
│ │ │ ├── DatabaseJob.php
│ │ │ ├── Job.php
│ │ │ ├── RedisJob.php
│ │ │ ├── SqsJob.php
│ │ │ └── SyncJob.php
│ │ ├── Listener.php
│ │ ├── NullQueue.php
│ │ ├── QueueManager.php
│ │ ├── Queue.php
│ │ ├── QueueServiceProvider.php
│ │ ├── README.md
│ │ ├── RedisQueue.php
│ │ ├── SerializesModels.php
│ │ ├── SqsQueue.php
│ │ ├── SyncQueue.php
│ │ └── Worker.php
│ ├── Redis
│ │ ├── composer.json
│ │ ├── Database.php
│ │ └── RedisServiceProvider.php
│ ├── Routing
│ │ ├── composer.json
│ │ ├── Console
│ │ │ ├── ControllerMakeCommand.php
│ │ │ ├── MiddlewareMakeCommand.php
│ │ │ └── stubs
│ │ │ ├── controller.plain.stub
│ │ │ ├── controller.stub
│ │ │ └── middleware.stub
│ │ ├── ControllerDispatcher.php
│ │ ├── ControllerInspector.php
│ │ ├── ControllerMiddlewareOptions.php
│ │ ├── Controller.php
│ │ ├── Events
│ │ │ └── RouteMatched.php
│ │ ├── Exceptions
│ │ │ └── UrlGenerationException.php
│ │ ├── Matching
│ │ │ ├── HostValidator.php
│ │ │ ├── MethodValidator.php
│ │ │ ├── SchemeValidator.php
│ │ │ ├── UriValidator.php
│ │ │ └── ValidatorInterface.php
│ │ ├── Middleware
│ │ │ └── ThrottleRequests.php
│ │ ├── Pipeline.php
│ │ ├── Redirector.php
│ │ ├── ResourceRegistrar.php
│ │ ├── ResponseFactory.php
│ │ ├── RouteCollection.php
│ │ ├── RouteDependencyResolverTrait.php
│ │ ├── Route.php
│ │ ├── Router.php
│ │ ├── RoutingServiceProvider.php
│ │ └── UrlGenerator.php
│ ├── Session
│ │ ├── CacheBasedSessionHandler.php
│ │ ├── composer.json
│ │ ├── Console
│ │ │ ├── SessionTableCommand.php
│ │ │ └── stubs
│ │ │ └── database.stub
│ │ ├── CookieSessionHandler.php
│ │ ├── DatabaseSessionHandler.php
│ │ ├── EncryptedStore.php
│ │ ├── ExistenceAwareInterface.php
│ │ ├── FileSessionHandler.php
│ │ ├── LegacyDatabaseSessionHandler.php
│ │ ├── Middleware
│ │ │ └── StartSession.php
│ │ ├── SessionInterface.php
│ │ ├── SessionManager.php
│ │ ├── SessionServiceProvider.php
│ │ ├── Store.php
│ │ └── TokenMismatchException.php
│ ├── Support
│ │ ├── AggregateServiceProvider.php
│ │ ├── Arr.php
│ │ ├── ClassLoader.php
│ │ ├── Collection.php
│ │ ├── composer.json
│ │ ├── Composer.php
│ │ ├── Debug
│ │ │ ├── Dumper.php
│ │ │ └── HtmlDumper.php
│ │ ├── Facades
│ │ │ ├── App.php
│ │ │ ├── Artisan.php
│ │ │ ├── Auth.php
│ │ │ ├── Blade.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
│ │ │ ├── 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
│ │ ├── HtmlString.php
│ │ ├── Manager.php
│ │ ├── MessageBag.php
│ │ ├── NamespacedItemResolver.php
│ │ ├── Pluralizer.php
│ │ ├── ServiceProvider.php
│ │ ├── Str.php
│ │ ├── Traits
│ │ │ ├── CapsuleManagerTrait.php
│ │ │ └── Macroable.php
│ │ └── ViewErrorBag.php
│ ├── Translation
│ │ ├── ArrayLoader.php
│ │ ├── composer.json
│ │ ├── FileLoader.php
│ │ ├── LoaderInterface.php
│ │ ├── TranslationServiceProvider.php
│ │ └── Translator.php
│ ├── Validation
│ │ ├── composer.json
│ │ ├── DatabasePresenceVerifier.php
│ │ ├── Factory.php
│ │ ├── PresenceVerifierInterface.php
│ │ ├── ValidatesWhenResolvedTrait.php
│ │ ├── ValidationException.php
│ │ ├── ValidationServiceProvider.php
│ │ └── Validator.php
│ └── View
│ ├── Compilers
│ │ ├── BladeCompiler.php
│ │ ├── CompilerInterface.php
│ │ └── Compiler.php
│ ├── composer.json
│ ├── Engines
│ │ ├── CompilerEngine.php
│ │ ├── EngineInterface.php
│ │ ├── Engine.php
│ │ ├── EngineResolver.php
│ │ └── PhpEngine.php
│ ├── Expression.php
│ ├── Factory.php
│ ├── FileViewFinder.php
│ ├── Middleware
│ │ └── ShareErrorsFromSession.php
│ ├── ViewFinderInterface.php
│ ├── View.php
│ └── ViewServiceProvider.php
├── league
│ └── flysystem
│ ├── composer.json
│ ├── LICENSE
│ └── src
│ ├── Adapter
│ │ ├── AbstractAdapter.php
│ │ ├── AbstractFtpAdapter.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
│ ├── Filesystem.php
│ ├── Handler.php
│ ├── MountManager.php
│ ├── NotSupportedException.php
│ ├── Plugin
│ │ ├── AbstractPlugin.php
│ │ ├── EmptyDir.php
│ │ ├── GetWithMetadata.php
│ │ ├── ListFiles.php
│ │ ├── ListPaths.php
│ │ ├── ListWith.php
│ │ ├── PluggableTrait.php
│ │ └── PluginNotFoundException.php
│ ├── PluginInterface.php
│ ├── ReadInterface.php
│ ├── RootViolationException.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
│ │ ├── 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
│ │ ├── MockingProtectedMethodsTest.php
│ │ ├── MockingVariadicArgumentsTest.php
│ │ ├── MockTest.php
│ │ ├── NamedMockTest.php
│ │ ├── RecorderTest.php
│ │ ├── SpyTest.php
│ │ ├── Test
│ │ │ └── Generator
│ │ │ └── MockConfigurationBuilderTest.php
│ │ └── WithFormatterExpectationTest.php
│ └── travis
│ ├── after_script.sh
│ ├── before_script.sh
│ ├── extra.ini
│ ├── install.sh
│ └── script.sh
├── monolog
│ └── monolog
│ ├── CHANGELOG.mdown
│ ├── composer.json
│ ├── doc
│ │ ├── 01-usage.md
│ │ ├── 02-handlers-formatters-processors.md
│ │ ├── 03-utilities.md
│ │ ├── 04-extending.md
│ │ └── sockets.md
│ ├── LICENSE
│ ├── phpunit.xml.dist
│ ├── README.mdown
│ ├── 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
│ │ │ ├── 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
│ │ │ ├── SlackHandler.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
│ │ │ ├── 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
│ │ ├── 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
│ │ ├── RotatingFileHandlerTest.php
│ │ ├── SamplingHandlerTest.php
│ │ ├── SlackHandlerTest.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
│ │ ├── 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
├── nesbot
│ └── carbon
│ ├── composer.json
│ ├── LICENSE
│ ├── readme.md
│ └── src
│ └── Carbon
│ ├── CarbonInterval.php
│ ├── Carbon.php
│ └── Lang
│ ├── af.php
│ ├── ar.php
│ ├── az.php
│ ├── bg.php
│ ├── bn.php
│ ├── ca.php
│ ├── cs.php
│ ├── da.php
│ ├── de.php
│ ├── el.php
│ ├── en.php
│ ├── eo.php
│ ├── es.php
│ ├── et.php
│ ├── eu.php
│ ├── fa.php
│ ├── fi.php
│ ├── fo.php
│ ├── fr.php
│ ├── he.php
│ ├── hr.php
│ ├── hu.php
│ ├── id.php
│ ├── it.php
│ ├── ja.php
│ ├── ko.php
│ ├── lt.php
│ ├── lv.php
│ ├── ms.php
│ ├── nl.php
│ ├── no.php
│ ├── pl.php
│ ├── pt_BR.php
│ ├── pt.php
│ ├── ro.php
│ ├── ru.php
│ ├── sk.php
│ ├── sl.php
│ ├── sq.php
│ ├── sr.php
│ ├── sv.php
│ ├── th.php
│ ├── tr.php
│ ├── uk.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.markdown
│ │ └── Lexer.markdown
│ ├── grammar
│ │ ├── analyze.php
│ │ ├── 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
│ │ ├── 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
│ │ │ │ ├── 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
│ │ │ ├── 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
│ │ │ │ ├── Foreach_.php
│ │ │ │ ├── For_.php
│ │ │ │ ├── Function_.php
│ │ │ │ ├── Global_.php
│ │ │ │ ├── Goto_.php
│ │ │ │ ├── GroupUse.php
│ │ │ │ ├── HaltCompiler.php
│ │ │ │ ├── If_.php
│ │ │ │ ├── InlineHTML.php
│ │ │ │ ├── Interface_.php
│ │ │ │ ├── Label.php
│ │ │ │ ├── Namespace_.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
│ │ │ │ ├── errorHandling
│ │ │ │ │ ├── eofError.test
│ │ │ │ │ └── recovery.test
│ │ │ │ ├── expr
│ │ │ │ │ ├── arrayDef.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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── encapsedString.test
│ │ │ │ │ ├── float.test
│ │ │ │ │ ├── int.test
│ │ │ │ │ ├── magicConst.test
│ │ │ │ │ └── unicodeEscape.test
│ │ │ │ ├── semiReserved.test
│ │ │ │ └── stmt
│ │ │ │ ├── blocklessStatement.test
│ │ │ │ ├── class
│ │ │ │ │ ├── abstract.test
│ │ │ │ │ ├── anonymous.test
│ │ │ │ │ ├── conditional.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
│ │ │ │ │ ├── byRef.test
│ │ │ │ │ ├── conditional.test
│ │ │ │ │ ├── defaultValues.test
│ │ │ │ │ ├── returnTypes.test
│ │ │ │ │ ├── scalarTypeDeclarations.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
│ │ │ │ ├── namespace
│ │ │ │ │ ├── alias.test
│ │ │ │ │ ├── braced.test
│ │ │ │ │ ├── groupUseErrors.test
│ │ │ │ │ ├── groupUse.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
│ │ │ ├── comments.test
│ │ │ ├── expr
│ │ │ │ ├── anonymousClass.test
│ │ │ │ ├── call.test
│ │ │ │ ├── closure.test
│ │ │ │ ├── constant_deref.test
│ │ │ │ ├── include.test
│ │ │ │ ├── intrinsics.test
│ │ │ │ ├── list.test
│ │ │ │ ├── literals.test
│ │ │ │ ├── numbers.test
│ │ │ │ ├── operators.test
│ │ │ │ ├── parentheses.test
│ │ │ │ ├── shortArraySyntax.test
│ │ │ │ ├── uvs.test
│ │ │ │ ├── variables.test
│ │ │ │ └── yield.test
│ │ │ ├── inlineHTMLandPHPtest.file-test
│ │ │ ├── onlyInlineHTML.file-test
│ │ │ ├── onlyPHP.file-test
│ │ │ └── stmt
│ │ │ ├── alias.test
│ │ │ ├── break_continue.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
│ │ │ ├── namespaces.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
│ │ ├── ErrorTest.php
│ │ ├── Lexer
│ │ │ └── EmulativeTest.php
│ │ ├── LexerTest.php
│ │ ├── Node
│ │ │ ├── NameTest.php
│ │ │ ├── Scalar
│ │ │ │ ├── MagicConstTest.php
│ │ │ │ └── StringTest.php
│ │ │ └── Stmt
│ │ │ ├── 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
│ ├── UPGRADE-1.0.md
│ └── UPGRADE-2.0.md
├── paragonie
│ └── random_compat
│ ├── CHANGELOG.md
│ ├── composer.json
│ ├── dist
│ │ ├── random_compat.phar.pubkey
│ │ └── random_compat.phar.pubkey.asc
│ ├── ERRATA.md
│ ├── 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_bytes_openssl.php
│ │ ├── random_int.php
│ │ └── random.php
│ ├── LICENSE
│ ├── other
│ │ └── build_phar.php
│ ├── README.md
│ └── SECURITY.md
├── phpdocumentor
│ └── reflection-docblock
│ ├── composer.json
│ ├── composer.lock
│ ├── LICENSE
│ ├── phpunit.xml.dist
│ ├── README.md
│ ├── src
│ │ └── phpDocumentor
│ │ └── 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
│ └── phpDocumentor
│ └── 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
├── phpspec
│ └── prophecy
│ ├── CHANGES.md
│ ├── composer.json
│ ├── composer.lock
│ ├── CONTRIBUTING.md
│ ├── LICENSE
│ ├── README.md
│ ├── spec
│ │ └── Prophecy
│ │ ├── Argument
│ │ │ ├── ArgumentsWildcardSpec.php
│ │ │ └── Token
│ │ │ ├── AnyValuesTokenSpec.php
│ │ │ ├── AnyValueTokenSpec.php
│ │ │ ├── ApproximateValueTokenSpec.php
│ │ │ ├── ArrayCountTokenSpec.php
│ │ │ ├── ArrayEntryTokenSpec.php
│ │ │ ├── ArrayEveryEntryTokenSpec.php
│ │ │ ├── CallbackTokenSpec.php
│ │ │ ├── ExactValueTokenSpec.php
│ │ │ ├── IdenticalValueTokenSpec.php
│ │ │ ├── LogicalAndTokenSpec.php
│ │ │ ├── LogicalNotTokenSpec.php
│ │ │ ├── ObjectStateTokenSpec.php
│ │ │ ├── StringContainsTokenSpec.php
│ │ │ └── TypeTokenSpec.php
│ │ ├── ArgumentSpec.php
│ │ ├── Call
│ │ │ ├── CallCenterSpec.php
│ │ │ └── CallSpec.php
│ │ ├── Comparator
│ │ │ ├── ClosureComparatorSpec.php
│ │ │ ├── FactorySpec.php
│ │ │ └── ProphecyComparatorSpec.php
│ │ ├── Doubler
│ │ │ ├── ClassPatch
│ │ │ │ ├── DisableConstructorPatchSpec.php
│ │ │ │ ├── HhvmExceptionPatchSpec.php
│ │ │ │ ├── KeywordPatchSpec.php
│ │ │ │ ├── MagicCallPatchSpec.php
│ │ │ │ ├── ProphecySubjectPatchSpec.php
│ │ │ │ ├── ReflectionClassNewInstancePatchSpec.php
│ │ │ │ ├── SplFileInfoPatchSpec.php
│ │ │ │ └── TraversablePatchSpec.php
│ │ │ ├── DoublerSpec.php
│ │ │ ├── Generator
│ │ │ │ ├── ClassCodeGeneratorSpec.php
│ │ │ │ ├── ClassCreatorSpec.php
│ │ │ │ ├── ClassMirrorSpec.php
│ │ │ │ └── Node
│ │ │ │ ├── ArgumentNodeSpec.php
│ │ │ │ ├── ClassNodeSpec.php
│ │ │ │ └── MethodNodeSpec.php
│ │ │ ├── LazyDoubleSpec.php
│ │ │ └── NameGeneratorSpec.php
│ │ ├── Exception
│ │ │ ├── Call
│ │ │ │ └── UnexpectedCallExceptionSpec.php
│ │ │ ├── Doubler
│ │ │ │ ├── ClassCreatorExceptionSpec.php
│ │ │ │ ├── ClassMirrorExceptionSpec.php
│ │ │ │ ├── ClassNotFoundExceptionSpec.php
│ │ │ │ ├── DoubleExceptionSpec.php
│ │ │ │ ├── InterfaceNotFoundExceptionSpec.php
│ │ │ │ ├── MethodNotExtendableExceptionSpec.php
│ │ │ │ └── MethodNotFoundExceptionSpec.php
│ │ │ ├── Prediction
│ │ │ │ ├── AggregateExceptionSpec.php
│ │ │ │ ├── NoCallsExceptionSpec.php
│ │ │ │ ├── UnexpectedCallsCountExceptionSpec.php
│ │ │ │ └── UnexpectedCallsExceptionSpec.php
│ │ │ └── Prophecy
│ │ │ ├── MethodProphecyExceptionSpec.php
│ │ │ └── ObjectProphecyExceptionSpec.php
│ │ ├── Prediction
│ │ │ ├── CallbackPredictionSpec.php
│ │ │ ├── CallPredictionSpec.php
│ │ │ ├── CallTimesPredictionSpec.php
│ │ │ └── NoCallsPredictionSpec.php
│ │ ├── Promise
│ │ │ ├── CallbackPromiseSpec.php
│ │ │ ├── ReturnArgumentPromiseSpec.php
│ │ │ ├── ReturnPromiseSpec.php
│ │ │ └── ThrowPromiseSpec.php
│ │ ├── Prophecy
│ │ │ ├── MethodProphecySpec.php
│ │ │ ├── ObjectProphecySpec.php
│ │ │ └── RevealerSpec.php
│ │ ├── ProphetSpec.php
│ │ └── Util
│ │ └── StringUtilSpec.php
│ └── src
│ └── Prophecy
│ ├── Argument
│ │ ├── ArgumentsWildcard.php
│ │ └── Token
│ │ ├── AnyValuesToken.php
│ │ ├── AnyValueToken.php
│ │ ├── ApproximateValueToken.php
│ │ ├── ArrayCountToken.php
│ │ ├── ArrayEntryToken.php
│ │ ├── ArrayEveryEntryToken.php
│ │ ├── CallbackToken.php
│ │ ├── ExactValueToken.php
│ │ ├── IdenticalValueToken.php
│ │ ├── LogicalAndToken.php
│ │ ├── LogicalNotToken.php
│ │ ├── ObjectStateToken.php
│ │ ├── StringContainsToken.php
│ │ ├── TokenInterface.php
│ │ └── TypeToken.php
│ ├── Argument.php
│ ├── Call
│ │ ├── CallCenter.php
│ │ └── Call.php
│ ├── Comparator
│ │ ├── ClosureComparator.php
│ │ ├── Factory.php
│ │ └── ProphecyComparator.php
│ ├── Doubler
│ │ ├── CachedDoubler.php
│ │ ├── ClassPatch
│ │ │ ├── ClassPatchInterface.php
│ │ │ ├── DisableConstructorPatch.php
│ │ │ ├── HhvmExceptionPatch.php
│ │ │ ├── KeywordPatch.php
│ │ │ ├── MagicCallPatch.php
│ │ │ ├── ProphecySubjectPatch.php
│ │ │ ├── ReflectionClassNewInstancePatch.php
│ │ │ ├── SplFileInfoPatch.php
│ │ │ └── TraversablePatch.php
│ │ ├── DoubleInterface.php
│ │ ├── Doubler.php
│ │ ├── Generator
│ │ │ ├── ClassCodeGenerator.php
│ │ │ ├── ClassCreator.php
│ │ │ ├── ClassMirror.php
│ │ │ ├── Node
│ │ │ │ ├── ArgumentNode.php
│ │ │ │ ├── ClassNode.php
│ │ │ │ └── MethodNode.php
│ │ │ └── ReflectionInterface.php
│ │ ├── LazyDouble.php
│ │ └── NameGenerator.php
│ ├── Exception
│ │ ├── Call
│ │ │ └── UnexpectedCallException.php
│ │ ├── Doubler
│ │ │ ├── ClassCreatorException.php
│ │ │ ├── ClassMirrorException.php
│ │ │ ├── ClassNotFoundException.php
│ │ │ ├── DoubleException.php
│ │ │ ├── DoublerException.php
│ │ │ ├── InterfaceNotFoundException.php
│ │ │ ├── MethodNotExtendableException.php
│ │ │ ├── MethodNotFoundException.php
│ │ │ └── ReturnByReferenceException.php
│ │ ├── Exception.php
│ │ ├── InvalidArgumentException.php
│ │ ├── Prediction
│ │ │ ├── AggregateException.php
│ │ │ ├── FailedPredictionException.php
│ │ │ ├── NoCallsException.php
│ │ │ ├── PredictionException.php
│ │ │ ├── UnexpectedCallsCountException.php
│ │ │ └── UnexpectedCallsException.php
│ │ └── Prophecy
│ │ ├── MethodProphecyException.php
│ │ ├── ObjectProphecyException.php
│ │ └── ProphecyException.php
│ ├── Prediction
│ │ ├── CallbackPrediction.php
│ │ ├── CallPrediction.php
│ │ ├── CallTimesPrediction.php
│ │ ├── NoCallsPrediction.php
│ │ └── PredictionInterface.php
│ ├── Promise
│ │ ├── CallbackPromise.php
│ │ ├── PromiseInterface.php
│ │ ├── ReturnArgumentPromise.php
│ │ ├── ReturnPromise.php
│ │ └── ThrowPromise.php
│ ├── Prophecy
│ │ ├── MethodProphecy.php
│ │ ├── ObjectProphecy.php
│ │ ├── ProphecyInterface.php
│ │ ├── ProphecySubjectInterface.php
│ │ ├── RevealerInterface.php
│ │ └── Revealer.php
│ ├── Prophet.php
│ └── Util
│ ├── ExportUtil.php
│ └── StringUtil.php
├── phpunit
│ ├── php-code-coverage
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── build.xml
│ │ ├── ChangeLog-2.2.md
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── scripts
│ │ │ ├── auto_append.php
│ │ │ └── auto_prepend.php
│ │ ├── src
│ │ │ ├── CodeCoverage
│ │ │ │ ├── Driver
│ │ │ │ │ ├── HHVM.php
│ │ │ │ │ ├── PHPDBG.php
│ │ │ │ │ └── Xdebug.php
│ │ │ │ ├── Driver.php
│ │ │ │ ├── Exception
│ │ │ │ │ └── UnintentionallyCoveredCode.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Report
│ │ │ │ │ ├── Clover.php
│ │ │ │ │ ├── Crap4j.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── HTML
│ │ │ │ │ │ ├── Renderer
│ │ │ │ │ │ │ ├── Dashboard.php
│ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ └── Template
│ │ │ │ │ │ │ ├── coverage_bar.html.dist
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ │ │ ├── nv.d3.min.css
│ │ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ │ ├── dashboard.html.dist
│ │ │ │ │ │ │ ├── directory.html.dist
│ │ │ │ │ │ │ ├── directory_item.html.dist
│ │ │ │ │ │ │ ├── file.html.dist
│ │ │ │ │ │ │ ├── file_item.html.dist
│ │ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ │ │ │ ├── d3.min.js
│ │ │ │ │ │ │ │ ├── holder.min.js
│ │ │ │ │ │ │ │ ├── html5shiv.min.js
│ │ │ │ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ │ │ │ ├── nv.d3.min.js
│ │ │ │ │ │ │ │ └── respond.min.js
│ │ │ │ │ │ │ └── method_item.html.dist
│ │ │ │ │ │ └── Renderer.php
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── Node
│ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Iterator.php
│ │ │ │ │ ├── Node.php
│ │ │ │ │ ├── PHP.php
│ │ │ │ │ ├── Text.php
│ │ │ │ │ ├── XML
│ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ ├── File
│ │ │ │ │ │ │ ├── Coverage.php
│ │ │ │ │ │ │ ├── Method.php
│ │ │ │ │ │ │ ├── Report.php
│ │ │ │ │ │ │ └── Unit.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ ├── Node.php
│ │ │ │ │ │ ├── Project.php
│ │ │ │ │ │ ├── Tests.php
│ │ │ │ │ │ └── Totals.php
│ │ │ │ │ └── XML.php
│ │ │ │ ├── Util
│ │ │ │ │ └── InvalidArgumentHelper.php
│ │ │ │ └── Util.php
│ │ │ └── CodeCoverage.php
│ │ └── tests
│ │ ├── _files
│ │ │ ├── BankAccount-clover.xml
│ │ │ ├── BankAccount.php
│ │ │ ├── BankAccountTest.php
│ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ ├── CoverageClassExtendedTest.php
│ │ │ ├── CoverageClassTest.php
│ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ ├── CoverageFunctionTest.php
│ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ ├── CoverageMethodTest.php
│ │ │ ├── CoverageNoneTest.php
│ │ │ ├── CoverageNothingTest.php
│ │ │ ├── CoverageNotPrivateTest.php
│ │ │ ├── CoverageNotProtectedTest.php
│ │ │ ├── CoverageNotPublicTest.php
│ │ │ ├── CoveragePrivateTest.php
│ │ │ ├── CoverageProtectedTest.php
│ │ │ ├── CoveragePublicTest.php
│ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ ├── CoveredClass.php
│ │ │ ├── CoveredFunction.php
│ │ │ ├── ignored-lines-clover.xml
│ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ ├── NamespaceCoveredClass.php
│ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ ├── source_with_class_and_anonymous_function.php
│ │ │ ├── source_with_ignore.php
│ │ │ ├── source_with_namespace.php
│ │ │ ├── source_with_oneline_annotations.php
│ │ │ ├── source_without_ignore.php
│ │ │ └── source_without_namespace.php
│ │ ├── PHP
│ │ │ ├── CodeCoverage
│ │ │ │ ├── FilterTest.php
│ │ │ │ ├── Report
│ │ │ │ │ ├── CloverTest.php
│ │ │ │ │ └── FactoryTest.php
│ │ │ │ └── UtilTest.php
│ │ │ └── CodeCoverageTest.php
│ │ └── TestCase.php
│ ├── php-file-iterator
│ │ ├── ChangeLog.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── Facade.php
│ │ ├── Factory.php
│ │ └── Iterator.php
│ ├── php-text-template
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ └── Template.php
│ ├── php-timer
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Timer.php
│ │ └── tests
│ │ └── TimerTest.php
│ ├── php-token-stream
│ │ ├── build
│ │ │ └── phpunit.xml
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── Token
│ │ │ │ ├── Stream
│ │ │ │ │ └── CachingFactory.php
│ │ │ │ └── Stream.php
│ │ │ └── Token.php
│ │ └── tests
│ │ ├── bootstrap.php
│ │ ├── _fixture
│ │ │ ├── classExtendsNamespacedClass.php
│ │ │ ├── classInNamespace.php
│ │ │ ├── classInScopedNamespace.php
│ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ ├── closure.php
│ │ │ ├── issue19.php
│ │ │ ├── issue30.php
│ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ ├── source2.php
│ │ │ ├── source3.php
│ │ │ ├── source4.php
│ │ │ ├── source5.php
│ │ │ └── source.php
│ │ ├── Token
│ │ │ ├── ClassTest.php
│ │ │ ├── ClosureTest.php
│ │ │ ├── FunctionTest.php
│ │ │ ├── IncludeTest.php
│ │ │ ├── InterfaceTest.php
│ │ │ └── NamespaceTest.php
│ │ └── TokenTest.php
│ ├── phpunit
│ │ ├── build
│ │ │ ├── bin
│ │ │ │ └── phpab
│ │ │ ├── binary-phar-autoload.php.in
│ │ │ ├── ca.pem
│ │ │ ├── library-phar-autoload.php.in
│ │ │ ├── phar-manifest.php
│ │ │ ├── phar-version.php
│ │ │ └── travis-ci-fail.xml
│ │ ├── build.xml
│ │ ├── ChangeLog-4.0.md
│ │ ├── ChangeLog-4.1.md
│ │ ├── ChangeLog-4.2.md
│ │ ├── ChangeLog-4.3.md
│ │ ├── ChangeLog-4.4.md
│ │ ├── ChangeLog-4.5.md
│ │ ├── ChangeLog-4.6.md
│ │ ├── ChangeLog-4.7.md
│ │ ├── ChangeLog-4.8.md
│ │ ├── CODE_OF_CONDUCT.md
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── phpdox.xml.dist
│ │ ├── phpunit
│ │ ├── phpunit.xml.dist
│ │ ├── phpunit.xsd
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── Exception.php
│ │ │ ├── Extensions
│ │ │ │ ├── GroupTestSuite.php
│ │ │ │ ├── PhptTestCase.php
│ │ │ │ ├── PhptTestSuite.php
│ │ │ │ ├── RepeatedTest.php
│ │ │ │ ├── TestDecorator.php
│ │ │ │ └── TicketListener.php
│ │ │ ├── Framework
│ │ │ │ ├── Assert
│ │ │ │ │ └── Functions.php
│ │ │ │ ├── AssertionFailedError.php
│ │ │ │ ├── Assert.php
│ │ │ │ ├── BaseTestListener.php
│ │ │ │ ├── CodeCoverageException.php
│ │ │ │ ├── Constraint
│ │ │ │ │ ├── And.php
│ │ │ │ │ ├── ArrayHasKey.php
│ │ │ │ │ ├── ArraySubset.php
│ │ │ │ │ ├── Attribute.php
│ │ │ │ │ ├── Callback.php
│ │ │ │ │ ├── ClassHasAttribute.php
│ │ │ │ │ ├── ClassHasStaticAttribute.php
│ │ │ │ │ ├── Composite.php
│ │ │ │ │ ├── Count.php
│ │ │ │ │ ├── ExceptionCode.php
│ │ │ │ │ ├── ExceptionMessage.php
│ │ │ │ │ ├── ExceptionMessageRegExp.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── FileExists.php
│ │ │ │ │ ├── GreaterThan.php
│ │ │ │ │ ├── IsAnything.php
│ │ │ │ │ ├── IsEmpty.php
│ │ │ │ │ ├── IsEqual.php
│ │ │ │ │ ├── IsFalse.php
│ │ │ │ │ ├── IsIdentical.php
│ │ │ │ │ ├── IsInstanceOf.php
│ │ │ │ │ ├── IsJson.php
│ │ │ │ │ ├── IsNull.php
│ │ │ │ │ ├── IsTrue.php
│ │ │ │ │ ├── IsType.php
│ │ │ │ │ ├── JsonMatches
│ │ │ │ │ │ └── ErrorMessageProvider.php
│ │ │ │ │ ├── JsonMatches.php
│ │ │ │ │ ├── LessThan.php
│ │ │ │ │ ├── Not.php
│ │ │ │ │ ├── ObjectHasAttribute.php
│ │ │ │ │ ├── Or.php
│ │ │ │ │ ├── PCREMatch.php
│ │ │ │ │ ├── SameSize.php
│ │ │ │ │ ├── StringContains.php
│ │ │ │ │ ├── StringEndsWith.php
│ │ │ │ │ ├── StringMatches.php
│ │ │ │ │ ├── StringStartsWith.php
│ │ │ │ │ ├── TraversableContainsOnly.php
│ │ │ │ │ ├── TraversableContains.php
│ │ │ │ │ └── Xor.php
│ │ │ │ ├── Constraint.php
│ │ │ │ ├── Error
│ │ │ │ │ ├── Deprecated.php
│ │ │ │ │ ├── Notice.php
│ │ │ │ │ └── Warning.php
│ │ │ │ ├── Error.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── ExceptionWrapper.php
│ │ │ │ ├── ExpectationFailedException.php
│ │ │ │ ├── IncompleteTestCase.php
│ │ │ │ ├── IncompleteTestError.php
│ │ │ │ ├── IncompleteTest.php
│ │ │ │ ├── InvalidCoversTargetError.php
│ │ │ │ ├── InvalidCoversTargetException.php
│ │ │ │ ├── OutputError.php
│ │ │ │ ├── RiskyTestError.php
│ │ │ │ ├── RiskyTest.php
│ │ │ │ ├── SelfDescribing.php
│ │ │ │ ├── SkippedTestCase.php
│ │ │ │ ├── SkippedTestError.php
│ │ │ │ ├── SkippedTest.php
│ │ │ │ ├── SkippedTestSuiteError.php
│ │ │ │ ├── SyntheticError.php
│ │ │ │ ├── TestCase.php
│ │ │ │ ├── TestFailure.php
│ │ │ │ ├── TestListener.php
│ │ │ │ ├── Test.php
│ │ │ │ ├── TestResult.php
│ │ │ │ ├── TestSuite
│ │ │ │ │ └── DataProvider.php
│ │ │ │ ├── TestSuite.php
│ │ │ │ ├── UnintentionallyCoveredCodeError.php
│ │ │ │ └── Warning.php
│ │ │ ├── Runner
│ │ │ │ ├── BaseTestRunner.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Filter
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── Group
│ │ │ │ │ │ ├── Exclude.php
│ │ │ │ │ │ └── Include.php
│ │ │ │ │ ├── Group.php
│ │ │ │ │ └── Test.php
│ │ │ │ ├── StandardTestSuiteLoader.php
│ │ │ │ ├── TestSuiteLoader.php
│ │ │ │ └── Version.php
│ │ │ ├── TextUI
│ │ │ │ ├── Command.php
│ │ │ │ ├── ResultPrinter.php
│ │ │ │ └── TestRunner.php
│ │ │ └── Util
│ │ │ ├── Blacklist.php
│ │ │ ├── Configuration.php
│ │ │ ├── ErrorHandler.php
│ │ │ ├── Fileloader.php
│ │ │ ├── Filesystem.php
│ │ │ ├── Filter.php
│ │ │ ├── Getopt.php
│ │ │ ├── GlobalState.php
│ │ │ ├── InvalidArgumentHelper.php
│ │ │ ├── Log
│ │ │ │ ├── JSON.php
│ │ │ │ ├── JUnit.php
│ │ │ │ └── TAP.php
│ │ │ ├── PHP
│ │ │ │ ├── Default.php
│ │ │ │ ├── eval-stdin.php
│ │ │ │ ├── Template
│ │ │ │ │ └── TestCaseMethod.tpl.dist
│ │ │ │ └── Windows.php
│ │ │ ├── PHP.php
│ │ │ ├── Printer.php
│ │ │ ├── Regex.php
│ │ │ ├── String.php
│ │ │ ├── TestDox
│ │ │ │ ├── NamePrettifier.php
│ │ │ │ ├── ResultPrinter
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ └── Text.php
│ │ │ │ └── ResultPrinter.php
│ │ │ ├── Test.php
│ │ │ ├── TestSuiteIterator.php
│ │ │ ├── Type.php
│ │ │ └── XML.php
│ │ └── tests
│ │ ├── bootstrap.php
│ │ ├── Extensions
│ │ │ ├── PhptTestCaseTest.php
│ │ │ └── RepeatedTestTest.php
│ │ ├── Fail
│ │ │ └── fail.phpt
│ │ ├── _files
│ │ │ ├── AbstractTest.php
│ │ │ ├── Author.php
│ │ │ ├── BankAccount.php
│ │ │ ├── BankAccountTest.php
│ │ │ ├── BankAccountTest.test.php
│ │ │ ├── bar.xml
│ │ │ ├── BaseTestListenerSample.php
│ │ │ ├── BeforeAndAfterTest.php
│ │ │ ├── BeforeClassAndAfterClassTest.php
│ │ │ ├── Book.php
│ │ │ ├── Calculator.php
│ │ │ ├── ChangeCurrentWorkingDirectoryTest.php
│ │ │ ├── ClassWithNonPublicAttributes.php
│ │ │ ├── ClassWithScalarTypeDeclarations.php
│ │ │ ├── ClassWithToString.php
│ │ │ ├── ConcreteTest.my.php
│ │ │ ├── ConcreteTest.php
│ │ │ ├── configuration.colors.empty.xml
│ │ │ ├── configuration.colors.false.xml
│ │ │ ├── configuration.colors.invalid.xml
│ │ │ ├── configuration.colors.true.xml
│ │ │ ├── configuration.custom-printer.xml
│ │ │ ├── configuration_empty.xml
│ │ │ ├── configuration_xinclude.xml
│ │ │ ├── configuration.xml
│ │ │ ├── CoverageClassExtendedTest.php
│ │ │ ├── CoverageClassTest.php
│ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ ├── CoverageFunctionTest.php
│ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ ├── CoverageMethodTest.php
│ │ │ ├── CoverageNamespacedFunctionTest.php
│ │ │ ├── CoverageNoneTest.php
│ │ │ ├── CoverageNothingTest.php
│ │ │ ├── CoverageNotPrivateTest.php
│ │ │ ├── CoverageNotProtectedTest.php
│ │ │ ├── CoverageNotPublicTest.php
│ │ │ ├── CoveragePrivateTest.php
│ │ │ ├── CoverageProtectedTest.php
│ │ │ ├── CoveragePublicTest.php
│ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ ├── CoveredClass.php
│ │ │ ├── CoveredFunction.php
│ │ │ ├── CustomPrinter.php
│ │ │ ├── DataProviderDebugTest.php
│ │ │ ├── DataProviderFilterTest.php
│ │ │ ├── DataProviderIncompleteTest.php
│ │ │ ├── DataProviderSkippedTest.php
│ │ │ ├── DataProviderTest.php
│ │ │ ├── DependencyFailureTest.php
│ │ │ ├── DependencySuccessTest.php
│ │ │ ├── DependencyTestSuite.php
│ │ │ ├── DoubleTestCase.php
│ │ │ ├── DummyException.php
│ │ │ ├── EmptyTestCaseTest.php
│ │ │ ├── ExceptionInAssertPostConditionsTest.php
│ │ │ ├── ExceptionInAssertPreConditionsTest.php
│ │ │ ├── ExceptionInSetUpTest.php
│ │ │ ├── ExceptionInTearDownTest.php
│ │ │ ├── ExceptionInTest.php
│ │ │ ├── ExceptionNamespaceTest.php
│ │ │ ├── ExceptionStackTest.php
│ │ │ ├── ExceptionTest.php
│ │ │ ├── expectedFileFormat.txt
│ │ │ ├── Failure.php
│ │ │ ├── FailureTest.php
│ │ │ ├── FatalTest.php
│ │ │ ├── foo.xml
│ │ │ ├── IncompleteTest.php
│ │ │ ├── Inheritance
│ │ │ │ ├── InheritanceA.php
│ │ │ │ └── InheritanceB.php
│ │ │ ├── InheritedTestCase.php
│ │ │ ├── IniTest.php
│ │ │ ├── IsolationTest.php
│ │ │ ├── JsonData
│ │ │ │ ├── arrayObject.json
│ │ │ │ └── simpleObject.json
│ │ │ ├── MockRunner.php
│ │ │ ├── MultiDependencyTest.php
│ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ ├── NamespaceCoveredClass.php
│ │ │ ├── NamespaceCoveredFunction.php
│ │ │ ├── NoArgTestCaseTest.php
│ │ │ ├── NonStatic.php
│ │ │ ├── NoTestCaseClass.php
│ │ │ ├── NoTestCases.php
│ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ ├── NothingTest.php
│ │ │ ├── NotPublicTestCase.php
│ │ │ ├── NotVoidTestCase.php
│ │ │ ├── OneTestCase.php
│ │ │ ├── OutputTestCase.php
│ │ │ ├── OverrideTestCase.php
│ │ │ ├── RequirementsClassBeforeClassHookTest.php
│ │ │ ├── RequirementsClassDocBlockTest.php
│ │ │ ├── RequirementsTest.php
│ │ │ ├── SampleArrayAccess.php
│ │ │ ├── SampleClass.php
│ │ │ ├── Singleton.php
│ │ │ ├── StackTest.php
│ │ │ ├── Struct.php
│ │ │ ├── structureAttributesAreSameButValuesAreNot.xml
│ │ │ ├── structureExpected.xml
│ │ │ ├── structureIgnoreTextNodes.xml
│ │ │ ├── structureIsSameButDataIsNot.xml
│ │ │ ├── structureWrongNumberOfAttributes.xml
│ │ │ ├── structureWrongNumberOfNodes.xml
│ │ │ ├── Success.php
│ │ │ ├── TemplateMethodsTest.php
│ │ │ ├── TestIncomplete.php
│ │ │ ├── TestIterator2.php
│ │ │ ├── TestIterator.php
│ │ │ ├── TestSkipped.php
│ │ │ ├── TestTestError.php
│ │ │ ├── TestWithTest.php
│ │ │ ├── ThrowExceptionTestCase.php
│ │ │ ├── ThrowNoExceptionTestCase.php
│ │ │ └── WasRun.php
│ │ ├── Framework
│ │ │ ├── AssertTest.php
│ │ │ ├── BaseTestListenerTest.php
│ │ │ ├── Constraint
│ │ │ │ ├── CountTest.php
│ │ │ │ ├── ExceptionMessageRegExpTest.php
│ │ │ │ ├── ExceptionMessageTest.php
│ │ │ │ ├── JsonMatches
│ │ │ │ │ └── ErrorMessageProviderTest.php
│ │ │ │ └── JsonMatchesTest.php
│ │ │ ├── ConstraintTest.php
│ │ │ ├── SuiteTest.php
│ │ │ ├── TestCaseTest.php
│ │ │ ├── TestFailureTest.php
│ │ │ ├── TestImplementorTest.php
│ │ │ └── TestListenerTest.php
│ │ ├── Regression
│ │ │ ├── GitHub
│ │ │ │ ├── 1149
│ │ │ │ │ └── Issue1149Test.php
│ │ │ │ ├── 1149.phpt
│ │ │ │ ├── 1216
│ │ │ │ │ ├── bootstrap1216.php
│ │ │ │ │ ├── Issue1216Test.php
│ │ │ │ │ └── phpunit1216.xml
│ │ │ │ ├── 1216.phpt
│ │ │ │ ├── 1265
│ │ │ │ │ ├── Issue1265Test.php
│ │ │ │ │ └── phpunit1265.xml
│ │ │ │ ├── 1265.phpt
│ │ │ │ ├── 1330
│ │ │ │ │ ├── Issue1330Test.php
│ │ │ │ │ └── phpunit1330.xml
│ │ │ │ ├── 1330.phpt
│ │ │ │ ├── 1335
│ │ │ │ │ ├── bootstrap1335.php
│ │ │ │ │ └── Issue1335Test.php
│ │ │ │ ├── 1335.phpt
│ │ │ │ ├── 1337
│ │ │ │ │ └── Issue1337Test.php
│ │ │ │ ├── 1337.phpt
│ │ │ │ ├── 1348
│ │ │ │ │ └── Issue1348Test.php
│ │ │ │ ├── 1348.phpt
│ │ │ │ ├── 1351
│ │ │ │ │ ├── ChildProcessClass1351.php
│ │ │ │ │ └── Issue1351Test.php
│ │ │ │ ├── 1351.phpt
│ │ │ │ ├── 1374
│ │ │ │ │ └── Issue1374Test.php
│ │ │ │ ├── 1374.phpt
│ │ │ │ ├── 1437
│ │ │ │ │ └── Issue1437Test.php
│ │ │ │ ├── 1437.phpt
│ │ │ │ ├── 1468
│ │ │ │ │ └── Issue1468Test.php
│ │ │ │ ├── 1468.phpt
│ │ │ │ ├── 1471
│ │ │ │ │ └── Issue1471Test.php
│ │ │ │ ├── 1471.phpt
│ │ │ │ ├── 1472
│ │ │ │ │ └── Issue1472Test.php
│ │ │ │ ├── 1472.phpt
│ │ │ │ ├── 1570
│ │ │ │ │ └── Issue1570Test.php
│ │ │ │ ├── 1570.phpt
│ │ │ │ ├── 244
│ │ │ │ │ └── Issue244Test.php
│ │ │ │ ├── 244.phpt
│ │ │ │ ├── 322
│ │ │ │ │ ├── Issue322Test.php
│ │ │ │ │ └── phpunit322.xml
│ │ │ │ ├── 322.phpt
│ │ │ │ ├── 433
│ │ │ │ │ └── Issue433Test.php
│ │ │ │ ├── 433.phpt
│ │ │ │ ├── 445
│ │ │ │ │ └── Issue445Test.php
│ │ │ │ ├── 445.phpt
│ │ │ │ ├── 498
│ │ │ │ │ └── Issue498Test.php
│ │ │ │ ├── 498.phpt
│ │ │ │ ├── 503
│ │ │ │ │ └── Issue503Test.php
│ │ │ │ ├── 503.phpt
│ │ │ │ ├── 581
│ │ │ │ │ └── Issue581Test.php
│ │ │ │ ├── 581.phpt
│ │ │ │ ├── 74
│ │ │ │ │ ├── Issue74Test.php
│ │ │ │ │ └── NewException.php
│ │ │ │ ├── 74.phpt
│ │ │ │ ├── 765
│ │ │ │ │ └── Issue765Test.php
│ │ │ │ ├── 765.phpt
│ │ │ │ ├── 797
│ │ │ │ │ ├── bootstrap797.php
│ │ │ │ │ └── Issue797Test.php
│ │ │ │ ├── 797.phpt
│ │ │ │ ├── 863.phpt
│ │ │ │ ├── 873
│ │ │ │ │ └── Issue873Test.php
│ │ │ │ ├── 873-php5.phpt
│ │ │ │ └── 873-php7.phpt
│ │ │ └── Trac
│ │ │ ├── 1021
│ │ │ │ └── Issue1021Test.php
│ │ │ ├── 1021.phpt
│ │ │ ├── 523
│ │ │ │ └── Issue523Test.php
│ │ │ ├── 523.phpt
│ │ │ ├── 578
│ │ │ │ └── Issue578Test.php
│ │ │ ├── 578.phpt
│ │ │ ├── 684
│ │ │ │ └── Issue684Test.php
│ │ │ ├── 684.phpt
│ │ │ ├── 783
│ │ │ │ ├── ChildSuite.php
│ │ │ │ ├── OneTest.php
│ │ │ │ ├── ParentSuite.php
│ │ │ │ └── TwoTest.php
│ │ │ └── 783.phpt
│ │ ├── Runner
│ │ │ └── BaseTestRunnerTest.php
│ │ ├── TextUI
│ │ │ ├── abstract-test-class.phpt
│ │ │ ├── colors-always.phpt
│ │ │ ├── concrete-test-class.phpt
│ │ │ ├── custom-printer-debug.phpt
│ │ │ ├── custom-printer-verbose.phpt
│ │ │ ├── dataprovider-debug.phpt
│ │ │ ├── dataprovider-log-xml-isolation.phpt
│ │ │ ├── dataprovider-log-xml.phpt
│ │ │ ├── dataprovider-testdox.phpt
│ │ │ ├── debug.phpt
│ │ │ ├── default-isolation.phpt
│ │ │ ├── default.phpt
│ │ │ ├── dependencies2-isolation.phpt
│ │ │ ├── dependencies2.phpt
│ │ │ ├── dependencies3-isolation.phpt
│ │ │ ├── dependencies3.phpt
│ │ │ ├── dependencies-isolation.phpt
│ │ │ ├── dependencies.phpt
│ │ │ ├── empty-testcase.phpt
│ │ │ ├── exception-stack.phpt
│ │ │ ├── exclude-group-isolation.phpt
│ │ │ ├── exclude-group.phpt
│ │ │ ├── failure-isolation.phpt
│ │ │ ├── failure.phpt
│ │ │ ├── fatal-isolation.phpt
│ │ │ ├── filter-class-isolation.phpt
│ │ │ ├── filter-class.phpt
│ │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt
│ │ │ ├── filter-dataprovider-by-classname-and-range.phpt
│ │ │ ├── filter-dataprovider-by-number-isolation.phpt
│ │ │ ├── filter-dataprovider-by-number.phpt
│ │ │ ├── filter-dataprovider-by-only-range-isolation.phpt
│ │ │ ├── filter-dataprovider-by-only-range.phpt
│ │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt
│ │ │ ├── filter-dataprovider-by-only-regexp.phpt
│ │ │ ├── filter-dataprovider-by-only-string-isolation.phpt
│ │ │ ├── filter-dataprovider-by-only-string.phpt
│ │ │ ├── filter-dataprovider-by-range-isolation.phpt
│ │ │ ├── filter-dataprovider-by-range.phpt
│ │ │ ├── filter-dataprovider-by-regexp-isolation.phpt
│ │ │ ├── filter-dataprovider-by-regexp.phpt
│ │ │ ├── filter-dataprovider-by-string-isolation.phpt
│ │ │ ├── filter-dataprovider-by-string.phpt
│ │ │ ├── filter-method-case-insensitive.phpt
│ │ │ ├── filter-method-case-sensitive-no-result.phpt
│ │ │ ├── filter-method-isolation.phpt
│ │ │ ├── filter-method.phpt
│ │ │ ├── filter-no-results.phpt
│ │ │ ├── group-isolation.phpt
│ │ │ ├── group.phpt
│ │ │ ├── help2.phpt
│ │ │ ├── help.phpt
│ │ │ ├── ini-isolation.phpt
│ │ │ ├── list-groups.phpt
│ │ │ ├── log-json-no-pretty-print.phpt
│ │ │ ├── log-json-post-66021.phpt
│ │ │ ├── log-json-pre-66021.phpt
│ │ │ ├── log-tap.phpt
│ │ │ ├── log-xml.phpt
│ │ │ ├── options-after-arguments.phpt
│ │ │ ├── output-isolation.phpt
│ │ │ ├── repeat.phpt
│ │ │ ├── report-useless-tests-incomplete.phpt
│ │ │ ├── report-useless-tests-isolation.phpt
│ │ │ ├── report-useless-tests.phpt
│ │ │ ├── tap.phpt
│ │ │ ├── testdox-html.phpt
│ │ │ ├── testdox.phpt
│ │ │ ├── testdox-text.phpt
│ │ │ ├── test-suffix-multiple.phpt
│ │ │ └── test-suffix-single.phpt
│ │ └── Util
│ │ ├── ConfigurationTest.php
│ │ ├── GetoptTest.php
│ │ ├── GlobalStateTest.php
│ │ ├── RegexTest.php
│ │ ├── TestDox
│ │ │ └── NamePrettifierTest.php
│ │ ├── TestTest.php
│ │ └── XMLTest.php
│ └── phpunit-mock-objects
│ ├── build
│ │ └── travis-ci.xml
│ ├── build.xml
│ ├── composer.json
│ ├── CONTRIBUTING.md
│ ├── LICENSE
│ ├── phpunit.xml.dist
│ ├── README.md
│ ├── src
│ │ └── Framework
│ │ └── MockObject
│ │ ├── Builder
│ │ │ ├── Identity.php
│ │ │ ├── InvocationMocker.php
│ │ │ ├── Match.php
│ │ │ ├── MethodNameMatch.php
│ │ │ ├── Namespace.php
│ │ │ ├── ParametersMatch.php
│ │ │ └── Stub.php
│ │ ├── Exception
│ │ │ ├── BadMethodCallException.php
│ │ │ ├── Exception.php
│ │ │ └── RuntimeException.php
│ │ ├── Generator
│ │ │ ├── mocked_class_method.tpl.dist
│ │ │ ├── mocked_class.tpl.dist
│ │ │ ├── mocked_clone.tpl.dist
│ │ │ ├── mocked_method.tpl.dist
│ │ │ ├── mocked_static_method.tpl.dist
│ │ │ ├── proxied_method.tpl.dist
│ │ │ ├── trait_class.tpl.dist
│ │ │ ├── unmocked_clone.tpl.dist
│ │ │ ├── wsdl_class.tpl.dist
│ │ │ └── wsdl_method.tpl.dist
│ │ ├── Generator.php
│ │ ├── Invocation
│ │ │ ├── Object.php
│ │ │ └── Static.php
│ │ ├── InvocationMocker.php
│ │ ├── Invocation.php
│ │ ├── Invokable.php
│ │ ├── Matcher
│ │ │ ├── AnyInvokedCount.php
│ │ │ ├── AnyParameters.php
│ │ │ ├── ConsecutiveParameters.php
│ │ │ ├── Invocation.php
│ │ │ ├── InvokedAtIndex.php
│ │ │ ├── InvokedAtLeastCount.php
│ │ │ ├── InvokedAtLeastOnce.php
│ │ │ ├── InvokedAtMostCount.php
│ │ │ ├── InvokedCount.php
│ │ │ ├── InvokedRecorder.php
│ │ │ ├── MethodName.php
│ │ │ ├── Parameters.php
│ │ │ └── StatelessInvocation.php
│ │ ├── Matcher.php
│ │ ├── MockBuilder.php
│ │ ├── MockObject.php
│ │ ├── Stub
│ │ │ ├── ConsecutiveCalls.php
│ │ │ ├── Exception.php
│ │ │ ├── MatcherCollection.php
│ │ │ ├── ReturnArgument.php
│ │ │ ├── ReturnCallback.php
│ │ │ ├── Return.php
│ │ │ ├── ReturnSelf.php
│ │ │ └── ReturnValueMap.php
│ │ ├── Stub.php
│ │ └── Verifiable.php
│ └── tests
│ ├── bootstrap.php
│ ├── _fixture
│ │ ├── AbstractMockTestClass.php
│ │ ├── AbstractTrait.php
│ │ ├── AnInterface.php
│ │ ├── AnotherInterface.php
│ │ ├── Bar.php
│ │ ├── ClassThatImplementsSerializable.php
│ │ ├── ClassWithStaticMethod.php
│ │ ├── Foo.php
│ │ ├── FunctionCallback.php
│ │ ├── GoogleSearch.wsdl
│ │ ├── InterfaceWithStaticMethod.php
│ │ ├── MethodCallbackByReference.php
│ │ ├── MethodCallback.php
│ │ ├── Mockable.php
│ │ ├── MockTestInterface.php
│ │ ├── PartialMockTestClass.php
│ │ ├── SingletonClass.php
│ │ ├── SomeClass.php
│ │ ├── StaticMockTestClass.php
│ │ └── TraversableMockTestInterface.php
│ ├── GeneratorTest.php
│ ├── MockBuilderTest.php
│ ├── MockObject
│ │ ├── 232.phpt
│ │ ├── abstract_class.phpt
│ │ ├── class_call_parent_clone.phpt
│ │ ├── class_call_parent_constructor.phpt
│ │ ├── class_dont_call_parent_clone.phpt
│ │ ├── class_dont_call_parent_constructor.phpt
│ │ ├── class_implementing_interface_call_parent_constructor.phpt
│ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt
│ │ ├── class_partial.phpt
│ │ ├── class.phpt
│ │ ├── class_with_method_named_method.phpt
│ │ ├── class_with_method_with_variadic_arguments.phpt
│ │ ├── interface.phpt
│ │ ├── Invocation
│ │ │ ├── ObjectTest.php
│ │ │ └── StaticTest.php
│ │ ├── invocation_object_clone_object.phpt
│ │ ├── Matcher
│ │ │ └── ConsecutiveParametersTest.php
│ │ ├── namespaced_class_call_parent_clone.phpt
│ │ ├── namespaced_class_call_parent_constructor.phpt
│ │ ├── namespaced_class_dont_call_parent_clone.phpt
│ │ ├── namespaced_class_dont_call_parent_constructor.phpt
│ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt
│ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt
│ │ ├── namespaced_class_partial.phpt
│ │ ├── namespaced_class.phpt
│ │ ├── namespaced_interface.phpt
│ │ ├── nonexistent_class.phpt
│ │ ├── nonexistent_class_with_namespace.phpt
│ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│ │ ├── proxy.phpt
│ │ ├── scalar_type_declarations.phpt
│ │ ├── wsdl_class_namespace.phpt
│ │ ├── wsdl_class_partial.phpt
│ │ └── wsdl_class.phpt
│ ├── MockObjectTest.php
│ └── ProxyObjectTest.php
├── 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
│ │ └── psysh
│ ├── composer.json
│ ├── CONTRIBUTING.md
│ ├── LICENSE
│ ├── phpcs.xml
│ ├── phpunit.xml.dist
│ ├── README.md
│ ├── src
│ │ └── Psy
│ │ ├── Autoloader.php
│ │ ├── CodeCleaner
│ │ │ ├── AbstractClassPass.php
│ │ │ ├── AssignThisVariablePass.php
│ │ │ ├── CalledClassPass.php
│ │ │ ├── CallTimePassByReferencePass.php
│ │ │ ├── CodeCleanerPass.php
│ │ │ ├── ExitPass.php
│ │ │ ├── FunctionReturnInWriteContextPass.php
│ │ │ ├── ImplicitReturnPass.php
│ │ │ ├── InstanceOfPass.php
│ │ │ ├── LeavePsyshAlonePass.php
│ │ │ ├── LegacyEmptyPass.php
│ │ │ ├── MagicConstantsPass.php
│ │ │ ├── NamespaceAwarePass.php
│ │ │ ├── NamespacePass.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
│ │ │ ├── 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
│ │ │ ├── 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
│ │ ├── Output
│ │ │ ├── OutputPager.php
│ │ │ ├── PassthruPager.php
│ │ │ ├── ProcOutputPager.php
│ │ │ └── ShellOutput.php
│ │ ├── ParserFactory.php
│ │ ├── Readline
│ │ │ ├── GNUReadline.php
│ │ │ ├── Libedit.php
│ │ │ ├── Readline.php
│ │ │ └── Transient.php
│ │ ├── Reflection
│ │ │ └── ReflectionConstant.php
│ │ ├── Shell.php
│ │ ├── TabCompletion
│ │ │ ├── AutoCompleter.php
│ │ │ └── Matcher
│ │ │ ├── AbstractContextAwareMatcher.php
│ │ │ ├── AbstractMatcher.php
│ │ │ ├── ClassAttributesMatcher.php
│ │ │ ├── ClassMethodsMatcher.php
│ │ │ ├── ClassNamesMatcher.php
│ │ │ ├── CommandsMatcher.php
│ │ │ ├── ConstantsMatcher.php
│ │ │ ├── FunctionsMatcher.php
│ │ │ ├── KeywordsMatcher.php
│ │ │ ├── MongoClientMatcher.php
│ │ │ ├── MongoDatabaseMatcher.php
│ │ │ ├── ObjectAttributesMatcher.php
│ │ │ ├── ObjectMethodsMatcher.php
│ │ │ └── VariablesMatcher.php
│ │ ├── Util
│ │ │ ├── Docblock.php
│ │ │ ├── Json.php
│ │ │ ├── Mirror.php
│ │ │ └── Str.php
│ │ └── VarDumper
│ │ ├── Cloner.php
│ │ ├── Dumper.php
│ │ ├── PresenterAware.php
│ │ └── Presenter.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
│ │ │ ├── Fixtures
│ │ │ │ ├── ClassWithCallStatic.php
│ │ │ │ └── ClassWithStatic.php
│ │ │ ├── FunctionReturnInWriteContextPassTest.php
│ │ │ ├── ImplicitReturnPassTest.php
│ │ │ ├── InstanceOfPassTest.php
│ │ │ ├── LeavePsyshAlonePassTest.php
│ │ │ ├── LegacyEmptyPassTest.php
│ │ │ ├── MagicConstantsPassTest.php
│ │ │ ├── NamespacePassTest.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
│ │ ├── Readline
│ │ │ ├── GNUReadlineTest.php
│ │ │ ├── LibeditTest.php
│ │ │ └── TransientTest.php
│ │ ├── Reflection
│ │ │ └── ReflectionConstantTest.php
│ │ ├── ShellTest.php
│ │ ├── TabCompletion
│ │ │ ├── AutoCompleterTest.php
│ │ │ └── StaticSample.php
│ │ └── Util
│ │ ├── DocblockTest.php
│ │ ├── MirrorTest.php
│ │ └── StrTest.php
│ └── tools
│ ├── gen_unvis_fixtures.py
│ └── vis.py
├── sebastian
│ ├── comparator
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── ArrayComparator.php
│ │ │ ├── Comparator.php
│ │ │ ├── ComparisonFailure.php
│ │ │ ├── DateTimeComparator.php
│ │ │ ├── DOMNodeComparator.php
│ │ │ ├── DoubleComparator.php
│ │ │ ├── ExceptionComparator.php
│ │ │ ├── Factory.php
│ │ │ ├── MockObjectComparator.php
│ │ │ ├── NumericComparator.php
│ │ │ ├── ObjectComparator.php
│ │ │ ├── ResourceComparator.php
│ │ │ ├── ScalarComparator.php
│ │ │ ├── SplObjectStorageComparator.php
│ │ │ └── TypeComparator.php
│ │ └── tests
│ │ ├── ArrayComparatorTest.php
│ │ ├── autoload.php
│ │ ├── bootstrap.php
│ │ ├── DateTimeComparatorTest.php
│ │ ├── DOMNodeComparatorTest.php
│ │ ├── DoubleComparatorTest.php
│ │ ├── ExceptionComparatorTest.php
│ │ ├── FactoryTest.php
│ │ ├── _files
│ │ │ ├── Author.php
│ │ │ ├── Book.php
│ │ │ ├── ClassWithToString.php
│ │ │ ├── SampleClass.php
│ │ │ ├── Struct.php
│ │ │ ├── TestClassComparator.php
│ │ │ └── TestClass.php
│ │ ├── MockObjectComparatorTest.php
│ │ ├── NumericComparatorTest.php
│ │ ├── ObjectComparatorTest.php
│ │ ├── ResourceComparatorTest.php
│ │ ├── ScalarComparatorTest.php
│ │ ├── SplObjectStorageComparatorTest.php
│ │ └── TypeComparatorTest.php
│ ├── diff
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── Chunk.php
│ │ │ ├── Differ.php
│ │ │ ├── Diff.php
│ │ │ ├── LCS
│ │ │ │ ├── LongestCommonSubsequence.php
│ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php
│ │ │ ├── Line.php
│ │ │ └── Parser.php
│ │ └── tests
│ │ ├── DifferTest.php
│ │ ├── fixtures
│ │ │ ├── patch2.txt
│ │ │ └── patch.txt
│ │ ├── LCS
│ │ │ └── TimeEfficientImplementationTest.php
│ │ └── ParserTest.php
│ ├── environment
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── Console.php
│ │ │ └── Runtime.php
│ │ └── tests
│ │ ├── ConsoleTest.php
│ │ └── RuntimeTest.php
│ ├── exporter
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Exporter.php
│ │ └── tests
│ │ └── ExporterTest.php
│ ├── global-state
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── Blacklist.php
│ │ │ ├── CodeExporter.php
│ │ │ ├── Exception.php
│ │ │ ├── Restorer.php
│ │ │ ├── RuntimeException.php
│ │ │ └── Snapshot.php
│ │ └── tests
│ │ ├── BlacklistTest.php
│ │ ├── _fixture
│ │ │ ├── BlacklistedChildClass.php
│ │ │ ├── BlacklistedClass.php
│ │ │ ├── BlacklistedImplementor.php
│ │ │ ├── BlacklistedInterface.php
│ │ │ ├── SnapshotClass.php
│ │ │ ├── SnapshotDomDocument.php
│ │ │ ├── SnapshotFunctions.php
│ │ │ └── SnapshotTrait.php
│ │ └── SnapshotTest.php
│ ├── recursion-context
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── Context.php
│ │ │ ├── Exception.php
│ │ │ └── InvalidArgumentException.php
│ │ └── tests
│ │ └── ContextTest.php
│ └── version
│ ├── composer.json
│ ├── LICENSE
│ ├── README.md
│ └── src
│ └── Version.php
├── 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
│ │ │ ├── Bug71Test.php
│ │ │ └── Bug76Test.php
│ │ ├── fixtures
│ │ │ ├── EsmtpTransportFixture.php
│ │ │ └── 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
│ ├── console
│ │ ├── Application.php
│ │ ├── CHANGELOG.md
│ │ ├── Command
│ │ │ ├── Command.php
│ │ │ ├── HelpCommand.php
│ │ │ └── ListCommand.php
│ │ ├── composer.json
│ │ ├── ConsoleEvents.php
│ │ ├── Descriptor
│ │ │ ├── ApplicationDescription.php
│ │ │ ├── DescriptorInterface.php
│ │ │ ├── Descriptor.php
│ │ │ ├── JsonDescriptor.php
│ │ │ ├── MarkdownDescriptor.php
│ │ │ ├── TextDescriptor.php
│ │ │ └── XmlDescriptor.php
│ │ ├── Event
│ │ │ ├── ConsoleCommandEvent.php
│ │ │ ├── ConsoleEvent.php
│ │ │ ├── ConsoleExceptionEvent.php
│ │ │ └── ConsoleTerminateEvent.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
│ │ │ └── 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
│ │ ├── Tester
│ │ │ ├── ApplicationTester.php
│ │ │ └── CommandTester.php
│ │ └── Tests
│ │ ├── ApplicationTest.php
│ │ ├── Command
│ │ │ ├── CommandTest.php
│ │ │ ├── HelpCommandTest.php
│ │ │ └── ListCommandTest.php
│ │ ├── Descriptor
│ │ │ ├── AbstractDescriptorTest.php
│ │ │ ├── JsonDescriptorTest.php
│ │ │ ├── MarkdownDescriptorTest.php
│ │ │ ├── ObjectsProvider.php
│ │ │ ├── TextDescriptorTest.php
│ │ │ └── XmlDescriptorTest.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_astext1.txt
│ │ │ ├── application_astext2.txt
│ │ │ ├── application_gethelp.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_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_astext.txt
│ │ │ ├── command_asxml.txt
│ │ │ ├── definition_astext.txt
│ │ │ ├── definition_asxml.txt
│ │ │ ├── DescriptorApplication1.php
│ │ │ ├── DescriptorApplication2.php
│ │ │ ├── DescriptorCommand1.php
│ │ │ ├── DescriptorCommand2.php
│ │ │ ├── DummyOutput.php
│ │ │ ├── Foo1Command.php
│ │ │ ├── Foo2Command.php
│ │ │ ├── Foo3Command.php
│ │ │ ├── Foo4Command.php
│ │ │ ├── Foo5Command.php
│ │ │ ├── Foo6Command.php
│ │ │ ├── FoobarCommand.php
│ │ │ ├── FooCommand.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_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
│ │ │ ├── Style
│ │ │ │ └── SymfonyStyle
│ │ │ │ ├── command
│ │ │ │ │ ├── command_0.php
│ │ │ │ │ ├── command_1.php
│ │ │ │ │ ├── command_2.php
│ │ │ │ │ ├── command_3.php
│ │ │ │ │ ├── command_4.php
│ │ │ │ │ ├── command_5.php
│ │ │ │ │ ├── command_6.php
│ │ │ │ │ └── command_7.php
│ │ │ │ └── output
│ │ │ │ ├── output_0.txt
│ │ │ │ ├── output_1.txt
│ │ │ │ ├── output_2.txt
│ │ │ │ ├── output_3.txt
│ │ │ │ ├── output_4.txt
│ │ │ │ ├── output_5.txt
│ │ │ │ ├── output_6.txt
│ │ │ │ └── output_7.txt
│ │ │ └── TestCommand.php
│ │ ├── Formatter
│ │ │ ├── OutputFormatterStyleStackTest.php
│ │ │ ├── OutputFormatterStyleTest.php
│ │ │ └── OutputFormatterTest.php
│ │ ├── Helper
│ │ │ ├── FormatterHelperTest.php
│ │ │ ├── HelperSetTest.php
│ │ │ ├── ProcessHelperTest.php
│ │ │ ├── ProgressBarTest.php
│ │ │ ├── ProgressIndicatorTest.php
│ │ │ ├── QuestionHelperTest.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
│ │ └── 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
│ │ │ ├── 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
│ │ │ ├── casemismatch.php
│ │ │ ├── ClassAlias.php
│ │ │ ├── DeprecatedClass.php
│ │ │ ├── DeprecatedInterface.php
│ │ │ ├── NonDeprecatedInterface.php
│ │ │ ├── notPsr0Bis.php
│ │ │ ├── PEARClass.php
│ │ │ ├── psr4
│ │ │ │ └── Psr4CaseMismatch.php
│ │ │ ├── reallyNotPsr0.php
│ │ │ └── ToStringThrower.php
│ │ ├── Fixtures2
│ │ │ └── RequiredTwice.php
│ │ ├── HeaderMock.php
│ │ └── MockExceptionHandler.php
│ ├── dom-crawler
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── Crawler.php
│ │ ├── Field
│ │ │ ├── ChoiceFormField.php
│ │ │ ├── FileFormField.php
│ │ │ ├── FormField.php
│ │ │ ├── InputFormField.php
│ │ │ └── TextareaFormField.php
│ │ ├── FormFieldRegistry.php
│ │ ├── Form.php
│ │ ├── LICENSE
│ │ ├── Link.php
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ └── Tests
│ │ ├── CrawlerTest.php
│ │ ├── Field
│ │ │ ├── ChoiceFormFieldTest.php
│ │ │ ├── FileFormFieldTest.php
│ │ │ ├── FormFieldTestCase.php
│ │ │ ├── FormFieldTest.php
│ │ │ ├── InputFormFieldTest.php
│ │ │ └── TextareaFormFieldTest.php
│ │ ├── Fixtures
│ │ │ ├── no-extension
│ │ │ └── windows-1250.html
│ │ ├── FormTest.php
│ │ └── LinkTest.php
│ ├── 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
│ │ ├── 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
│ │ │ └── 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
│ │ │ ├── SessionInterface.php
│ │ │ ├── Session.php
│ │ │ └── Storage
│ │ │ ├── Handler
│ │ │ │ ├── MemcachedSessionHandler.php
│ │ │ │ ├── MemcacheSessionHandler.php
│ │ │ │ ├── MongoDbSessionHandler.php
│ │ │ │ ├── NativeFileSessionHandler.php
│ │ │ │ ├── NativeSessionHandler.php
│ │ │ │ ├── NullSessionHandler.php
│ │ │ │ ├── PdoSessionHandler.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
│ │ ├── ServerBagTest.php
│ │ ├── Session
│ │ │ ├── Attribute
│ │ │ │ ├── AttributeBagTest.php
│ │ │ │ └── NamespacedAttributeBagTest.php
│ │ │ ├── Flash
│ │ │ │ ├── AutoExpireFlashBagTest.php
│ │ │ │ └── FlashBagTest.php
│ │ │ ├── SessionTest.php
│ │ │ └── Storage
│ │ │ ├── Handler
│ │ │ │ ├── MemcachedSessionHandlerTest.php
│ │ │ │ ├── MemcacheSessionHandlerTest.php
│ │ │ │ ├── MongoDbSessionHandlerTest.php
│ │ │ │ ├── NativeFileSessionHandlerTest.php
│ │ │ │ ├── NativeSessionHandlerTest.php
│ │ │ │ ├── NullSessionHandlerTest.php
│ │ │ │ ├── PdoSessionHandlerTest.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
│ │ ├── CacheWarmer
│ │ │ ├── CacheWarmerAggregate.php
│ │ │ ├── CacheWarmerInterface.php
│ │ │ ├── CacheWarmer.php
│ │ │ └── WarmableInterface.php
│ │ ├── CHANGELOG.md
│ │ ├── Client.php
│ │ ├── composer.json
│ │ ├── Config
│ │ │ ├── EnvParametersResource.php
│ │ │ └── FileLocator.php
│ │ ├── Controller
│ │ │ ├── ControllerReference.php
│ │ │ ├── ControllerResolverInterface.php
│ │ │ ├── ControllerResolver.php
│ │ │ └── TraceableControllerResolver.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
│ │ │ └── TraceableEventDispatcher.php
│ │ ├── DependencyInjection
│ │ │ ├── AddClassesToCachePass.php
│ │ │ ├── ConfigurableExtension.php
│ │ │ ├── Extension.php
│ │ │ ├── FragmentRendererPass.php
│ │ │ ├── LazyLoadingFragmentHandler.php
│ │ │ └── MergeExtensionConfigurationPass.php
│ │ ├── Event
│ │ │ ├── FilterControllerEvent.php
│ │ │ ├── FilterResponseEvent.php
│ │ │ ├── FinishRequestEvent.php
│ │ │ ├── GetResponseEvent.php
│ │ │ ├── GetResponseForControllerResultEvent.php
│ │ │ ├── GetResponseForExceptionEvent.php
│ │ │ ├── KernelEvent.php
│ │ │ └── PostResponseEvent.php
│ │ ├── EventListener
│ │ │ ├── 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
│ │ ├── 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
│ │ │ ├── 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
│ │ ├── phpunit.xml.dist
│ │ ├── Profiler
│ │ │ ├── FileProfilerStorage.php
│ │ │ ├── Profile.php
│ │ │ ├── Profiler.php
│ │ │ └── ProfilerStorageInterface.php
│ │ ├── README.md
│ │ ├── TerminableInterface.php
│ │ ├── Tests
│ │ │ ├── Bundle
│ │ │ │ └── BundleTest.php
│ │ │ ├── CacheClearer
│ │ │ │ └── ChainCacheClearerTest.php
│ │ │ ├── CacheWarmer
│ │ │ │ ├── CacheWarmerAggregateTest.php
│ │ │ │ └── CacheWarmerTest.php
│ │ │ ├── ClientTest.php
│ │ │ ├── Config
│ │ │ │ ├── EnvParametersResourceTest.php
│ │ │ │ └── FileLocatorTest.php
│ │ │ ├── Controller
│ │ │ │ └── ControllerResolverTest.php
│ │ │ ├── DataCollector
│ │ │ │ ├── ConfigDataCollectorTest.php
│ │ │ │ ├── DumpDataCollectorTest.php
│ │ │ │ ├── ExceptionDataCollectorTest.php
│ │ │ │ ├── LoggerDataCollectorTest.php
│ │ │ │ ├── MemoryDataCollectorTest.php
│ │ │ │ ├── RequestDataCollectorTest.php
│ │ │ │ ├── TimeDataCollectorTest.php
│ │ │ │ └── Util
│ │ │ │ └── ValueExporterTest.php
│ │ │ ├── Debug
│ │ │ │ └── TraceableEventDispatcherTest.php
│ │ │ ├── DependencyInjection
│ │ │ │ ├── FragmentRendererPassTest.php
│ │ │ │ ├── LazyLoadingFragmentHandlerTest.php
│ │ │ │ └── MergeExtensionConfigurationPassTest.php
│ │ │ ├── EventListener
│ │ │ │ ├── AddRequestFormatsListenerTest.php
│ │ │ │ ├── DebugHandlersListenerTest.php
│ │ │ │ ├── DumpListenerTest.php
│ │ │ │ ├── ExceptionListenerTest.php
│ │ │ │ ├── FragmentListenerTest.php
│ │ │ │ ├── LocaleListenerTest.php
│ │ │ │ ├── ProfilerListenerTest.php
│ │ │ │ ├── ResponseListenerTest.php
│ │ │ │ ├── RouterListenerTest.php
│ │ │ │ ├── SurrogateListenerTest.php
│ │ │ │ ├── TestSessionListenerTest.php
│ │ │ │ └── TranslatorListenerTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── BaseBundle
│ │ │ │ │ └── Resources
│ │ │ │ │ ├── foo.txt
│ │ │ │ │ └── hide.txt
│ │ │ │ ├── Bundle1Bundle
│ │ │ │ │ ├── bar.txt
│ │ │ │ │ ├── foo.txt
│ │ │ │ │ └── Resources
│ │ │ │ │ └── foo.txt
│ │ │ │ ├── Bundle2Bundle
│ │ │ │ │ └── foo.txt
│ │ │ │ ├── ChildBundle
│ │ │ │ │ └── Resources
│ │ │ │ │ ├── foo.txt
│ │ │ │ │ └── hide.txt
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ │ ├── HttpCache
│ │ │ │ ├── EsiTest.php
│ │ │ │ ├── HttpCacheTestCase.php
│ │ │ │ ├── HttpCacheTest.php
│ │ │ │ ├── SsiTest.php
│ │ │ │ ├── StoreTest.php
│ │ │ │ ├── TestHttpKernel.php
│ │ │ │ └── TestMultipleHttpKernel.php
│ │ │ ├── HttpKernelTest.php
│ │ │ ├── KernelTest.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.ser
│ │ └── upperCase.ser
│ ├── polyfill-php56
│ │ ├── bootstrap.php
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── Php56.php
│ │ └── README.md
│ ├── polyfill-util
│ │ ├── BinaryNoFuncOverload.php
│ │ ├── BinaryOnFuncOverload.php
│ │ ├── Binary.php
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── TestListener.php
│ ├── process
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── LogicException.php
│ │ │ ├── ProcessFailedException.php
│ │ │ ├── ProcessTimedOutException.php
│ │ │ └── RuntimeException.php
│ │ ├── ExecutableFinder.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
│ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidParameterException.php
│ │ │ ├── MethodNotAllowedException.php
│ │ │ ├── MissingMandatoryParametersException.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
│ │ │ ├── DependencyInjection
│ │ │ │ └── ServiceRouterLoader.php
│ │ │ ├── DirectoryLoader.php
│ │ │ ├── ObjectRouteLoader.php
│ │ │ ├── PhpFileLoader.php
│ │ │ ├── schema
│ │ │ │ └── routing
│ │ │ │ └── routing-1.0.xsd
│ │ │ ├── XmlFileLoader.php
│ │ │ └── YamlFileLoader.php
│ │ ├── Matcher
│ │ │ ├── Dumper
│ │ │ │ ├── DumperCollection.php
│ │ │ │ ├── DumperPrefixCollection.php
│ │ │ │ ├── DumperRoute.php
│ │ │ │ ├── MatcherDumperInterface.php
│ │ │ │ ├── MatcherDumper.php
│ │ │ │ └── PhpMatcherDumper.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
│ │ ├── Fixtures
│ │ │ ├── AnnotatedClasses
│ │ │ │ ├── AbstractClass.php
│ │ │ │ ├── BarClass.php
│ │ │ │ └── FooClass.php
│ │ │ ├── annotated.php
│ │ │ ├── bad_format.yml
│ │ │ ├── bar.xml
│ │ │ ├── CustomXmlFileLoader.php
│ │ │ ├── directory
│ │ │ │ ├── recurse
│ │ │ │ │ ├── routes1.yml
│ │ │ │ │ └── routes2.yml
│ │ │ │ └── routes3.yml
│ │ │ ├── directory_import
│ │ │ │ └── import.yml
│ │ │ ├── dumper
│ │ │ │ ├── url_matcher1.apache
│ │ │ │ ├── url_matcher1.php
│ │ │ │ ├── url_matcher2.apache
│ │ │ │ ├── url_matcher2.php
│ │ │ │ └── url_matcher3.php
│ │ │ ├── empty.yml
│ │ │ ├── file_resource.yml
│ │ │ ├── foo1.xml
│ │ │ ├── foo.xml
│ │ │ ├── incomplete.yml
│ │ │ ├── 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
│ │ │ │ └── VariadicClass.php
│ │ │ ├── RedirectableUrlMatcher.php
│ │ │ ├── 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
│ │ │ ├── ObjectRouteLoaderTest.php
│ │ │ ├── PhpFileLoaderTest.php
│ │ │ ├── XmlFileLoaderTest.php
│ │ │ └── YamlFileLoaderTest.php
│ │ ├── Matcher
│ │ │ ├── Dumper
│ │ │ │ ├── DumperCollectionTest.php
│ │ │ │ ├── DumperPrefixCollectionTest.php
│ │ │ │ └── PhpMatcherDumperTest.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
│ │ ├── composer.json
│ │ ├── DataCollector
│ │ │ └── TranslationDataCollector.php
│ │ ├── DataCollectorTranslator.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
│ │ │ ├── InvalidResourceException.php
│ │ │ └── NotFoundResourceException.php
│ │ ├── Extractor
│ │ │ ├── AbstractFileExtractor.php
│ │ │ ├── ChainExtractor.php
│ │ │ └── ExtractorInterface.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
│ │ ├── README.md
│ │ ├── Tests
│ │ │ ├── Catalogue
│ │ │ │ ├── AbstractOperationTest.php
│ │ │ │ ├── MergeOperationTest.php
│ │ │ │ └── TargetOperationTest.php
│ │ │ ├── DataCollector
│ │ │ │ └── TranslationDataCollectorTest.php
│ │ │ ├── DataCollectorTranslatorTest.php
│ │ │ ├── Dumper
│ │ │ │ ├── CsvFileDumperTest.php
│ │ │ │ ├── FileDumperTest.php
│ │ │ │ ├── IcuResFileDumperTest.php
│ │ │ │ ├── IniFileDumperTest.php
│ │ │ │ ├── JsonFileDumperTest.php
│ │ │ │ ├── MoFileDumperTest.php
│ │ │ │ ├── PhpFileDumperTest.php
│ │ │ │ ├── PoFileDumperTest.php
│ │ │ │ ├── QtFileDumperTest.php
│ │ │ │ ├── XliffFileDumperTest.php
│ │ │ │ └── YamlFileDumperTest.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
│ │ │ │ ├── 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.xlf
│ │ │ │ ├── resources-clean.xlf
│ │ │ │ ├── resources.csv
│ │ │ │ ├── resources.dump.json
│ │ │ │ ├── resources.ini
│ │ │ │ ├── resources.json
│ │ │ │ ├── resources.mo
│ │ │ │ ├── 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
│ │ │ ├── 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
│ │ └── TranslationWriter.php
│ ├── var-dumper
│ │ ├── Caster
│ │ │ ├── AmqpCaster.php
│ │ │ ├── Caster.php
│ │ │ ├── ConstStub.php
│ │ │ ├── CutArrayStub.php
│ │ │ ├── CutStub.php
│ │ │ ├── DoctrineCaster.php
│ │ │ ├── DOMCaster.php
│ │ │ ├── EnumStub.php
│ │ │ ├── ExceptionCaster.php
│ │ │ ├── FrameStub.php
│ │ │ ├── MongoCaster.php
│ │ │ ├── PdoCaster.php
│ │ │ ├── PgSqlCaster.php
│ │ │ ├── ReflectionCaster.php
│ │ │ ├── ResourceCaster.php
│ │ │ ├── SplCaster.php
│ │ │ ├── StubCaster.php
│ │ │ ├── TraceStub.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
│ │ │ │ ├── PdoCasterTest.php
│ │ │ │ ├── ReflectionCasterTest.php
│ │ │ │ └── SplCasterTest.php
│ │ │ ├── CliDumperTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── dumb-var.php
│ │ │ │ ├── GeneratorDemo.php
│ │ │ │ └── Twig.php
│ │ │ ├── HtmlDumperTest.php
│ │ │ ├── Test
│ │ │ │ └── VarDumperTestTraitTest.php
│ │ │ └── VarClonerTest.php
│ │ └── VarDumper.php
│ └── yaml
│ ├── CHANGELOG.md
│ ├── 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
│ ├── Tests
│ │ ├── DumperTest.php
│ │ ├── Fixtures
│ │ │ ├── embededPhp.yml
│ │ │ ├── escapedCharacters.yml
│ │ │ ├── index.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
└── vlucas
└── phpdotenv
├── composer.json
├── LICENSE.txt
└── src
├── Dotenv.php
├── Exception
│ ├── ExceptionInterface.php
│ ├── InvalidCallbackException.php
│ ├── InvalidFileException.php
│ ├── InvalidPathException.php
│ └── ValidationException.php
├── Loader.php
└── Validator.php
1110 directories, 5289 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论