.
├── README.md
├── build-laravel-image
├── composer.json
├── composer.lock
├── run-laravel.ps1
├── run-laravel.sh
├── skill-court
│   ├── README.md
│   ├── app
│   │   ├── Club.php
│   │   ├── Console
│   │   │   └── Kernel.php
│   │   ├── Exceptions
│   │   │   └── Handler.php
│   │   ├── Http
│   │   │   ├── Controllers
│   │   │   │   ├── Auth
│   │   │   │   │   ├── ConfirmPasswordController.php
│   │   │   │   │   ├── ForgotPasswordController.php
│   │   │   │   │   ├── LoginController.php
│   │   │   │   │   ├── RegisterController.php
│   │   │   │   │   ├── ResetPasswordController.php
│   │   │   │   │   └── VerificationController.php
│   │   │   │   ├── ClubController.php
│   │   │   │   ├── ContactFormController.php
│   │   │   │   ├── Controller.php
│   │   │   │   ├── ImageUploadController.php
│   │   │   │   ├── MobileController.php
│   │   │   │   ├── ModalController.php
│   │   │   │   ├── PageController.php
│   │   │   │   ├── PlayerController.php
│   │   │   │   ├── PlayerDashController.php
│   │   │   │   ├── ProfileController.php
│   │   │   │   ├── SplashTutorialController.php
│   │   │   │   └── UserController.php
│   │   │   ├── Helpers.php
│   │   │   ├── Kernel.php
│   │   │   ├── Middleware
│   │   │   │   ├── Authenticate.php
│   │   │   │   ├── CheckForMaintenanceMode.php
│   │   │   │   ├── EncryptCookies.php
│   │   │   │   ├── MobileAccessMiddleware.php
│   │   │   │   ├── RedirectIfAuthenticated.php
│   │   │   │   ├── TrimStrings.php
│   │   │   │   ├── TrustHosts.php
│   │   │   │   ├── TrustProxies.php
│   │   │   │   └── VerifyCsrfToken.php
│   │   │   └── Requests
│   │   │       ├── ClubRequest.php
│   │   │       ├── PasswordRequest.php
│   │   │       ├── ProfileRequest.php
│   │   │       └── UserRequest.php
│   │   ├── Mail
│   │   │   └── SkillCourtContactFormMail.php
│   │   ├── Models
│   │   │   ├── Permission.php
│   │   │   └── Role.php
│   │   ├── Providers
│   │   │   ├── AppServiceProvider.php
│   │   │   ├── AuthServiceProvider.php
│   │   │   ├── BroadcastServiceProvider.php
│   │   │   ├── EventServiceProvider.php
│   │   │   └── RouteServiceProvider.php
│   │   ├── Rules
│   │   │   └── CurrentPasswordCheckRule.php
│   │   └── User.php
│   ├── artisan
│   ├── bootstrap
│   │   ├── app.php
│   │   └── cache
│   ├── composer 2.lock
│   ├── composer 3.lock
│   ├── composer.json
│   ├── composer.lock
│   ├── config
│   │   ├── app.php
│   │   ├── auth.php
│   │   ├── broadcasting.php
│   │   ├── cache.php
│   │   ├── cors.php
│   │   ├── database.php
│   │   ├── filesystems.php
│   │   ├── hashing.php
│   │   ├── laratrust.php
│   │   ├── logging.php
│   │   ├── mail.php
│   │   ├── queue.php
│   │   ├── services.php
│   │   ├── session.php
│   │   └── view.php
│   ├── database
│   │   ├── factories
│   │   │   └── UserFactory.php
│   │   ├── migrations
│   │   │   ├── 2014_10_12_000000_create_users_table.php
│   │   │   ├── 2014_10_12_100000_create_password_resets_table.php
│   │   │   ├── 2019_08_19_000000_create_failed_jobs_table.php
│   │   │   ├── 2020_09_24_143756_add_last_login_to_users_table.php
│   │   │   └── 2020_10_23_153012_laratrust_setup_tables.php
│   │   └── seeds
│   │       ├── DatabaseSeeder.php
│   │       ├── LaratrustSeeder.php
│   │       └── UsersTableSeeder.php
│   ├── package.json
│   ├── phpunit.xml
│   ├── public
│   │   ├── black
│   │   │   ├── css
│   │   │   │   ├── black-dashboard.css
│   │   │   │   ├── black-dashboard.css.map
│   │   │   │   ├── black-dashboard.min.css
│   │   │   │   ├── lity.css
│   │   │   │   ├── lity.min.css
│   │   │   │   ├── nucleo-icons.css
│   │   │   │   └── theme.css
│   │   │   ├── demo
│   │   │   │   ├── demo.css
│   │   │   │   └── demo.js
│   │   │   ├── fonts
│   │   │   │   ├── nucleo.eot
│   │   │   │   ├── nucleo.ttf
│   │   │   │   ├── nucleo.woff
│   │   │   │   └── nucleo.woff2
│   │   │   ├── img
│   │   │   │   ├── anime3.png
│   │   │   │   ├── anime6.png
│   │   │   │   ├── apple-icon.png
│   │   │   │   ├── bg5.jpg
│   │   │   │   ├── card-primary.png
│   │   │   │   ├── default-avatar.png
│   │   │   │   ├── emilyz.jpg
│   │   │   │   ├── favicon.png
│   │   │   │   ├── header.jpg
│   │   │   │   ├── img_3115.jpg
│   │   │   │   ├── james.jpg
│   │   │   │   ├── mike.jpg
│   │   │   │   └── soccer
│   │   │   │       ├── football-registration.jpg
│   │   │   │       └── soccer(1).png
│   │   │   ├── js
│   │   │   │   ├── black-dashboard.js
│   │   │   │   ├── black-dashboard.js.map
│   │   │   │   ├── black-dashboard.min.js
│   │   │   │   ├── clubtheme.js
│   │   │   │   ├── core
│   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   └── popper.min.js
│   │   │   │   ├── padanimation.js
│   │   │   │   ├── plugins
│   │   │   │   │   ├── bootstrap-notify.js
│   │   │   │   │   ├── chartjs.min.js
│   │   │   │   │   ├── jquery.js
│   │   │   │   │   ├── lity.js
│   │   │   │   │   ├── lity.min.js
│   │   │   │   │   ├── perfect-scrollbar.jquery.min.js
│   │   │   │   │   └── zepto.js
│   │   │   │   └── theme.js
│   │   │   └── scss
│   │   │       ├── black-dashboard
│   │   │       │   ├── bootstrap
│   │   │       │   │   ├── _alert.scss
│   │   │       │   │   ├── _badge.scss
│   │   │       │   │   ├── _breadcrumb.scss
│   │   │       │   │   ├── _button-group.scss
│   │   │       │   │   ├── _buttons.scss
│   │   │       │   │   ├── _card.scss
│   │   │       │   │   ├── _carousel.scss
│   │   │       │   │   ├── _close.scss
│   │   │       │   │   ├── _code.scss
│   │   │       │   │   ├── _custom-forms.scss
│   │   │       │   │   ├── _dropdown.scss
│   │   │       │   │   ├── _forms.scss
│   │   │       │   │   ├── _functions.scss
│   │   │       │   │   ├── _grid.scss
│   │   │       │   │   ├── _images.scss
│   │   │       │   │   ├── _input-group.scss
│   │   │       │   │   ├── _jumbotron.scss
│   │   │       │   │   ├── _list-group.scss
│   │   │       │   │   ├── _media.scss
│   │   │       │   │   ├── _mixins.scss
│   │   │       │   │   ├── _modal.scss
│   │   │       │   │   ├── _nav.scss
│   │   │       │   │   ├── _navbar.scss
│   │   │       │   │   ├── _pagination.scss
│   │   │       │   │   ├── _popover.scss
│   │   │       │   │   ├── _print.scss
│   │   │       │   │   ├── _progress.scss
│   │   │       │   │   ├── _reboot.scss
│   │   │       │   │   ├── _root.scss
│   │   │       │   │   ├── _tables.scss
│   │   │       │   │   ├── _tooltip.scss
│   │   │       │   │   ├── _transitions.scss
│   │   │       │   │   ├── _type.scss
│   │   │       │   │   ├── _utilities.scss
│   │   │       │   │   ├── _variables.scss
│   │   │       │   │   ├── mixins
│   │   │       │   │   │   ├── _alert.scss
│   │   │       │   │   │   ├── _background-variant.scss
│   │   │       │   │   │   ├── _badge.scss
│   │   │       │   │   │   ├── _border-radius.scss
│   │   │       │   │   │   ├── _box-shadow.scss
│   │   │       │   │   │   ├── _breakpoints.scss
│   │   │       │   │   │   ├── _buttons.scss
│   │   │       │   │   │   ├── _caret.scss
│   │   │       │   │   │   ├── _clearfix.scss
│   │   │       │   │   │   ├── _float.scss
│   │   │       │   │   │   ├── _forms.scss
│   │   │       │   │   │   ├── _gradients.scss
│   │   │       │   │   │   ├── _grid-framework.scss
│   │   │       │   │   │   ├── _grid.scss
│   │   │       │   │   │   ├── _hover.scss
│   │   │       │   │   │   ├── _image.scss
│   │   │       │   │   │   ├── _list-group.scss
│   │   │       │   │   │   ├── _lists.scss
│   │   │       │   │   │   ├── _nav-divider.scss
│   │   │       │   │   │   ├── _pagination.scss
│   │   │       │   │   │   ├── _reset-text.scss
│   │   │       │   │   │   ├── _resize.scss
│   │   │       │   │   │   ├── _screen-reader.scss
│   │   │       │   │   │   ├── _size.scss
│   │   │       │   │   │   ├── _table-row.scss
│   │   │       │   │   │   ├── _text-emphasis.scss
│   │   │       │   │   │   ├── _text-hide.scss
│   │   │       │   │   │   ├── _text-truncate.scss
│   │   │       │   │   │   ├── _transition.scss
│   │   │       │   │   │   └── _visibility.scss
│   │   │       │   │   └── utilities
│   │   │       │   │       ├── _align.scss
│   │   │       │   │       ├── _background.scss
│   │   │       │   │       ├── _borders.scss
│   │   │       │   │       ├── _clearfix.scss
│   │   │       │   │       ├── _display.scss
│   │   │       │   │       ├── _embed.scss
│   │   │       │   │       ├── _flex.scss
│   │   │       │   │       ├── _float.scss
│   │   │       │   │       ├── _position.scss
│   │   │       │   │       ├── _screenreaders.scss
│   │   │       │   │       ├── _shadows.scss
│   │   │       │   │       ├── _sizing.scss
│   │   │       │   │       ├── _spacing.scss
│   │   │       │   │       ├── _text.scss
│   │   │       │   │       └── _visibility.scss
│   │   │       │   ├── custom
│   │   │       │   │   ├── _alerts.scss
│   │   │       │   │   ├── _buttons.scss
│   │   │       │   │   ├── _card.scss
│   │   │       │   │   ├── _checkboxes-radio.scss
│   │   │       │   │   ├── _dropdown.scss
│   │   │       │   │   ├── _fixed-plugin.scss
│   │   │       │   │   ├── _footer.scss
│   │   │       │   │   ├── _forms.scss
│   │   │       │   │   ├── _functions.scss
│   │   │       │   │   ├── _images.scss
│   │   │       │   │   ├── _input-group.scss
│   │   │       │   │   ├── _misc.scss
│   │   │       │   │   ├── _mixins.scss
│   │   │       │   │   ├── _modal.scss
│   │   │       │   │   ├── _navbar.scss
│   │   │       │   │   ├── _rtl.scss
│   │   │       │   │   ├── _sidebar-and-main-panel.scss
│   │   │       │   │   ├── _tables.scss
│   │   │       │   │   ├── _type.scss
│   │   │       │   │   ├── _utilities.scss
│   │   │       │   │   ├── _variables.scss
│   │   │       │   │   ├── cards
│   │   │       │   │   │   ├── _card-chart.scss
│   │   │       │   │   │   ├── _card-map.scss
│   │   │       │   │   │   ├── _card-plain.scss
│   │   │       │   │   │   ├── _card-task.scss
│   │   │       │   │   │   └── _card-user.scss
│   │   │       │   │   ├── mixins
│   │   │       │   │   │   ├── _alert.scss
│   │   │       │   │   │   ├── _background-variant.scss
│   │   │       │   │   │   ├── _badges.scss
│   │   │       │   │   │   ├── _buttons.scss
│   │   │       │   │   │   ├── _dropdown.scss
│   │   │       │   │   │   ├── _forms.scss
│   │   │       │   │   │   ├── _icon.scss
│   │   │       │   │   │   ├── _inputs.scss
│   │   │       │   │   │   ├── _modals.scss
│   │   │       │   │   │   ├── _page-header.scss
│   │   │       │   │   │   ├── _popovers.scss
│   │   │       │   │   │   ├── _vendor-prefixes.scss
│   │   │       │   │   │   ├── _wizard.scss
│   │   │       │   │   │   └── opacity.scss
│   │   │       │   │   ├── utilities
│   │   │       │   │   │   ├── _backgrounds.scss
│   │   │       │   │   │   ├── _floating.scss
│   │   │       │   │   │   ├── _helper.scss
│   │   │       │   │   │   ├── _position.scss
│   │   │       │   │   │   ├── _shadows.scss
│   │   │       │   │   │   ├── _sizing.scss
│   │   │       │   │   │   ├── _spacing.scss
│   │   │       │   │   │   ├── _text.scss
│   │   │       │   │   │   └── _transform.scss
│   │   │       │   │   └── vendor
│   │   │       │   │       ├── _plugin-animate-bootstrap-notify.scss
│   │   │       │   │       └── _plugin-perfect-scrollbar.scss
│   │   │       │   └── plugins
│   │   │       │       └── _plugin-perfect-scrollbar.scss
│   │   │       └── black-dashboard.scss
│   │   ├── contactform
│   │   │   ├── Readme.txt
│   │   │   └── contactform.js
│   │   ├── css
│   │   │   ├── animate.css
│   │   │   ├── bootstrap.css
│   │   │   ├── flexslider.css
│   │   │   ├── font-awesome.css
│   │   │   ├── icon-component.css
│   │   │   ├── isotope.css
│   │   │   ├── overwrite.css
│   │   │   ├── skillcourt-custom.css
│   │   │   └── style.css
│   │   ├── favicon.ico
│   │   ├── fonts
│   │   │   ├── codropsicons
│   │   │   │   ├── codropsicons.eot
│   │   │   │   ├── codropsicons.svg
│   │   │   │   ├── codropsicons.ttf
│   │   │   │   ├── codropsicons.woff
│   │   │   │   └── license.txt
│   │   │   ├── ecoicons
│   │   │   │   ├── ecoicon.dev.svg
│   │   │   │   ├── ecoicon.eot
│   │   │   │   ├── ecoicon.svg
│   │   │   │   ├── ecoicon.ttf
│   │   │   │   └── ecoicon.woff
│   │   │   ├── flexslider
│   │   │   │   ├── flexslider-icon.eot
│   │   │   │   ├── flexslider-icon.eot@
│   │   │   │   ├── flexslider-icon.svg
│   │   │   │   ├── flexslider-icon.ttf
│   │   │   │   └── flexslider-icon.woff
│   │   │   ├── fontawesome
│   │   │   │   ├── FontAwesome.otf
│   │   │   │   ├── fontawesome-webfont.eot
│   │   │   │   ├── fontawesome-webfont.svg
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   └── fontawesome-webfont.woff
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.eot@
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   └── glyphicons-halflings-regular.woff
│   │   ├── images
│   │   │   ├── 10005_avatar1592759484.png
│   │   │   ├── 10005_avatar1592759800.png
│   │   │   ├── 10005_avatar1592759829.jpg
│   │   │   ├── 10005_avatar1592759842.jpg
│   │   │   ├── 10005_avatar1592759852.png
│   │   │   ├── 10005_avatar1592759864.jpg
│   │   │   ├── 10005_avatar1592771752.jpg
│   │   │   ├── 10005_avatar1592771891.png
│   │   │   ├── 10005_avatar1592771934.jpg
│   │   │   ├── 10005_avatar1592771962.jpg
│   │   │   ├── 1592750720.jpeg
│   │   │   ├── 1592750972.jpeg
│   │   │   ├── 1592758743.jpeg
│   │   │   ├── 1592759006.jpeg
│   │   │   ├── 1592759168.png
│   │   │   ├── 1592759187.png
│   │   │   ├── 1592759333.png
│   │   │   └── 1592759381.png
│   │   ├── img
│   │   │   ├── SClogo.jpeg
│   │   │   ├── SClogo1.png
│   │   │   ├── SkillCourtVideo.mp4
│   │   │   ├── SoccerShow
│   │   │   │   ├── background-bright-close-up-environment-413195.jpg
│   │   │   │   └── yaniv-knobel-9_fZaxzvGuA-unsplash.jpg
│   │   │   ├── arrow_large_left.png
│   │   │   ├── arrow_large_right.png
│   │   │   ├── arrow_small_left.png
│   │   │   ├── arrow_small_right.png
│   │   │   ├── bullets-new.png
│   │   │   ├── parallax
│   │   │   │   └── img1.jpg
│   │   │   ├── portfolio
│   │   │   │   ├── img1.jpeg
│   │   │   │   ├── img2.jpeg
│   │   │   │   ├── img3.jpeg
│   │   │   │   └── img4.jpeg
│   │   │   ├── sclogo1_846_icon.ico
│   │   │   ├── sky-sunset-field-sunrise-114296.jpg
│   │   │   └── soccerBall.png
│   │   ├── index.php
│   │   ├── js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── fancybox
│   │   │   │   ├── Descr.WD3
│   │   │   │   ├── blank.gif
│   │   │   │   ├── fancybox_loading.gif
│   │   │   │   ├── fancybox_loading_402x.gif
│   │   │   │   ├── fancybox_overlay.png
│   │   │   │   ├── fancybox_sprite.png
│   │   │   │   ├── fancybox_sprite_402x.png
│   │   │   │   ├── jquery.fancybox.css
│   │   │   │   └── jquery.fancybox.pack.js
│   │   │   ├── functions.js
│   │   │   ├── jquery.appear.js
│   │   │   ├── jquery.easing.1.3.js
│   │   │   ├── jquery.flexslider-min.js
│   │   │   ├── jquery.isotope.min.js
│   │   │   ├── jquery.js
│   │   │   ├── jquery.localScroll.min.js
│   │   │   ├── jquery.nicescroll.min.js
│   │   │   ├── jquery.scrollTo-1.4.3.1-min.js
│   │   │   ├── jquery.scrollTo.min.js
│   │   │   ├── main.js
│   │   │   ├── modernizr-2.6.2-respond-1.1.0.min.js
│   │   │   ├── skrollr.min.js
│   │   │   └── stellar.js
│   │   ├── robots.txt
│   │   ├── skin
│   │   │   └── default.css
│   │   ├── uploads
│   │   │   └── avatars
│   │   │       ├── 1000001_avatar1599674456.png
│   │   │       ├── 10005_avatar1592833119.jpg
│   │   │       ├── 10005_avatar1592833157.jpg
│   │   │       ├── 10005_avatar1592833187.png
│   │   │       ├── 10005_avatar1592833720.png
│   │   │       ├── 20008_avatar1592834234.jpg
│   │   │       ├── 20008_avatar1592834252.png
│   │   │       ├── 20008_avatar1592834522.jpeg
│   │   │       └── default.jpg
│   │   └── web.config
│   ├── resources
│   │   ├── js
│   │   │   ├── app.js
│   │   │   ├── bootstrap.js
│   │   │   └── components
│   │   │       └── ExampleComponent.vue
│   │   ├── lang
│   │   │   └── en
│   │   │       ├── auth.php
│   │   │       ├── pagination.php
│   │   │       ├── passwords.php
│   │   │       └── validation.php
│   │   ├── sass
│   │   │   ├── _variables.scss
│   │   │   └── app.scss
│   │   └── views
│   │       ├── admin
│   │       │   ├── club_players.blade.php
│   │       │   └── clubdashboard.blade.php
│   │       ├── alerts
│   │       │   ├── feedback.blade.php
│   │       │   └── success.blade.php
│   │       ├── auth
│   │       │   ├── login.blade.php
│   │       │   ├── passwords
│   │       │   │   ├── confirm.blade.php
│   │       │   │   ├── email.blade.php
│   │       │   │   └── reset.blade.php
│   │       │   ├── register.blade.php
│   │       │   └── verify.blade.php
│   │       ├── contact
│   │       │   └── create.blade.php
│   │       ├── dashboard.blade.php
│   │       ├── emails
│   │       │   └── contact
│   │       │       └── contact-form.blade.php
│   │       ├── layouts
│   │       │   ├── app.blade.php
│   │       │   ├── footer.blade.php
│   │       │   ├── navbars
│   │       │   │   ├── navbar.blade.php
│   │       │   │   ├── navs
│   │       │   │   │   ├── auth.blade.php
│   │       │   │   │   └── guest.blade.php
│   │       │   │   └── sidebar.blade.php
│   │       │   └── welcome.blade.php
│   │       ├── pages
│   │       │   ├── icons.blade.php
│   │       │   ├── leaderboard.blade.php
│   │       │   ├── map.blade.php
│   │       │   ├── maps.blade.php
│   │       │   ├── new_user.blade.php
│   │       │   ├── notifications.blade.php
│   │       │   ├── rtl.blade.php
│   │       │   ├── table_list.blade.php
│   │       │   ├── tutorial.blade.php
│   │       │   ├── typography.blade.php
│   │       │   └── upgrade.blade.php
│   │       ├── partials
│   │       │   └── popup.blade.php
│   │       ├── player
│   │       │   └── index.blade.php
│   │       ├── profile
│   │       │   └── edit.blade.php
│   │       ├── skill.blade.php
│   │       └── users
│   │           ├── index.blade.php
│   │           └── players.blade.php
│   ├── routes
│   │   ├── api.php
│   │   ├── channels.php
│   │   ├── console.php
│   │   └── web.php
│   ├── server.php
│   ├── storage
│   │   ├── app
│   │   │   └── public
│   │   ├── framework
│   │   │   ├── cache
│   │   │   │   └── data
│   │   │   ├── sessions
│   │   │   ├── testing
│   │   │   └── views
│   │   └── logs
│   ├── tests
│   │   ├── CreatesApplication.php
│   │   ├── Feature
│   │   │   └── ExampleTest.php
│   │   ├── TestCase.php
│   │   └── Unit
│   │       └── ExampleTest.php
│   ├── vendor
│   │   ├── asm89
│   │   │   └── stack-cors
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── Asm89
│   │   │               └── Stack
│   │   │                   ├── Cors.php
│   │   │                   └── CorsService.php
│   │   ├── autoload.php
│   │   ├── bensampo
│   │   │   └── laravel-embed
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       ├── resources
│   │   │       │   └── views
│   │   │       │       ├── components
│   │   │       │       │   ├── responsive-wrapper.blade.php
│   │   │       │       │   └── styles.blade.php
│   │   │       │       └── services
│   │   │       │           ├── dailymotion.blade.php
│   │   │       │           ├── fallback.blade.php
│   │   │       │           ├── miro.blade.php
│   │   │       │           ├── slideshare.blade.php
│   │   │       │           ├── vimeo.blade.php
│   │   │       │           └── youtube.blade.php
│   │   │       └── src
│   │   │           ├── EmbedServiceProvider.php
│   │   │           ├── Exceptions
│   │   │           │   └── ServiceNotFoundException.php
│   │   │           ├── Rules
│   │   │           │   └── EmbeddableUrl.php
│   │   │           ├── ServiceBase.php
│   │   │           ├── ServiceContract.php
│   │   │           ├── ServiceFactory.php
│   │   │           ├── Services
│   │   │           │   ├── Dailymotion.php
│   │   │           │   ├── Fallback.php
│   │   │           │   ├── Miro.php
│   │   │           │   ├── Slideshare.php
│   │   │           │   ├── Vimeo.php
│   │   │           │   └── YouTube.php
│   │   │           ├── ValueObjects
│   │   │           │   ├── Ratio.php
│   │   │           │   └── Url.php
│   │   │           └── ViewComponents
│   │   │               ├── EmbedViewComponent.php
│   │   │               ├── ResponsiveWrapperViewComponent.php
│   │   │               └── StylesViewComponent.php
│   │   ├── bin
│   │   │   ├── carbon -> ../nesbot/carbon/bin/carbon
│   │   │   ├── commonmark -> ../league/commonmark/bin/commonmark
│   │   │   ├── php-parse -> #!/usr/bin/env sh\012\012dir=$(cd "${0%[/\\]*}" > /dev/null; cd "../nikic/php-parser/bin" && pwd)\012\012if [ -d /proc/cygdrive ]; then\012    case $(which php) in\012        $(readlink -n /proc/cygdrive)/*)\012            # We are in Cygwin using Windows php, so the path must be translated\012            dir=$(cygpath -m "$dir");\012            ;;\012    esac\012fi\012\012"${dir}/php-parse" "$@"\012
│   │   │   ├── php-parse.bat
│   │   │   ├── phpunit -> ../phpunit/phpunit/phpunit
│   │   │   ├── psysh -> ../psy/psysh/bin/psysh
│   │   │   └── var-dump-server -> ../symfony/var-dumper/Resources/bin/var-dump-server
│   │   ├── brick
│   │   │   └── math
│   │   │       ├── LICENSE
│   │   │       ├── SECURITY.md
│   │   │       ├── composer.json
│   │   │       ├── psalm-baseline.xml
│   │   │       ├── psalm.xml
│   │   │       ├── random-tests.php
│   │   │       └── src
│   │   │           ├── BigDecimal.php
│   │   │           ├── BigInteger.php
│   │   │           ├── BigNumber.php
│   │   │           ├── BigRational.php
│   │   │           ├── Exception
│   │   │           │   ├── DivisionByZeroException.php
│   │   │           │   ├── IntegerOverflowException.php
│   │   │           │   ├── MathException.php
│   │   │           │   ├── NegativeNumberException.php
│   │   │           │   ├── NumberFormatException.php
│   │   │           │   └── RoundingNecessaryException.php
│   │   │           ├── Internal
│   │   │           │   ├── Calculator
│   │   │           │   │   ├── BcMathCalculator.php
│   │   │           │   │   ├── GmpCalculator.php
│   │   │           │   │   └── NativeCalculator.php
│   │   │           │   └── Calculator.php
│   │   │           └── RoundingMode.php
│   │   ├── composer
│   │   │   ├── ClassLoader.php
│   │   │   ├── InstalledVersions.php
│   │   │   ├── LICENSE
│   │   │   ├── autoload_classmap.php
│   │   │   ├── autoload_files.php
│   │   │   ├── autoload_namespaces.php
│   │   │   ├── autoload_psr4.php
│   │   │   ├── autoload_real.php
│   │   │   ├── autoload_static.php
│   │   │   ├── installed.json
│   │   │   ├── installed.php
│   │   │   └── platform_check.php
│   │   ├── dnoegel
│   │   │   └── php-xdg-base-dir
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── Xdg.php
│   │   ├── doctrine
│   │   │   ├── inflector
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   ├── docs
│   │   │   │   │   └── en
│   │   │   │   │       └── index.rst
│   │   │   │   ├── lib
│   │   │   │   │   └── Doctrine
│   │   │   │   │       └── Inflector
│   │   │   │   │           ├── CachedWordInflector.php
│   │   │   │   │           ├── GenericLanguageInflectorFactory.php
│   │   │   │   │           ├── Inflector.php
│   │   │   │   │           ├── InflectorFactory.php
│   │   │   │   │           ├── Language.php
│   │   │   │   │           ├── LanguageInflectorFactory.php
│   │   │   │   │           ├── NoopWordInflector.php
│   │   │   │   │           ├── Rules
│   │   │   │   │           │   ├── English
│   │   │   │   │           │   │   ├── Inflectible.php
│   │   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │   │           │   │   ├── Rules.php
│   │   │   │   │           │   │   └── Uninflected.php
│   │   │   │   │           │   ├── French
│   │   │   │   │           │   │   ├── Inflectible.php
│   │   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │   │           │   │   ├── Rules.php
│   │   │   │   │           │   │   └── Uninflected.php
│   │   │   │   │           │   ├── NorwegianBokmal
│   │   │   │   │           │   │   ├── Inflectible.php
│   │   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │   │           │   │   ├── Rules.php
│   │   │   │   │           │   │   └── Uninflected.php
│   │   │   │   │           │   ├── Pattern.php
│   │   │   │   │           │   ├── Patterns.php
│   │   │   │   │           │   ├── Portuguese
│   │   │   │   │           │   │   ├── Inflectible.php
│   │   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │   │           │   │   ├── Rules.php
│   │   │   │   │           │   │   └── Uninflected.php
│   │   │   │   │           │   ├── Ruleset.php
│   │   │   │   │           │   ├── Spanish
│   │   │   │   │           │   │   ├── Inflectible.php
│   │   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │   │           │   │   ├── Rules.php
│   │   │   │   │           │   │   └── Uninflected.php
│   │   │   │   │           │   ├── Substitution.php
│   │   │   │   │           │   ├── Substitutions.php
│   │   │   │   │           │   ├── Transformation.php
│   │   │   │   │           │   ├── Transformations.php
│   │   │   │   │           │   ├── Turkish
│   │   │   │   │           │   │   ├── Inflectible.php
│   │   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │   │           │   │   ├── Rules.php
│   │   │   │   │           │   │   └── Uninflected.php
│   │   │   │   │           │   └── Word.php
│   │   │   │   │           ├── RulesetInflector.php
│   │   │   │   │           └── WordInflector.php
│   │   │   │   └── phpstan.neon.dist
│   │   │   ├── instantiator
│   │   │   │   ├── CONTRIBUTING 2.md
│   │   │   │   ├── CONTRIBUTING.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── composer 2.json
│   │   │   │   ├── composer.json
│   │   │   │   ├── docs
│   │   │   │   │   └── en
│   │   │   │   │       ├── index 2.rst
│   │   │   │   │       ├── index.rst
│   │   │   │   │       ├── sidebar 2.rst
│   │   │   │   │       └── sidebar.rst
│   │   │   │   ├── phpbench 2.json
│   │   │   │   ├── phpbench.json
│   │   │   │   ├── phpcs.xml 2.dist
│   │   │   │   ├── phpcs.xml.dist
│   │   │   │   ├── phpstan.neon 2.dist
│   │   │   │   ├── phpstan.neon.dist
│   │   │   │   └── src
│   │   │   │       └── Doctrine
│   │   │   │           └── Instantiator
│   │   │   │               ├── Exception
│   │   │   │               │   ├── ExceptionInterface 2.php
│   │   │   │               │   ├── ExceptionInterface.php
│   │   │   │               │   ├── InvalidArgumentException 2.php
│   │   │   │               │   ├── InvalidArgumentException.php
│   │   │   │               │   ├── UnexpectedValueException 2.php
│   │   │   │               │   └── UnexpectedValueException.php
│   │   │   │               ├── Instantiator 2.php
│   │   │   │               ├── Instantiator.php
│   │   │   │               ├── InstantiatorInterface 2.php
│   │   │   │               └── InstantiatorInterface.php
│   │   │   └── lexer
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── lib
│   │   │           └── Doctrine
│   │   │               └── Common
│   │   │                   └── Lexer
│   │   │                       └── AbstractLexer.php
│   │   ├── dragonmantank
│   │   │   └── cron-expression
│   │   │       ├── CHANGELOG 2.md
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       ├── src
│   │   │       │   └── Cron
│   │   │       │       ├── AbstractField 2.php
│   │   │       │       ├── AbstractField.php
│   │   │       │       ├── CronExpression 2.php
│   │   │       │       ├── CronExpression.php
│   │   │       │       ├── DayOfMonthField 2.php
│   │   │       │       ├── DayOfMonthField.php
│   │   │       │       ├── DayOfWeekField 2.php
│   │   │       │       ├── DayOfWeekField.php
│   │   │       │       ├── FieldFactory 2.php
│   │   │       │       ├── FieldFactory.php
│   │   │       │       ├── FieldInterface 2.php
│   │   │       │       ├── FieldInterface.php
│   │   │       │       ├── HoursField 2.php
│   │   │       │       ├── HoursField.php
│   │   │       │       ├── MinutesField 2.php
│   │   │       │       ├── MinutesField.php
│   │   │       │       ├── MonthField 2.php
│   │   │       │       └── MonthField.php
│   │   │       └── tests
│   │   │           └── Cron
│   │   │               ├── AbstractFieldTest 2.php
│   │   │               ├── AbstractFieldTest.php
│   │   │               ├── CronExpressionTest 2.php
│   │   │               ├── CronExpressionTest.php
│   │   │               ├── DayOfMonthFieldTest 2.php
│   │   │               ├── DayOfMonthFieldTest.php
│   │   │               ├── DayOfWeekFieldTest 2.php
│   │   │               ├── DayOfWeekFieldTest.php
│   │   │               ├── FieldFactoryTest 2.php
│   │   │               ├── FieldFactoryTest.php
│   │   │               ├── HoursFieldTest 2.php
│   │   │               ├── HoursFieldTest.php
│   │   │               ├── MinutesFieldTest 2.php
│   │   │               ├── MinutesFieldTest.php
│   │   │               ├── MonthFieldTest 2.php
│   │   │               └── MonthFieldTest.php
│   │   ├── egulias
│   │   │   └── email-validator
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── EmailLexer 3.php
│   │   │           ├── EmailLexer.php
│   │   │           ├── EmailParser 3.php
│   │   │           ├── EmailParser.php
│   │   │           ├── EmailValidator 3.php
│   │   │           ├── EmailValidator.php
│   │   │           ├── Exception
│   │   │           │   ├── AtextAfterCFWS 3.php
│   │   │           │   ├── AtextAfterCFWS.php
│   │   │           │   ├── CRLFAtTheEnd 3.php
│   │   │           │   ├── CRLFAtTheEnd.php
│   │   │           │   ├── CRLFX2 2.php
│   │   │           │   ├── CRLFX2.php
│   │   │           │   ├── CRNoLF 3.php
│   │   │           │   ├── CRNoLF.php
│   │   │           │   ├── CharNotAllowed 3.php
│   │   │           │   ├── CharNotAllowed.php
│   │   │           │   ├── CommaInDomain 3.php
│   │   │           │   ├── CommaInDomain.php
│   │   │           │   ├── ConsecutiveAt 3.php
│   │   │           │   ├── ConsecutiveAt.php
│   │   │           │   ├── ConsecutiveDot 3.php
│   │   │           │   ├── ConsecutiveDot.php
│   │   │           │   ├── DomainAcceptsNoMail 2.php
│   │   │           │   ├── DomainAcceptsNoMail.php
│   │   │           │   ├── DomainHyphened 3.php
│   │   │           │   ├── DomainHyphened.php
│   │   │           │   ├── DotAtEnd 2.php
│   │   │           │   ├── DotAtEnd.php
│   │   │           │   ├── DotAtStart 3.php
│   │   │           │   ├── DotAtStart.php
│   │   │           │   ├── ExpectingAT 3.php
│   │   │           │   ├── ExpectingAT.php
│   │   │           │   ├── ExpectingATEXT 3.php
│   │   │           │   ├── ExpectingATEXT.php
│   │   │           │   ├── ExpectingCTEXT 3.php
│   │   │           │   ├── ExpectingCTEXT.php
│   │   │           │   ├── ExpectingDTEXT 3.php
│   │   │           │   ├── ExpectingDTEXT.php
│   │   │           │   ├── ExpectingDomainLiteralClose 3.php
│   │   │           │   ├── ExpectingDomainLiteralClose.php
│   │   │           │   ├── ExpectingQPair 3.php
│   │   │           │   ├── ExpectingQPair.php
│   │   │           │   ├── InvalidEmail 2.php
│   │   │           │   ├── InvalidEmail.php
│   │   │           │   ├── LocalOrReservedDomain 2.php
│   │   │           │   ├── LocalOrReservedDomain.php
│   │   │           │   ├── NoDNSRecord 3.php
│   │   │           │   ├── NoDNSRecord.php
│   │   │           │   ├── NoDomainPart 3.php
│   │   │           │   ├── NoDomainPart.php
│   │   │           │   ├── NoLocalPart 3.php
│   │   │           │   ├── NoLocalPart.php
│   │   │           │   ├── UnclosedComment 3.php
│   │   │           │   ├── UnclosedComment.php
│   │   │           │   ├── UnclosedQuotedString 3.php
│   │   │           │   ├── UnclosedQuotedString.php
│   │   │           │   ├── UnopenedComment 4.php
│   │   │           │   └── UnopenedComment.php
│   │   │           ├── Parser
│   │   │           │   ├── DomainPart 3.php
│   │   │           │   ├── DomainPart.php
│   │   │           │   ├── LocalPart 3.php
│   │   │           │   ├── LocalPart.php
│   │   │           │   ├── Parser 3.php
│   │   │           │   └── Parser.php
│   │   │           ├── Validation
│   │   │           │   ├── DNSCheckValidation 2.php
│   │   │           │   ├── DNSCheckValidation.php
│   │   │           │   ├── EmailValidation 3.php
│   │   │           │   ├── EmailValidation.php
│   │   │           │   ├── Error
│   │   │           │   │   ├── RFCWarnings 3.php
│   │   │           │   │   ├── RFCWarnings.php
│   │   │           │   │   ├── SpoofEmail 3.php
│   │   │           │   │   └── SpoofEmail.php
│   │   │           │   ├── Exception
│   │   │           │   │   ├── EmptyValidationList 3.php
│   │   │           │   │   └── EmptyValidationList.php
│   │   │           │   ├── MultipleErrors 3.php
│   │   │           │   ├── MultipleErrors.php
│   │   │           │   ├── MultipleValidationWithAnd 3.php
│   │   │           │   ├── MultipleValidationWithAnd.php
│   │   │           │   ├── NoRFCWarningsValidation 3.php
│   │   │           │   ├── NoRFCWarningsValidation.php
│   │   │           │   ├── RFCValidation 3.php
│   │   │           │   ├── RFCValidation.php
│   │   │           │   ├── SpoofCheckValidation 3.php
│   │   │           │   └── SpoofCheckValidation.php
│   │   │           └── Warning
│   │   │               ├── AddressLiteral 3.php
│   │   │               ├── AddressLiteral.php
│   │   │               ├── CFWSNearAt 3.php
│   │   │               ├── CFWSNearAt.php
│   │   │               ├── CFWSWithFWS 3.php
│   │   │               ├── CFWSWithFWS.php
│   │   │               ├── Comment 3.php
│   │   │               ├── Comment.php
│   │   │               ├── DeprecatedComment 3.php
│   │   │               ├── DeprecatedComment.php
│   │   │               ├── DomainLiteral 2.php
│   │   │               ├── DomainLiteral.php
│   │   │               ├── DomainTooLong 3.php
│   │   │               ├── DomainTooLong.php
│   │   │               ├── EmailTooLong 3.php
│   │   │               ├── EmailTooLong.php
│   │   │               ├── IPV6BadChar 3.php
│   │   │               ├── IPV6BadChar.php
│   │   │               ├── IPV6ColonEnd 3.php
│   │   │               ├── IPV6ColonEnd.php
│   │   │               ├── IPV6ColonStart 3.php
│   │   │               ├── IPV6ColonStart.php
│   │   │               ├── IPV6Deprecated 3.php
│   │   │               ├── IPV6Deprecated.php
│   │   │               ├── IPV6DoubleColon 3.php
│   │   │               ├── IPV6DoubleColon.php
│   │   │               ├── IPV6GroupCount 2.php
│   │   │               ├── IPV6GroupCount.php
│   │   │               ├── IPV6MaxGroups 3.php
│   │   │               ├── IPV6MaxGroups.php
│   │   │               ├── LabelTooLong 3.php
│   │   │               ├── LabelTooLong.php
│   │   │               ├── LocalTooLong 3.php
│   │   │               ├── LocalTooLong.php
│   │   │               ├── NoDNSMXRecord 3.php
│   │   │               ├── NoDNSMXRecord.php
│   │   │               ├── ObsoleteDTEXT 3.php
│   │   │               ├── ObsoleteDTEXT.php
│   │   │               ├── QuotedPart 3.php
│   │   │               ├── QuotedPart.php
│   │   │               ├── QuotedString 3.php
│   │   │               ├── QuotedString.php
│   │   │               ├── TLD 3.php
│   │   │               ├── TLD.php
│   │   │               ├── Warning 3.php
│   │   │               └── Warning.php
│   │   ├── facade
│   │   │   ├── flare-client-php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE 2.md
│   │   │   │   ├── LICENSE.md
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── composer 2.json
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── Api 2.php
│   │   │   │       ├── Api.php
│   │   │   │       ├── Concerns
│   │   │   │       │   ├── HasContext 2.php
│   │   │   │       │   ├── HasContext.php
│   │   │   │       │   ├── UsesTime 2.php
│   │   │   │       │   └── UsesTime.php
│   │   │   │       ├── Context
│   │   │   │       │   ├── ConsoleContext 2.php
│   │   │   │       │   ├── ConsoleContext.php
│   │   │   │       │   ├── ContextContextDetector 2.php
│   │   │   │       │   ├── ContextContextDetector.php
│   │   │   │       │   ├── ContextDetectorInterface 2.php
│   │   │   │       │   ├── ContextDetectorInterface.php
│   │   │   │       │   ├── ContextInterface 2.php
│   │   │   │       │   ├── ContextInterface.php
│   │   │   │       │   ├── RequestContext 2.php
│   │   │   │       │   └── RequestContext.php
│   │   │   │       ├── Contracts
│   │   │   │       │   ├── ProvidesFlareContext 2.php
│   │   │   │       │   └── ProvidesFlareContext.php
│   │   │   │       ├── Enums
│   │   │   │       │   ├── GroupingTypes 2.php
│   │   │   │       │   ├── GroupingTypes.php
│   │   │   │       │   ├── MessageLevels 2.php
│   │   │   │       │   └── MessageLevels.php
│   │   │   │       ├── Flare 2.php
│   │   │   │       ├── Flare.php
│   │   │   │       ├── Frame 2.php
│   │   │   │       ├── Frame.php
│   │   │   │       ├── Glows
│   │   │   │       │   ├── Glow 2.php
│   │   │   │       │   ├── Glow.php
│   │   │   │       │   ├── Recorder 2.php
│   │   │   │       │   └── Recorder.php
│   │   │   │       ├── Http
│   │   │   │       │   ├── Client 2.php
│   │   │   │       │   ├── Client.php
│   │   │   │       │   ├── Exceptions
│   │   │   │       │   │   ├── BadResponse 2.php
│   │   │   │       │   │   ├── BadResponse.php
│   │   │   │       │   │   ├── BadResponseCode 2.php
│   │   │   │       │   │   ├── BadResponseCode.php
│   │   │   │       │   │   ├── InvalidData 2.php
│   │   │   │       │   │   ├── InvalidData.php
│   │   │   │       │   │   ├── MissingParameter 2.php
│   │   │   │       │   │   ├── MissingParameter.php
│   │   │   │       │   │   ├── NotFound 2.php
│   │   │   │       │   │   └── NotFound.php
│   │   │   │       │   ├── Response 2.php
│   │   │   │       │   └── Response.php
│   │   │   │       ├── Middleware
│   │   │   │       │   ├── AddGlows 2.php
│   │   │   │       │   ├── AddGlows.php
│   │   │   │       │   ├── AnonymizeIp 2.php
│   │   │   │       │   └── AnonymizeIp.php
│   │   │   │       ├── Report 2.php
│   │   │   │       ├── Report.php
│   │   │   │       ├── Solutions
│   │   │   │       │   ├── ReportSolution 2.php
│   │   │   │       │   └── ReportSolution.php
│   │   │   │       ├── Stacktrace
│   │   │   │       │   ├── Codesnippet 2.php
│   │   │   │       │   ├── Codesnippet.php
│   │   │   │       │   ├── File 2.php
│   │   │   │       │   ├── File.php
│   │   │   │       │   ├── Frame 2.php
│   │   │   │       │   ├── Frame.php
│   │   │   │       │   ├── Stacktrace 2.php
│   │   │   │       │   └── Stacktrace.php
│   │   │   │       ├── Time
│   │   │   │       │   ├── SystemTime 3.php
│   │   │   │       │   ├── SystemTime.php
│   │   │   │       │   ├── Time 2.php
│   │   │   │       │   └── Time.php
│   │   │   │       ├── Truncation
│   │   │   │       │   ├── AbstractTruncationStrategy 2.php
│   │   │   │       │   ├── AbstractTruncationStrategy.php
│   │   │   │       │   ├── ReportTrimmer 2.php
│   │   │   │       │   ├── ReportTrimmer.php
│   │   │   │       │   ├── TrimContextItemsStrategy 2.php
│   │   │   │       │   ├── TrimContextItemsStrategy.php
│   │   │   │       │   ├── TrimStringsStrategy 2.php
│   │   │   │       │   ├── TrimStringsStrategy.php
│   │   │   │       │   ├── TruncationStrategy 2.php
│   │   │   │       │   └── TruncationStrategy.php
│   │   │   │       ├── View 2.php
│   │   │   │       ├── View.php
│   │   │   │       ├── helpers 2.php
│   │   │   │       └── helpers.php
│   │   │   ├── ignition
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE 2.md
│   │   │   │   ├── LICENSE.md
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── composer 2.json
│   │   │   │   ├── composer.json
│   │   │   │   ├── config
│   │   │   │   │   ├── flare 2.php
│   │   │   │   │   ├── flare.php
│   │   │   │   │   ├── ignition 2.php
│   │   │   │   │   └── ignition.php
│   │   │   │   ├── package 2.json
│   │   │   │   ├── package.json
│   │   │   │   ├── psalm 2.xml
│   │   │   │   ├── psalm-baseline.xml
│   │   │   │   ├── psalm.xml
│   │   │   │   ├── resources
│   │   │   │   │   ├── compiled
│   │   │   │   │   │   ├── ignition.js
│   │   │   │   │   │   └── index.html
│   │   │   │   │   └── views
│   │   │   │   │       ├── errorPage 2.php
│   │   │   │   │       └── errorPage.php
│   │   │   │   └── src
│   │   │   │       ├── Actions
│   │   │   │       │   ├── ShareReportAction 2.php
│   │   │   │       │   └── ShareReportAction.php
│   │   │   │       ├── Commands
│   │   │   │       │   ├── SolutionMakeCommand 2.php
│   │   │   │       │   ├── SolutionMakeCommand.php
│   │   │   │       │   ├── SolutionProviderMakeCommand 2.php
│   │   │   │       │   ├── SolutionProviderMakeCommand.php
│   │   │   │       │   ├── TestCommand 2.php
│   │   │   │       │   ├── TestCommand.php
│   │   │   │       │   └── stubs
│   │   │   │       │       ├── runnable-solution 2.stub
│   │   │   │       │       ├── runnable-solution.stub
│   │   │   │       │       ├── solution 2.stub
│   │   │   │       │       ├── solution-provider 2.stub
│   │   │   │       │       ├── solution-provider.stub
│   │   │   │       │       └── solution.stub
│   │   │   │       ├── Context
│   │   │   │       │   ├── LaravelConsoleContext 3.php
│   │   │   │       │   ├── LaravelConsoleContext.php
│   │   │   │       │   ├── LaravelContextDetector 2.php
│   │   │   │       │   ├── LaravelContextDetector.php
│   │   │   │       │   ├── LaravelRequestContext 2.php
│   │   │   │       │   └── LaravelRequestContext.php
│   │   │   │       ├── DumpRecorder
│   │   │   │       │   ├── Dump 2.php
│   │   │   │       │   ├── Dump.php
│   │   │   │       │   ├── DumpHandler 2.php
│   │   │   │       │   ├── DumpHandler.php
│   │   │   │       │   ├── DumpRecorder 2.php
│   │   │   │       │   ├── DumpRecorder.php
│   │   │   │       │   ├── HtmlDumper 2.php
│   │   │   │       │   ├── HtmlDumper.php
│   │   │   │       │   ├── MultiDumpHandler 2.php
│   │   │   │       │   └── MultiDumpHandler.php
│   │   │   │       ├── ErrorPage
│   │   │   │       │   ├── ErrorPageHandler 2.php
│   │   │   │       │   ├── ErrorPageHandler.php
│   │   │   │       │   ├── ErrorPageViewModel 2.php
│   │   │   │       │   ├── ErrorPageViewModel.php
│   │   │   │       │   ├── IgnitionWhoopsHandler 2.php
│   │   │   │       │   ├── IgnitionWhoopsHandler.php
│   │   │   │       │   ├── Renderer 2.php
│   │   │   │       │   └── Renderer.php
│   │   │   │       ├── Exceptions
│   │   │   │       │   ├── InvalidConfig 2.php
│   │   │   │       │   ├── InvalidConfig.php
│   │   │   │       │   ├── UnableToShareErrorException 2.php
│   │   │   │       │   ├── UnableToShareErrorException.php
│   │   │   │       │   ├── ViewException 2.php
│   │   │   │       │   ├── ViewException.php
│   │   │   │       │   ├── ViewExceptionWithSolution 2.php
│   │   │   │       │   └── ViewExceptionWithSolution.php
│   │   │   │       ├── Facades
│   │   │   │       │   ├── Flare 2.php
│   │   │   │       │   └── Flare.php
│   │   │   │       ├── Http
│   │   │   │       │   ├── Controllers
│   │   │   │       │   │   ├── ExecuteSolutionController 2.php
│   │   │   │       │   │   ├── ExecuteSolutionController.php
│   │   │   │       │   │   ├── HealthCheckController 2.php
│   │   │   │       │   │   ├── HealthCheckController.php
│   │   │   │       │   │   ├── ScriptController 2.php
│   │   │   │       │   │   ├── ScriptController.php
│   │   │   │       │   │   ├── ShareReportController 2.php
│   │   │   │       │   │   ├── ShareReportController.php
│   │   │   │       │   │   ├── StyleController 2.php
│   │   │   │       │   │   └── StyleController.php
│   │   │   │       │   ├── Middleware
│   │   │   │       │   │   ├── IgnitionConfigValueEnabled 2.php
│   │   │   │       │   │   ├── IgnitionConfigValueEnabled.php
│   │   │   │       │   │   ├── IgnitionEnabled 2.php
│   │   │   │       │   │   └── IgnitionEnabled.php
│   │   │   │       │   └── Requests
│   │   │   │       │       ├── ExecuteSolutionRequest 2.php
│   │   │   │       │       ├── ExecuteSolutionRequest.php
│   │   │   │       │       ├── ShareReportRequest 2.php
│   │   │   │       │       └── ShareReportRequest.php
│   │   │   │       ├── Ignition 2.php
│   │   │   │       ├── Ignition.php
│   │   │   │       ├── IgnitionConfig 2.php
│   │   │   │       ├── IgnitionConfig.php
│   │   │   │       ├── IgnitionServiceProvider 2.php
│   │   │   │       ├── IgnitionServiceProvider.php
│   │   │   │       ├── LogRecorder
│   │   │   │       │   ├── LogMessage 2.php
│   │   │   │       │   ├── LogMessage.php
│   │   │   │       │   ├── LogRecorder 2.php
│   │   │   │       │   └── LogRecorder.php
│   │   │   │       ├── Logger
│   │   │   │       │   ├── FlareHandler 2.php
│   │   │   │       │   └── FlareHandler.php
│   │   │   │       ├── Middleware
│   │   │   │       │   ├── AddDumps 2.php
│   │   │   │       │   ├── AddDumps.php
│   │   │   │       │   ├── AddEnvironmentInformation 2.php
│   │   │   │       │   ├── AddEnvironmentInformation.php
│   │   │   │       │   ├── AddGitInformation 2.php
│   │   │   │       │   ├── AddGitInformation.php
│   │   │   │       │   ├── AddLogs 2.php
│   │   │   │       │   ├── AddLogs.php
│   │   │   │       │   ├── AddQueries 2.php
│   │   │   │       │   ├── AddQueries.php
│   │   │   │       │   ├── AddSolutions 2.php
│   │   │   │       │   ├── AddSolutions.php
│   │   │   │       │   ├── CustomizeGrouping 2.php
│   │   │   │       │   ├── CustomizeGrouping.php
│   │   │   │       │   ├── SetNotifierName 2.php
│   │   │   │       │   └── SetNotifierName.php
│   │   │   │       ├── QueryRecorder
│   │   │   │       │   ├── Query 2.php
│   │   │   │       │   ├── Query.php
│   │   │   │       │   ├── QueryRecorder 2.php
│   │   │   │       │   └── QueryRecorder.php
│   │   │   │       ├── SolutionProviders
│   │   │   │       │   ├── BadMethodCallSolutionProvider 2.php
│   │   │   │       │   ├── BadMethodCallSolutionProvider.php
│   │   │   │       │   ├── DefaultDbNameSolutionProvider 2.php
│   │   │   │       │   ├── DefaultDbNameSolutionProvider.php
│   │   │   │       │   ├── IncorrectValetDbCredentialsSolutionProvider 2.php
│   │   │   │       │   ├── IncorrectValetDbCredentialsSolutionProvider.php
│   │   │   │       │   ├── InvalidRouteActionSolutionProvider 2.php
│   │   │   │       │   ├── InvalidRouteActionSolutionProvider.php
│   │   │   │       │   ├── MergeConflictSolutionProvider 2.php
│   │   │   │       │   ├── MergeConflictSolutionProvider.php
│   │   │   │       │   ├── MissingAppKeySolutionProvider 2.php
│   │   │   │       │   ├── MissingAppKeySolutionProvider.php
│   │   │   │       │   ├── MissingColumnSolutionProvider 2.php
│   │   │   │       │   ├── MissingColumnSolutionProvider.php
│   │   │   │       │   ├── MissingImportSolutionProvider 2.php
│   │   │   │       │   ├── MissingImportSolutionProvider.php
│   │   │   │       │   ├── MissingLivewireComponentSolutionProvider.php
│   │   │   │       │   ├── MissingMixManifestSolutionProvider 2.php
│   │   │   │       │   ├── MissingMixManifestSolutionProvider.php
│   │   │   │       │   ├── MissingPackageSolutionProvider 2.php
│   │   │   │       │   ├── MissingPackageSolutionProvider.php
│   │   │   │       │   ├── RouteNotDefinedSolutionProvider 2.php
│   │   │   │       │   ├── RouteNotDefinedSolutionProvider.php
│   │   │   │       │   ├── RunningLaravelDuskInProductionProvider 2.php
│   │   │   │       │   ├── RunningLaravelDuskInProductionProvider.php
│   │   │   │       │   ├── SolutionProviderRepository 2.php
│   │   │   │       │   ├── SolutionProviderRepository.php
│   │   │   │       │   ├── TableNotFoundSolutionProvider 2.php
│   │   │   │       │   ├── TableNotFoundSolutionProvider.php
│   │   │   │       │   ├── UndefinedPropertySolutionProvider 2.php
│   │   │   │       │   ├── UndefinedPropertySolutionProvider.php
│   │   │   │       │   ├── UndefinedVariableSolutionProvider 2.php
│   │   │   │       │   ├── UndefinedVariableSolutionProvider.php
│   │   │   │       │   ├── UnknownValidationSolutionProvider 2.php
│   │   │   │       │   ├── UnknownValidationSolutionProvider.php
│   │   │   │       │   ├── ViewNotFoundSolutionProvider 2.php
│   │   │   │       │   └── ViewNotFoundSolutionProvider.php
│   │   │   │       ├── Solutions
│   │   │   │       │   ├── GenerateAppKeySolution 2.php
│   │   │   │       │   ├── GenerateAppKeySolution.php
│   │   │   │       │   ├── LivewireDiscoverSolution.php
│   │   │   │       │   ├── MakeViewVariableOptionalSolution 2.php
│   │   │   │       │   ├── MakeViewVariableOptionalSolution.php
│   │   │   │       │   ├── MissingPackageSolution 2.php
│   │   │   │       │   ├── MissingPackageSolution.php
│   │   │   │       │   ├── RunMigrationsSolution 2.php
│   │   │   │       │   ├── RunMigrationsSolution.php
│   │   │   │       │   ├── SolutionTransformer 2.php
│   │   │   │       │   ├── SolutionTransformer.php
│   │   │   │       │   ├── SuggestCorrectVariableNameSolution 2.php
│   │   │   │       │   ├── SuggestCorrectVariableNameSolution.php
│   │   │   │       │   ├── SuggestImportSolution 2.php
│   │   │   │       │   ├── SuggestImportSolution.php
│   │   │   │       │   ├── SuggestUsingCorrectDbNameSolution 2.php
│   │   │   │       │   ├── SuggestUsingCorrectDbNameSolution.php
│   │   │   │       │   ├── UseDefaultValetDbCredentialsSolution 2.php
│   │   │   │       │   └── UseDefaultValetDbCredentialsSolution.php
│   │   │   │       ├── Support
│   │   │   │       │   ├── ComposerClassMap 2.php
│   │   │   │       │   ├── ComposerClassMap.php
│   │   │   │       │   ├── FakeComposer 2.php
│   │   │   │       │   ├── FakeComposer.php
│   │   │   │       │   ├── Packagist
│   │   │   │       │   │   ├── Package 2.php
│   │   │   │       │   │   ├── Package.php
│   │   │   │       │   │   ├── Packagist 2.php
│   │   │   │       │   │   └── Packagist.php
│   │   │   │       │   ├── StringComparator 2.php
│   │   │   │       │   └── StringComparator.php
│   │   │   │       ├── Tabs
│   │   │   │       │   ├── Tab 2.php
│   │   │   │       │   └── Tab.php
│   │   │   │       ├── Views
│   │   │   │       │   ├── Compilers
│   │   │   │       │   │   ├── BladeSourceMapCompiler 2.php
│   │   │   │       │   │   └── BladeSourceMapCompiler.php
│   │   │   │       │   ├── Concerns
│   │   │   │       │   │   ├── CollectsViewExceptions 2.php
│   │   │   │       │   │   └── CollectsViewExceptions.php
│   │   │   │       │   └── Engines
│   │   │   │       │       ├── CompilerEngine 2.php
│   │   │   │       │       ├── CompilerEngine.php
│   │   │   │       │       ├── PhpEngine 2.php
│   │   │   │       │       └── PhpEngine.php
│   │   │   │       ├── helpers 2.php
│   │   │   │       └── helpers.php
│   │   │   └── ignition-contracts
│   │   │       ├── LICENSE 2.md
│   │   │       ├── LICENSE.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       ├── psalm 2.xml
│   │   │       ├── psalm.xml
│   │   │       └── src
│   │   │           ├── BaseSolution 2.php
│   │   │           ├── BaseSolution.php
│   │   │           ├── HasSolutionsForThrowable 2.php
│   │   │           ├── HasSolutionsForThrowable.php
│   │   │           ├── ProvidesSolution 3.php
│   │   │           ├── ProvidesSolution.php
│   │   │           ├── RunnableSolution 2.php
│   │   │           ├── RunnableSolution.php
│   │   │           ├── Solution 3.php
│   │   │           ├── Solution.php
│   │   │           ├── SolutionProviderRepository 2.php
│   │   │           └── SolutionProviderRepository.php
│   │   ├── fideloper
│   │   │   └── proxy
│   │   │       ├── LICENSE 2.md
│   │   │       ├── LICENSE.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       ├── config
│   │   │       │   ├── trustedproxy 2.php
│   │   │       │   └── trustedproxy.php
│   │   │       └── src
│   │   │           ├── TrustProxies 2.php
│   │   │           ├── TrustProxies.php
│   │   │           ├── TrustedProxyServiceProvider 2.php
│   │   │           └── TrustedProxyServiceProvider.php
│   │   ├── filp
│   │   │   └── whoops
│   │   │       ├── CHANGELOG 2.md
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE 2.md
│   │   │       ├── LICENSE.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── Whoops
│   │   │               ├── Exception
│   │   │               │   ├── ErrorException 2.php
│   │   │               │   ├── ErrorException.php
│   │   │               │   ├── Formatter 2.php
│   │   │               │   ├── Formatter.php
│   │   │               │   ├── Frame 2.php
│   │   │               │   ├── Frame.php
│   │   │               │   ├── FrameCollection 2.php
│   │   │               │   ├── FrameCollection.php
│   │   │               │   ├── Inspector 2.php
│   │   │               │   └── Inspector.php
│   │   │               ├── Handler
│   │   │               │   ├── CallbackHandler 2.php
│   │   │               │   ├── CallbackHandler.php
│   │   │               │   ├── Handler 2.php
│   │   │               │   ├── Handler.php
│   │   │               │   ├── HandlerInterface 2.php
│   │   │               │   ├── HandlerInterface.php
│   │   │               │   ├── JsonResponseHandler 2.php
│   │   │               │   ├── JsonResponseHandler.php
│   │   │               │   ├── PlainTextHandler 2.php
│   │   │               │   ├── PlainTextHandler.php
│   │   │               │   ├── PrettyPageHandler 2.php
│   │   │               │   ├── PrettyPageHandler.php
│   │   │               │   ├── XmlResponseHandler 2.php
│   │   │               │   └── XmlResponseHandler.php
│   │   │               ├── Resources
│   │   │               │   ├── css
│   │   │               │   │   ├── whoops.base 2.css
│   │   │               │   │   └── whoops.base.css
│   │   │               │   ├── js
│   │   │               │   │   ├── clipboard.min 2.js
│   │   │               │   │   ├── clipboard.min.js
│   │   │               │   │   ├── prettify.min 2.js
│   │   │               │   │   ├── prettify.min.js
│   │   │               │   │   ├── whoops.base 2.js
│   │   │               │   │   ├── whoops.base.js
│   │   │               │   │   ├── zepto.min 2.js
│   │   │               │   │   └── zepto.min.js
│   │   │               │   └── views
│   │   │               │       ├── env_details.html 2.php
│   │   │               │       ├── env_details.html.php
│   │   │               │       ├── frame_code.html 2.php
│   │   │               │       ├── frame_code.html.php
│   │   │               │       ├── frame_list.html 2.php
│   │   │               │       ├── frame_list.html.php
│   │   │               │       ├── frames_container.html 2.php
│   │   │               │       ├── frames_container.html.php
│   │   │               │       ├── frames_description.html 2.php
│   │   │               │       ├── frames_description.html.php
│   │   │               │       ├── header.html 2.php
│   │   │               │       ├── header.html.php
│   │   │               │       ├── header_outer.html 2.php
│   │   │               │       ├── header_outer.html.php
│   │   │               │       ├── layout.html 2.php
│   │   │               │       ├── layout.html.php
│   │   │               │       ├── panel_details.html 2.php
│   │   │               │       ├── panel_details.html.php
│   │   │               │       ├── panel_details_outer.html 2.php
│   │   │               │       ├── panel_details_outer.html.php
│   │   │               │       ├── panel_left.html 2.php
│   │   │               │       ├── panel_left.html.php
│   │   │               │       ├── panel_left_outer.html 2.php
│   │   │               │       └── panel_left_outer.html.php
│   │   │               ├── Run 2.php
│   │   │               ├── Run.php
│   │   │               ├── RunInterface 2.php
│   │   │               ├── RunInterface.php
│   │   │               └── Util
│   │   │                   ├── HtmlDumperOutput 2.php
│   │   │                   ├── HtmlDumperOutput.php
│   │   │                   ├── Misc 2.php
│   │   │                   ├── Misc.php
│   │   │                   ├── SystemFacade 2.php
│   │   │                   ├── SystemFacade.php
│   │   │                   ├── TemplateHelper 2.php
│   │   │                   └── TemplateHelper.php
│   │   ├── fruitcake
│   │   │   └── laravel-cors
│   │   │       ├── LICENSE
│   │   │       ├── changelog.md
│   │   │       ├── composer.json
│   │   │       ├── config
│   │   │       │   └── cors.php
│   │   │       ├── readme.md
│   │   │       └── src
│   │   │           ├── CorsServiceProvider.php
│   │   │           └── HandleCors.php
│   │   ├── fzaninotto
│   │   │   └── faker
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── composer.json
│   │   │       ├── readme.md
│   │   │       └── src
│   │   │           ├── Faker
│   │   │           │   ├── Calculator
│   │   │           │   │   ├── Ean.php
│   │   │           │   │   ├── Iban.php
│   │   │           │   │   ├── Inn.php
│   │   │           │   │   ├── Luhn.php
│   │   │           │   │   └── TCNo.php
│   │   │           │   ├── DefaultGenerator.php
│   │   │           │   ├── Documentor.php
│   │   │           │   ├── Factory.php
│   │   │           │   ├── Generator.php
│   │   │           │   ├── Guesser
│   │   │           │   │   └── Name.php
│   │   │           │   ├── ORM
│   │   │           │   │   ├── CakePHP
│   │   │           │   │   │   ├── ColumnTypeGuesser.php
│   │   │           │   │   │   ├── EntityPopulator.php
│   │   │           │   │   │   └── Populator.php
│   │   │           │   │   ├── Doctrine
│   │   │           │   │   │   ├── ColumnTypeGuesser.php
│   │   │           │   │   │   ├── EntityPopulator.php
│   │   │           │   │   │   └── Populator.php
│   │   │           │   │   ├── Mandango
│   │   │           │   │   │   ├── ColumnTypeGuesser.php
│   │   │           │   │   │   ├── EntityPopulator.php
│   │   │           │   │   │   └── Populator.php
│   │   │           │   │   ├── Propel
│   │   │           │   │   │   ├── ColumnTypeGuesser.php
│   │   │           │   │   │   ├── EntityPopulator.php
│   │   │           │   │   │   └── Populator.php
│   │   │           │   │   ├── Propel2
│   │   │           │   │   │   ├── ColumnTypeGuesser.php
│   │   │           │   │   │   ├── EntityPopulator.php
│   │   │           │   │   │   └── Populator.php
│   │   │           │   │   └── Spot
│   │   │           │   │       ├── ColumnTypeGuesser.php
│   │   │           │   │       ├── EntityPopulator.php
│   │   │           │   │       └── Populator.php
│   │   │           │   ├── Provider
│   │   │           │   │   ├── Address.php
│   │   │           │   │   ├── Barcode.php
│   │   │           │   │   ├── Base.php
│   │   │           │   │   ├── Biased.php
│   │   │           │   │   ├── Color.php
│   │   │           │   │   ├── Company.php
│   │   │           │   │   ├── DateTime.php
│   │   │           │   │   ├── File.php
│   │   │           │   │   ├── HtmlLorem.php
│   │   │           │   │   ├── Image.php
│   │   │           │   │   ├── Internet.php
│   │   │           │   │   ├── Lorem.php
│   │   │           │   │   ├── Miscellaneous.php
│   │   │           │   │   ├── Payment.php
│   │   │           │   │   ├── Person.php
│   │   │           │   │   ├── PhoneNumber.php
│   │   │           │   │   ├── Text.php
│   │   │           │   │   ├── UserAgent.php
│   │   │           │   │   ├── Uuid.php
│   │   │           │   │   ├── ar_JO
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── ar_SA
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── at_AT
│   │   │           │   │   │   └── Payment.php
│   │   │           │   │   ├── bg_BG
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── bn_BD
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Utils.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
│   │   │           │   │   ├── de_AT
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── de_CH
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── de_DE
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── el_CY
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── el_GR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── en_AU
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_CA
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_GB
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_HK
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_IN
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_NG
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_NZ
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_PH
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_SG
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_UG
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── en_US
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── en_ZA
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── es_AR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── es_ES
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── es_PE
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── es_VE
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── et_EE
│   │   │           │   │   │   └── Person.php
│   │   │           │   │   ├── fa_IR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── fi_FI
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── fr_BE
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── fr_CA
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── fr_CH
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── fr_FR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── he_IL
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── hr_HR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── hu_HU
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── hy_AM
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── id_ID
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── is_IS
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── it_CH
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── it_IT
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── ja_JP
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── ka_GE
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── DateTime.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── kk_KZ
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── ko_KR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── lt_LT
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── lv_LV
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── me_ME
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── mn_MN
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── ms_MY
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Miscellaneous.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── nb_NO
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── ne_NP
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── nl_BE
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── nl_NL
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── pl_PL
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── pt_BR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── check_digit.php
│   │   │           │   │   ├── pt_PT
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── ro_MD
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── ro_RO
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── ru_RU
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── sk_SK
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── sl_SI
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── sr_Cyrl_RS
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   └── Person.php
│   │   │           │   │   ├── sr_Latn_RS
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   └── Person.php
│   │   │           │   │   ├── sr_RS
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   └── Person.php
│   │   │           │   │   ├── sv_SE
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── th_TH
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── tr_TR
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── DateTime.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── uk_UA
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   ├── PhoneNumber.php
│   │   │           │   │   │   └── Text.php
│   │   │           │   │   ├── vi_VN
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   ├── zh_CN
│   │   │           │   │   │   ├── Address.php
│   │   │           │   │   │   ├── Color.php
│   │   │           │   │   │   ├── Company.php
│   │   │           │   │   │   ├── DateTime.php
│   │   │           │   │   │   ├── Internet.php
│   │   │           │   │   │   ├── Payment.php
│   │   │           │   │   │   ├── Person.php
│   │   │           │   │   │   └── PhoneNumber.php
│   │   │           │   │   └── zh_TW
│   │   │           │   │       ├── Address.php
│   │   │           │   │       ├── Color.php
│   │   │           │   │       ├── Company.php
│   │   │           │   │       ├── DateTime.php
│   │   │           │   │       ├── Internet.php
│   │   │           │   │       ├── Payment.php
│   │   │           │   │       ├── Person.php
│   │   │           │   │       ├── PhoneNumber.php
│   │   │           │   │       └── Text.php
│   │   │           │   ├── UniqueGenerator.php
│   │   │           │   └── ValidGenerator.php
│   │   │           └── autoload.php
│   │   ├── guzzlehttp
│   │   │   ├── guzzle
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── UPGRADING.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── Client.php
│   │   │   │       ├── ClientInterface.php
│   │   │   │       ├── Cookie
│   │   │   │       │   ├── CookieJar.php
│   │   │   │       │   ├── CookieJarInterface.php
│   │   │   │       │   ├── FileCookieJar.php
│   │   │   │       │   ├── SessionCookieJar.php
│   │   │   │       │   └── SetCookie.php
│   │   │   │       ├── Exception
│   │   │   │       │   ├── BadResponseException.php
│   │   │   │       │   ├── ClientException.php
│   │   │   │       │   ├── ConnectException.php
│   │   │   │       │   ├── GuzzleException.php
│   │   │   │       │   ├── InvalidArgumentException.php
│   │   │   │       │   ├── RequestException.php
│   │   │   │       │   ├── SeekException.php
│   │   │   │       │   ├── ServerException.php
│   │   │   │       │   ├── TooManyRedirectsException.php
│   │   │   │       │   └── TransferException.php
│   │   │   │       ├── Handler
│   │   │   │       │   ├── CurlFactory.php
│   │   │   │       │   ├── CurlFactoryInterface.php
│   │   │   │       │   ├── CurlHandler.php
│   │   │   │       │   ├── CurlMultiHandler.php
│   │   │   │       │   ├── EasyHandle.php
│   │   │   │       │   ├── MockHandler.php
│   │   │   │       │   ├── Proxy.php
│   │   │   │       │   └── StreamHandler.php
│   │   │   │       ├── HandlerStack.php
│   │   │   │       ├── MessageFormatter.php
│   │   │   │       ├── Middleware.php
│   │   │   │       ├── Pool.php
│   │   │   │       ├── PrepareBodyMiddleware.php
│   │   │   │       ├── RedirectMiddleware.php
│   │   │   │       ├── RequestOptions.php
│   │   │   │       ├── RetryMiddleware.php
│   │   │   │       ├── TransferStats.php
│   │   │   │       ├── UriTemplate.php
│   │   │   │       ├── Utils.php
│   │   │   │       ├── functions.php
│   │   │   │       └── functions_include.php
│   │   │   ├── promises
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── Makefile
│   │   │   │   ├── Makefile 2
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpstan-baseline.neon
│   │   │   │   ├── phpstan.neon.dist
│   │   │   │   ├── psalm.xml
│   │   │   │   └── src
│   │   │   │       ├── AggregateException.php
│   │   │   │       ├── CancellationException.php
│   │   │   │       ├── Coroutine.php
│   │   │   │       ├── Create.php
│   │   │   │       ├── Each.php
│   │   │   │       ├── EachPromise.php
│   │   │   │       ├── FulfilledPromise.php
│   │   │   │       ├── Is.php
│   │   │   │       ├── Promise.php
│   │   │   │       ├── PromiseInterface.php
│   │   │   │       ├── PromisorInterface.php
│   │   │   │       ├── RejectedPromise.php
│   │   │   │       ├── RejectionException.php
│   │   │   │       ├── TaskQueue.php
│   │   │   │       ├── TaskQueueInterface.php
│   │   │   │       ├── Utils.php
│   │   │   │       ├── functions.php
│   │   │   │       └── functions_include.php
│   │   │   └── psr7
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── AppendStream.php
│   │   │           ├── BufferStream.php
│   │   │           ├── CachingStream.php
│   │   │           ├── DroppingStream.php
│   │   │           ├── FnStream.php
│   │   │           ├── Header.php
│   │   │           ├── InflateStream.php
│   │   │           ├── LazyOpenStream.php
│   │   │           ├── LimitStream.php
│   │   │           ├── Message.php
│   │   │           ├── MessageTrait.php
│   │   │           ├── MimeType.php
│   │   │           ├── MultipartStream.php
│   │   │           ├── NoSeekStream.php
│   │   │           ├── PumpStream.php
│   │   │           ├── Query.php
│   │   │           ├── Request.php
│   │   │           ├── Response.php
│   │   │           ├── Rfc7230.php
│   │   │           ├── ServerRequest.php
│   │   │           ├── Stream.php
│   │   │           ├── StreamDecoratorTrait.php
│   │   │           ├── StreamWrapper.php
│   │   │           ├── UploadedFile.php
│   │   │           ├── Uri.php
│   │   │           ├── UriNormalizer.php
│   │   │           ├── UriResolver.php
│   │   │           ├── Utils.php
│   │   │           ├── functions.php
│   │   │           ├── functions_include 2.php
│   │   │           └── functions_include.php
│   │   ├── hamcrest
│   │   │   └── hamcrest-php
│   │   │       ├── CHANGES.txt
│   │   │       ├── LICENSE.txt
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       ├── generator
│   │   │       │   ├── FactoryCall.php
│   │   │       │   ├── FactoryClass.php
│   │   │       │   ├── FactoryFile.php
│   │   │       │   ├── FactoryGenerator.php
│   │   │       │   ├── FactoryMethod.php
│   │   │       │   ├── FactoryParameter.php
│   │   │       │   ├── GlobalFunctionFile.php
│   │   │       │   ├── StaticMethodFile.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
│   │   │       ├── hamcrest
│   │   │       │   ├── Hamcrest
│   │   │       │   │   ├── Arrays
│   │   │       │   │   │   ├── IsArray.php
│   │   │       │   │   │   ├── IsArrayContaining.php
│   │   │       │   │   │   ├── IsArrayContainingInAnyOrder.php
│   │   │       │   │   │   ├── IsArrayContainingInOrder.php
│   │   │       │   │   │   ├── IsArrayContainingKey.php
│   │   │       │   │   │   ├── IsArrayContainingKeyValuePair.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
│   │   │       │   │   │   ├── Is.php
│   │   │       │   │   │   ├── IsAnything.php
│   │   │       │   │   │   ├── IsCollectionContaining.php
│   │   │       │   │   │   ├── IsEqual.php
│   │   │       │   │   │   ├── IsIdentical.php
│   │   │       │   │   │   ├── IsInstanceOf.php
│   │   │       │   │   │   ├── IsNot.php
│   │   │       │   │   │   ├── IsNull.php
│   │   │       │   │   │   ├── IsSame.php
│   │   │       │   │   │   ├── IsTypeOf.php
│   │   │       │   │   │   ├── Set.php
│   │   │       │   │   │   └── ShortcutCombination.php
│   │   │       │   │   ├── Description.php
│   │   │       │   │   ├── DiagnosingMatcher.php
│   │   │       │   │   ├── FeatureMatcher.php
│   │   │       │   │   ├── Internal
│   │   │       │   │   │   └── SelfDescribingValue.php
│   │   │       │   │   ├── Matcher.php
│   │   │       │   │   ├── MatcherAssert.php
│   │   │       │   │   ├── Matchers.php
│   │   │       │   │   ├── NullDescription.php
│   │   │       │   │   ├── Number
│   │   │       │   │   │   ├── IsCloseTo.php
│   │   │       │   │   │   └── OrderingComparison.php
│   │   │       │   │   ├── SelfDescribing.php
│   │   │       │   │   ├── StringDescription.php
│   │   │       │   │   ├── Text
│   │   │       │   │   │   ├── IsEmptyString.php
│   │   │       │   │   │   ├── IsEqualIgnoringCase.php
│   │   │       │   │   │   ├── IsEqualIgnoringWhiteSpace.php
│   │   │       │   │   │   ├── MatchesPattern.php
│   │   │       │   │   │   ├── StringContains.php
│   │   │       │   │   │   ├── StringContainsIgnoringCase.php
│   │   │       │   │   │   ├── StringContainsInOrder.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
│   │   │       └── tests
│   │   │           ├── 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
│   │   │           │   ├── InvokedMatcherTest.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
│   │   │           ├── bootstrap.php
│   │   │           └── phpunit.xml.dist
│   │   ├── kkszymanowski
│   │   │   └── traitor
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── Handlers
│   │   │           │   ├── AbstractTreeHandler 2.php
│   │   │           │   ├── AbstractTreeHandler.php
│   │   │           │   ├── Handler 2.php
│   │   │           │   └── Handler.php
│   │   │           ├── TraitUseAdder 2.php
│   │   │           ├── TraitUseAdder.php
│   │   │           ├── Traitor 2.php
│   │   │           └── Traitor.php
│   │   ├── laravel
│   │   │   ├── framework
│   │   │   │   ├── LICENSE 2.md
│   │   │   │   ├── LICENSE.md
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── composer 2.json
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       └── Illuminate
│   │   │   │           ├── Auth
│   │   │   │           │   ├── Access
│   │   │   │           │   │   ├── AuthorizationException 2.php
│   │   │   │           │   │   ├── AuthorizationException.php
│   │   │   │           │   │   ├── Gate 2.php
│   │   │   │           │   │   ├── Gate.php
│   │   │   │           │   │   ├── HandlesAuthorization 2.php
│   │   │   │           │   │   ├── HandlesAuthorization.php
│   │   │   │           │   │   ├── Response 2.php
│   │   │   │           │   │   └── Response.php
│   │   │   │           │   ├── AuthManager 2.php
│   │   │   │           │   ├── AuthManager.php
│   │   │   │           │   ├── AuthServiceProvider 2.php
│   │   │   │           │   ├── AuthServiceProvider.php
│   │   │   │           │   ├── Authenticatable 2.php
│   │   │   │           │   ├── Authenticatable.php
│   │   │   │           │   ├── AuthenticationException 2.php
│   │   │   │           │   ├── AuthenticationException.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── ClearResetsCommand 2.php
│   │   │   │           │   │   ├── ClearResetsCommand.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       └── make
│   │   │   │           │   │           └── views
│   │   │   │           │   │               └── layouts
│   │   │   │           │   │                   ├── app 2.stub
│   │   │   │           │   │                   └── app.stub
│   │   │   │           │   ├── CreatesUserProviders 2.php
│   │   │   │           │   ├── CreatesUserProviders.php
│   │   │   │           │   ├── DatabaseUserProvider 2.php
│   │   │   │           │   ├── DatabaseUserProvider.php
│   │   │   │           │   ├── EloquentUserProvider 2.php
│   │   │   │           │   ├── EloquentUserProvider.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── Attempting 2.php
│   │   │   │           │   │   ├── Attempting.php
│   │   │   │           │   │   ├── Authenticated 2.php
│   │   │   │           │   │   ├── Authenticated.php
│   │   │   │           │   │   ├── CurrentDeviceLogout 2.php
│   │   │   │           │   │   ├── CurrentDeviceLogout.php
│   │   │   │           │   │   ├── Failed 2.php
│   │   │   │           │   │   ├── Failed.php
│   │   │   │           │   │   ├── Lockout 2.php
│   │   │   │           │   │   ├── Lockout.php
│   │   │   │           │   │   ├── Login 2.php
│   │   │   │           │   │   ├── Login.php
│   │   │   │           │   │   ├── Logout 2.php
│   │   │   │           │   │   ├── Logout.php
│   │   │   │           │   │   ├── OtherDeviceLogout 2.php
│   │   │   │           │   │   ├── OtherDeviceLogout.php
│   │   │   │           │   │   ├── PasswordReset 2.php
│   │   │   │           │   │   ├── PasswordReset.php
│   │   │   │           │   │   ├── Registered 2.php
│   │   │   │           │   │   ├── Registered.php
│   │   │   │           │   │   ├── Validated 2.php
│   │   │   │           │   │   ├── Validated.php
│   │   │   │           │   │   ├── Verified 2.php
│   │   │   │           │   │   └── Verified.php
│   │   │   │           │   ├── GenericUser 2.php
│   │   │   │           │   ├── GenericUser.php
│   │   │   │           │   ├── GuardHelpers 2.php
│   │   │   │           │   ├── GuardHelpers.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Listeners
│   │   │   │           │   │   ├── SendEmailVerificationNotification 2.php
│   │   │   │           │   │   └── SendEmailVerificationNotification.php
│   │   │   │           │   ├── Middleware
│   │   │   │           │   │   ├── Authenticate 2.php
│   │   │   │           │   │   ├── Authenticate.php
│   │   │   │           │   │   ├── AuthenticateWithBasicAuth 2.php
│   │   │   │           │   │   ├── AuthenticateWithBasicAuth.php
│   │   │   │           │   │   ├── Authorize 2.php
│   │   │   │           │   │   ├── Authorize.php
│   │   │   │           │   │   ├── EnsureEmailIsVerified 2.php
│   │   │   │           │   │   ├── EnsureEmailIsVerified.php
│   │   │   │           │   │   ├── RequirePassword 2.php
│   │   │   │           │   │   └── RequirePassword.php
│   │   │   │           │   ├── MustVerifyEmail 2.php
│   │   │   │           │   ├── MustVerifyEmail.php
│   │   │   │           │   ├── Notifications
│   │   │   │           │   │   ├── ResetPassword 2.php
│   │   │   │           │   │   ├── ResetPassword.php
│   │   │   │           │   │   ├── VerifyEmail 2.php
│   │   │   │           │   │   └── VerifyEmail.php
│   │   │   │           │   ├── Passwords
│   │   │   │           │   │   ├── CanResetPassword 2.php
│   │   │   │           │   │   ├── CanResetPassword.php
│   │   │   │           │   │   ├── DatabaseTokenRepository 2.php
│   │   │   │           │   │   ├── DatabaseTokenRepository.php
│   │   │   │           │   │   ├── PasswordBroker 2.php
│   │   │   │           │   │   ├── PasswordBroker.php
│   │   │   │           │   │   ├── PasswordBrokerManager 2.php
│   │   │   │           │   │   ├── PasswordBrokerManager.php
│   │   │   │           │   │   ├── PasswordResetServiceProvider 2.php
│   │   │   │           │   │   ├── PasswordResetServiceProvider.php
│   │   │   │           │   │   ├── TokenRepositoryInterface 2.php
│   │   │   │           │   │   └── TokenRepositoryInterface.php
│   │   │   │           │   ├── Recaller 2.php
│   │   │   │           │   ├── Recaller.php
│   │   │   │           │   ├── RequestGuard 2.php
│   │   │   │           │   ├── RequestGuard.php
│   │   │   │           │   ├── SessionGuard 2.php
│   │   │   │           │   ├── SessionGuard.php
│   │   │   │           │   ├── TokenGuard 2.php
│   │   │   │           │   ├── TokenGuard.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Broadcasting
│   │   │   │           │   ├── BroadcastController 2.php
│   │   │   │           │   ├── BroadcastController.php
│   │   │   │           │   ├── BroadcastEvent 2.php
│   │   │   │           │   ├── BroadcastEvent.php
│   │   │   │           │   ├── BroadcastException 2.php
│   │   │   │           │   ├── BroadcastException.php
│   │   │   │           │   ├── BroadcastManager 2.php
│   │   │   │           │   ├── BroadcastManager.php
│   │   │   │           │   ├── BroadcastServiceProvider 2.php
│   │   │   │           │   ├── BroadcastServiceProvider.php
│   │   │   │           │   ├── Broadcasters
│   │   │   │           │   │   ├── Broadcaster 2.php
│   │   │   │           │   │   ├── Broadcaster.php
│   │   │   │           │   │   ├── LogBroadcaster 2.php
│   │   │   │           │   │   ├── LogBroadcaster.php
│   │   │   │           │   │   ├── NullBroadcaster 2.php
│   │   │   │           │   │   ├── NullBroadcaster.php
│   │   │   │           │   │   ├── PusherBroadcaster 2.php
│   │   │   │           │   │   ├── PusherBroadcaster.php
│   │   │   │           │   │   ├── RedisBroadcaster 2.php
│   │   │   │           │   │   ├── RedisBroadcaster.php
│   │   │   │           │   │   ├── UsePusherChannelConventions 2.php
│   │   │   │           │   │   └── UsePusherChannelConventions.php
│   │   │   │           │   ├── Channel 2.php
│   │   │   │           │   ├── Channel.php
│   │   │   │           │   ├── EncryptedPrivateChannel 2.php
│   │   │   │           │   ├── EncryptedPrivateChannel.php
│   │   │   │           │   ├── InteractsWithSockets 2.php
│   │   │   │           │   ├── InteractsWithSockets.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── PendingBroadcast 2.php
│   │   │   │           │   ├── PendingBroadcast.php
│   │   │   │           │   ├── PresenceChannel 2.php
│   │   │   │           │   ├── PresenceChannel.php
│   │   │   │           │   ├── PrivateChannel 2.php
│   │   │   │           │   ├── PrivateChannel.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Bus
│   │   │   │           │   ├── BusServiceProvider 2.php
│   │   │   │           │   ├── BusServiceProvider.php
│   │   │   │           │   ├── Dispatcher 2.php
│   │   │   │           │   ├── Dispatcher.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Queueable 2.php
│   │   │   │           │   ├── Queueable.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Cache
│   │   │   │           │   ├── ApcStore 2.php
│   │   │   │           │   ├── ApcStore.php
│   │   │   │           │   ├── ApcWrapper 2.php
│   │   │   │           │   ├── ApcWrapper.php
│   │   │   │           │   ├── ArrayLock 2.php
│   │   │   │           │   ├── ArrayLock.php
│   │   │   │           │   ├── ArrayStore 2.php
│   │   │   │           │   ├── ArrayStore.php
│   │   │   │           │   ├── CacheManager 2.php
│   │   │   │           │   ├── CacheManager.php
│   │   │   │           │   ├── CacheServiceProvider 2.php
│   │   │   │           │   ├── CacheServiceProvider.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── CacheTableCommand 2.php
│   │   │   │           │   │   ├── CacheTableCommand.php
│   │   │   │           │   │   ├── ClearCommand 2.php
│   │   │   │           │   │   ├── ClearCommand.php
│   │   │   │           │   │   ├── ForgetCommand 2.php
│   │   │   │           │   │   ├── ForgetCommand.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       ├── cache 2.stub
│   │   │   │           │   │       └── cache.stub
│   │   │   │           │   ├── DatabaseLock 2.php
│   │   │   │           │   ├── DatabaseLock.php
│   │   │   │           │   ├── DatabaseStore 2.php
│   │   │   │           │   ├── DatabaseStore.php
│   │   │   │           │   ├── DynamoDbLock 2.php
│   │   │   │           │   ├── DynamoDbLock.php
│   │   │   │           │   ├── DynamoDbStore 2.php
│   │   │   │           │   ├── DynamoDbStore.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── CacheEvent 2.php
│   │   │   │           │   │   ├── CacheEvent.php
│   │   │   │           │   │   ├── CacheHit 2.php
│   │   │   │           │   │   ├── CacheHit.php
│   │   │   │           │   │   ├── CacheMissed 2.php
│   │   │   │           │   │   ├── CacheMissed.php
│   │   │   │           │   │   ├── KeyForgotten 2.php
│   │   │   │           │   │   ├── KeyForgotten.php
│   │   │   │           │   │   ├── KeyWritten 2.php
│   │   │   │           │   │   └── KeyWritten.php
│   │   │   │           │   ├── FileStore 2.php
│   │   │   │           │   ├── FileStore.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Lock 2.php
│   │   │   │           │   ├── Lock.php
│   │   │   │           │   ├── LuaScripts 2.php
│   │   │   │           │   ├── LuaScripts.php
│   │   │   │           │   ├── MemcachedConnector 2.php
│   │   │   │           │   ├── MemcachedConnector.php
│   │   │   │           │   ├── MemcachedLock 2.php
│   │   │   │           │   ├── MemcachedLock.php
│   │   │   │           │   ├── MemcachedStore 2.php
│   │   │   │           │   ├── MemcachedStore.php
│   │   │   │           │   ├── NullStore 2.php
│   │   │   │           │   ├── NullStore.php
│   │   │   │           │   ├── RateLimiter 2.php
│   │   │   │           │   ├── RateLimiter.php
│   │   │   │           │   ├── RedisLock 2.php
│   │   │   │           │   ├── RedisLock.php
│   │   │   │           │   ├── RedisStore 2.php
│   │   │   │           │   ├── RedisStore.php
│   │   │   │           │   ├── RedisTaggedCache 2.php
│   │   │   │           │   ├── RedisTaggedCache.php
│   │   │   │           │   ├── Repository 2.php
│   │   │   │           │   ├── Repository.php
│   │   │   │           │   ├── RetrievesMultipleKeys 2.php
│   │   │   │           │   ├── RetrievesMultipleKeys.php
│   │   │   │           │   ├── TagSet 2.php
│   │   │   │           │   ├── TagSet.php
│   │   │   │           │   ├── TaggableStore 2.php
│   │   │   │           │   ├── TaggableStore.php
│   │   │   │           │   ├── TaggedCache 2.php
│   │   │   │           │   ├── TaggedCache.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Config
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Repository 2.php
│   │   │   │           │   ├── Repository.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Console
│   │   │   │           │   ├── Application 2.php
│   │   │   │           │   ├── Application.php
│   │   │   │           │   ├── Command 2.php
│   │   │   │           │   ├── Command.php
│   │   │   │           │   ├── Concerns
│   │   │   │           │   │   ├── CallsCommands 2.php
│   │   │   │           │   │   ├── CallsCommands.php
│   │   │   │           │   │   ├── HasParameters 2.php
│   │   │   │           │   │   ├── HasParameters.php
│   │   │   │           │   │   ├── InteractsWithIO 2.php
│   │   │   │           │   │   └── InteractsWithIO.php
│   │   │   │           │   ├── ConfirmableTrait 2.php
│   │   │   │           │   ├── ConfirmableTrait.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── ArtisanStarting 2.php
│   │   │   │           │   │   ├── ArtisanStarting.php
│   │   │   │           │   │   ├── CommandFinished 2.php
│   │   │   │           │   │   ├── CommandFinished.php
│   │   │   │           │   │   ├── CommandStarting 2.php
│   │   │   │           │   │   ├── CommandStarting.php
│   │   │   │           │   │   ├── ScheduledTaskFailed 2.php
│   │   │   │           │   │   ├── ScheduledTaskFailed.php
│   │   │   │           │   │   ├── ScheduledTaskFinished 2.php
│   │   │   │           │   │   ├── ScheduledTaskFinished.php
│   │   │   │           │   │   ├── ScheduledTaskSkipped 2.php
│   │   │   │           │   │   ├── ScheduledTaskSkipped.php
│   │   │   │           │   │   ├── ScheduledTaskStarting 2.php
│   │   │   │           │   │   └── ScheduledTaskStarting.php
│   │   │   │           │   ├── GeneratorCommand 2.php
│   │   │   │           │   ├── GeneratorCommand.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── OutputStyle 2.php
│   │   │   │           │   ├── OutputStyle.php
│   │   │   │           │   ├── Parser 2.php
│   │   │   │           │   ├── Parser.php
│   │   │   │           │   ├── Scheduling
│   │   │   │           │   │   ├── CacheAware 2.php
│   │   │   │           │   │   ├── CacheAware.php
│   │   │   │           │   │   ├── CacheEventMutex 2.php
│   │   │   │           │   │   ├── CacheEventMutex.php
│   │   │   │           │   │   ├── CacheSchedulingMutex 2.php
│   │   │   │           │   │   ├── CacheSchedulingMutex.php
│   │   │   │           │   │   ├── CallbackEvent 2.php
│   │   │   │           │   │   ├── CallbackEvent.php
│   │   │   │           │   │   ├── CommandBuilder 2.php
│   │   │   │           │   │   ├── CommandBuilder.php
│   │   │   │           │   │   ├── Event 2.php
│   │   │   │           │   │   ├── Event.php
│   │   │   │           │   │   ├── EventMutex 2.php
│   │   │   │           │   │   ├── EventMutex.php
│   │   │   │           │   │   ├── ManagesFrequencies 2.php
│   │   │   │           │   │   ├── ManagesFrequencies.php
│   │   │   │           │   │   ├── Schedule 2.php
│   │   │   │           │   │   ├── Schedule.php
│   │   │   │           │   │   ├── ScheduleFinishCommand 2.php
│   │   │   │           │   │   ├── ScheduleFinishCommand.php
│   │   │   │           │   │   ├── ScheduleRunCommand 2.php
│   │   │   │           │   │   ├── ScheduleRunCommand.php
│   │   │   │           │   │   ├── SchedulingMutex 2.php
│   │   │   │           │   │   └── SchedulingMutex.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Container
│   │   │   │           │   ├── BoundMethod 2.php
│   │   │   │           │   ├── BoundMethod.php
│   │   │   │           │   ├── Container 2.php
│   │   │   │           │   ├── Container.php
│   │   │   │           │   ├── ContextualBindingBuilder 2.php
│   │   │   │           │   ├── ContextualBindingBuilder.php
│   │   │   │           │   ├── EntryNotFoundException 2.php
│   │   │   │           │   ├── EntryNotFoundException.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── RewindableGenerator 2.php
│   │   │   │           │   ├── RewindableGenerator.php
│   │   │   │           │   ├── Util 2.php
│   │   │   │           │   ├── Util.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Contracts
│   │   │   │           │   ├── Auth
│   │   │   │           │   │   ├── Access
│   │   │   │           │   │   │   ├── Authorizable 2.php
│   │   │   │           │   │   │   ├── Authorizable.php
│   │   │   │           │   │   │   ├── Gate 2.php
│   │   │   │           │   │   │   └── Gate.php
│   │   │   │           │   │   ├── Authenticatable 2.php
│   │   │   │           │   │   ├── Authenticatable.php
│   │   │   │           │   │   ├── CanResetPassword 2.php
│   │   │   │           │   │   ├── CanResetPassword.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── Guard 2.php
│   │   │   │           │   │   ├── Guard.php
│   │   │   │           │   │   ├── Middleware
│   │   │   │           │   │   │   ├── AuthenticatesRequests 2.php
│   │   │   │           │   │   │   └── AuthenticatesRequests.php
│   │   │   │           │   │   ├── MustVerifyEmail 2.php
│   │   │   │           │   │   ├── MustVerifyEmail.php
│   │   │   │           │   │   ├── PasswordBroker 2.php
│   │   │   │           │   │   ├── PasswordBroker.php
│   │   │   │           │   │   ├── PasswordBrokerFactory 2.php
│   │   │   │           │   │   ├── PasswordBrokerFactory.php
│   │   │   │           │   │   ├── StatefulGuard 2.php
│   │   │   │           │   │   ├── StatefulGuard.php
│   │   │   │           │   │   ├── SupportsBasicAuth 2.php
│   │   │   │           │   │   ├── SupportsBasicAuth.php
│   │   │   │           │   │   ├── UserProvider 2.php
│   │   │   │           │   │   └── UserProvider.php
│   │   │   │           │   ├── Broadcasting
│   │   │   │           │   │   ├── Broadcaster 2.php
│   │   │   │           │   │   ├── Broadcaster.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── ShouldBroadcast 2.php
│   │   │   │           │   │   ├── ShouldBroadcast.php
│   │   │   │           │   │   ├── ShouldBroadcastNow 2.php
│   │   │   │           │   │   └── ShouldBroadcastNow.php
│   │   │   │           │   ├── Bus
│   │   │   │           │   │   ├── Dispatcher 2.php
│   │   │   │           │   │   ├── Dispatcher.php
│   │   │   │           │   │   ├── QueueingDispatcher 2.php
│   │   │   │           │   │   └── QueueingDispatcher.php
│   │   │   │           │   ├── Cache
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── Lock 2.php
│   │   │   │           │   │   ├── Lock.php
│   │   │   │           │   │   ├── LockProvider 2.php
│   │   │   │           │   │   ├── LockProvider.php
│   │   │   │           │   │   ├── LockTimeoutException 2.php
│   │   │   │           │   │   ├── LockTimeoutException.php
│   │   │   │           │   │   ├── Repository 2.php
│   │   │   │           │   │   ├── Repository.php
│   │   │   │           │   │   ├── Store 2.php
│   │   │   │           │   │   └── Store.php
│   │   │   │           │   ├── Config
│   │   │   │           │   │   ├── Repository 2.php
│   │   │   │           │   │   └── Repository.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── Application 2.php
│   │   │   │           │   │   ├── Application.php
│   │   │   │           │   │   ├── Kernel 2.php
│   │   │   │           │   │   └── Kernel.php
│   │   │   │           │   ├── Container
│   │   │   │           │   │   ├── BindingResolutionException 2.php
│   │   │   │           │   │   ├── BindingResolutionException.php
│   │   │   │           │   │   ├── Container 2.php
│   │   │   │           │   │   ├── Container.php
│   │   │   │           │   │   ├── ContextualBindingBuilder 2.php
│   │   │   │           │   │   └── ContextualBindingBuilder.php
│   │   │   │           │   ├── Cookie
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── QueueingFactory 2.php
│   │   │   │           │   │   └── QueueingFactory.php
│   │   │   │           │   ├── Database
│   │   │   │           │   │   ├── Eloquent
│   │   │   │           │   │   │   ├── Castable 2.php
│   │   │   │           │   │   │   ├── Castable.php
│   │   │   │           │   │   │   ├── CastsAttributes 2.php
│   │   │   │           │   │   │   ├── CastsAttributes.php
│   │   │   │           │   │   │   ├── CastsInboundAttributes 2.php
│   │   │   │           │   │   │   └── CastsInboundAttributes.php
│   │   │   │           │   │   ├── Events
│   │   │   │           │   │   │   ├── MigrationEvent 2.php
│   │   │   │           │   │   │   └── MigrationEvent.php
│   │   │   │           │   │   ├── ModelIdentifier 2.php
│   │   │   │           │   │   └── ModelIdentifier.php
│   │   │   │           │   ├── Debug
│   │   │   │           │   │   ├── ExceptionHandler 2.php
│   │   │   │           │   │   └── ExceptionHandler.php
│   │   │   │           │   ├── Encryption
│   │   │   │           │   │   ├── DecryptException 2.php
│   │   │   │           │   │   ├── DecryptException.php
│   │   │   │           │   │   ├── EncryptException 2.php
│   │   │   │           │   │   ├── EncryptException.php
│   │   │   │           │   │   ├── Encrypter 2.php
│   │   │   │           │   │   └── Encrypter.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── Dispatcher 2.php
│   │   │   │           │   │   └── Dispatcher.php
│   │   │   │           │   ├── Filesystem
│   │   │   │           │   │   ├── Cloud 2.php
│   │   │   │           │   │   ├── Cloud.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── FileExistsException 2.php
│   │   │   │           │   │   ├── FileExistsException.php
│   │   │   │           │   │   ├── FileNotFoundException 2.php
│   │   │   │           │   │   ├── FileNotFoundException.php
│   │   │   │           │   │   ├── Filesystem 2.php
│   │   │   │           │   │   └── Filesystem.php
│   │   │   │           │   ├── Foundation
│   │   │   │           │   │   ├── Application 2.php
│   │   │   │           │   │   ├── Application.php
│   │   │   │           │   │   ├── CachesConfiguration 2.php
│   │   │   │           │   │   ├── CachesConfiguration.php
│   │   │   │           │   │   ├── CachesRoutes 2.php
│   │   │   │           │   │   └── CachesRoutes.php
│   │   │   │           │   ├── Hashing
│   │   │   │           │   │   ├── Hasher 2.php
│   │   │   │           │   │   └── Hasher.php
│   │   │   │           │   ├── Http
│   │   │   │           │   │   ├── Kernel 2.php
│   │   │   │           │   │   └── Kernel.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Mail
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── MailQueue 2.php
│   │   │   │           │   │   ├── MailQueue.php
│   │   │   │           │   │   ├── Mailable 2.php
│   │   │   │           │   │   ├── Mailable.php
│   │   │   │           │   │   ├── Mailer 2.php
│   │   │   │           │   │   └── Mailer.php
│   │   │   │           │   ├── Notifications
│   │   │   │           │   │   ├── Dispatcher 2.php
│   │   │   │           │   │   ├── Dispatcher.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   └── Factory.php
│   │   │   │           │   ├── Pagination
│   │   │   │           │   │   ├── LengthAwarePaginator 2.php
│   │   │   │           │   │   ├── LengthAwarePaginator.php
│   │   │   │           │   │   ├── Paginator 2.php
│   │   │   │           │   │   └── Paginator.php
│   │   │   │           │   ├── Pipeline
│   │   │   │           │   │   ├── Hub 2.php
│   │   │   │           │   │   ├── Hub.php
│   │   │   │           │   │   ├── Pipeline 2.php
│   │   │   │           │   │   └── Pipeline.php
│   │   │   │           │   ├── Queue
│   │   │   │           │   │   ├── EntityNotFoundException 2.php
│   │   │   │           │   │   ├── EntityNotFoundException.php
│   │   │   │           │   │   ├── EntityResolver 2.php
│   │   │   │           │   │   ├── EntityResolver.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── Job 2.php
│   │   │   │           │   │   ├── Job.php
│   │   │   │           │   │   ├── Monitor 2.php
│   │   │   │           │   │   ├── Monitor.php
│   │   │   │           │   │   ├── Queue 2.php
│   │   │   │           │   │   ├── Queue.php
│   │   │   │           │   │   ├── QueueableCollection 2.php
│   │   │   │           │   │   ├── QueueableCollection.php
│   │   │   │           │   │   ├── QueueableEntity 2.php
│   │   │   │           │   │   ├── QueueableEntity.php
│   │   │   │           │   │   ├── ShouldQueue 2.php
│   │   │   │           │   │   └── ShouldQueue.php
│   │   │   │           │   ├── Redis
│   │   │   │           │   │   ├── Connection 2.php
│   │   │   │           │   │   ├── Connection.php
│   │   │   │           │   │   ├── Connector 2.php
│   │   │   │           │   │   ├── Connector.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── LimiterTimeoutException 2.php
│   │   │   │           │   │   └── LimiterTimeoutException.php
│   │   │   │           │   ├── Routing
│   │   │   │           │   │   ├── BindingRegistrar 2.php
│   │   │   │           │   │   ├── BindingRegistrar.php
│   │   │   │           │   │   ├── Registrar 2.php
│   │   │   │           │   │   ├── Registrar.php
│   │   │   │           │   │   ├── ResponseFactory 2.php
│   │   │   │           │   │   ├── ResponseFactory.php
│   │   │   │           │   │   ├── UrlGenerator 2.php
│   │   │   │           │   │   ├── UrlGenerator.php
│   │   │   │           │   │   ├── UrlRoutable 2.php
│   │   │   │           │   │   └── UrlRoutable.php
│   │   │   │           │   ├── Session
│   │   │   │           │   │   ├── Session 2.php
│   │   │   │           │   │   └── Session.php
│   │   │   │           │   ├── Support
│   │   │   │           │   │   ├── Arrayable 2.php
│   │   │   │           │   │   ├── Arrayable.php
│   │   │   │           │   │   ├── DeferrableProvider 2.php
│   │   │   │           │   │   ├── DeferrableProvider.php
│   │   │   │           │   │   ├── DeferringDisplayableValue 2.php
│   │   │   │           │   │   ├── DeferringDisplayableValue.php
│   │   │   │           │   │   ├── Htmlable 2.php
│   │   │   │           │   │   ├── Htmlable.php
│   │   │   │           │   │   ├── Jsonable 2.php
│   │   │   │           │   │   ├── Jsonable.php
│   │   │   │           │   │   ├── MessageBag 2.php
│   │   │   │           │   │   ├── MessageBag.php
│   │   │   │           │   │   ├── MessageProvider 2.php
│   │   │   │           │   │   ├── MessageProvider.php
│   │   │   │           │   │   ├── Renderable 2.php
│   │   │   │           │   │   ├── Renderable.php
│   │   │   │           │   │   ├── Responsable 2.php
│   │   │   │           │   │   └── Responsable.php
│   │   │   │           │   ├── Translation
│   │   │   │           │   │   ├── HasLocalePreference 2.php
│   │   │   │           │   │   ├── HasLocalePreference.php
│   │   │   │           │   │   ├── Loader 2.php
│   │   │   │           │   │   ├── Loader.php
│   │   │   │           │   │   ├── Translator 2.php
│   │   │   │           │   │   └── Translator.php
│   │   │   │           │   ├── Validation
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── ImplicitRule 2.php
│   │   │   │           │   │   ├── ImplicitRule.php
│   │   │   │           │   │   ├── Rule 2.php
│   │   │   │           │   │   ├── Rule.php
│   │   │   │           │   │   ├── ValidatesWhenResolved 2.php
│   │   │   │           │   │   ├── ValidatesWhenResolved.php
│   │   │   │           │   │   ├── Validator 2.php
│   │   │   │           │   │   └── Validator.php
│   │   │   │           │   ├── View
│   │   │   │           │   │   ├── Engine 2.php
│   │   │   │           │   │   ├── Engine.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── View 2.php
│   │   │   │           │   │   └── View.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Cookie
│   │   │   │           │   ├── CookieJar 2.php
│   │   │   │           │   ├── CookieJar.php
│   │   │   │           │   ├── CookieServiceProvider 2.php
│   │   │   │           │   ├── CookieServiceProvider.php
│   │   │   │           │   ├── CookieValuePrefix 2.php
│   │   │   │           │   ├── CookieValuePrefix.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Middleware
│   │   │   │           │   │   ├── AddQueuedCookiesToResponse 2.php
│   │   │   │           │   │   ├── AddQueuedCookiesToResponse.php
│   │   │   │           │   │   ├── EncryptCookies 2.php
│   │   │   │           │   │   └── EncryptCookies.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Database
│   │   │   │           │   ├── Capsule
│   │   │   │           │   │   ├── Manager 2.php
│   │   │   │           │   │   └── Manager.php
│   │   │   │           │   ├── Concerns
│   │   │   │           │   │   ├── BuildsQueries 2.php
│   │   │   │           │   │   ├── BuildsQueries.php
│   │   │   │           │   │   ├── ManagesTransactions 2.php
│   │   │   │           │   │   └── ManagesTransactions.php
│   │   │   │           │   ├── ConfigurationUrlParser 2.php
│   │   │   │           │   ├── ConfigurationUrlParser.php
│   │   │   │           │   ├── Connection 2.php
│   │   │   │           │   ├── Connection.php
│   │   │   │           │   ├── ConnectionInterface 2.php
│   │   │   │           │   ├── ConnectionInterface.php
│   │   │   │           │   ├── ConnectionResolver 2.php
│   │   │   │           │   ├── ConnectionResolver.php
│   │   │   │           │   ├── ConnectionResolverInterface 2.php
│   │   │   │           │   ├── ConnectionResolverInterface.php
│   │   │   │           │   ├── Connectors
│   │   │   │           │   │   ├── ConnectionFactory 2.php
│   │   │   │           │   │   ├── ConnectionFactory.php
│   │   │   │           │   │   ├── Connector 2.php
│   │   │   │           │   │   ├── Connector.php
│   │   │   │           │   │   ├── ConnectorInterface 2.php
│   │   │   │           │   │   ├── ConnectorInterface.php
│   │   │   │           │   │   ├── MySqlConnector 2.php
│   │   │   │           │   │   ├── MySqlConnector.php
│   │   │   │           │   │   ├── PostgresConnector 2.php
│   │   │   │           │   │   ├── PostgresConnector.php
│   │   │   │           │   │   ├── SQLiteConnector 2.php
│   │   │   │           │   │   ├── SQLiteConnector.php
│   │   │   │           │   │   ├── SqlServerConnector 2.php
│   │   │   │           │   │   └── SqlServerConnector.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── Factories
│   │   │   │           │   │   │   ├── FactoryMakeCommand 2.php
│   │   │   │           │   │   │   ├── FactoryMakeCommand.php
│   │   │   │           │   │   │   └── stubs
│   │   │   │           │   │   │       ├── factory 2.stub
│   │   │   │           │   │   │       └── factory.stub
│   │   │   │           │   │   ├── Migrations
│   │   │   │           │   │   │   ├── BaseCommand 2.php
│   │   │   │           │   │   │   ├── BaseCommand.php
│   │   │   │           │   │   │   ├── FreshCommand 2.php
│   │   │   │           │   │   │   ├── FreshCommand.php
│   │   │   │           │   │   │   ├── InstallCommand 2.php
│   │   │   │           │   │   │   ├── InstallCommand.php
│   │   │   │           │   │   │   ├── MigrateCommand 2.php
│   │   │   │           │   │   │   ├── MigrateCommand.php
│   │   │   │           │   │   │   ├── MigrateMakeCommand 2.php
│   │   │   │           │   │   │   ├── MigrateMakeCommand.php
│   │   │   │           │   │   │   ├── RefreshCommand 2.php
│   │   │   │           │   │   │   ├── RefreshCommand.php
│   │   │   │           │   │   │   ├── ResetCommand 2.php
│   │   │   │           │   │   │   ├── ResetCommand.php
│   │   │   │           │   │   │   ├── RollbackCommand 2.php
│   │   │   │           │   │   │   ├── RollbackCommand.php
│   │   │   │           │   │   │   ├── StatusCommand 2.php
│   │   │   │           │   │   │   ├── StatusCommand.php
│   │   │   │           │   │   │   ├── TableGuesser 2.php
│   │   │   │           │   │   │   └── TableGuesser.php
│   │   │   │           │   │   ├── Seeds
│   │   │   │           │   │   │   ├── SeedCommand 2.php
│   │   │   │           │   │   │   ├── SeedCommand.php
│   │   │   │           │   │   │   ├── SeederMakeCommand 2.php
│   │   │   │           │   │   │   ├── SeederMakeCommand.php
│   │   │   │           │   │   │   └── stubs
│   │   │   │           │   │   │       ├── seeder 2.stub
│   │   │   │           │   │   │       └── seeder.stub
│   │   │   │           │   │   ├── WipeCommand 2.php
│   │   │   │           │   │   └── WipeCommand.php
│   │   │   │           │   ├── DatabaseManager 2.php
│   │   │   │           │   ├── DatabaseManager.php
│   │   │   │           │   ├── DatabaseServiceProvider 2.php
│   │   │   │           │   ├── DatabaseServiceProvider.php
│   │   │   │           │   ├── DetectsConcurrencyErrors 2.php
│   │   │   │           │   ├── DetectsConcurrencyErrors.php
│   │   │   │           │   ├── DetectsLostConnections 2.php
│   │   │   │           │   ├── DetectsLostConnections.php
│   │   │   │           │   ├── Eloquent
│   │   │   │           │   │   ├── Builder 2.php
│   │   │   │           │   │   ├── Builder.php
│   │   │   │           │   │   ├── Collection 2.php
│   │   │   │           │   │   ├── Collection.php
│   │   │   │           │   │   ├── Concerns
│   │   │   │           │   │   │   ├── GuardsAttributes 2.php
│   │   │   │           │   │   │   ├── GuardsAttributes.php
│   │   │   │           │   │   │   ├── HasAttributes 2.php
│   │   │   │           │   │   │   ├── HasAttributes.php
│   │   │   │           │   │   │   ├── HasEvents 2.php
│   │   │   │           │   │   │   ├── HasEvents.php
│   │   │   │           │   │   │   ├── HasGlobalScopes 2.php
│   │   │   │           │   │   │   ├── HasGlobalScopes.php
│   │   │   │           │   │   │   ├── HasRelationships 2.php
│   │   │   │           │   │   │   ├── HasRelationships.php
│   │   │   │           │   │   │   ├── HasTimestamps 2.php
│   │   │   │           │   │   │   ├── HasTimestamps.php
│   │   │   │           │   │   │   ├── HidesAttributes 2.php
│   │   │   │           │   │   │   ├── HidesAttributes.php
│   │   │   │           │   │   │   ├── QueriesRelationships 2.php
│   │   │   │           │   │   │   └── QueriesRelationships.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── FactoryBuilder 2.php
│   │   │   │           │   │   ├── FactoryBuilder.php
│   │   │   │           │   │   ├── HigherOrderBuilderProxy 2.php
│   │   │   │           │   │   ├── HigherOrderBuilderProxy.php
│   │   │   │           │   │   ├── JsonEncodingException 2.php
│   │   │   │           │   │   ├── JsonEncodingException.php
│   │   │   │           │   │   ├── MassAssignmentException 2.php
│   │   │   │           │   │   ├── MassAssignmentException.php
│   │   │   │           │   │   ├── Model 2.php
│   │   │   │           │   │   ├── Model.php
│   │   │   │           │   │   ├── ModelNotFoundException 2.php
│   │   │   │           │   │   ├── ModelNotFoundException.php
│   │   │   │           │   │   ├── QueueEntityResolver 2.php
│   │   │   │           │   │   ├── QueueEntityResolver.php
│   │   │   │           │   │   ├── RelationNotFoundException 2.php
│   │   │   │           │   │   ├── RelationNotFoundException.php
│   │   │   │           │   │   ├── Relations
│   │   │   │           │   │   │   ├── BelongsTo 2.php
│   │   │   │           │   │   │   ├── BelongsTo.php
│   │   │   │           │   │   │   ├── BelongsToMany 2.php
│   │   │   │           │   │   │   ├── BelongsToMany.php
│   │   │   │           │   │   │   ├── Concerns
│   │   │   │           │   │   │   │   ├── AsPivot 2.php
│   │   │   │           │   │   │   │   ├── AsPivot.php
│   │   │   │           │   │   │   │   ├── InteractsWithPivotTable 2.php
│   │   │   │           │   │   │   │   ├── InteractsWithPivotTable.php
│   │   │   │           │   │   │   │   ├── SupportsDefaultModels 2.php
│   │   │   │           │   │   │   │   └── SupportsDefaultModels.php
│   │   │   │           │   │   │   ├── HasMany 2.php
│   │   │   │           │   │   │   ├── HasMany.php
│   │   │   │           │   │   │   ├── HasManyThrough 2.php
│   │   │   │           │   │   │   ├── HasManyThrough.php
│   │   │   │           │   │   │   ├── HasOne 2.php
│   │   │   │           │   │   │   ├── HasOne.php
│   │   │   │           │   │   │   ├── HasOneOrMany 2.php
│   │   │   │           │   │   │   ├── HasOneOrMany.php
│   │   │   │           │   │   │   ├── HasOneThrough 2.php
│   │   │   │           │   │   │   ├── HasOneThrough.php
│   │   │   │           │   │   │   ├── MorphMany 2.php
│   │   │   │           │   │   │   ├── MorphMany.php
│   │   │   │           │   │   │   ├── MorphOne 2.php
│   │   │   │           │   │   │   ├── MorphOne.php
│   │   │   │           │   │   │   ├── MorphOneOrMany 2.php
│   │   │   │           │   │   │   ├── MorphOneOrMany.php
│   │   │   │           │   │   │   ├── MorphPivot 2.php
│   │   │   │           │   │   │   ├── MorphPivot.php
│   │   │   │           │   │   │   ├── MorphTo 2.php
│   │   │   │           │   │   │   ├── MorphTo.php
│   │   │   │           │   │   │   ├── MorphToMany 2.php
│   │   │   │           │   │   │   ├── MorphToMany.php
│   │   │   │           │   │   │   ├── Pivot 2.php
│   │   │   │           │   │   │   ├── Pivot.php
│   │   │   │           │   │   │   ├── Relation 2.php
│   │   │   │           │   │   │   └── Relation.php
│   │   │   │           │   │   ├── Scope 2.php
│   │   │   │           │   │   ├── Scope.php
│   │   │   │           │   │   ├── SoftDeletes 2.php
│   │   │   │           │   │   ├── SoftDeletes.php
│   │   │   │           │   │   ├── SoftDeletingScope 2.php
│   │   │   │           │   │   └── SoftDeletingScope.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── ConnectionEvent 2.php
│   │   │   │           │   │   ├── ConnectionEvent.php
│   │   │   │           │   │   ├── MigrationEnded 2.php
│   │   │   │           │   │   ├── MigrationEnded.php
│   │   │   │           │   │   ├── MigrationEvent 2.php
│   │   │   │           │   │   ├── MigrationEvent.php
│   │   │   │           │   │   ├── MigrationStarted 2.php
│   │   │   │           │   │   ├── MigrationStarted.php
│   │   │   │           │   │   ├── MigrationsEnded 2.php
│   │   │   │           │   │   ├── MigrationsEnded.php
│   │   │   │           │   │   ├── MigrationsStarted 2.php
│   │   │   │           │   │   ├── MigrationsStarted.php
│   │   │   │           │   │   ├── NoPendingMigrations 2.php
│   │   │   │           │   │   ├── NoPendingMigrations.php
│   │   │   │           │   │   ├── QueryExecuted 2.php
│   │   │   │           │   │   ├── QueryExecuted.php
│   │   │   │           │   │   ├── StatementPrepared 2.php
│   │   │   │           │   │   ├── StatementPrepared.php
│   │   │   │           │   │   ├── TransactionBeginning 2.php
│   │   │   │           │   │   ├── TransactionBeginning.php
│   │   │   │           │   │   ├── TransactionCommitted 2.php
│   │   │   │           │   │   ├── TransactionCommitted.php
│   │   │   │           │   │   ├── TransactionRolledBack 2.php
│   │   │   │           │   │   └── TransactionRolledBack.php
│   │   │   │           │   ├── Grammar 2.php
│   │   │   │           │   ├── Grammar.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── MigrationServiceProvider 2.php
│   │   │   │           │   ├── MigrationServiceProvider.php
│   │   │   │           │   ├── Migrations
│   │   │   │           │   │   ├── DatabaseMigrationRepository 2.php
│   │   │   │           │   │   ├── DatabaseMigrationRepository.php
│   │   │   │           │   │   ├── Migration 2.php
│   │   │   │           │   │   ├── Migration.php
│   │   │   │           │   │   ├── MigrationCreator 2.php
│   │   │   │           │   │   ├── MigrationCreator.php
│   │   │   │           │   │   ├── MigrationRepositoryInterface 2.php
│   │   │   │           │   │   ├── MigrationRepositoryInterface.php
│   │   │   │           │   │   ├── Migrator 2.php
│   │   │   │           │   │   ├── Migrator.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       ├── migration 2.stub
│   │   │   │           │   │       ├── migration.create 2.stub
│   │   │   │           │   │       ├── migration.create.stub
│   │   │   │           │   │       ├── migration.stub
│   │   │   │           │   │       ├── migration.update 2.stub
│   │   │   │           │   │       └── migration.update.stub
│   │   │   │           │   ├── MySqlConnection 2.php
│   │   │   │           │   ├── MySqlConnection.php
│   │   │   │           │   ├── PostgresConnection 2.php
│   │   │   │           │   ├── PostgresConnection.php
│   │   │   │           │   ├── Query
│   │   │   │           │   │   ├── Builder 2.php
│   │   │   │           │   │   ├── Builder.php
│   │   │   │           │   │   ├── Expression 2.php
│   │   │   │           │   │   ├── Expression.php
│   │   │   │           │   │   ├── Grammars
│   │   │   │           │   │   │   ├── Grammar 2.php
│   │   │   │           │   │   │   ├── Grammar.php
│   │   │   │           │   │   │   ├── MySqlGrammar 2.php
│   │   │   │           │   │   │   ├── MySqlGrammar.php
│   │   │   │           │   │   │   ├── PostgresGrammar 2.php
│   │   │   │           │   │   │   ├── PostgresGrammar.php
│   │   │   │           │   │   │   ├── SQLiteGrammar 2.php
│   │   │   │           │   │   │   ├── SQLiteGrammar.php
│   │   │   │           │   │   │   ├── SqlServerGrammar 2.php
│   │   │   │           │   │   │   └── SqlServerGrammar.php
│   │   │   │           │   │   ├── JoinClause 2.php
│   │   │   │           │   │   ├── JoinClause.php
│   │   │   │           │   │   └── Processors
│   │   │   │           │   │       ├── MySqlProcessor 2.php
│   │   │   │           │   │       ├── MySqlProcessor.php
│   │   │   │           │   │       ├── PostgresProcessor 2.php
│   │   │   │           │   │       ├── PostgresProcessor.php
│   │   │   │           │   │       ├── Processor 2.php
│   │   │   │           │   │       ├── Processor.php
│   │   │   │           │   │       ├── SQLiteProcessor 2.php
│   │   │   │           │   │       ├── SQLiteProcessor.php
│   │   │   │           │   │       ├── SqlServerProcessor 2.php
│   │   │   │           │   │       └── SqlServerProcessor.php
│   │   │   │           │   ├── QueryException 2.php
│   │   │   │           │   ├── QueryException.php
│   │   │   │           │   ├── README 2.md
│   │   │   │           │   ├── README.md
│   │   │   │           │   ├── SQLiteConnection 2.php
│   │   │   │           │   ├── SQLiteConnection.php
│   │   │   │           │   ├── Schema
│   │   │   │           │   │   ├── Blueprint 2.php
│   │   │   │           │   │   ├── Blueprint.php
│   │   │   │           │   │   ├── Builder 2.php
│   │   │   │           │   │   ├── Builder.php
│   │   │   │           │   │   ├── ColumnDefinition 2.php
│   │   │   │           │   │   ├── ColumnDefinition.php
│   │   │   │           │   │   ├── ForeignIdColumnDefinition 2.php
│   │   │   │           │   │   ├── ForeignIdColumnDefinition.php
│   │   │   │           │   │   ├── ForeignKeyDefinition 2.php
│   │   │   │           │   │   ├── ForeignKeyDefinition.php
│   │   │   │           │   │   ├── Grammars
│   │   │   │           │   │   │   ├── ChangeColumn 2.php
│   │   │   │           │   │   │   ├── ChangeColumn.php
│   │   │   │           │   │   │   ├── Grammar 2.php
│   │   │   │           │   │   │   ├── Grammar.php
│   │   │   │           │   │   │   ├── MySqlGrammar 2.php
│   │   │   │           │   │   │   ├── MySqlGrammar.php
│   │   │   │           │   │   │   ├── PostgresGrammar 2.php
│   │   │   │           │   │   │   ├── PostgresGrammar.php
│   │   │   │           │   │   │   ├── RenameColumn 2.php
│   │   │   │           │   │   │   ├── RenameColumn.php
│   │   │   │           │   │   │   ├── SQLiteGrammar 2.php
│   │   │   │           │   │   │   ├── SQLiteGrammar.php
│   │   │   │           │   │   │   ├── SqlServerGrammar 2.php
│   │   │   │           │   │   │   └── SqlServerGrammar.php
│   │   │   │           │   │   ├── MySqlBuilder 2.php
│   │   │   │           │   │   ├── MySqlBuilder.php
│   │   │   │           │   │   ├── PostgresBuilder 2.php
│   │   │   │           │   │   ├── PostgresBuilder.php
│   │   │   │           │   │   ├── SQLiteBuilder 2.php
│   │   │   │           │   │   ├── SQLiteBuilder.php
│   │   │   │           │   │   ├── SqlServerBuilder 2.php
│   │   │   │           │   │   └── SqlServerBuilder.php
│   │   │   │           │   ├── Seeder 2.php
│   │   │   │           │   ├── Seeder.php
│   │   │   │           │   ├── SqlServerConnection 2.php
│   │   │   │           │   ├── SqlServerConnection.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Encryption
│   │   │   │           │   ├── Encrypter 2.php
│   │   │   │           │   ├── Encrypter.php
│   │   │   │           │   ├── EncryptionServiceProvider 2.php
│   │   │   │           │   ├── EncryptionServiceProvider.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Events
│   │   │   │           │   ├── CallQueuedListener 2.php
│   │   │   │           │   ├── CallQueuedListener.php
│   │   │   │           │   ├── Dispatcher 2.php
│   │   │   │           │   ├── Dispatcher.php
│   │   │   │           │   ├── EventServiceProvider 2.php
│   │   │   │           │   ├── EventServiceProvider.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── NullDispatcher 2.php
│   │   │   │           │   ├── NullDispatcher.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Filesystem
│   │   │   │           │   ├── Cache 2.php
│   │   │   │           │   ├── Cache.php
│   │   │   │           │   ├── Filesystem 2.php
│   │   │   │           │   ├── Filesystem.php
│   │   │   │           │   ├── FilesystemAdapter 2.php
│   │   │   │           │   ├── FilesystemAdapter.php
│   │   │   │           │   ├── FilesystemManager 2.php
│   │   │   │           │   ├── FilesystemManager.php
│   │   │   │           │   ├── FilesystemServiceProvider 2.php
│   │   │   │           │   ├── FilesystemServiceProvider.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Foundation
│   │   │   │           │   ├── AliasLoader 2.php
│   │   │   │           │   ├── AliasLoader.php
│   │   │   │           │   ├── Application 2.php
│   │   │   │           │   ├── Application.php
│   │   │   │           │   ├── Auth
│   │   │   │           │   │   ├── Access
│   │   │   │           │   │   │   ├── Authorizable 2.php
│   │   │   │           │   │   │   ├── Authorizable.php
│   │   │   │           │   │   │   ├── AuthorizesRequests 2.php
│   │   │   │           │   │   │   └── AuthorizesRequests.php
│   │   │   │           │   │   ├── User 2.php
│   │   │   │           │   │   └── User.php
│   │   │   │           │   ├── Bootstrap
│   │   │   │           │   │   ├── BootProviders 2.php
│   │   │   │           │   │   ├── BootProviders.php
│   │   │   │           │   │   ├── HandleExceptions 2.php
│   │   │   │           │   │   ├── HandleExceptions.php
│   │   │   │           │   │   ├── LoadConfiguration 2.php
│   │   │   │           │   │   ├── LoadConfiguration.php
│   │   │   │           │   │   ├── LoadEnvironmentVariables 2.php
│   │   │   │           │   │   ├── LoadEnvironmentVariables.php
│   │   │   │           │   │   ├── RegisterFacades 2.php
│   │   │   │           │   │   ├── RegisterFacades.php
│   │   │   │           │   │   ├── RegisterProviders 2.php
│   │   │   │           │   │   ├── RegisterProviders.php
│   │   │   │           │   │   ├── SetRequestForConsole 2.php
│   │   │   │           │   │   └── SetRequestForConsole.php
│   │   │   │           │   ├── Bus
│   │   │   │           │   │   ├── Dispatchable 2.php
│   │   │   │           │   │   ├── Dispatchable.php
│   │   │   │           │   │   ├── DispatchesJobs 2.php
│   │   │   │           │   │   ├── DispatchesJobs.php
│   │   │   │           │   │   ├── PendingChain 2.php
│   │   │   │           │   │   ├── PendingChain.php
│   │   │   │           │   │   ├── PendingDispatch 2.php
│   │   │   │           │   │   └── PendingDispatch.php
│   │   │   │           │   ├── ComposerScripts 2.php
│   │   │   │           │   ├── ComposerScripts.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── CastMakeCommand 2.php
│   │   │   │           │   │   ├── CastMakeCommand.php
│   │   │   │           │   │   ├── ChannelMakeCommand 2.php
│   │   │   │           │   │   ├── ChannelMakeCommand.php
│   │   │   │           │   │   ├── ClearCompiledCommand 2.php
│   │   │   │           │   │   ├── ClearCompiledCommand.php
│   │   │   │           │   │   ├── ClosureCommand 2.php
│   │   │   │           │   │   ├── ClosureCommand.php
│   │   │   │           │   │   ├── ComponentMakeCommand 2.php
│   │   │   │           │   │   ├── ComponentMakeCommand.php
│   │   │   │           │   │   ├── ConfigCacheCommand 2.php
│   │   │   │           │   │   ├── ConfigCacheCommand.php
│   │   │   │           │   │   ├── ConfigClearCommand 2.php
│   │   │   │           │   │   ├── ConfigClearCommand.php
│   │   │   │           │   │   ├── ConsoleMakeCommand 2.php
│   │   │   │           │   │   ├── ConsoleMakeCommand.php
│   │   │   │           │   │   ├── DownCommand 2.php
│   │   │   │           │   │   ├── DownCommand.php
│   │   │   │           │   │   ├── EnvironmentCommand 2.php
│   │   │   │           │   │   ├── EnvironmentCommand.php
│   │   │   │           │   │   ├── EventCacheCommand 2.php
│   │   │   │           │   │   ├── EventCacheCommand.php
│   │   │   │           │   │   ├── EventClearCommand 2.php
│   │   │   │           │   │   ├── EventClearCommand.php
│   │   │   │           │   │   ├── EventGenerateCommand 2.php
│   │   │   │           │   │   ├── EventGenerateCommand.php
│   │   │   │           │   │   ├── EventListCommand 2.php
│   │   │   │           │   │   ├── EventListCommand.php
│   │   │   │           │   │   ├── EventMakeCommand 2.php
│   │   │   │           │   │   ├── EventMakeCommand.php
│   │   │   │           │   │   ├── ExceptionMakeCommand 2.php
│   │   │   │           │   │   ├── ExceptionMakeCommand.php
│   │   │   │           │   │   ├── JobMakeCommand 2.php
│   │   │   │           │   │   ├── JobMakeCommand.php
│   │   │   │           │   │   ├── Kernel 2.php
│   │   │   │           │   │   ├── Kernel.php
│   │   │   │           │   │   ├── KeyGenerateCommand 2.php
│   │   │   │           │   │   ├── KeyGenerateCommand.php
│   │   │   │           │   │   ├── ListenerMakeCommand 2.php
│   │   │   │           │   │   ├── ListenerMakeCommand.php
│   │   │   │           │   │   ├── MailMakeCommand 2.php
│   │   │   │           │   │   ├── MailMakeCommand.php
│   │   │   │           │   │   ├── ModelMakeCommand 2.php
│   │   │   │           │   │   ├── ModelMakeCommand.php
│   │   │   │           │   │   ├── NotificationMakeCommand 2.php
│   │   │   │           │   │   ├── NotificationMakeCommand.php
│   │   │   │           │   │   ├── ObserverMakeCommand 2.php
│   │   │   │           │   │   ├── ObserverMakeCommand.php
│   │   │   │           │   │   ├── OptimizeClearCommand 2.php
│   │   │   │           │   │   ├── OptimizeClearCommand.php
│   │   │   │           │   │   ├── OptimizeCommand 2.php
│   │   │   │           │   │   ├── OptimizeCommand.php
│   │   │   │           │   │   ├── PackageDiscoverCommand 2.php
│   │   │   │           │   │   ├── PackageDiscoverCommand.php
│   │   │   │           │   │   ├── PolicyMakeCommand 2.php
│   │   │   │           │   │   ├── PolicyMakeCommand.php
│   │   │   │           │   │   ├── ProviderMakeCommand 2.php
│   │   │   │           │   │   ├── ProviderMakeCommand.php
│   │   │   │           │   │   ├── QueuedCommand 2.php
│   │   │   │           │   │   ├── QueuedCommand.php
│   │   │   │           │   │   ├── RequestMakeCommand 2.php
│   │   │   │           │   │   ├── RequestMakeCommand.php
│   │   │   │           │   │   ├── ResourceMakeCommand 2.php
│   │   │   │           │   │   ├── ResourceMakeCommand.php
│   │   │   │           │   │   ├── RouteCacheCommand 2.php
│   │   │   │           │   │   ├── RouteCacheCommand.php
│   │   │   │           │   │   ├── RouteClearCommand 2.php
│   │   │   │           │   │   ├── RouteClearCommand.php
│   │   │   │           │   │   ├── RouteListCommand 2.php
│   │   │   │           │   │   ├── RouteListCommand.php
│   │   │   │           │   │   ├── RuleMakeCommand 2.php
│   │   │   │           │   │   ├── RuleMakeCommand.php
│   │   │   │           │   │   ├── ServeCommand 2.php
│   │   │   │           │   │   ├── ServeCommand.php
│   │   │   │           │   │   ├── StorageLinkCommand 2.php
│   │   │   │           │   │   ├── StorageLinkCommand.php
│   │   │   │           │   │   ├── StubPublishCommand 2.php
│   │   │   │           │   │   ├── StubPublishCommand.php
│   │   │   │           │   │   ├── TestMakeCommand 2.php
│   │   │   │           │   │   ├── TestMakeCommand.php
│   │   │   │           │   │   ├── UpCommand 2.php
│   │   │   │           │   │   ├── UpCommand.php
│   │   │   │           │   │   ├── VendorPublishCommand 2.php
│   │   │   │           │   │   ├── VendorPublishCommand.php
│   │   │   │           │   │   ├── ViewCacheCommand 2.php
│   │   │   │           │   │   ├── ViewCacheCommand.php
│   │   │   │           │   │   ├── ViewClearCommand 2.php
│   │   │   │           │   │   ├── ViewClearCommand.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       ├── cast 2.stub
│   │   │   │           │   │       ├── cast.stub
│   │   │   │           │   │       ├── channel 2.stub
│   │   │   │           │   │       ├── channel.stub
│   │   │   │           │   │       ├── console 2.stub
│   │   │   │           │   │       ├── console.stub
│   │   │   │           │   │       ├── event 2.stub
│   │   │   │           │   │       ├── event.stub
│   │   │   │           │   │       ├── exception 2.stub
│   │   │   │           │   │       ├── exception-render 2.stub
│   │   │   │           │   │       ├── exception-render-report 2.stub
│   │   │   │           │   │       ├── exception-render-report.stub
│   │   │   │           │   │       ├── exception-render.stub
│   │   │   │           │   │       ├── exception-report 2.stub
│   │   │   │           │   │       ├── exception-report.stub
│   │   │   │           │   │       ├── exception.stub
│   │   │   │           │   │       ├── job 2.stub
│   │   │   │           │   │       ├── job.queued 2.stub
│   │   │   │           │   │       ├── job.queued.stub
│   │   │   │           │   │       ├── job.stub
│   │   │   │           │   │       ├── listener 2.stub
│   │   │   │           │   │       ├── listener-duck 2.stub
│   │   │   │           │   │       ├── listener-duck.stub
│   │   │   │           │   │       ├── listener-queued 2.stub
│   │   │   │           │   │       ├── listener-queued-duck 2.stub
│   │   │   │           │   │       ├── listener-queued-duck.stub
│   │   │   │           │   │       ├── listener-queued.stub
│   │   │   │           │   │       ├── listener.stub
│   │   │   │           │   │       ├── mail 2.stub
│   │   │   │           │   │       ├── mail.stub
│   │   │   │           │   │       ├── markdown 2.stub
│   │   │   │           │   │       ├── markdown-mail 2.stub
│   │   │   │           │   │       ├── markdown-mail.stub
│   │   │   │           │   │       ├── markdown-notification 2.stub
│   │   │   │           │   │       ├── markdown-notification.stub
│   │   │   │           │   │       ├── markdown.stub
│   │   │   │           │   │       ├── model 2.stub
│   │   │   │           │   │       ├── model.pivot 2.stub
│   │   │   │           │   │       ├── model.pivot.stub
│   │   │   │           │   │       ├── model.stub
│   │   │   │           │   │       ├── notification 2.stub
│   │   │   │           │   │       ├── notification.stub
│   │   │   │           │   │       ├── observer 2.stub
│   │   │   │           │   │       ├── observer.plain 2.stub
│   │   │   │           │   │       ├── observer.plain.stub
│   │   │   │           │   │       ├── observer.stub
│   │   │   │           │   │       ├── policy 2.stub
│   │   │   │           │   │       ├── policy.plain 2.stub
│   │   │   │           │   │       ├── policy.plain.stub
│   │   │   │           │   │       ├── policy.stub
│   │   │   │           │   │       ├── provider 2.stub
│   │   │   │           │   │       ├── provider.stub
│   │   │   │           │   │       ├── request 2.stub
│   │   │   │           │   │       ├── request.stub
│   │   │   │           │   │       ├── resource 2.stub
│   │   │   │           │   │       ├── resource-collection 2.stub
│   │   │   │           │   │       ├── resource-collection.stub
│   │   │   │           │   │       ├── resource.stub
│   │   │   │           │   │       ├── routes 2.stub
│   │   │   │           │   │       ├── routes.stub
│   │   │   │           │   │       ├── rule 2.stub
│   │   │   │           │   │       ├── rule.stub
│   │   │   │           │   │       ├── test 2.stub
│   │   │   │           │   │       ├── test.stub
│   │   │   │           │   │       ├── test.unit 2.stub
│   │   │   │           │   │       ├── test.unit.stub
│   │   │   │           │   │       ├── view-component 2.stub
│   │   │   │           │   │       └── view-component.stub
│   │   │   │           │   ├── EnvironmentDetector 2.php
│   │   │   │           │   ├── EnvironmentDetector.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── DiscoverEvents 2.php
│   │   │   │           │   │   ├── DiscoverEvents.php
│   │   │   │           │   │   ├── Dispatchable 2.php
│   │   │   │           │   │   ├── Dispatchable.php
│   │   │   │           │   │   ├── LocaleUpdated 2.php
│   │   │   │           │   │   └── LocaleUpdated.php
│   │   │   │           │   ├── Exceptions
│   │   │   │           │   │   ├── Handler 2.php
│   │   │   │           │   │   ├── Handler.php
│   │   │   │           │   │   ├── WhoopsHandler 2.php
│   │   │   │           │   │   ├── WhoopsHandler.php
│   │   │   │           │   │   └── views
│   │   │   │           │   │       ├── 401.blade 2.php
│   │   │   │           │   │       ├── 401.blade.php
│   │   │   │           │   │       ├── 403.blade 2.php
│   │   │   │           │   │       ├── 403.blade.php
│   │   │   │           │   │       ├── 404.blade 2.php
│   │   │   │           │   │       ├── 404.blade.php
│   │   │   │           │   │       ├── 419.blade 2.php
│   │   │   │           │   │       ├── 419.blade.php
│   │   │   │           │   │       ├── 429.blade 2.php
│   │   │   │           │   │       ├── 429.blade.php
│   │   │   │           │   │       ├── 500.blade 2.php
│   │   │   │           │   │       ├── 500.blade.php
│   │   │   │           │   │       ├── 503.blade 2.php
│   │   │   │           │   │       ├── 503.blade.php
│   │   │   │           │   │       ├── illustrated-layout.blade 2.php
│   │   │   │           │   │       ├── illustrated-layout.blade.php
│   │   │   │           │   │       ├── layout.blade 2.php
│   │   │   │           │   │       ├── layout.blade.php
│   │   │   │           │   │       ├── minimal.blade 2.php
│   │   │   │           │   │       └── minimal.blade.php
│   │   │   │           │   ├── Http
│   │   │   │           │   │   ├── Events
│   │   │   │           │   │   │   ├── RequestHandled 2.php
│   │   │   │           │   │   │   └── RequestHandled.php
│   │   │   │           │   │   ├── Exceptions
│   │   │   │           │   │   │   ├── MaintenanceModeException 2.php
│   │   │   │           │   │   │   └── MaintenanceModeException.php
│   │   │   │           │   │   ├── FormRequest 2.php
│   │   │   │           │   │   ├── FormRequest.php
│   │   │   │           │   │   ├── Kernel 2.php
│   │   │   │           │   │   ├── Kernel.php
│   │   │   │           │   │   └── Middleware
│   │   │   │           │   │       ├── CheckForMaintenanceMode 2.php
│   │   │   │           │   │       ├── CheckForMaintenanceMode.php
│   │   │   │           │   │       ├── ConvertEmptyStringsToNull 2.php
│   │   │   │           │   │       ├── ConvertEmptyStringsToNull.php
│   │   │   │           │   │       ├── TransformsRequest 2.php
│   │   │   │           │   │       ├── TransformsRequest.php
│   │   │   │           │   │       ├── TrimStrings 2.php
│   │   │   │           │   │       ├── TrimStrings.php
│   │   │   │           │   │       ├── ValidatePostSize 2.php
│   │   │   │           │   │       ├── ValidatePostSize.php
│   │   │   │           │   │       ├── VerifyCsrfToken 2.php
│   │   │   │           │   │       └── VerifyCsrfToken.php
│   │   │   │           │   ├── Inspiring 2.php
│   │   │   │           │   ├── Inspiring.php
│   │   │   │           │   ├── Mix 2.php
│   │   │   │           │   ├── Mix.php
│   │   │   │           │   ├── PackageManifest 2.php
│   │   │   │           │   ├── PackageManifest.php
│   │   │   │           │   ├── ProviderRepository 2.php
│   │   │   │           │   ├── ProviderRepository.php
│   │   │   │           │   ├── Providers
│   │   │   │           │   │   ├── ArtisanServiceProvider 2.php
│   │   │   │           │   │   ├── ArtisanServiceProvider.php
│   │   │   │           │   │   ├── ComposerServiceProvider 2.php
│   │   │   │           │   │   ├── ComposerServiceProvider.php
│   │   │   │           │   │   ├── ConsoleSupportServiceProvider 2.php
│   │   │   │           │   │   ├── ConsoleSupportServiceProvider.php
│   │   │   │           │   │   ├── FormRequestServiceProvider 2.php
│   │   │   │           │   │   ├── FormRequestServiceProvider.php
│   │   │   │           │   │   ├── FoundationServiceProvider 2.php
│   │   │   │           │   │   └── FoundationServiceProvider.php
│   │   │   │           │   ├── Support
│   │   │   │           │   │   └── Providers
│   │   │   │           │   │       ├── AuthServiceProvider 2.php
│   │   │   │           │   │       ├── AuthServiceProvider.php
│   │   │   │           │   │       ├── EventServiceProvider 2.php
│   │   │   │           │   │       ├── EventServiceProvider.php
│   │   │   │           │   │       ├── RouteServiceProvider 2.php
│   │   │   │           │   │       └── RouteServiceProvider.php
│   │   │   │           │   ├── Testing
│   │   │   │           │   │   ├── Concerns
│   │   │   │           │   │   │   ├── InteractsWithAuthentication 2.php
│   │   │   │           │   │   │   ├── InteractsWithAuthentication.php
│   │   │   │           │   │   │   ├── InteractsWithConsole 2.php
│   │   │   │           │   │   │   ├── InteractsWithConsole.php
│   │   │   │           │   │   │   ├── InteractsWithContainer 2.php
│   │   │   │           │   │   │   ├── InteractsWithContainer.php
│   │   │   │           │   │   │   ├── InteractsWithDatabase 2.php
│   │   │   │           │   │   │   ├── InteractsWithDatabase.php
│   │   │   │           │   │   │   ├── InteractsWithExceptionHandling 2.php
│   │   │   │           │   │   │   ├── InteractsWithExceptionHandling.php
│   │   │   │           │   │   │   ├── InteractsWithRedis 2.php
│   │   │   │           │   │   │   ├── InteractsWithRedis.php
│   │   │   │           │   │   │   ├── InteractsWithSession 2.php
│   │   │   │           │   │   │   ├── InteractsWithSession.php
│   │   │   │           │   │   │   ├── MakesHttpRequests 2.php
│   │   │   │           │   │   │   ├── MakesHttpRequests.php
│   │   │   │           │   │   │   ├── MocksApplicationServices 2.php
│   │   │   │           │   │   │   └── MocksApplicationServices.php
│   │   │   │           │   │   ├── DatabaseMigrations 2.php
│   │   │   │           │   │   ├── DatabaseMigrations.php
│   │   │   │           │   │   ├── DatabaseTransactions 2.php
│   │   │   │           │   │   ├── DatabaseTransactions.php
│   │   │   │           │   │   ├── RefreshDatabase 2.php
│   │   │   │           │   │   ├── RefreshDatabase.php
│   │   │   │           │   │   ├── RefreshDatabaseState 2.php
│   │   │   │           │   │   ├── RefreshDatabaseState.php
│   │   │   │           │   │   ├── TestCase 2.php
│   │   │   │           │   │   ├── TestCase.php
│   │   │   │           │   │   ├── WithFaker 2.php
│   │   │   │           │   │   ├── WithFaker.php
│   │   │   │           │   │   ├── WithoutEvents 2.php
│   │   │   │           │   │   ├── WithoutEvents.php
│   │   │   │           │   │   ├── WithoutMiddleware 2.php
│   │   │   │           │   │   └── WithoutMiddleware.php
│   │   │   │           │   ├── Validation
│   │   │   │           │   │   ├── ValidatesRequests 2.php
│   │   │   │           │   │   └── ValidatesRequests.php
│   │   │   │           │   ├── helpers 2.php
│   │   │   │           │   ├── helpers.php
│   │   │   │           │   └── stubs
│   │   │   │           │       ├── facade 2.stub
│   │   │   │           │       └── facade.stub
│   │   │   │           ├── Hashing
│   │   │   │           │   ├── AbstractHasher 2.php
│   │   │   │           │   ├── AbstractHasher.php
│   │   │   │           │   ├── Argon2IdHasher 2.php
│   │   │   │           │   ├── Argon2IdHasher.php
│   │   │   │           │   ├── ArgonHasher 2.php
│   │   │   │           │   ├── ArgonHasher.php
│   │   │   │           │   ├── BcryptHasher 2.php
│   │   │   │           │   ├── BcryptHasher.php
│   │   │   │           │   ├── HashManager 2.php
│   │   │   │           │   ├── HashManager.php
│   │   │   │           │   ├── HashServiceProvider 2.php
│   │   │   │           │   ├── HashServiceProvider.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Http
│   │   │   │           │   ├── Client
│   │   │   │           │   │   ├── ConnectionException 2.php
│   │   │   │           │   │   ├── ConnectionException.php
│   │   │   │           │   │   ├── Factory 2.php
│   │   │   │           │   │   ├── Factory.php
│   │   │   │           │   │   ├── HttpClientException 2.php
│   │   │   │           │   │   ├── HttpClientException.php
│   │   │   │           │   │   ├── PendingRequest 2.php
│   │   │   │           │   │   ├── PendingRequest.php
│   │   │   │           │   │   ├── Request 2.php
│   │   │   │           │   │   ├── Request.php
│   │   │   │           │   │   ├── RequestException 2.php
│   │   │   │           │   │   ├── RequestException.php
│   │   │   │           │   │   ├── Response 2.php
│   │   │   │           │   │   ├── Response.php
│   │   │   │           │   │   ├── ResponseSequence 2.php
│   │   │   │           │   │   └── ResponseSequence.php
│   │   │   │           │   ├── Concerns
│   │   │   │           │   │   ├── InteractsWithContentTypes 2.php
│   │   │   │           │   │   ├── InteractsWithContentTypes.php
│   │   │   │           │   │   ├── InteractsWithFlashData 2.php
│   │   │   │           │   │   ├── InteractsWithFlashData.php
│   │   │   │           │   │   ├── InteractsWithInput 2.php
│   │   │   │           │   │   └── InteractsWithInput.php
│   │   │   │           │   ├── Exceptions
│   │   │   │           │   │   ├── HttpResponseException 2.php
│   │   │   │           │   │   ├── HttpResponseException.php
│   │   │   │           │   │   ├── PostTooLargeException 2.php
│   │   │   │           │   │   ├── PostTooLargeException.php
│   │   │   │           │   │   ├── ThrottleRequestsException 2.php
│   │   │   │           │   │   └── ThrottleRequestsException.php
│   │   │   │           │   ├── File 2.php
│   │   │   │           │   ├── File.php
│   │   │   │           │   ├── FileHelpers 2.php
│   │   │   │           │   ├── FileHelpers.php
│   │   │   │           │   ├── JsonResponse 2.php
│   │   │   │           │   ├── JsonResponse.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Middleware
│   │   │   │           │   │   ├── CheckResponseForModifications 2.php
│   │   │   │           │   │   ├── CheckResponseForModifications.php
│   │   │   │           │   │   ├── FrameGuard 2.php
│   │   │   │           │   │   ├── FrameGuard.php
│   │   │   │           │   │   ├── SetCacheHeaders 2.php
│   │   │   │           │   │   ├── SetCacheHeaders.php
│   │   │   │           │   │   ├── TrustHosts 2.php
│   │   │   │           │   │   └── TrustHosts.php
│   │   │   │           │   ├── RedirectResponse 2.php
│   │   │   │           │   ├── RedirectResponse.php
│   │   │   │           │   ├── Request 2.php
│   │   │   │           │   ├── Request.php
│   │   │   │           │   ├── Resources
│   │   │   │           │   │   ├── CollectsResources 2.php
│   │   │   │           │   │   ├── CollectsResources.php
│   │   │   │           │   │   ├── ConditionallyLoadsAttributes 2.php
│   │   │   │           │   │   ├── ConditionallyLoadsAttributes.php
│   │   │   │           │   │   ├── DelegatesToResource 2.php
│   │   │   │           │   │   ├── DelegatesToResource.php
│   │   │   │           │   │   ├── Json
│   │   │   │           │   │   │   ├── AnonymousResourceCollection 2.php
│   │   │   │           │   │   │   ├── AnonymousResourceCollection.php
│   │   │   │           │   │   │   ├── JsonResource 2.php
│   │   │   │           │   │   │   ├── JsonResource.php
│   │   │   │           │   │   │   ├── PaginatedResourceResponse 2.php
│   │   │   │           │   │   │   ├── PaginatedResourceResponse.php
│   │   │   │           │   │   │   ├── ResourceCollection 2.php
│   │   │   │           │   │   │   ├── ResourceCollection.php
│   │   │   │           │   │   │   ├── ResourceResponse 2.php
│   │   │   │           │   │   │   └── ResourceResponse.php
│   │   │   │           │   │   ├── MergeValue 2.php
│   │   │   │           │   │   ├── MergeValue.php
│   │   │   │           │   │   ├── MissingValue 2.php
│   │   │   │           │   │   ├── MissingValue.php
│   │   │   │           │   │   ├── PotentiallyMissing 2.php
│   │   │   │           │   │   └── PotentiallyMissing.php
│   │   │   │           │   ├── Response 2.php
│   │   │   │           │   ├── Response.php
│   │   │   │           │   ├── ResponseTrait 2.php
│   │   │   │           │   ├── ResponseTrait.php
│   │   │   │           │   ├── Testing
│   │   │   │           │   │   ├── File 2.php
│   │   │   │           │   │   ├── File.php
│   │   │   │           │   │   ├── FileFactory 2.php
│   │   │   │           │   │   ├── FileFactory.php
│   │   │   │           │   │   ├── MimeType 2.php
│   │   │   │           │   │   └── MimeType.php
│   │   │   │           │   ├── UploadedFile 2.php
│   │   │   │           │   ├── UploadedFile.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Log
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── MessageLogged 2.php
│   │   │   │           │   │   └── MessageLogged.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── LogManager 2.php
│   │   │   │           │   ├── LogManager.php
│   │   │   │           │   ├── LogServiceProvider 2.php
│   │   │   │           │   ├── LogServiceProvider.php
│   │   │   │           │   ├── Logger 2.php
│   │   │   │           │   ├── Logger.php
│   │   │   │           │   ├── ParsesLogConfiguration 2.php
│   │   │   │           │   ├── ParsesLogConfiguration.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Mail
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── MessageSending 2.php
│   │   │   │           │   │   ├── MessageSending.php
│   │   │   │           │   │   ├── MessageSent 2.php
│   │   │   │           │   │   └── MessageSent.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── MailManager 2.php
│   │   │   │           │   ├── MailManager.php
│   │   │   │           │   ├── MailServiceProvider 2.php
│   │   │   │           │   ├── MailServiceProvider.php
│   │   │   │           │   ├── Mailable 2.php
│   │   │   │           │   ├── Mailable.php
│   │   │   │           │   ├── Mailer 2.php
│   │   │   │           │   ├── Mailer.php
│   │   │   │           │   ├── Markdown 2.php
│   │   │   │           │   ├── Markdown.php
│   │   │   │           │   ├── Message 2.php
│   │   │   │           │   ├── Message.php
│   │   │   │           │   ├── PendingMail 2.php
│   │   │   │           │   ├── PendingMail.php
│   │   │   │           │   ├── SendQueuedMailable 2.php
│   │   │   │           │   ├── SendQueuedMailable.php
│   │   │   │           │   ├── Transport
│   │   │   │           │   │   ├── ArrayTransport 2.php
│   │   │   │           │   │   ├── ArrayTransport.php
│   │   │   │           │   │   ├── LogTransport 2.php
│   │   │   │           │   │   ├── LogTransport.php
│   │   │   │           │   │   ├── MailgunTransport 2.php
│   │   │   │           │   │   ├── MailgunTransport.php
│   │   │   │           │   │   ├── SesTransport 2.php
│   │   │   │           │   │   ├── SesTransport.php
│   │   │   │           │   │   ├── Transport 2.php
│   │   │   │           │   │   └── Transport.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   ├── composer.json
│   │   │   │           │   └── resources
│   │   │   │           │       └── views
│   │   │   │           │           ├── html
│   │   │   │           │           │   ├── button.blade 2.php
│   │   │   │           │           │   ├── button.blade.php
│   │   │   │           │           │   ├── footer.blade 2.php
│   │   │   │           │           │   ├── footer.blade.php
│   │   │   │           │           │   ├── header.blade 2.php
│   │   │   │           │           │   ├── header.blade.php
│   │   │   │           │           │   ├── layout.blade 2.php
│   │   │   │           │           │   ├── layout.blade.php
│   │   │   │           │           │   ├── message.blade 2.php
│   │   │   │           │           │   ├── message.blade.php
│   │   │   │           │           │   ├── panel.blade 2.php
│   │   │   │           │           │   ├── panel.blade.php
│   │   │   │           │           │   ├── subcopy.blade 2.php
│   │   │   │           │           │   ├── subcopy.blade.php
│   │   │   │           │           │   ├── table.blade 2.php
│   │   │   │           │           │   ├── table.blade.php
│   │   │   │           │           │   └── themes
│   │   │   │           │           │       ├── default 2.css
│   │   │   │           │           │       └── default.css
│   │   │   │           │           └── text
│   │   │   │           │               ├── button.blade 2.php
│   │   │   │           │               ├── button.blade.php
│   │   │   │           │               ├── footer.blade 2.php
│   │   │   │           │               ├── footer.blade.php
│   │   │   │           │               ├── header.blade 2.php
│   │   │   │           │               ├── header.blade.php
│   │   │   │           │               ├── layout.blade 2.php
│   │   │   │           │               ├── layout.blade.php
│   │   │   │           │               ├── message.blade 2.php
│   │   │   │           │               ├── message.blade.php
│   │   │   │           │               ├── panel.blade 2.php
│   │   │   │           │               ├── panel.blade.php
│   │   │   │           │               ├── subcopy.blade 2.php
│   │   │   │           │               ├── subcopy.blade.php
│   │   │   │           │               ├── table.blade 2.php
│   │   │   │           │               └── table.blade.php
│   │   │   │           ├── Notifications
│   │   │   │           │   ├── Action 2.php
│   │   │   │           │   ├── Action.php
│   │   │   │           │   ├── AnonymousNotifiable 2.php
│   │   │   │           │   ├── AnonymousNotifiable.php
│   │   │   │           │   ├── ChannelManager 2.php
│   │   │   │           │   ├── ChannelManager.php
│   │   │   │           │   ├── Channels
│   │   │   │           │   │   ├── BroadcastChannel 2.php
│   │   │   │           │   │   ├── BroadcastChannel.php
│   │   │   │           │   │   ├── DatabaseChannel 2.php
│   │   │   │           │   │   ├── DatabaseChannel.php
│   │   │   │           │   │   ├── MailChannel 2.php
│   │   │   │           │   │   └── MailChannel.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── NotificationTableCommand 2.php
│   │   │   │           │   │   ├── NotificationTableCommand.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       ├── notifications 2.stub
│   │   │   │           │   │       └── notifications.stub
│   │   │   │           │   ├── DatabaseNotification 2.php
│   │   │   │           │   ├── DatabaseNotification.php
│   │   │   │           │   ├── DatabaseNotificationCollection 2.php
│   │   │   │           │   ├── DatabaseNotificationCollection.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── BroadcastNotificationCreated 2.php
│   │   │   │           │   │   ├── BroadcastNotificationCreated.php
│   │   │   │           │   │   ├── NotificationFailed 2.php
│   │   │   │           │   │   ├── NotificationFailed.php
│   │   │   │           │   │   ├── NotificationSending 2.php
│   │   │   │           │   │   ├── NotificationSending.php
│   │   │   │           │   │   ├── NotificationSent 2.php
│   │   │   │           │   │   └── NotificationSent.php
│   │   │   │           │   ├── HasDatabaseNotifications 2.php
│   │   │   │           │   ├── HasDatabaseNotifications.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Messages
│   │   │   │           │   │   ├── BroadcastMessage 2.php
│   │   │   │           │   │   ├── BroadcastMessage.php
│   │   │   │           │   │   ├── DatabaseMessage 2.php
│   │   │   │           │   │   ├── DatabaseMessage.php
│   │   │   │           │   │   ├── MailMessage 2.php
│   │   │   │           │   │   ├── MailMessage.php
│   │   │   │           │   │   ├── SimpleMessage 2.php
│   │   │   │           │   │   └── SimpleMessage.php
│   │   │   │           │   ├── Notifiable 2.php
│   │   │   │           │   ├── Notifiable.php
│   │   │   │           │   ├── Notification 2.php
│   │   │   │           │   ├── Notification.php
│   │   │   │           │   ├── NotificationSender 2.php
│   │   │   │           │   ├── NotificationSender.php
│   │   │   │           │   ├── NotificationServiceProvider 2.php
│   │   │   │           │   ├── NotificationServiceProvider.php
│   │   │   │           │   ├── RoutesNotifications 2.php
│   │   │   │           │   ├── RoutesNotifications.php
│   │   │   │           │   ├── SendQueuedNotifications 2.php
│   │   │   │           │   ├── SendQueuedNotifications.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   ├── composer.json
│   │   │   │           │   └── resources
│   │   │   │           │       └── views
│   │   │   │           │           ├── email.blade 2.php
│   │   │   │           │           └── email.blade.php
│   │   │   │           ├── Pagination
│   │   │   │           │   ├── AbstractPaginator 2.php
│   │   │   │           │   ├── AbstractPaginator.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── LengthAwarePaginator 2.php
│   │   │   │           │   ├── LengthAwarePaginator.php
│   │   │   │           │   ├── PaginationServiceProvider 2.php
│   │   │   │           │   ├── PaginationServiceProvider.php
│   │   │   │           │   ├── Paginator 2.php
│   │   │   │           │   ├── Paginator.php
│   │   │   │           │   ├── UrlWindow 2.php
│   │   │   │           │   ├── UrlWindow.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   ├── composer.json
│   │   │   │           │   └── resources
│   │   │   │           │       └── views
│   │   │   │           │           ├── bootstrap-4.blade 2.php
│   │   │   │           │           ├── bootstrap-4.blade.php
│   │   │   │           │           ├── default.blade 2.php
│   │   │   │           │           ├── default.blade.php
│   │   │   │           │           ├── semantic-ui.blade 2.php
│   │   │   │           │           ├── semantic-ui.blade.php
│   │   │   │           │           ├── simple-bootstrap-4.blade 2.php
│   │   │   │           │           ├── simple-bootstrap-4.blade.php
│   │   │   │           │           ├── simple-default.blade 2.php
│   │   │   │           │           ├── simple-default.blade.php
│   │   │   │           │           ├── simple-tailwind.blade 2.php
│   │   │   │           │           ├── simple-tailwind.blade.php
│   │   │   │           │           ├── tailwind.blade 2.php
│   │   │   │           │           └── tailwind.blade.php
│   │   │   │           ├── Pipeline
│   │   │   │           │   ├── Hub 2.php
│   │   │   │           │   ├── Hub.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Pipeline 2.php
│   │   │   │           │   ├── Pipeline.php
│   │   │   │           │   ├── PipelineServiceProvider 2.php
│   │   │   │           │   ├── PipelineServiceProvider.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Queue
│   │   │   │           │   ├── BeanstalkdQueue 2.php
│   │   │   │           │   ├── BeanstalkdQueue.php
│   │   │   │           │   ├── CallQueuedClosure 2.php
│   │   │   │           │   ├── CallQueuedClosure.php
│   │   │   │           │   ├── CallQueuedHandler 2.php
│   │   │   │           │   ├── CallQueuedHandler.php
│   │   │   │           │   ├── Capsule
│   │   │   │           │   │   ├── Manager 2.php
│   │   │   │           │   │   └── Manager.php
│   │   │   │           │   ├── Connectors
│   │   │   │           │   │   ├── BeanstalkdConnector 2.php
│   │   │   │           │   │   ├── BeanstalkdConnector.php
│   │   │   │           │   │   ├── ConnectorInterface 2.php
│   │   │   │           │   │   ├── ConnectorInterface.php
│   │   │   │           │   │   ├── DatabaseConnector 2.php
│   │   │   │           │   │   ├── DatabaseConnector.php
│   │   │   │           │   │   ├── NullConnector 2.php
│   │   │   │           │   │   ├── NullConnector.php
│   │   │   │           │   │   ├── RedisConnector 2.php
│   │   │   │           │   │   ├── RedisConnector.php
│   │   │   │           │   │   ├── SqsConnector 2.php
│   │   │   │           │   │   ├── SqsConnector.php
│   │   │   │           │   │   ├── SyncConnector 2.php
│   │   │   │           │   │   └── SyncConnector.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── FailedTableCommand 2.php
│   │   │   │           │   │   ├── FailedTableCommand.php
│   │   │   │           │   │   ├── FlushFailedCommand 2.php
│   │   │   │           │   │   ├── FlushFailedCommand.php
│   │   │   │           │   │   ├── ForgetFailedCommand 2.php
│   │   │   │           │   │   ├── ForgetFailedCommand.php
│   │   │   │           │   │   ├── ListFailedCommand 2.php
│   │   │   │           │   │   ├── ListFailedCommand.php
│   │   │   │           │   │   ├── ListenCommand 2.php
│   │   │   │           │   │   ├── ListenCommand.php
│   │   │   │           │   │   ├── RestartCommand 2.php
│   │   │   │           │   │   ├── RestartCommand.php
│   │   │   │           │   │   ├── RetryCommand 2.php
│   │   │   │           │   │   ├── RetryCommand.php
│   │   │   │           │   │   ├── TableCommand 2.php
│   │   │   │           │   │   ├── TableCommand.php
│   │   │   │           │   │   ├── WorkCommand 2.php
│   │   │   │           │   │   ├── WorkCommand.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       ├── failed_jobs 2.stub
│   │   │   │           │   │       ├── failed_jobs.stub
│   │   │   │           │   │       ├── jobs 2.stub
│   │   │   │           │   │       └── jobs.stub
│   │   │   │           │   ├── DatabaseQueue 2.php
│   │   │   │           │   ├── DatabaseQueue.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── JobExceptionOccurred 2.php
│   │   │   │           │   │   ├── JobExceptionOccurred.php
│   │   │   │           │   │   ├── JobFailed 2.php
│   │   │   │           │   │   ├── JobFailed.php
│   │   │   │           │   │   ├── JobProcessed 2.php
│   │   │   │           │   │   ├── JobProcessed.php
│   │   │   │           │   │   ├── JobProcessing 2.php
│   │   │   │           │   │   ├── JobProcessing.php
│   │   │   │           │   │   ├── Looping 2.php
│   │   │   │           │   │   ├── Looping.php
│   │   │   │           │   │   ├── WorkerStopping 2.php
│   │   │   │           │   │   └── WorkerStopping.php
│   │   │   │           │   ├── Failed
│   │   │   │           │   │   ├── DatabaseFailedJobProvider 2.php
│   │   │   │           │   │   ├── DatabaseFailedJobProvider.php
│   │   │   │           │   │   ├── DynamoDbFailedJobProvider 2.php
│   │   │   │           │   │   ├── DynamoDbFailedJobProvider.php
│   │   │   │           │   │   ├── FailedJobProviderInterface 2.php
│   │   │   │           │   │   ├── FailedJobProviderInterface.php
│   │   │   │           │   │   ├── NullFailedJobProvider 2.php
│   │   │   │           │   │   └── NullFailedJobProvider.php
│   │   │   │           │   ├── InteractsWithQueue 2.php
│   │   │   │           │   ├── InteractsWithQueue.php
│   │   │   │           │   ├── InvalidPayloadException 2.php
│   │   │   │           │   ├── InvalidPayloadException.php
│   │   │   │           │   ├── Jobs
│   │   │   │           │   │   ├── BeanstalkdJob 2.php
│   │   │   │           │   │   ├── BeanstalkdJob.php
│   │   │   │           │   │   ├── DatabaseJob 2.php
│   │   │   │           │   │   ├── DatabaseJob.php
│   │   │   │           │   │   ├── DatabaseJobRecord 2.php
│   │   │   │           │   │   ├── DatabaseJobRecord.php
│   │   │   │           │   │   ├── Job 2.php
│   │   │   │           │   │   ├── Job.php
│   │   │   │           │   │   ├── JobName 2.php
│   │   │   │           │   │   ├── JobName.php
│   │   │   │           │   │   ├── RedisJob 2.php
│   │   │   │           │   │   ├── RedisJob.php
│   │   │   │           │   │   ├── SqsJob 2.php
│   │   │   │           │   │   ├── SqsJob.php
│   │   │   │           │   │   ├── SyncJob 2.php
│   │   │   │           │   │   └── SyncJob.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Listener 2.php
│   │   │   │           │   ├── Listener.php
│   │   │   │           │   ├── ListenerOptions 2.php
│   │   │   │           │   ├── ListenerOptions.php
│   │   │   │           │   ├── LuaScripts 2.php
│   │   │   │           │   ├── LuaScripts.php
│   │   │   │           │   ├── ManuallyFailedException 2.php
│   │   │   │           │   ├── ManuallyFailedException.php
│   │   │   │           │   ├── MaxAttemptsExceededException 2.php
│   │   │   │           │   ├── MaxAttemptsExceededException.php
│   │   │   │           │   ├── NullQueue 2.php
│   │   │   │           │   ├── NullQueue.php
│   │   │   │           │   ├── Queue 2.php
│   │   │   │           │   ├── Queue.php
│   │   │   │           │   ├── QueueManager 2.php
│   │   │   │           │   ├── QueueManager.php
│   │   │   │           │   ├── QueueServiceProvider 2.php
│   │   │   │           │   ├── QueueServiceProvider.php
│   │   │   │           │   ├── README 2.md
│   │   │   │           │   ├── README.md
│   │   │   │           │   ├── RedisQueue 2.php
│   │   │   │           │   ├── RedisQueue.php
│   │   │   │           │   ├── SerializableClosure 2.php
│   │   │   │           │   ├── SerializableClosure.php
│   │   │   │           │   ├── SerializesAndRestoresModelIdentifiers 2.php
│   │   │   │           │   ├── SerializesAndRestoresModelIdentifiers.php
│   │   │   │           │   ├── SerializesModels 2.php
│   │   │   │           │   ├── SerializesModels.php
│   │   │   │           │   ├── SqsQueue 2.php
│   │   │   │           │   ├── SqsQueue.php
│   │   │   │           │   ├── SyncQueue 2.php
│   │   │   │           │   ├── SyncQueue.php
│   │   │   │           │   ├── Worker 2.php
│   │   │   │           │   ├── Worker.php
│   │   │   │           │   ├── WorkerOptions 2.php
│   │   │   │           │   ├── WorkerOptions.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Redis
│   │   │   │           │   ├── Connections
│   │   │   │           │   │   ├── Connection 2.php
│   │   │   │           │   │   ├── Connection.php
│   │   │   │           │   │   ├── PhpRedisClusterConnection 2.php
│   │   │   │           │   │   ├── PhpRedisClusterConnection.php
│   │   │   │           │   │   ├── PhpRedisConnection 2.php
│   │   │   │           │   │   ├── PhpRedisConnection.php
│   │   │   │           │   │   ├── PredisClusterConnection 2.php
│   │   │   │           │   │   ├── PredisClusterConnection.php
│   │   │   │           │   │   ├── PredisConnection 2.php
│   │   │   │           │   │   └── PredisConnection.php
│   │   │   │           │   ├── Connectors
│   │   │   │           │   │   ├── PhpRedisConnector 2.php
│   │   │   │           │   │   ├── PhpRedisConnector.php
│   │   │   │           │   │   ├── PredisConnector 2.php
│   │   │   │           │   │   └── PredisConnector.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── CommandExecuted 2.php
│   │   │   │           │   │   └── CommandExecuted.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Limiters
│   │   │   │           │   │   ├── ConcurrencyLimiter 2.php
│   │   │   │           │   │   ├── ConcurrencyLimiter.php
│   │   │   │           │   │   ├── ConcurrencyLimiterBuilder 2.php
│   │   │   │           │   │   ├── ConcurrencyLimiterBuilder.php
│   │   │   │           │   │   ├── DurationLimiter 2.php
│   │   │   │           │   │   ├── DurationLimiter.php
│   │   │   │           │   │   ├── DurationLimiterBuilder 2.php
│   │   │   │           │   │   └── DurationLimiterBuilder.php
│   │   │   │           │   ├── RedisManager 2.php
│   │   │   │           │   ├── RedisManager.php
│   │   │   │           │   ├── RedisServiceProvider 2.php
│   │   │   │           │   ├── RedisServiceProvider.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Routing
│   │   │   │           │   ├── AbstractRouteCollection 2.php
│   │   │   │           │   ├── AbstractRouteCollection.php
│   │   │   │           │   ├── CompiledRouteCollection 2.php
│   │   │   │           │   ├── CompiledRouteCollection.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── ControllerMakeCommand 2.php
│   │   │   │           │   │   ├── ControllerMakeCommand.php
│   │   │   │           │   │   ├── MiddlewareMakeCommand 2.php
│   │   │   │           │   │   ├── MiddlewareMakeCommand.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       ├── controller 2.stub
│   │   │   │           │   │       ├── controller.api 2.stub
│   │   │   │           │   │       ├── controller.api.stub
│   │   │   │           │   │       ├── controller.invokable 2.stub
│   │   │   │           │   │       ├── controller.invokable.stub
│   │   │   │           │   │       ├── controller.model 2.stub
│   │   │   │           │   │       ├── controller.model.api 2.stub
│   │   │   │           │   │       ├── controller.model.api.stub
│   │   │   │           │   │       ├── controller.model.stub
│   │   │   │           │   │       ├── controller.nested 2.stub
│   │   │   │           │   │       ├── controller.nested.api 2.stub
│   │   │   │           │   │       ├── controller.nested.api.stub
│   │   │   │           │   │       ├── controller.nested.stub
│   │   │   │           │   │       ├── controller.plain 2.stub
│   │   │   │           │   │       ├── controller.plain.stub
│   │   │   │           │   │       ├── controller.stub
│   │   │   │           │   │       ├── middleware 2.stub
│   │   │   │           │   │       └── middleware.stub
│   │   │   │           │   ├── Contracts
│   │   │   │           │   │   ├── ControllerDispatcher 2.php
│   │   │   │           │   │   └── ControllerDispatcher.php
│   │   │   │           │   ├── Controller 2.php
│   │   │   │           │   ├── Controller.php
│   │   │   │           │   ├── ControllerDispatcher 2.php
│   │   │   │           │   ├── ControllerDispatcher.php
│   │   │   │           │   ├── ControllerMiddlewareOptions 2.php
│   │   │   │           │   ├── ControllerMiddlewareOptions.php
│   │   │   │           │   ├── Events
│   │   │   │           │   │   ├── RouteMatched 2.php
│   │   │   │           │   │   └── RouteMatched.php
│   │   │   │           │   ├── Exceptions
│   │   │   │           │   │   ├── InvalidSignatureException 2.php
│   │   │   │           │   │   ├── InvalidSignatureException.php
│   │   │   │           │   │   ├── UrlGenerationException 2.php
│   │   │   │           │   │   └── UrlGenerationException.php
│   │   │   │           │   ├── ImplicitRouteBinding 2.php
│   │   │   │           │   ├── ImplicitRouteBinding.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Matching
│   │   │   │           │   │   ├── HostValidator 2.php
│   │   │   │           │   │   ├── HostValidator.php
│   │   │   │           │   │   ├── MethodValidator 2.php
│   │   │   │           │   │   ├── MethodValidator.php
│   │   │   │           │   │   ├── SchemeValidator 2.php
│   │   │   │           │   │   ├── SchemeValidator.php
│   │   │   │           │   │   ├── UriValidator 2.php
│   │   │   │           │   │   ├── UriValidator.php
│   │   │   │           │   │   ├── ValidatorInterface 2.php
│   │   │   │           │   │   └── ValidatorInterface.php
│   │   │   │           │   ├── Middleware
│   │   │   │           │   │   ├── SubstituteBindings 2.php
│   │   │   │           │   │   ├── SubstituteBindings.php
│   │   │   │           │   │   ├── ThrottleRequests 2.php
│   │   │   │           │   │   ├── ThrottleRequests.php
│   │   │   │           │   │   ├── ThrottleRequestsWithRedis 2.php
│   │   │   │           │   │   ├── ThrottleRequestsWithRedis.php
│   │   │   │           │   │   ├── ValidateSignature 2.php
│   │   │   │           │   │   └── ValidateSignature.php
│   │   │   │           │   ├── MiddlewareNameResolver 2.php
│   │   │   │           │   ├── MiddlewareNameResolver.php
│   │   │   │           │   ├── PendingResourceRegistration 2.php
│   │   │   │           │   ├── PendingResourceRegistration.php
│   │   │   │           │   ├── Pipeline 2.php
│   │   │   │           │   ├── Pipeline.php
│   │   │   │           │   ├── RedirectController 2.php
│   │   │   │           │   ├── RedirectController.php
│   │   │   │           │   ├── Redirector 2.php
│   │   │   │           │   ├── Redirector.php
│   │   │   │           │   ├── ResourceRegistrar 2.php
│   │   │   │           │   ├── ResourceRegistrar.php
│   │   │   │           │   ├── ResponseFactory 2.php
│   │   │   │           │   ├── ResponseFactory.php
│   │   │   │           │   ├── Route 2.php
│   │   │   │           │   ├── Route.php
│   │   │   │           │   ├── RouteAction 2.php
│   │   │   │           │   ├── RouteAction.php
│   │   │   │           │   ├── RouteBinding 2.php
│   │   │   │           │   ├── RouteBinding.php
│   │   │   │           │   ├── RouteCollection 2.php
│   │   │   │           │   ├── RouteCollection.php
│   │   │   │           │   ├── RouteCollectionInterface 2.php
│   │   │   │           │   ├── RouteCollectionInterface.php
│   │   │   │           │   ├── RouteDependencyResolverTrait 2.php
│   │   │   │           │   ├── RouteDependencyResolverTrait.php
│   │   │   │           │   ├── RouteFileRegistrar 2.php
│   │   │   │           │   ├── RouteFileRegistrar.php
│   │   │   │           │   ├── RouteGroup 2.php
│   │   │   │           │   ├── RouteGroup.php
│   │   │   │           │   ├── RouteParameterBinder 2.php
│   │   │   │           │   ├── RouteParameterBinder.php
│   │   │   │           │   ├── RouteRegistrar 2.php
│   │   │   │           │   ├── RouteRegistrar.php
│   │   │   │           │   ├── RouteSignatureParameters 2.php
│   │   │   │           │   ├── RouteSignatureParameters.php
│   │   │   │           │   ├── RouteUri 2.php
│   │   │   │           │   ├── RouteUri.php
│   │   │   │           │   ├── RouteUrlGenerator 2.php
│   │   │   │           │   ├── RouteUrlGenerator.php
│   │   │   │           │   ├── Router 2.php
│   │   │   │           │   ├── Router.php
│   │   │   │           │   ├── RoutingServiceProvider 2.php
│   │   │   │           │   ├── RoutingServiceProvider.php
│   │   │   │           │   ├── SortedMiddleware 2.php
│   │   │   │           │   ├── SortedMiddleware.php
│   │   │   │           │   ├── UrlGenerator 2.php
│   │   │   │           │   ├── UrlGenerator.php
│   │   │   │           │   ├── ViewController 2.php
│   │   │   │           │   ├── ViewController.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Session
│   │   │   │           │   ├── ArraySessionHandler 2.php
│   │   │   │           │   ├── ArraySessionHandler.php
│   │   │   │           │   ├── CacheBasedSessionHandler 2.php
│   │   │   │           │   ├── CacheBasedSessionHandler.php
│   │   │   │           │   ├── Console
│   │   │   │           │   │   ├── SessionTableCommand 2.php
│   │   │   │           │   │   ├── SessionTableCommand.php
│   │   │   │           │   │   └── stubs
│   │   │   │           │   │       ├── database 2.stub
│   │   │   │           │   │       └── database.stub
│   │   │   │           │   ├── CookieSessionHandler 2.php
│   │   │   │           │   ├── CookieSessionHandler.php
│   │   │   │           │   ├── DatabaseSessionHandler 2.php
│   │   │   │           │   ├── DatabaseSessionHandler.php
│   │   │   │           │   ├── EncryptedStore 2.php
│   │   │   │           │   ├── EncryptedStore.php
│   │   │   │           │   ├── ExistenceAwareInterface 2.php
│   │   │   │           │   ├── ExistenceAwareInterface.php
│   │   │   │           │   ├── FileSessionHandler 2.php
│   │   │   │           │   ├── FileSessionHandler.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── Middleware
│   │   │   │           │   │   ├── AuthenticateSession 2.php
│   │   │   │           │   │   ├── AuthenticateSession.php
│   │   │   │           │   │   ├── StartSession 2.php
│   │   │   │           │   │   └── StartSession.php
│   │   │   │           │   ├── NullSessionHandler 2.php
│   │   │   │           │   ├── NullSessionHandler.php
│   │   │   │           │   ├── SessionManager 2.php
│   │   │   │           │   ├── SessionManager.php
│   │   │   │           │   ├── SessionServiceProvider 2.php
│   │   │   │           │   ├── SessionServiceProvider.php
│   │   │   │           │   ├── Store 2.php
│   │   │   │           │   ├── Store.php
│   │   │   │           │   ├── TokenMismatchException 2.php
│   │   │   │           │   ├── TokenMismatchException.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Support
│   │   │   │           │   ├── AggregateServiceProvider 2.php
│   │   │   │           │   ├── AggregateServiceProvider.php
│   │   │   │           │   ├── Arr 2.php
│   │   │   │           │   ├── Arr.php
│   │   │   │           │   ├── Carbon 2.php
│   │   │   │           │   ├── Carbon.php
│   │   │   │           │   ├── Collection 2.php
│   │   │   │           │   ├── Collection.php
│   │   │   │           │   ├── Composer 2.php
│   │   │   │           │   ├── Composer.php
│   │   │   │           │   ├── ConfigurationUrlParser 2.php
│   │   │   │           │   ├── ConfigurationUrlParser.php
│   │   │   │           │   ├── DateFactory 2.php
│   │   │   │           │   ├── DateFactory.php
│   │   │   │           │   ├── Enumerable 2.php
│   │   │   │           │   ├── Enumerable.php
│   │   │   │           │   ├── Env 2.php
│   │   │   │           │   ├── Env.php
│   │   │   │           │   ├── Facades
│   │   │   │           │   │   ├── App 2.php
│   │   │   │           │   │   ├── App.php
│   │   │   │           │   │   ├── Artisan 2.php
│   │   │   │           │   │   ├── Artisan.php
│   │   │   │           │   │   ├── Auth 2.php
│   │   │   │           │   │   ├── Auth.php
│   │   │   │           │   │   ├── Blade 2.php
│   │   │   │           │   │   ├── Blade.php
│   │   │   │           │   │   ├── Broadcast 2.php
│   │   │   │           │   │   ├── Broadcast.php
│   │   │   │           │   │   ├── Bus 2.php
│   │   │   │           │   │   ├── Bus.php
│   │   │   │           │   │   ├── Cache 2.php
│   │   │   │           │   │   ├── Cache.php
│   │   │   │           │   │   ├── Config 2.php
│   │   │   │           │   │   ├── Config.php
│   │   │   │           │   │   ├── Cookie 2.php
│   │   │   │           │   │   ├── Cookie.php
│   │   │   │           │   │   ├── Crypt 2.php
│   │   │   │           │   │   ├── Crypt.php
│   │   │   │           │   │   ├── DB 2.php
│   │   │   │           │   │   ├── DB.php
│   │   │   │           │   │   ├── Date 2.php
│   │   │   │           │   │   ├── Date.php
│   │   │   │           │   │   ├── Event 2.php
│   │   │   │           │   │   ├── Event.php
│   │   │   │           │   │   ├── Facade 2.php
│   │   │   │           │   │   ├── Facade.php
│   │   │   │           │   │   ├── File 2.php
│   │   │   │           │   │   ├── File.php
│   │   │   │           │   │   ├── Gate 2.php
│   │   │   │           │   │   ├── Gate.php
│   │   │   │           │   │   ├── Hash 2.php
│   │   │   │           │   │   ├── Hash.php
│   │   │   │           │   │   ├── Http 2.php
│   │   │   │           │   │   ├── Http.php
│   │   │   │           │   │   ├── Lang 2.php
│   │   │   │           │   │   ├── Lang.php
│   │   │   │           │   │   ├── Log 2.php
│   │   │   │           │   │   ├── Log.php
│   │   │   │           │   │   ├── Mail 2.php
│   │   │   │           │   │   ├── Mail.php
│   │   │   │           │   │   ├── Notification 2.php
│   │   │   │           │   │   ├── Notification.php
│   │   │   │           │   │   ├── Password 2.php
│   │   │   │           │   │   ├── Password.php
│   │   │   │           │   │   ├── Queue 2.php
│   │   │   │           │   │   ├── Queue.php
│   │   │   │           │   │   ├── Redirect 2.php
│   │   │   │           │   │   ├── Redirect.php
│   │   │   │           │   │   ├── Redis 2.php
│   │   │   │           │   │   ├── Redis.php
│   │   │   │           │   │   ├── Request 2.php
│   │   │   │           │   │   ├── Request.php
│   │   │   │           │   │   ├── Response 2.php
│   │   │   │           │   │   ├── Response.php
│   │   │   │           │   │   ├── Route 2.php
│   │   │   │           │   │   ├── Route.php
│   │   │   │           │   │   ├── Schema 2.php
│   │   │   │           │   │   ├── Schema.php
│   │   │   │           │   │   ├── Session 2.php
│   │   │   │           │   │   ├── Session.php
│   │   │   │           │   │   ├── Storage 2.php
│   │   │   │           │   │   ├── Storage.php
│   │   │   │           │   │   ├── URL 2.php
│   │   │   │           │   │   ├── URL.php
│   │   │   │           │   │   ├── Validator 2.php
│   │   │   │           │   │   ├── Validator.php
│   │   │   │           │   │   ├── View 2.php
│   │   │   │           │   │   └── View.php
│   │   │   │           │   ├── Fluent 2.php
│   │   │   │           │   ├── Fluent.php
│   │   │   │           │   ├── HigherOrderCollectionProxy 2.php
│   │   │   │           │   ├── HigherOrderCollectionProxy.php
│   │   │   │           │   ├── HigherOrderTapProxy 2.php
│   │   │   │           │   ├── HigherOrderTapProxy.php
│   │   │   │           │   ├── HigherOrderWhenProxy 2.php
│   │   │   │           │   ├── HigherOrderWhenProxy.php
│   │   │   │           │   ├── HtmlString 2.php
│   │   │   │           │   ├── HtmlString.php
│   │   │   │           │   ├── InteractsWithTime 2.php
│   │   │   │           │   ├── InteractsWithTime.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── LazyCollection 2.php
│   │   │   │           │   ├── LazyCollection.php
│   │   │   │           │   ├── Manager 2.php
│   │   │   │           │   ├── Manager.php
│   │   │   │           │   ├── MessageBag 2.php
│   │   │   │           │   ├── MessageBag.php
│   │   │   │           │   ├── NamespacedItemResolver 2.php
│   │   │   │           │   ├── NamespacedItemResolver.php
│   │   │   │           │   ├── Optional 2.php
│   │   │   │           │   ├── Optional.php
│   │   │   │           │   ├── Pluralizer 2.php
│   │   │   │           │   ├── Pluralizer.php
│   │   │   │           │   ├── ProcessUtils 2.php
│   │   │   │           │   ├── ProcessUtils.php
│   │   │   │           │   ├── Reflector 2.php
│   │   │   │           │   ├── Reflector.php
│   │   │   │           │   ├── ServiceProvider 2.php
│   │   │   │           │   ├── ServiceProvider.php
│   │   │   │           │   ├── Str 2.php
│   │   │   │           │   ├── Str.php
│   │   │   │           │   ├── Stringable 2.php
│   │   │   │           │   ├── Stringable.php
│   │   │   │           │   ├── Testing
│   │   │   │           │   │   └── Fakes
│   │   │   │           │   │       ├── BusFake 2.php
│   │   │   │           │   │       ├── BusFake.php
│   │   │   │           │   │       ├── EventFake 2.php
│   │   │   │           │   │       ├── EventFake.php
│   │   │   │           │   │       ├── MailFake 2.php
│   │   │   │           │   │       ├── MailFake.php
│   │   │   │           │   │       ├── NotificationFake 2.php
│   │   │   │           │   │       ├── NotificationFake.php
│   │   │   │           │   │       ├── PendingMailFake 2.php
│   │   │   │           │   │       ├── PendingMailFake.php
│   │   │   │           │   │       ├── QueueFake 2.php
│   │   │   │           │   │       └── QueueFake.php
│   │   │   │           │   ├── Traits
│   │   │   │           │   │   ├── CapsuleManagerTrait 2.php
│   │   │   │           │   │   ├── CapsuleManagerTrait.php
│   │   │   │           │   │   ├── EnumeratesValues 2.php
│   │   │   │           │   │   ├── EnumeratesValues.php
│   │   │   │           │   │   ├── ForwardsCalls 2.php
│   │   │   │           │   │   ├── ForwardsCalls.php
│   │   │   │           │   │   ├── Localizable 2.php
│   │   │   │           │   │   ├── Localizable.php
│   │   │   │           │   │   ├── Macroable 2.php
│   │   │   │           │   │   ├── Macroable.php
│   │   │   │           │   │   ├── ReflectsClosures 2.php
│   │   │   │           │   │   ├── ReflectsClosures.php
│   │   │   │           │   │   ├── Tappable 2.php
│   │   │   │           │   │   └── Tappable.php
│   │   │   │           │   ├── ViewErrorBag 2.php
│   │   │   │           │   ├── ViewErrorBag.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   ├── composer.json
│   │   │   │           │   ├── helpers 2.php
│   │   │   │           │   └── helpers.php
│   │   │   │           ├── Testing
│   │   │   │           │   ├── Assert 2.php
│   │   │   │           │   ├── Assert.php
│   │   │   │           │   ├── Constraints
│   │   │   │           │   │   ├── ArraySubset 2.php
│   │   │   │           │   │   ├── ArraySubset.php
│   │   │   │           │   │   ├── CountInDatabase 2.php
│   │   │   │           │   │   ├── CountInDatabase.php
│   │   │   │           │   │   ├── HasInDatabase 2.php
│   │   │   │           │   │   ├── HasInDatabase.php
│   │   │   │           │   │   ├── SeeInOrder 2.php
│   │   │   │           │   │   ├── SeeInOrder.php
│   │   │   │           │   │   ├── SoftDeletedInDatabase 2.php
│   │   │   │           │   │   └── SoftDeletedInDatabase.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── PendingCommand 2.php
│   │   │   │           │   ├── PendingCommand.php
│   │   │   │           │   ├── TestResponse 2.php
│   │   │   │           │   ├── TestResponse.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Translation
│   │   │   │           │   ├── ArrayLoader 2.php
│   │   │   │           │   ├── ArrayLoader.php
│   │   │   │           │   ├── FileLoader 2.php
│   │   │   │           │   ├── FileLoader.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── MessageSelector 2.php
│   │   │   │           │   ├── MessageSelector.php
│   │   │   │           │   ├── TranslationServiceProvider 2.php
│   │   │   │           │   ├── TranslationServiceProvider.php
│   │   │   │           │   ├── Translator 2.php
│   │   │   │           │   ├── Translator.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           ├── Validation
│   │   │   │           │   ├── ClosureValidationRule 2.php
│   │   │   │           │   ├── ClosureValidationRule.php
│   │   │   │           │   ├── Concerns
│   │   │   │           │   │   ├── FilterEmailValidation 2.php
│   │   │   │           │   │   ├── FilterEmailValidation.php
│   │   │   │           │   │   ├── FormatsMessages 2.php
│   │   │   │           │   │   ├── FormatsMessages.php
│   │   │   │           │   │   ├── ReplacesAttributes 2.php
│   │   │   │           │   │   ├── ReplacesAttributes.php
│   │   │   │           │   │   ├── ValidatesAttributes 2.php
│   │   │   │           │   │   └── ValidatesAttributes.php
│   │   │   │           │   ├── DatabasePresenceVerifier 2.php
│   │   │   │           │   ├── DatabasePresenceVerifier.php
│   │   │   │           │   ├── DatabasePresenceVerifierInterface 2.php
│   │   │   │           │   ├── DatabasePresenceVerifierInterface.php
│   │   │   │           │   ├── Factory 2.php
│   │   │   │           │   ├── Factory.php
│   │   │   │           │   ├── LICENSE 2.md
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   ├── PresenceVerifierInterface 2.php
│   │   │   │           │   ├── PresenceVerifierInterface.php
│   │   │   │           │   ├── Rule 2.php
│   │   │   │           │   ├── Rule.php
│   │   │   │           │   ├── Rules
│   │   │   │           │   │   ├── DatabaseRule 2.php
│   │   │   │           │   │   ├── DatabaseRule.php
│   │   │   │           │   │   ├── Dimensions 2.php
│   │   │   │           │   │   ├── Dimensions.php
│   │   │   │           │   │   ├── Exists 2.php
│   │   │   │           │   │   ├── Exists.php
│   │   │   │           │   │   ├── In 2.php
│   │   │   │           │   │   ├── In.php
│   │   │   │           │   │   ├── NotIn 2.php
│   │   │   │           │   │   ├── NotIn.php
│   │   │   │           │   │   ├── RequiredIf 2.php
│   │   │   │           │   │   ├── RequiredIf.php
│   │   │   │           │   │   ├── Unique 2.php
│   │   │   │           │   │   └── Unique.php
│   │   │   │           │   ├── UnauthorizedException 2.php
│   │   │   │           │   ├── UnauthorizedException.php
│   │   │   │           │   ├── ValidatesWhenResolvedTrait 2.php
│   │   │   │           │   ├── ValidatesWhenResolvedTrait.php
│   │   │   │           │   ├── ValidationData 2.php
│   │   │   │           │   ├── ValidationData.php
│   │   │   │           │   ├── ValidationException 2.php
│   │   │   │           │   ├── ValidationException.php
│   │   │   │           │   ├── ValidationRuleParser 2.php
│   │   │   │           │   ├── ValidationRuleParser.php
│   │   │   │           │   ├── ValidationServiceProvider 2.php
│   │   │   │           │   ├── ValidationServiceProvider.php
│   │   │   │           │   ├── Validator 2.php
│   │   │   │           │   ├── Validator.php
│   │   │   │           │   ├── composer 2.json
│   │   │   │           │   └── composer.json
│   │   │   │           └── View
│   │   │   │               ├── AnonymousComponent 2.php
│   │   │   │               ├── AnonymousComponent.php
│   │   │   │               ├── Compilers
│   │   │   │               │   ├── BladeCompiler 2.php
│   │   │   │               │   ├── BladeCompiler.php
│   │   │   │               │   ├── Compiler 2.php
│   │   │   │               │   ├── Compiler.php
│   │   │   │               │   ├── CompilerInterface 2.php
│   │   │   │               │   ├── CompilerInterface.php
│   │   │   │               │   ├── ComponentTagCompiler 2.php
│   │   │   │               │   ├── ComponentTagCompiler.php
│   │   │   │               │   └── Concerns
│   │   │   │               │       ├── CompilesAuthorizations 2.php
│   │   │   │               │       ├── CompilesAuthorizations.php
│   │   │   │               │       ├── CompilesComments 2.php
│   │   │   │               │       ├── CompilesComments.php
│   │   │   │               │       ├── CompilesComponents 2.php
│   │   │   │               │       ├── CompilesComponents.php
│   │   │   │               │       ├── CompilesConditionals 2.php
│   │   │   │               │       ├── CompilesConditionals.php
│   │   │   │               │       ├── CompilesEchos 2.php
│   │   │   │               │       ├── CompilesEchos.php
│   │   │   │               │       ├── CompilesErrors 2.php
│   │   │   │               │       ├── CompilesErrors.php
│   │   │   │               │       ├── CompilesHelpers 2.php
│   │   │   │               │       ├── CompilesHelpers.php
│   │   │   │               │       ├── CompilesIncludes 2.php
│   │   │   │               │       ├── CompilesIncludes.php
│   │   │   │               │       ├── CompilesInjections 2.php
│   │   │   │               │       ├── CompilesInjections.php
│   │   │   │               │       ├── CompilesJson 2.php
│   │   │   │               │       ├── CompilesJson.php
│   │   │   │               │       ├── CompilesLayouts 2.php
│   │   │   │               │       ├── CompilesLayouts.php
│   │   │   │               │       ├── CompilesLoops 2.php
│   │   │   │               │       ├── CompilesLoops.php
│   │   │   │               │       ├── CompilesRawPhp 2.php
│   │   │   │               │       ├── CompilesRawPhp.php
│   │   │   │               │       ├── CompilesStacks 2.php
│   │   │   │               │       ├── CompilesStacks.php
│   │   │   │               │       ├── CompilesTranslations 2.php
│   │   │   │               │       └── CompilesTranslations.php
│   │   │   │               ├── Component 2.php
│   │   │   │               ├── Component.php
│   │   │   │               ├── ComponentAttributeBag 2.php
│   │   │   │               ├── ComponentAttributeBag.php
│   │   │   │               ├── Concerns
│   │   │   │               │   ├── ManagesComponents 2.php
│   │   │   │               │   ├── ManagesComponents.php
│   │   │   │               │   ├── ManagesEvents 2.php
│   │   │   │               │   ├── ManagesEvents.php
│   │   │   │               │   ├── ManagesLayouts 2.php
│   │   │   │               │   ├── ManagesLayouts.php
│   │   │   │               │   ├── ManagesLoops 2.php
│   │   │   │               │   ├── ManagesLoops.php
│   │   │   │               │   ├── ManagesStacks 2.php
│   │   │   │               │   ├── ManagesStacks.php
│   │   │   │               │   ├── ManagesTranslations 2.php
│   │   │   │               │   └── ManagesTranslations.php
│   │   │   │               ├── Engines
│   │   │   │               │   ├── CompilerEngine 2.php
│   │   │   │               │   ├── CompilerEngine.php
│   │   │   │               │   ├── Engine 2.php
│   │   │   │               │   ├── Engine.php
│   │   │   │               │   ├── EngineResolver 2.php
│   │   │   │               │   ├── EngineResolver.php
│   │   │   │               │   ├── FileEngine 2.php
│   │   │   │               │   ├── FileEngine.php
│   │   │   │               │   ├── PhpEngine 2.php
│   │   │   │               │   └── PhpEngine.php
│   │   │   │               ├── Factory 2.php
│   │   │   │               ├── Factory.php
│   │   │   │               ├── FileViewFinder 2.php
│   │   │   │               ├── FileViewFinder.php
│   │   │   │               ├── InvokableComponentVariable 2.php
│   │   │   │               ├── InvokableComponentVariable.php
│   │   │   │               ├── LICENSE 2.md
│   │   │   │               ├── LICENSE.md
│   │   │   │               ├── Middleware
│   │   │   │               │   ├── ShareErrorsFromSession 2.php
│   │   │   │               │   └── ShareErrorsFromSession.php
│   │   │   │               ├── View 2.php
│   │   │   │               ├── View.php
│   │   │   │               ├── ViewFinderInterface 2.php
│   │   │   │               ├── ViewFinderInterface.php
│   │   │   │               ├── ViewName 2.php
│   │   │   │               ├── ViewName.php
│   │   │   │               ├── ViewServiceProvider 2.php
│   │   │   │               ├── ViewServiceProvider.php
│   │   │   │               ├── composer 2.json
│   │   │   │               └── composer.json
│   │   │   ├── tinker
│   │   │   │   ├── LICENSE 2.md
│   │   │   │   ├── LICENSE.md
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── composer 2.json
│   │   │   │   ├── composer.json
│   │   │   │   ├── config
│   │   │   │   │   ├── tinker 2.php
│   │   │   │   │   └── tinker.php
│   │   │   │   └── src
│   │   │   │       ├── ClassAliasAutoloader 2.php
│   │   │   │       ├── ClassAliasAutoloader.php
│   │   │   │       ├── Console
│   │   │   │       │   ├── TinkerCommand 2.php
│   │   │   │       │   └── TinkerCommand.php
│   │   │   │       ├── TinkerCaster 2.php
│   │   │   │       ├── TinkerCaster.php
│   │   │   │       ├── TinkerServiceProvider 2.php
│   │   │   │       └── TinkerServiceProvider.php
│   │   │   └── ui
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE.md
│   │   │       ├── README.md
│   │   │       ├── auth-backend
│   │   │       │   ├── AuthenticatesUsers.php
│   │   │       │   ├── ConfirmsPasswords.php
│   │   │       │   ├── RedirectsUsers.php
│   │   │       │   ├── RegistersUsers.php
│   │   │       │   ├── ResetsPasswords.php
│   │   │       │   ├── SendsPasswordResetEmails.php
│   │   │       │   ├── ThrottlesLogins.php
│   │   │       │   └── VerifiesEmails.php
│   │   │       ├── composer.json
│   │   │       ├── src
│   │   │       │   ├── Auth
│   │   │       │   │   ├── bootstrap-stubs
│   │   │       │   │   │   ├── auth
│   │   │       │   │   │   │   ├── login.stub
│   │   │       │   │   │   │   ├── passwords
│   │   │       │   │   │   │   │   ├── confirm.stub
│   │   │       │   │   │   │   │   ├── email.stub
│   │   │       │   │   │   │   │   └── reset.stub
│   │   │       │   │   │   │   ├── register.stub
│   │   │       │   │   │   │   └── verify.stub
│   │   │       │   │   │   ├── home.stub
│   │   │       │   │   │   └── layouts
│   │   │       │   │   │       └── app.stub
│   │   │       │   │   └── stubs
│   │   │       │   │       ├── controllers
│   │   │       │   │       │   └── HomeController.stub
│   │   │       │   │       └── routes.stub
│   │   │       │   ├── AuthCommand.php
│   │   │       │   ├── AuthRouteMethods.php
│   │   │       │   ├── ControllersCommand.php
│   │   │       │   ├── Presets
│   │   │       │   │   ├── Bootstrap.php
│   │   │       │   │   ├── Preset.php
│   │   │       │   │   ├── React.php
│   │   │       │   │   ├── Vue.php
│   │   │       │   │   ├── bootstrap-stubs
│   │   │       │   │   │   ├── _variables.scss
│   │   │       │   │   │   ├── app.scss
│   │   │       │   │   │   ├── bootstrap.js
│   │   │       │   │   │   └── webpack.mix.js
│   │   │       │   │   ├── react-stubs
│   │   │       │   │   │   ├── Example.js
│   │   │       │   │   │   ├── app.js
│   │   │       │   │   │   └── webpack.mix.js
│   │   │       │   │   └── vue-stubs
│   │   │       │   │       ├── ExampleComponent.vue
│   │   │       │   │       ├── app.js
│   │   │       │   │       └── webpack.mix.js
│   │   │       │   ├── UiCommand.php
│   │   │       │   └── UiServiceProvider.php
│   │   │       └── stubs
│   │   │           ├── Auth
│   │   │           │   ├── ConfirmPasswordController.stub
│   │   │           │   ├── ForgotPasswordController.stub
│   │   │           │   ├── LoginController.stub
│   │   │           │   ├── RegisterController.stub
│   │   │           │   ├── ResetPasswordController.stub
│   │   │           │   └── VerificationController.stub
│   │   │           └── migrations
│   │   │               └── 2014_10_12_100000_create_password_resets_table.php
│   │   ├── laravel-frontend-presets
│   │   │   └── black-dashboard
│   │   │       ├── ISSUE_TEMPLATE.md
│   │   │       ├── changelog.md
│   │   │       ├── composer.json
│   │   │       ├── license.md
│   │   │       ├── readme.md
│   │   │       ├── screens
│   │   │       │   ├── Dashboard.png
│   │   │       │   ├── Login.png
│   │   │       │   ├── Profile.png
│   │   │       │   ├── Register.png
│   │   │       │   ├── Tables.png
│   │   │       │   ├── Users.png
│   │   │       │   └── intro-black.gif
│   │   │       └── src
│   │   │           ├── BlackPreset.php
│   │   │           ├── BlackPresetServiceProvider.php
│   │   │           └── black-stubs
│   │   │               ├── app
│   │   │               │   ├── Http
│   │   │               │   │   ├── Controllers
│   │   │               │   │   │   ├── HomeController.php
│   │   │               │   │   │   ├── PageController.php
│   │   │               │   │   │   ├── ProfileController.php
│   │   │               │   │   │   └── UserController.php
│   │   │               │   │   └── Requests
│   │   │               │   │       ├── PasswordRequest.php
│   │   │               │   │       ├── ProfileRequest.php
│   │   │               │   │       └── UserRequest.php
│   │   │               │   └── Rules
│   │   │               │       └── CurrentPasswordCheckRule.php
│   │   │               ├── database
│   │   │               │   └── seeds
│   │   │               │       ├── DatabaseSeeder.php
│   │   │               │       └── UsersTableSeeder.php
│   │   │               └── resources
│   │   │                   ├── assets
│   │   │                   │   ├── css
│   │   │                   │   │   ├── black-dashboard.css
│   │   │                   │   │   ├── black-dashboard.css.map
│   │   │                   │   │   ├── black-dashboard.min.css
│   │   │                   │   │   ├── nucleo-icons.css
│   │   │                   │   │   └── theme.css
│   │   │                   │   ├── demo
│   │   │                   │   │   ├── demo.css
│   │   │                   │   │   └── demo.js
│   │   │                   │   ├── fonts
│   │   │                   │   │   ├── nucleo.eot
│   │   │                   │   │   ├── nucleo.ttf
│   │   │                   │   │   ├── nucleo.woff
│   │   │                   │   │   └── nucleo.woff2
│   │   │                   │   ├── img
│   │   │                   │   │   ├── anime3.png
│   │   │                   │   │   ├── anime6.png
│   │   │                   │   │   ├── apple-icon.png
│   │   │                   │   │   ├── bg5.jpg
│   │   │                   │   │   ├── card-primary.png
│   │   │                   │   │   ├── default-avatar.png
│   │   │                   │   │   ├── emilyz.jpg
│   │   │                   │   │   ├── favicon.png
│   │   │                   │   │   ├── header.jpg
│   │   │                   │   │   ├── img_3115.jpg
│   │   │                   │   │   ├── james.jpg
│   │   │                   │   │   └── mike.jpg
│   │   │                   │   ├── js
│   │   │                   │   │   ├── black-dashboard.js
│   │   │                   │   │   ├── black-dashboard.js.map
│   │   │                   │   │   ├── black-dashboard.min.js
│   │   │                   │   │   ├── core
│   │   │                   │   │   │   ├── bootstrap.min.js
│   │   │                   │   │   │   ├── jquery.min.js
│   │   │                   │   │   │   └── popper.min.js
│   │   │                   │   │   ├── plugins
│   │   │                   │   │   │   ├── bootstrap-notify.js
│   │   │                   │   │   │   ├── chartjs.min.js
│   │   │                   │   │   │   └── perfect-scrollbar.jquery.min.js
│   │   │                   │   │   └── theme.js
│   │   │                   │   └── scss
│   │   │                   │       ├── black-dashboard
│   │   │                   │       │   ├── bootstrap
│   │   │                   │       │   │   ├── _alert.scss
│   │   │                   │       │   │   ├── _badge.scss
│   │   │                   │       │   │   ├── _breadcrumb.scss
│   │   │                   │       │   │   ├── _button-group.scss
│   │   │                   │       │   │   ├── _buttons.scss
│   │   │                   │       │   │   ├── _card.scss
│   │   │                   │       │   │   ├── _carousel.scss
│   │   │                   │       │   │   ├── _close.scss
│   │   │                   │       │   │   ├── _code.scss
│   │   │                   │       │   │   ├── _custom-forms.scss
│   │   │                   │       │   │   ├── _dropdown.scss
│   │   │                   │       │   │   ├── _forms.scss
│   │   │                   │       │   │   ├── _functions.scss
│   │   │                   │       │   │   ├── _grid.scss
│   │   │                   │       │   │   ├── _images.scss
│   │   │                   │       │   │   ├── _input-group.scss
│   │   │                   │       │   │   ├── _jumbotron.scss
│   │   │                   │       │   │   ├── _list-group.scss
│   │   │                   │       │   │   ├── _media.scss
│   │   │                   │       │   │   ├── _mixins.scss
│   │   │                   │       │   │   ├── _modal.scss
│   │   │                   │       │   │   ├── _nav.scss
│   │   │                   │       │   │   ├── _navbar.scss
│   │   │                   │       │   │   ├── _pagination.scss
│   │   │                   │       │   │   ├── _popover.scss
│   │   │                   │       │   │   ├── _print.scss
│   │   │                   │       │   │   ├── _progress.scss
│   │   │                   │       │   │   ├── _reboot.scss
│   │   │                   │       │   │   ├── _root.scss
│   │   │                   │       │   │   ├── _tables.scss
│   │   │                   │       │   │   ├── _tooltip.scss
│   │   │                   │       │   │   ├── _transitions.scss
│   │   │                   │       │   │   ├── _type.scss
│   │   │                   │       │   │   ├── _utilities.scss
│   │   │                   │       │   │   ├── _variables.scss
│   │   │                   │       │   │   ├── mixins
│   │   │                   │       │   │   │   ├── _alert.scss
│   │   │                   │       │   │   │   ├── _background-variant.scss
│   │   │                   │       │   │   │   ├── _badge.scss
│   │   │                   │       │   │   │   ├── _border-radius.scss
│   │   │                   │       │   │   │   ├── _box-shadow.scss
│   │   │                   │       │   │   │   ├── _breakpoints.scss
│   │   │                   │       │   │   │   ├── _buttons.scss
│   │   │                   │       │   │   │   ├── _caret.scss
│   │   │                   │       │   │   │   ├── _clearfix.scss
│   │   │                   │       │   │   │   ├── _float.scss
│   │   │                   │       │   │   │   ├── _forms.scss
│   │   │                   │       │   │   │   ├── _gradients.scss
│   │   │                   │       │   │   │   ├── _grid-framework.scss
│   │   │                   │       │   │   │   ├── _grid.scss
│   │   │                   │       │   │   │   ├── _hover.scss
│   │   │                   │       │   │   │   ├── _image.scss
│   │   │                   │       │   │   │   ├── _list-group.scss
│   │   │                   │       │   │   │   ├── _lists.scss
│   │   │                   │       │   │   │   ├── _nav-divider.scss
│   │   │                   │       │   │   │   ├── _pagination.scss
│   │   │                   │       │   │   │   ├── _reset-text.scss
│   │   │                   │       │   │   │   ├── _resize.scss
│   │   │                   │       │   │   │   ├── _screen-reader.scss
│   │   │                   │       │   │   │   ├── _size.scss
│   │   │                   │       │   │   │   ├── _table-row.scss
│   │   │                   │       │   │   │   ├── _text-emphasis.scss
│   │   │                   │       │   │   │   ├── _text-hide.scss
│   │   │                   │       │   │   │   ├── _text-truncate.scss
│   │   │                   │       │   │   │   ├── _transition.scss
│   │   │                   │       │   │   │   └── _visibility.scss
│   │   │                   │       │   │   └── utilities
│   │   │                   │       │   │       ├── _align.scss
│   │   │                   │       │   │       ├── _background.scss
│   │   │                   │       │   │       ├── _borders.scss
│   │   │                   │       │   │       ├── _clearfix.scss
│   │   │                   │       │   │       ├── _display.scss
│   │   │                   │       │   │       ├── _embed.scss
│   │   │                   │       │   │       ├── _flex.scss
│   │   │                   │       │   │       ├── _float.scss
│   │   │                   │       │   │       ├── _position.scss
│   │   │                   │       │   │       ├── _screenreaders.scss
│   │   │                   │       │   │       ├── _shadows.scss
│   │   │                   │       │   │       ├── _sizing.scss
│   │   │                   │       │   │       ├── _spacing.scss
│   │   │                   │       │   │       ├── _text.scss
│   │   │                   │       │   │       └── _visibility.scss
│   │   │                   │       │   ├── custom
│   │   │                   │       │   │   ├── _alerts.scss
│   │   │                   │       │   │   ├── _buttons.scss
│   │   │                   │       │   │   ├── _card.scss
│   │   │                   │       │   │   ├── _checkboxes-radio.scss
│   │   │                   │       │   │   ├── _dropdown.scss
│   │   │                   │       │   │   ├── _fixed-plugin.scss
│   │   │                   │       │   │   ├── _footer.scss
│   │   │                   │       │   │   ├── _forms.scss
│   │   │                   │       │   │   ├── _functions.scss
│   │   │                   │       │   │   ├── _images.scss
│   │   │                   │       │   │   ├── _input-group.scss
│   │   │                   │       │   │   ├── _misc.scss
│   │   │                   │       │   │   ├── _mixins.scss
│   │   │                   │       │   │   ├── _modal.scss
│   │   │                   │       │   │   ├── _navbar.scss
│   │   │                   │       │   │   ├── _rtl.scss
│   │   │                   │       │   │   ├── _sidebar-and-main-panel.scss
│   │   │                   │       │   │   ├── _tables.scss
│   │   │                   │       │   │   ├── _type.scss
│   │   │                   │       │   │   ├── _utilities.scss
│   │   │                   │       │   │   ├── _variables.scss
│   │   │                   │       │   │   ├── cards
│   │   │                   │       │   │   │   ├── _card-chart.scss
│   │   │                   │       │   │   │   ├── _card-map.scss
│   │   │                   │       │   │   │   ├── _card-plain.scss
│   │   │                   │       │   │   │   ├── _card-task.scss
│   │   │                   │       │   │   │   └── _card-user.scss
│   │   │                   │       │   │   ├── mixins
│   │   │                   │       │   │   │   ├── _alert.scss
│   │   │                   │       │   │   │   ├── _background-variant.scss
│   │   │                   │       │   │   │   ├── _badges.scss
│   │   │                   │       │   │   │   ├── _buttons.scss
│   │   │                   │       │   │   │   ├── _dropdown.scss
│   │   │                   │       │   │   │   ├── _forms.scss
│   │   │                   │       │   │   │   ├── _icon.scss
│   │   │                   │       │   │   │   ├── _inputs.scss
│   │   │                   │       │   │   │   ├── _modals.scss
│   │   │                   │       │   │   │   ├── _page-header.scss
│   │   │                   │       │   │   │   ├── _popovers.scss
│   │   │                   │       │   │   │   ├── _vendor-prefixes.scss
│   │   │                   │       │   │   │   ├── _wizard.scss
│   │   │                   │       │   │   │   └── opacity.scss
│   │   │                   │       │   │   ├── utilities
│   │   │                   │       │   │   │   ├── _backgrounds.scss
│   │   │                   │       │   │   │   ├── _floating.scss
│   │   │                   │       │   │   │   ├── _helper.scss
│   │   │                   │       │   │   │   ├── _position.scss
│   │   │                   │       │   │   │   ├── _shadows.scss
│   │   │                   │       │   │   │   ├── _sizing.scss
│   │   │                   │       │   │   │   ├── _spacing.scss
│   │   │                   │       │   │   │   ├── _text.scss
│   │   │                   │       │   │   │   └── _transform.scss
│   │   │                   │       │   │   └── vendor
│   │   │                   │       │   │       ├── _plugin-animate-bootstrap-notify.scss
│   │   │                   │       │   │       └── _plugin-perfect-scrollbar.scss
│   │   │                   │       │   └── plugins
│   │   │                   │       │       └── _plugin-perfect-scrollbar.scss
│   │   │                   │       └── black-dashboard.scss
│   │   │                   └── views
│   │   │                       ├── alerts
│   │   │                       │   ├── feedback.blade.php
│   │   │                       │   └── success.blade.php
│   │   │                       ├── auth
│   │   │                       │   ├── login.blade.php
│   │   │                       │   ├── passwords
│   │   │                       │   │   ├── email.blade.php
│   │   │                       │   │   └── reset.blade.php
│   │   │                       │   ├── register.blade.php
│   │   │                       │   └── verify.blade.php
│   │   │                       ├── dashboard.blade.php
│   │   │                       ├── layouts
│   │   │                       │   ├── app.blade.php
│   │   │                       │   ├── footer.blade.php
│   │   │                       │   └── navbars
│   │   │                       │       ├── navbar.blade.php
│   │   │                       │       ├── navs
│   │   │                       │       │   ├── auth.blade.php
│   │   │                       │       │   └── guest.blade.php
│   │   │                       │       └── sidebar.blade.php
│   │   │                       ├── pages
│   │   │                       │   ├── icons.blade.php
│   │   │                       │   ├── map.blade.php
│   │   │                       │   ├── maps.blade.php
│   │   │                       │   ├── notifications.blade.php
│   │   │                       │   ├── rtl.blade.php
│   │   │                       │   ├── table_list.blade.php
│   │   │                       │   ├── tables.blade.php
│   │   │                       │   ├── typography.blade.php
│   │   │                       │   └── upgrade.blade.php
│   │   │                       ├── profile
│   │   │                       │   └── edit.blade.php
│   │   │                       ├── users
│   │   │                       │   └── index.blade.php
│   │   │                       └── welcome.blade.php
│   │   ├── league
│   │   │   ├── commonmark
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG-0.x 2.md
│   │   │   │   ├── CHANGELOG-0.x.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── bin
│   │   │   │   │   ├── commonmark
│   │   │   │   │   └── commonmark 2
│   │   │   │   ├── composer 2.json
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── Block
│   │   │   │       │   ├── Element
│   │   │   │       │   │   ├── AbstractBlock 2.php
│   │   │   │       │   │   ├── AbstractBlock.php
│   │   │   │       │   │   ├── AbstractStringContainerBlock 2.php
│   │   │   │       │   │   ├── AbstractStringContainerBlock.php
│   │   │   │       │   │   ├── BlockQuote 2.php
│   │   │   │       │   │   ├── BlockQuote.php
│   │   │   │       │   │   ├── Document 2.php
│   │   │   │       │   │   ├── Document.php
│   │   │   │       │   │   ├── FencedCode 2.php
│   │   │   │       │   │   ├── FencedCode.php
│   │   │   │       │   │   ├── Heading 2.php
│   │   │   │       │   │   ├── Heading.php
│   │   │   │       │   │   ├── HtmlBlock 2.php
│   │   │   │       │   │   ├── HtmlBlock.php
│   │   │   │       │   │   ├── IndentedCode 2.php
│   │   │   │       │   │   ├── IndentedCode.php
│   │   │   │       │   │   ├── InlineContainerInterface 2.php
│   │   │   │       │   │   ├── InlineContainerInterface.php
│   │   │   │       │   │   ├── ListBlock 2.php
│   │   │   │       │   │   ├── ListBlock.php
│   │   │   │       │   │   ├── ListData 2.php
│   │   │   │       │   │   ├── ListData.php
│   │   │   │       │   │   ├── ListItem 2.php
│   │   │   │       │   │   ├── ListItem.php
│   │   │   │       │   │   ├── Paragraph 2.php
│   │   │   │       │   │   ├── Paragraph.php
│   │   │   │       │   │   ├── StringContainerInterface 2.php
│   │   │   │       │   │   ├── StringContainerInterface.php
│   │   │   │       │   │   ├── ThematicBreak 2.php
│   │   │   │       │   │   └── ThematicBreak.php
│   │   │   │       │   ├── Parser
│   │   │   │       │   │   ├── ATXHeadingParser 2.php
│   │   │   │       │   │   ├── ATXHeadingParser.php
│   │   │   │       │   │   ├── BlockParserInterface 2.php
│   │   │   │       │   │   ├── BlockParserInterface.php
│   │   │   │       │   │   ├── BlockQuoteParser 2.php
│   │   │   │       │   │   ├── BlockQuoteParser.php
│   │   │   │       │   │   ├── FencedCodeParser 2.php
│   │   │   │       │   │   ├── FencedCodeParser.php
│   │   │   │       │   │   ├── HtmlBlockParser 2.php
│   │   │   │       │   │   ├── HtmlBlockParser.php
│   │   │   │       │   │   ├── IndentedCodeParser 2.php
│   │   │   │       │   │   ├── IndentedCodeParser.php
│   │   │   │       │   │   ├── LazyParagraphParser 2.php
│   │   │   │       │   │   ├── LazyParagraphParser.php
│   │   │   │       │   │   ├── ListParser 2.php
│   │   │   │       │   │   ├── ListParser.php
│   │   │   │       │   │   ├── SetExtHeadingParser 2.php
│   │   │   │       │   │   ├── SetExtHeadingParser.php
│   │   │   │       │   │   ├── ThematicBreakParser 2.php
│   │   │   │       │   │   └── ThematicBreakParser.php
│   │   │   │       │   └── Renderer
│   │   │   │       │       ├── BlockQuoteRenderer 2.php
│   │   │   │       │       ├── BlockQuoteRenderer.php
│   │   │   │       │       ├── BlockRendererInterface 2.php
│   │   │   │       │       ├── BlockRendererInterface.php
│   │   │   │       │       ├── DocumentRenderer 2.php
│   │   │   │       │       ├── DocumentRenderer.php
│   │   │   │       │       ├── FencedCodeRenderer 2.php
│   │   │   │       │       ├── FencedCodeRenderer.php
│   │   │   │       │       ├── HeadingRenderer 2.php
│   │   │   │       │       ├── HeadingRenderer.php
│   │   │   │       │       ├── HtmlBlockRenderer 2.php
│   │   │   │       │       ├── HtmlBlockRenderer.php
│   │   │   │       │       ├── IndentedCodeRenderer 2.php
│   │   │   │       │       ├── IndentedCodeRenderer.php
│   │   │   │       │       ├── ListBlockRenderer 2.php
│   │   │   │       │       ├── ListBlockRenderer.php
│   │   │   │       │       ├── ListItemRenderer 2.php
│   │   │   │       │       ├── ListItemRenderer.php
│   │   │   │       │       ├── ParagraphRenderer 2.php
│   │   │   │       │       ├── ParagraphRenderer.php
│   │   │   │       │       ├── ThematicBreakRenderer 2.php
│   │   │   │       │       └── ThematicBreakRenderer.php
│   │   │   │       ├── CommonMarkConverter 2.php
│   │   │   │       ├── CommonMarkConverter.php
│   │   │   │       ├── ConfigurableEnvironmentInterface 2.php
│   │   │   │       ├── ConfigurableEnvironmentInterface.php
│   │   │   │       ├── Context 2.php
│   │   │   │       ├── Context.php
│   │   │   │       ├── ContextInterface 2.php
│   │   │   │       ├── ContextInterface.php
│   │   │   │       ├── Converter 2.php
│   │   │   │       ├── Converter.php
│   │   │   │       ├── ConverterInterface 2.php
│   │   │   │       ├── ConverterInterface.php
│   │   │   │       ├── Cursor 2.php
│   │   │   │       ├── Cursor.php
│   │   │   │       ├── Delimiter
│   │   │   │       │   ├── Delimiter 2.php
│   │   │   │       │   ├── Delimiter.php
│   │   │   │       │   ├── DelimiterInterface 2.php
│   │   │   │       │   ├── DelimiterInterface.php
│   │   │   │       │   ├── DelimiterStack 2.php
│   │   │   │       │   ├── DelimiterStack.php
│   │   │   │       │   └── Processor
│   │   │   │       │       ├── DelimiterProcessorCollection 2.php
│   │   │   │       │       ├── DelimiterProcessorCollection.php
│   │   │   │       │       ├── DelimiterProcessorCollectionInterface 2.php
│   │   │   │       │       ├── DelimiterProcessorCollectionInterface.php
│   │   │   │       │       ├── DelimiterProcessorInterface 2.php
│   │   │   │       │       ├── DelimiterProcessorInterface.php
│   │   │   │       │       ├── EmphasisDelimiterProcessor 2.php
│   │   │   │       │       ├── EmphasisDelimiterProcessor.php
│   │   │   │       │       ├── StaggeredDelimiterProcessor 2.php
│   │   │   │       │       └── StaggeredDelimiterProcessor.php
│   │   │   │       ├── DocParser 2.php
│   │   │   │       ├── DocParser.php
│   │   │   │       ├── DocParserInterface 2.php
│   │   │   │       ├── DocParserInterface.php
│   │   │   │       ├── ElementRendererInterface 2.php
│   │   │   │       ├── ElementRendererInterface.php
│   │   │   │       ├── Environment 2.php
│   │   │   │       ├── Environment.php
│   │   │   │       ├── EnvironmentAwareInterface 2.php
│   │   │   │       ├── EnvironmentAwareInterface.php
│   │   │   │       ├── EnvironmentInterface 2.php
│   │   │   │       ├── EnvironmentInterface.php
│   │   │   │       ├── Event
│   │   │   │       │   ├── AbstractEvent 2.php
│   │   │   │       │   ├── AbstractEvent.php
│   │   │   │       │   ├── DocumentParsedEvent 2.php
│   │   │   │       │   ├── DocumentParsedEvent.php
│   │   │   │       │   ├── DocumentPreParsedEvent 2.php
│   │   │   │       │   └── DocumentPreParsedEvent.php
│   │   │   │       ├── Exception
│   │   │   │       │   ├── InvalidOptionException 2.php
│   │   │   │       │   ├── InvalidOptionException.php
│   │   │   │       │   ├── UnexpectedEncodingException 2.php
│   │   │   │       │   └── UnexpectedEncodingException.php
│   │   │   │       ├── Extension
│   │   │   │       │   ├── Attributes
│   │   │   │       │   │   ├── AttributesExtension 2.php
│   │   │   │       │   │   ├── AttributesExtension.php
│   │   │   │       │   │   ├── Event
│   │   │   │       │   │   │   ├── AttributesListener 2.php
│   │   │   │       │   │   │   └── AttributesListener.php
│   │   │   │       │   │   ├── Node
│   │   │   │       │   │   │   ├── Attributes 2.php
│   │   │   │       │   │   │   ├── Attributes.php
│   │   │   │       │   │   │   ├── AttributesInline 2.php
│   │   │   │       │   │   │   └── AttributesInline.php
│   │   │   │       │   │   ├── Parser
│   │   │   │       │   │   │   ├── AttributesBlockParser 2.php
│   │   │   │       │   │   │   ├── AttributesBlockParser.php
│   │   │   │       │   │   │   ├── AttributesInlineParser 2.php
│   │   │   │       │   │   │   └── AttributesInlineParser.php
│   │   │   │       │   │   └── Util
│   │   │   │       │   │       ├── AttributesHelper 2.php
│   │   │   │       │   │       └── AttributesHelper.php
│   │   │   │       │   ├── Autolink
│   │   │   │       │   │   ├── AutolinkExtension 2.php
│   │   │   │       │   │   ├── AutolinkExtension.php
│   │   │   │       │   │   ├── EmailAutolinkProcessor 2.php
│   │   │   │       │   │   ├── EmailAutolinkProcessor.php
│   │   │   │       │   │   ├── InlineMentionParser 2.php
│   │   │   │       │   │   ├── InlineMentionParser.php
│   │   │   │       │   │   ├── UrlAutolinkProcessor 2.php
│   │   │   │       │   │   └── UrlAutolinkProcessor.php
│   │   │   │       │   ├── CommonMarkCoreExtension 2.php
│   │   │   │       │   ├── CommonMarkCoreExtension.php
│   │   │   │       │   ├── DisallowedRawHtml
│   │   │   │       │   │   ├── DisallowedRawHtmlBlockRenderer 2.php
│   │   │   │       │   │   ├── DisallowedRawHtmlBlockRenderer.php
│   │   │   │       │   │   ├── DisallowedRawHtmlExtension 2.php
│   │   │   │       │   │   ├── DisallowedRawHtmlExtension.php
│   │   │   │       │   │   ├── DisallowedRawHtmlInlineRenderer 2.php
│   │   │   │       │   │   └── DisallowedRawHtmlInlineRenderer.php
│   │   │   │       │   ├── ExtensionInterface 2.php
│   │   │   │       │   ├── ExtensionInterface.php
│   │   │   │       │   ├── ExternalLink
│   │   │   │       │   │   ├── ExternalLinkExtension 2.php
│   │   │   │       │   │   ├── ExternalLinkExtension.php
│   │   │   │       │   │   ├── ExternalLinkProcessor 2.php
│   │   │   │       │   │   └── ExternalLinkProcessor.php
│   │   │   │       │   ├── Footnote
│   │   │   │       │   │   ├── Event
│   │   │   │       │   │   │   ├── AnonymousFootnotesListener 2.php
│   │   │   │       │   │   │   ├── AnonymousFootnotesListener.php
│   │   │   │       │   │   │   ├── GatherFootnotesListener 2.php
│   │   │   │       │   │   │   ├── GatherFootnotesListener.php
│   │   │   │       │   │   │   ├── NumberFootnotesListener 2.php
│   │   │   │       │   │   │   └── NumberFootnotesListener.php
│   │   │   │       │   │   ├── FootnoteExtension 2.php
│   │   │   │       │   │   ├── FootnoteExtension.php
│   │   │   │       │   │   ├── Node
│   │   │   │       │   │   │   ├── Footnote 2.php
│   │   │   │       │   │   │   ├── Footnote.php
│   │   │   │       │   │   │   ├── FootnoteBackref 2.php
│   │   │   │       │   │   │   ├── FootnoteBackref.php
│   │   │   │       │   │   │   ├── FootnoteContainer 2.php
│   │   │   │       │   │   │   ├── FootnoteContainer.php
│   │   │   │       │   │   │   ├── FootnoteRef 2.php
│   │   │   │       │   │   │   └── FootnoteRef.php
│   │   │   │       │   │   ├── Parser
│   │   │   │       │   │   │   ├── AnonymousFootnoteRefParser 2.php
│   │   │   │       │   │   │   ├── AnonymousFootnoteRefParser.php
│   │   │   │       │   │   │   ├── FootnoteParser 2.php
│   │   │   │       │   │   │   ├── FootnoteParser.php
│   │   │   │       │   │   │   ├── FootnoteRefParser 2.php
│   │   │   │       │   │   │   └── FootnoteRefParser.php
│   │   │   │       │   │   └── Renderer
│   │   │   │       │   │       ├── FootnoteBackrefRenderer 2.php
│   │   │   │       │   │       ├── FootnoteBackrefRenderer.php
│   │   │   │       │   │       ├── FootnoteContainerRenderer 2.php
│   │   │   │       │   │       ├── FootnoteContainerRenderer.php
│   │   │   │       │   │       ├── FootnoteRefRenderer 2.php
│   │   │   │       │   │       ├── FootnoteRefRenderer.php
│   │   │   │       │   │       ├── FootnoteRenderer 2.php
│   │   │   │       │   │       └── FootnoteRenderer.php
│   │   │   │       │   ├── GithubFlavoredMarkdownExtension 2.php
│   │   │   │       │   ├── GithubFlavoredMarkdownExtension.php
│   │   │   │       │   ├── HeadingPermalink
│   │   │   │       │   │   ├── HeadingPermalink 2.php
│   │   │   │       │   │   ├── HeadingPermalink.php
│   │   │   │       │   │   ├── HeadingPermalinkExtension 2.php
│   │   │   │       │   │   ├── HeadingPermalinkExtension.php
│   │   │   │       │   │   ├── HeadingPermalinkProcessor 2.php
│   │   │   │       │   │   ├── HeadingPermalinkProcessor.php
│   │   │   │       │   │   ├── HeadingPermalinkRenderer 2.php
│   │   │   │       │   │   ├── HeadingPermalinkRenderer.php
│   │   │   │       │   │   └── Slug
│   │   │   │       │   │       ├── DefaultSlugGenerator 2.php
│   │   │   │       │   │       ├── DefaultSlugGenerator.php
│   │   │   │       │   │       ├── SlugGeneratorInterface 2.php
│   │   │   │       │   │       └── SlugGeneratorInterface.php
│   │   │   │       │   ├── InlinesOnly
│   │   │   │       │   │   ├── ChildRenderer 2.php
│   │   │   │       │   │   ├── ChildRenderer.php
│   │   │   │       │   │   ├── InlinesOnlyExtension 2.php
│   │   │   │       │   │   └── InlinesOnlyExtension.php
│   │   │   │       │   ├── Mention
│   │   │   │       │   │   ├── Generator
│   │   │   │       │   │   │   ├── CallbackGenerator 2.php
│   │   │   │       │   │   │   ├── CallbackGenerator.php
│   │   │   │       │   │   │   ├── MentionGeneratorInterface 2.php
│   │   │   │       │   │   │   ├── MentionGeneratorInterface.php
│   │   │   │       │   │   │   ├── StringTemplateLinkGenerator 2.php
│   │   │   │       │   │   │   └── StringTemplateLinkGenerator.php
│   │   │   │       │   │   ├── Mention 2.php
│   │   │   │       │   │   ├── Mention.php
│   │   │   │       │   │   ├── MentionExtension 2.php
│   │   │   │       │   │   ├── MentionExtension.php
│   │   │   │       │   │   ├── MentionParser 2.php
│   │   │   │       │   │   └── MentionParser.php
│   │   │   │       │   ├── SmartPunct
│   │   │   │       │   │   ├── PunctuationParser 2.php
│   │   │   │       │   │   ├── PunctuationParser.php
│   │   │   │       │   │   ├── Quote 2.php
│   │   │   │       │   │   ├── Quote.php
│   │   │   │       │   │   ├── QuoteParser 2.php
│   │   │   │       │   │   ├── QuoteParser.php
│   │   │   │       │   │   ├── QuoteProcessor 2.php
│   │   │   │       │   │   ├── QuoteProcessor.php
│   │   │   │       │   │   ├── QuoteRenderer 2.php
│   │   │   │       │   │   ├── QuoteRenderer.php
│   │   │   │       │   │   ├── SmartPunctExtension 2.php
│   │   │   │       │   │   └── SmartPunctExtension.php
│   │   │   │       │   ├── Strikethrough
│   │   │   │       │   │   ├── Strikethrough 2.php
│   │   │   │       │   │   ├── Strikethrough.php
│   │   │   │       │   │   ├── StrikethroughDelimiterProcessor 2.php
│   │   │   │       │   │   ├── StrikethroughDelimiterProcessor.php
│   │   │   │       │   │   ├── StrikethroughExtension 2.php
│   │   │   │       │   │   ├── StrikethroughExtension.php
│   │   │   │       │   │   ├── StrikethroughRenderer 2.php
│   │   │   │       │   │   └── StrikethroughRenderer.php
│   │   │   │       │   ├── Table
│   │   │   │       │   │   ├── Table 2.php
│   │   │   │       │   │   ├── Table.php
│   │   │   │       │   │   ├── TableCell 2.php
│   │   │   │       │   │   ├── TableCell.php
│   │   │   │       │   │   ├── TableCellRenderer 2.php
│   │   │   │       │   │   ├── TableCellRenderer.php
│   │   │   │       │   │   ├── TableExtension 2.php
│   │   │   │       │   │   ├── TableExtension.php
│   │   │   │       │   │   ├── TableParser 2.php
│   │   │   │       │   │   ├── TableParser.php
│   │   │   │       │   │   ├── TableRenderer 2.php
│   │   │   │       │   │   ├── TableRenderer.php
│   │   │   │       │   │   ├── TableRow 2.php
│   │   │   │       │   │   ├── TableRow.php
│   │   │   │       │   │   ├── TableRowRenderer 2.php
│   │   │   │       │   │   ├── TableRowRenderer.php
│   │   │   │       │   │   ├── TableSection 2.php
│   │   │   │       │   │   ├── TableSection.php
│   │   │   │       │   │   ├── TableSectionRenderer 2.php
│   │   │   │       │   │   └── TableSectionRenderer.php
│   │   │   │       │   ├── TableOfContents
│   │   │   │       │   │   ├── Node
│   │   │   │       │   │   │   ├── TableOfContents 2.php
│   │   │   │       │   │   │   ├── TableOfContents.php
│   │   │   │       │   │   │   ├── TableOfContentsPlaceholder 2.php
│   │   │   │       │   │   │   └── TableOfContentsPlaceholder.php
│   │   │   │       │   │   ├── Normalizer
│   │   │   │       │   │   │   ├── AsIsNormalizerStrategy 2.php
│   │   │   │       │   │   │   ├── AsIsNormalizerStrategy.php
│   │   │   │       │   │   │   ├── FlatNormalizerStrategy 2.php
│   │   │   │       │   │   │   ├── FlatNormalizerStrategy.php
│   │   │   │       │   │   │   ├── NormalizerStrategyInterface 2.php
│   │   │   │       │   │   │   ├── NormalizerStrategyInterface.php
│   │   │   │       │   │   │   ├── RelativeNormalizerStrategy 2.php
│   │   │   │       │   │   │   └── RelativeNormalizerStrategy.php
│   │   │   │       │   │   ├── TableOfContents 2.php
│   │   │   │       │   │   ├── TableOfContents.php
│   │   │   │       │   │   ├── TableOfContentsBuilder 2.php
│   │   │   │       │   │   ├── TableOfContentsBuilder.php
│   │   │   │       │   │   ├── TableOfContentsExtension 2.php
│   │   │   │       │   │   ├── TableOfContentsExtension.php
│   │   │   │       │   │   ├── TableOfContentsGenerator 2.php
│   │   │   │       │   │   ├── TableOfContentsGenerator.php
│   │   │   │       │   │   ├── TableOfContentsGeneratorInterface 2.php
│   │   │   │       │   │   ├── TableOfContentsGeneratorInterface.php
│   │   │   │       │   │   ├── TableOfContentsPlaceholderParser 2.php
│   │   │   │       │   │   ├── TableOfContentsPlaceholderParser.php
│   │   │   │       │   │   ├── TableOfContentsPlaceholderRenderer 2.php
│   │   │   │       │   │   └── TableOfContentsPlaceholderRenderer.php
│   │   │   │       │   └── TaskList
│   │   │   │       │       ├── TaskListExtension 2.php
│   │   │   │       │       ├── TaskListExtension.php
│   │   │   │       │       ├── TaskListItemMarker 2.php
│   │   │   │       │       ├── TaskListItemMarker.php
│   │   │   │       │       ├── TaskListItemMarkerParser 2.php
│   │   │   │       │       ├── TaskListItemMarkerParser.php
│   │   │   │       │       ├── TaskListItemMarkerRenderer 2.php
│   │   │   │       │       └── TaskListItemMarkerRenderer.php
│   │   │   │       ├── GithubFlavoredMarkdownConverter 2.php
│   │   │   │       ├── GithubFlavoredMarkdownConverter.php
│   │   │   │       ├── HtmlElement 2.php
│   │   │   │       ├── HtmlElement.php
│   │   │   │       ├── HtmlRenderer 2.php
│   │   │   │       ├── HtmlRenderer.php
│   │   │   │       ├── Inline
│   │   │   │       │   ├── AdjacentTextMerger 2.php
│   │   │   │       │   ├── AdjacentTextMerger.php
│   │   │   │       │   ├── Element
│   │   │   │       │   │   ├── AbstractInline 2.php
│   │   │   │       │   │   ├── AbstractInline.php
│   │   │   │       │   │   ├── AbstractStringContainer 2.php
│   │   │   │       │   │   ├── AbstractStringContainer.php
│   │   │   │       │   │   ├── AbstractWebResource 2.php
│   │   │   │       │   │   ├── AbstractWebResource.php
│   │   │   │       │   │   ├── Code 2.php
│   │   │   │       │   │   ├── Code.php
│   │   │   │       │   │   ├── Emphasis 2.php
│   │   │   │       │   │   ├── Emphasis.php
│   │   │   │       │   │   ├── HtmlInline 2.php
│   │   │   │       │   │   ├── HtmlInline.php
│   │   │   │       │   │   ├── Image 2.php
│   │   │   │       │   │   ├── Image.php
│   │   │   │       │   │   ├── Link 2.php
│   │   │   │       │   │   ├── Link.php
│   │   │   │       │   │   ├── Newline 2.php
│   │   │   │       │   │   ├── Newline.php
│   │   │   │       │   │   ├── Strong 2.php
│   │   │   │       │   │   ├── Strong.php
│   │   │   │       │   │   ├── Text 2.php
│   │   │   │       │   │   └── Text.php
│   │   │   │       │   ├── Parser
│   │   │   │       │   │   ├── AutolinkParser 2.php
│   │   │   │       │   │   ├── AutolinkParser.php
│   │   │   │       │   │   ├── BacktickParser 2.php
│   │   │   │       │   │   ├── BacktickParser.php
│   │   │   │       │   │   ├── BangParser 2.php
│   │   │   │       │   │   ├── BangParser.php
│   │   │   │       │   │   ├── CloseBracketParser 2.php
│   │   │   │       │   │   ├── CloseBracketParser.php
│   │   │   │       │   │   ├── EntityParser 2.php
│   │   │   │       │   │   ├── EntityParser.php
│   │   │   │       │   │   ├── EscapableParser 2.php
│   │   │   │       │   │   ├── EscapableParser.php
│   │   │   │       │   │   ├── HtmlInlineParser 2.php
│   │   │   │       │   │   ├── HtmlInlineParser.php
│   │   │   │       │   │   ├── InlineParserInterface 2.php
│   │   │   │       │   │   ├── InlineParserInterface.php
│   │   │   │       │   │   ├── NewlineParser 2.php
│   │   │   │       │   │   ├── NewlineParser.php
│   │   │   │       │   │   ├── OpenBracketParser 2.php
│   │   │   │       │   │   └── OpenBracketParser.php
│   │   │   │       │   └── Renderer
│   │   │   │       │       ├── CodeRenderer 2.php
│   │   │   │       │       ├── CodeRenderer.php
│   │   │   │       │       ├── EmphasisRenderer 2.php
│   │   │   │       │       ├── EmphasisRenderer.php
│   │   │   │       │       ├── HtmlInlineRenderer 2.php
│   │   │   │       │       ├── HtmlInlineRenderer.php
│   │   │   │       │       ├── ImageRenderer 2.php
│   │   │   │       │       ├── ImageRenderer.php
│   │   │   │       │       ├── InlineRendererInterface 2.php
│   │   │   │       │       ├── InlineRendererInterface.php
│   │   │   │       │       ├── LinkRenderer 2.php
│   │   │   │       │       ├── LinkRenderer.php
│   │   │   │       │       ├── NewlineRenderer 2.php
│   │   │   │       │       ├── NewlineRenderer.php
│   │   │   │       │       ├── StrongRenderer 2.php
│   │   │   │       │       ├── StrongRenderer.php
│   │   │   │       │       ├── TextRenderer 2.php
│   │   │   │       │       └── TextRenderer.php
│   │   │   │       ├── InlineParserContext 2.php
│   │   │   │       ├── InlineParserContext.php
│   │   │   │       ├── InlineParserEngine 2.php
│   │   │   │       ├── InlineParserEngine.php
│   │   │   │       ├── Input
│   │   │   │       │   ├── MarkdownInput 2.php
│   │   │   │       │   ├── MarkdownInput.php
│   │   │   │       │   ├── MarkdownInputInterface 2.php
│   │   │   │       │   └── MarkdownInputInterface.php
│   │   │   │       ├── MarkdownConverterInterface 2.php
│   │   │   │       ├── MarkdownConverterInterface.php
│   │   │   │       ├── Node
│   │   │   │       │   ├── Node 2.php
│   │   │   │       │   ├── Node.php
│   │   │   │       │   ├── NodeWalker 2.php
│   │   │   │       │   ├── NodeWalker.php
│   │   │   │       │   ├── NodeWalkerEvent 2.php
│   │   │   │       │   └── NodeWalkerEvent.php
│   │   │   │       ├── Normalizer
│   │   │   │       │   ├── SlugNormalizer 2.php
│   │   │   │       │   ├── SlugNormalizer.php
│   │   │   │       │   ├── TextNormalizer 2.php
│   │   │   │       │   ├── TextNormalizer.php
│   │   │   │       │   ├── TextNormalizerInterface 2.php
│   │   │   │       │   └── TextNormalizerInterface.php
│   │   │   │       ├── Reference
│   │   │   │       │   ├── Reference 2.php
│   │   │   │       │   ├── Reference.php
│   │   │   │       │   ├── ReferenceInterface 2.php
│   │   │   │       │   ├── ReferenceInterface.php
│   │   │   │       │   ├── ReferenceMap 2.php
│   │   │   │       │   ├── ReferenceMap.php
│   │   │   │       │   ├── ReferenceMapInterface 2.php
│   │   │   │       │   ├── ReferenceMapInterface.php
│   │   │   │       │   ├── ReferenceParser 2.php
│   │   │   │       │   └── ReferenceParser.php
│   │   │   │       ├── UnmatchedBlockCloser 2.php
│   │   │   │       ├── UnmatchedBlockCloser.php
│   │   │   │       └── Util
│   │   │   │           ├── ArrayCollection 2.php
│   │   │   │           ├── ArrayCollection.php
│   │   │   │           ├── Configuration 2.php
│   │   │   │           ├── Configuration.php
│   │   │   │           ├── ConfigurationAwareInterface 2.php
│   │   │   │           ├── ConfigurationAwareInterface.php
│   │   │   │           ├── ConfigurationInterface 2.php
│   │   │   │           ├── ConfigurationInterface.php
│   │   │   │           ├── Html5Entities 2.php
│   │   │   │           ├── Html5Entities.php
│   │   │   │           ├── Html5EntityDecoder 2.php
│   │   │   │           ├── Html5EntityDecoder.php
│   │   │   │           ├── LinkParserHelper 2.php
│   │   │   │           ├── LinkParserHelper.php
│   │   │   │           ├── PrioritizedList 2.php
│   │   │   │           ├── PrioritizedList.php
│   │   │   │           ├── RegexHelper 2.php
│   │   │   │           ├── RegexHelper.php
│   │   │   │           ├── UrlEncoder 2.php
│   │   │   │           ├── UrlEncoder.php
│   │   │   │           ├── Xml 2.php
│   │   │   │           └── Xml.php
│   │   │   ├── flysystem
│   │   │   │   ├── CODE_OF_CONDUCT.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── SECURITY.md
│   │   │   │   ├── composer.json
│   │   │   │   ├── deprecations.md
│   │   │   │   └── src
│   │   │   │       ├── Adapter
│   │   │   │       │   ├── AbstractAdapter.php
│   │   │   │       │   ├── AbstractFtpAdapter.php
│   │   │   │       │   ├── CanOverwriteFiles.php
│   │   │   │       │   ├── Ftp.php
│   │   │   │       │   ├── Ftpd.php
│   │   │   │       │   ├── Local.php
│   │   │   │       │   ├── NullAdapter.php
│   │   │   │       │   ├── Polyfill
│   │   │   │       │   │   ├── NotSupportingVisibilityTrait.php
│   │   │   │       │   │   ├── StreamedCopyTrait.php
│   │   │   │       │   │   ├── StreamedReadingTrait.php
│   │   │   │       │   │   ├── StreamedTrait.php
│   │   │   │       │   │   └── StreamedWritingTrait.php
│   │   │   │       │   └── SynologyFtp.php
│   │   │   │       ├── AdapterInterface.php
│   │   │   │       ├── Config.php
│   │   │   │       ├── ConfigAwareTrait.php
│   │   │   │       ├── ConnectionErrorException.php
│   │   │   │       ├── ConnectionRuntimeException.php
│   │   │   │       ├── Directory.php
│   │   │   │       ├── Exception.php
│   │   │   │       ├── File.php
│   │   │   │       ├── FileExistsException.php
│   │   │   │       ├── FileNotFoundException.php
│   │   │   │       ├── Filesystem.php
│   │   │   │       ├── FilesystemException.php
│   │   │   │       ├── FilesystemInterface.php
│   │   │   │       ├── FilesystemNotFoundException.php
│   │   │   │       ├── Handler.php
│   │   │   │       ├── InvalidRootException.php
│   │   │   │       ├── MountManager.php
│   │   │   │       ├── NotSupportedException.php
│   │   │   │       ├── Plugin
│   │   │   │       │   ├── AbstractPlugin.php
│   │   │   │       │   ├── EmptyDir.php
│   │   │   │       │   ├── ForcedCopy.php
│   │   │   │       │   ├── ForcedRename.php
│   │   │   │       │   ├── GetWithMetadata.php
│   │   │   │       │   ├── ListFiles.php
│   │   │   │       │   ├── ListPaths.php
│   │   │   │       │   ├── ListWith.php
│   │   │   │       │   ├── PluggableTrait.php
│   │   │   │       │   └── PluginNotFoundException.php
│   │   │   │       ├── PluginInterface.php
│   │   │   │       ├── ReadInterface.php
│   │   │   │       ├── RootViolationException.php
│   │   │   │       ├── SafeStorage.php
│   │   │   │       ├── UnreadableFileException.php
│   │   │   │       ├── Util
│   │   │   │       │   ├── ContentListingFormatter.php
│   │   │   │       │   ├── MimeType.php
│   │   │   │       │   └── StreamHasher.php
│   │   │   │       └── Util.php
│   │   │   └── mime-type-detection
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── EmptyExtensionToMimeTypeMap 2.php
│   │   │           ├── EmptyExtensionToMimeTypeMap.php
│   │   │           ├── ExtensionMimeTypeDetector 2.php
│   │   │           ├── ExtensionMimeTypeDetector.php
│   │   │           ├── ExtensionToMimeTypeMap 2.php
│   │   │           ├── ExtensionToMimeTypeMap.php
│   │   │           ├── FinfoMimeTypeDetector 2.php
│   │   │           ├── FinfoMimeTypeDetector.php
│   │   │           ├── GeneratedExtensionToMimeTypeMap 2.php
│   │   │           ├── GeneratedExtensionToMimeTypeMap.php
│   │   │           ├── MimeTypeDetector 2.php
│   │   │           └── MimeTypeDetector.php
│   │   ├── mockery
│   │   │   └── mockery
│   │   │       ├── CHANGELOG.md
│   │   │       ├── CONTRIBUTING.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       ├── docs
│   │   │       │   ├── README.md
│   │   │       │   ├── conf.py
│   │   │       │   ├── cookbook
│   │   │       │   │   ├── big_parent_class.rst
│   │   │       │   │   ├── class_constants.rst
│   │   │       │   │   ├── default_expectations.rst
│   │   │       │   │   ├── detecting_mock_objects.rst
│   │   │       │   │   ├── index.rst
│   │   │       │   │   ├── map.rst.inc
│   │   │       │   │   ├── mockery_on.rst
│   │   │       │   │   ├── mocking_class_within_class.rst
│   │   │       │   │   ├── mocking_hard_dependencies.rst
│   │   │       │   │   └── not_calling_the_constructor.rst
│   │   │       │   ├── getting_started
│   │   │       │   │   ├── index.rst
│   │   │       │   │   ├── installation.rst
│   │   │       │   │   ├── map.rst.inc
│   │   │       │   │   ├── quick_reference.rst
│   │   │       │   │   ├── simple_example.rst
│   │   │       │   │   └── upgrading.rst
│   │   │       │   ├── index.rst
│   │   │       │   ├── mockery
│   │   │       │   │   ├── configuration.rst
│   │   │       │   │   ├── exceptions.rst
│   │   │       │   │   ├── gotchas.rst
│   │   │       │   │   ├── index.rst
│   │   │       │   │   ├── map.rst.inc
│   │   │       │   │   └── reserved_method_names.rst
│   │   │       │   └── reference
│   │   │       │       ├── alternative_should_receive_syntax.rst
│   │   │       │       ├── argument_validation.rst
│   │   │       │       ├── creating_test_doubles.rst
│   │   │       │       ├── demeter_chains.rst
│   │   │       │       ├── expectations.rst
│   │   │       │       ├── final_methods_classes.rst
│   │   │       │       ├── index.rst
│   │   │       │       ├── instance_mocking.rst
│   │   │       │       ├── magic_methods.rst
│   │   │       │       ├── map.rst.inc
│   │   │       │       ├── partial_mocks.rst
│   │   │       │       ├── pass_by_reference_behaviours.rst
│   │   │       │       ├── phpunit_integration.rst
│   │   │       │       ├── protected_methods.rst
│   │   │       │       ├── public_properties.rst
│   │   │       │       ├── public_static_properties.rst
│   │   │       │       └── spies.rst
│   │   │       └── library
│   │   │           ├── Mockery
│   │   │           │   ├── Adapter
│   │   │           │   │   └── Phpunit
│   │   │           │   │       ├── MockeryPHPUnitIntegration.php
│   │   │           │   │       ├── MockeryPHPUnitIntegrationAssertPostConditions.php
│   │   │           │   │       ├── MockeryTestCase.php
│   │   │           │   │       ├── MockeryTestCaseSetUp.php
│   │   │           │   │       ├── TestListener.php
│   │   │           │   │       └── TestListenerTrait.php
│   │   │           │   ├── ClosureWrapper.php
│   │   │           │   ├── CompositeExpectation.php
│   │   │           │   ├── Configuration.php
│   │   │           │   ├── Container.php
│   │   │           │   ├── CountValidator
│   │   │           │   │   ├── AtLeast.php
│   │   │           │   │   ├── AtMost.php
│   │   │           │   │   ├── CountValidatorAbstract.php
│   │   │           │   │   ├── Exact.php
│   │   │           │   │   └── Exception.php
│   │   │           │   ├── Exception
│   │   │           │   │   ├── BadMethodCallException.php
│   │   │           │   │   ├── InvalidArgumentException.php
│   │   │           │   │   ├── InvalidCountException.php
│   │   │           │   │   ├── InvalidOrderException.php
│   │   │           │   │   ├── NoMatchingExpectationException.php
│   │   │           │   │   └── RuntimeException.php
│   │   │           │   ├── Exception.php
│   │   │           │   ├── Expectation.php
│   │   │           │   ├── ExpectationDirector.php
│   │   │           │   ├── ExpectationInterface.php
│   │   │           │   ├── ExpectsHigherOrderMessage.php
│   │   │           │   ├── Generator
│   │   │           │   │   ├── CachingGenerator.php
│   │   │           │   │   ├── DefinedTargetClass.php
│   │   │           │   │   ├── Generator.php
│   │   │           │   │   ├── Method.php
│   │   │           │   │   ├── MockConfiguration.php
│   │   │           │   │   ├── MockConfigurationBuilder.php
│   │   │           │   │   ├── MockDefinition.php
│   │   │           │   │   ├── MockNameBuilder.php
│   │   │           │   │   ├── Parameter.php
│   │   │           │   │   ├── StringManipulation
│   │   │           │   │   │   └── Pass
│   │   │           │   │   │       ├── AvoidMethodClashPass.php
│   │   │           │   │   │       ├── CallTypeHintPass.php
│   │   │           │   │   │       ├── ClassNamePass.php
│   │   │           │   │   │       ├── ClassPass.php
│   │   │           │   │   │       ├── ConstantsPass.php
│   │   │           │   │   │       ├── InstanceMockPass.php
│   │   │           │   │   │       ├── InterfacePass.php
│   │   │           │   │   │       ├── MagicMethodTypeHintsPass.php
│   │   │           │   │   │       ├── MethodDefinitionPass.php
│   │   │           │   │   │       ├── Pass.php
│   │   │           │   │   │       ├── RemoveBuiltinMethodsThatAreFinalPass.php
│   │   │           │   │   │       ├── RemoveDestructorPass.php
│   │   │           │   │   │       ├── RemoveUnserializeForInternalSerializableClassesPass.php
│   │   │           │   │   │       └── TraitPass.php
│   │   │           │   │   ├── StringManipulationGenerator.php
│   │   │           │   │   ├── TargetClassInterface.php
│   │   │           │   │   └── UndefinedTargetClass.php
│   │   │           │   ├── HigherOrderMessage.php
│   │   │           │   ├── Instantiator.php
│   │   │           │   ├── LegacyMockInterface.php
│   │   │           │   ├── Loader
│   │   │           │   │   ├── EvalLoader.php
│   │   │           │   │   ├── Loader.php
│   │   │           │   │   └── RequireLoader.php
│   │   │           │   ├── Matcher
│   │   │           │   │   ├── AndAnyOtherArgs.php
│   │   │           │   │   ├── Any.php
│   │   │           │   │   ├── AnyArgs.php
│   │   │           │   │   ├── AnyOf.php
│   │   │           │   │   ├── ArgumentListMatcher.php
│   │   │           │   │   ├── Closure.php
│   │   │           │   │   ├── Contains.php
│   │   │           │   │   ├── Ducktype.php
│   │   │           │   │   ├── HasKey.php
│   │   │           │   │   ├── HasValue.php
│   │   │           │   │   ├── MatcherAbstract.php
│   │   │           │   │   ├── MultiArgumentClosure.php
│   │   │           │   │   ├── MustBe.php
│   │   │           │   │   ├── NoArgs.php
│   │   │           │   │   ├── Not.php
│   │   │           │   │   ├── NotAnyOf.php
│   │   │           │   │   ├── PHPUnitConstraint.php
│   │   │           │   │   ├── Pattern.php
│   │   │           │   │   ├── Subset.php
│   │   │           │   │   └── Type.php
│   │   │           │   ├── MethodCall.php
│   │   │           │   ├── Mock.php
│   │   │           │   ├── MockInterface.php
│   │   │           │   ├── QuickDefinitionsConfiguration.php
│   │   │           │   ├── ReceivedMethodCalls.php
│   │   │           │   ├── Reflector.php
│   │   │           │   ├── Undefined.php
│   │   │           │   ├── VerificationDirector.php
│   │   │           │   └── VerificationExpectation.php
│   │   │           ├── Mockery.php
│   │   │           └── helpers.php
│   │   ├── monolog
│   │   │   └── monolog
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── UPGRADE.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── Monolog
│   │   │               ├── DateTimeImmutable.php
│   │   │               ├── ErrorHandler.php
│   │   │               ├── Formatter
│   │   │               │   ├── ChromePHPFormatter.php
│   │   │               │   ├── ElasticaFormatter.php
│   │   │               │   ├── ElasticsearchFormatter.php
│   │   │               │   ├── FlowdockFormatter.php
│   │   │               │   ├── FluentdFormatter.php
│   │   │               │   ├── FormatterInterface.php
│   │   │               │   ├── GelfMessageFormatter.php
│   │   │               │   ├── HtmlFormatter.php
│   │   │               │   ├── JsonFormatter.php
│   │   │               │   ├── LineFormatter.php
│   │   │               │   ├── LogglyFormatter.php
│   │   │               │   ├── LogmaticFormatter.php
│   │   │               │   ├── LogstashFormatter.php
│   │   │               │   ├── MongoDBFormatter.php
│   │   │               │   ├── NormalizerFormatter.php
│   │   │               │   ├── ScalarFormatter.php
│   │   │               │   └── WildfireFormatter.php
│   │   │               ├── Handler
│   │   │               │   ├── AbstractHandler.php
│   │   │               │   ├── AbstractProcessingHandler.php
│   │   │               │   ├── AbstractSyslogHandler.php
│   │   │               │   ├── AmqpHandler.php
│   │   │               │   ├── BrowserConsoleHandler.php
│   │   │               │   ├── BufferHandler.php
│   │   │               │   ├── ChromePHPHandler.php
│   │   │               │   ├── CouchDBHandler.php
│   │   │               │   ├── CubeHandler.php
│   │   │               │   ├── Curl
│   │   │               │   │   └── Util.php
│   │   │               │   ├── DeduplicationHandler.php
│   │   │               │   ├── DoctrineCouchDBHandler.php
│   │   │               │   ├── DynamoDbHandler.php
│   │   │               │   ├── ElasticaHandler.php
│   │   │               │   ├── ElasticsearchHandler.php
│   │   │               │   ├── ErrorLogHandler.php
│   │   │               │   ├── FallbackGroupHandler.php
│   │   │               │   ├── FilterHandler.php
│   │   │               │   ├── FingersCrossed
│   │   │               │   │   ├── ActivationStrategyInterface.php
│   │   │               │   │   ├── ChannelLevelActivationStrategy.php
│   │   │               │   │   └── ErrorLevelActivationStrategy.php
│   │   │               │   ├── FingersCrossedHandler.php
│   │   │               │   ├── FirePHPHandler.php
│   │   │               │   ├── FleepHookHandler.php
│   │   │               │   ├── FlowdockHandler.php
│   │   │               │   ├── FormattableHandlerInterface.php
│   │   │               │   ├── FormattableHandlerTrait.php
│   │   │               │   ├── GelfHandler.php
│   │   │               │   ├── GroupHandler.php
│   │   │               │   ├── Handler.php
│   │   │               │   ├── HandlerInterface.php
│   │   │               │   ├── HandlerWrapper.php
│   │   │               │   ├── IFTTTHandler.php
│   │   │               │   ├── InsightOpsHandler.php
│   │   │               │   ├── LogEntriesHandler.php
│   │   │               │   ├── LogglyHandler.php
│   │   │               │   ├── LogmaticHandler.php
│   │   │               │   ├── MailHandler.php
│   │   │               │   ├── MandrillHandler.php
│   │   │               │   ├── MissingExtensionException.php
│   │   │               │   ├── MongoDBHandler.php
│   │   │               │   ├── NativeMailerHandler.php
│   │   │               │   ├── NewRelicHandler.php
│   │   │               │   ├── NoopHandler.php
│   │   │               │   ├── NullHandler.php
│   │   │               │   ├── OverflowHandler.php
│   │   │               │   ├── PHPConsoleHandler.php
│   │   │               │   ├── ProcessHandler.php
│   │   │               │   ├── ProcessableHandlerInterface.php
│   │   │               │   ├── ProcessableHandlerTrait.php
│   │   │               │   ├── PsrHandler.php
│   │   │               │   ├── PushoverHandler.php
│   │   │               │   ├── RedisHandler.php
│   │   │               │   ├── RollbarHandler.php
│   │   │               │   ├── RotatingFileHandler.php
│   │   │               │   ├── SamplingHandler.php
│   │   │               │   ├── SendGridHandler.php
│   │   │               │   ├── Slack
│   │   │               │   │   └── SlackRecord.php
│   │   │               │   ├── SlackHandler.php
│   │   │               │   ├── SlackWebhookHandler.php
│   │   │               │   ├── SocketHandler.php
│   │   │               │   ├── SqsHandler.php
│   │   │               │   ├── StreamHandler.php
│   │   │               │   ├── SwiftMailerHandler.php
│   │   │               │   ├── SyslogHandler.php
│   │   │               │   ├── SyslogUdp
│   │   │               │   │   └── UdpSocket.php
│   │   │               │   ├── SyslogUdpHandler.php
│   │   │               │   ├── TelegramBotHandler.php
│   │   │               │   ├── TestHandler.php
│   │   │               │   ├── WebRequestRecognizerTrait.php
│   │   │               │   ├── WhatFailureGroupHandler.php
│   │   │               │   └── ZendMonitorHandler.php
│   │   │               ├── Logger.php
│   │   │               ├── Processor
│   │   │               │   ├── GitProcessor.php
│   │   │               │   ├── HostnameProcessor.php
│   │   │               │   ├── IntrospectionProcessor.php
│   │   │               │   ├── MemoryPeakUsageProcessor.php
│   │   │               │   ├── MemoryProcessor.php
│   │   │               │   ├── MemoryUsageProcessor.php
│   │   │               │   ├── MercurialProcessor.php
│   │   │               │   ├── ProcessIdProcessor.php
│   │   │               │   ├── ProcessorInterface.php
│   │   │               │   ├── PsrLogMessageProcessor.php
│   │   │               │   ├── TagProcessor.php
│   │   │               │   ├── UidProcessor.php
│   │   │               │   └── WebProcessor.php
│   │   │               ├── Registry.php
│   │   │               ├── ResettableInterface.php
│   │   │               ├── SignalHandler.php
│   │   │               ├── Test
│   │   │               │   └── TestCase.php
│   │   │               └── Utils.php
│   │   ├── myclabs
│   │   │   └── deep-copy
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── DeepCopy
│   │   │               ├── DeepCopy 2.php
│   │   │               ├── DeepCopy.php
│   │   │               ├── Exception
│   │   │               │   ├── CloneException 2.php
│   │   │               │   ├── CloneException.php
│   │   │               │   ├── PropertyException 2.php
│   │   │               │   └── PropertyException.php
│   │   │               ├── Filter
│   │   │               │   ├── Doctrine
│   │   │               │   │   ├── DoctrineCollectionFilter 2.php
│   │   │               │   │   ├── DoctrineCollectionFilter.php
│   │   │               │   │   ├── DoctrineEmptyCollectionFilter 2.php
│   │   │               │   │   ├── DoctrineEmptyCollectionFilter.php
│   │   │               │   │   ├── DoctrineProxyFilter 2.php
│   │   │               │   │   └── DoctrineProxyFilter.php
│   │   │               │   ├── Filter 2.php
│   │   │               │   ├── Filter.php
│   │   │               │   ├── KeepFilter 2.php
│   │   │               │   ├── KeepFilter.php
│   │   │               │   ├── ReplaceFilter 2.php
│   │   │               │   ├── ReplaceFilter.php
│   │   │               │   ├── SetNullFilter 2.php
│   │   │               │   └── SetNullFilter.php
│   │   │               ├── Matcher
│   │   │               │   ├── Doctrine
│   │   │               │   │   ├── DoctrineProxyMatcher 2.php
│   │   │               │   │   └── DoctrineProxyMatcher.php
│   │   │               │   ├── Matcher 2.php
│   │   │               │   ├── Matcher.php
│   │   │               │   ├── PropertyMatcher 2.php
│   │   │               │   ├── PropertyMatcher.php
│   │   │               │   ├── PropertyNameMatcher 2.php
│   │   │               │   ├── PropertyNameMatcher.php
│   │   │               │   ├── PropertyTypeMatcher 2.php
│   │   │               │   └── PropertyTypeMatcher.php
│   │   │               ├── Reflection
│   │   │               │   ├── ReflectionHelper 2.php
│   │   │               │   └── ReflectionHelper.php
│   │   │               ├── TypeFilter
│   │   │               │   ├── Date
│   │   │               │   │   ├── DateIntervalFilter 2.php
│   │   │               │   │   └── DateIntervalFilter.php
│   │   │               │   ├── ReplaceFilter 2.php
│   │   │               │   ├── ReplaceFilter.php
│   │   │               │   ├── ShallowCopyFilter 2.php
│   │   │               │   ├── ShallowCopyFilter.php
│   │   │               │   ├── Spl
│   │   │               │   │   ├── ArrayObjectFilter 2.php
│   │   │               │   │   ├── ArrayObjectFilter.php
│   │   │               │   │   ├── SplDoublyLinkedList 2.php
│   │   │               │   │   ├── SplDoublyLinkedList.php
│   │   │               │   │   ├── SplDoublyLinkedListFilter 2.php
│   │   │               │   │   └── SplDoublyLinkedListFilter.php
│   │   │               │   ├── TypeFilter 2.php
│   │   │               │   └── TypeFilter.php
│   │   │               ├── TypeMatcher
│   │   │               │   ├── TypeMatcher 2.php
│   │   │               │   └── TypeMatcher.php
│   │   │               ├── deep_copy 2.php
│   │   │               └── deep_copy.php
│   │   ├── nesbot
│   │   │   └── carbon
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── bin
│   │   │       │   ├── carbon
│   │   │       │   ├── carbon 2
│   │   │       │   ├── carbon 2.bat
│   │   │       │   └── carbon.bat
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       ├── contributing 2.md
│   │   │       ├── contributing.md
│   │   │       ├── extension 3.neon
│   │   │       ├── extension.neon
│   │   │       ├── phpmd 2.xml
│   │   │       ├── phpmd.xml
│   │   │       ├── readme 2.md
│   │   │       ├── readme.md
│   │   │       └── src
│   │   │           └── Carbon
│   │   │               ├── Carbon 2.php
│   │   │               ├── Carbon.php
│   │   │               ├── CarbonConverterInterface 2.php
│   │   │               ├── CarbonConverterInterface.php
│   │   │               ├── CarbonImmutable 2.php
│   │   │               ├── CarbonImmutable.php
│   │   │               ├── CarbonInterface 2.php
│   │   │               ├── CarbonInterface.php
│   │   │               ├── CarbonInterval 2.php
│   │   │               ├── CarbonInterval.php
│   │   │               ├── CarbonPeriod 2.php
│   │   │               ├── CarbonPeriod.php
│   │   │               ├── CarbonTimeZone 2.php
│   │   │               ├── CarbonTimeZone.php
│   │   │               ├── Cli
│   │   │               │   ├── Invoker 2.php
│   │   │               │   └── Invoker.php
│   │   │               ├── Doctrine
│   │   │               │   ├── CarbonDoctrineType 2.php
│   │   │               │   ├── CarbonDoctrineType.php
│   │   │               │   ├── CarbonImmutableType 2.php
│   │   │               │   ├── CarbonImmutableType.php
│   │   │               │   ├── CarbonType 2.php
│   │   │               │   ├── CarbonType.php
│   │   │               │   ├── CarbonTypeConverter 2.php
│   │   │               │   ├── CarbonTypeConverter.php
│   │   │               │   ├── DateTimeDefaultPrecision 2.php
│   │   │               │   ├── DateTimeDefaultPrecision.php
│   │   │               │   ├── DateTimeImmutableType 2.php
│   │   │               │   ├── DateTimeImmutableType.php
│   │   │               │   ├── DateTimeType 2.php
│   │   │               │   └── DateTimeType.php
│   │   │               ├── Exceptions
│   │   │               │   ├── BadComparisonUnitException 2.php
│   │   │               │   ├── BadComparisonUnitException.php
│   │   │               │   ├── BadFluentConstructorException 2.php
│   │   │               │   ├── BadFluentConstructorException.php
│   │   │               │   ├── BadFluentSetterException 2.php
│   │   │               │   ├── BadFluentSetterException.php
│   │   │               │   ├── BadMethodCallException 2.php
│   │   │               │   ├── BadMethodCallException.php
│   │   │               │   ├── Exception 2.php
│   │   │               │   ├── Exception.php
│   │   │               │   ├── ImmutableException 2.php
│   │   │               │   ├── ImmutableException.php
│   │   │               │   ├── InvalidArgumentException 2.php
│   │   │               │   ├── InvalidArgumentException.php
│   │   │               │   ├── InvalidCastException 2.php
│   │   │               │   ├── InvalidCastException.php
│   │   │               │   ├── InvalidDateException 2.php
│   │   │               │   ├── InvalidDateException.php
│   │   │               │   ├── InvalidFormatException 2.php
│   │   │               │   ├── InvalidFormatException.php
│   │   │               │   ├── InvalidIntervalException 2.php
│   │   │               │   ├── InvalidIntervalException.php
│   │   │               │   ├── InvalidPeriodDateException 2.php
│   │   │               │   ├── InvalidPeriodDateException.php
│   │   │               │   ├── InvalidPeriodParameterException 2.php
│   │   │               │   ├── InvalidPeriodParameterException.php
│   │   │               │   ├── InvalidTimeZoneException 2.php
│   │   │               │   ├── InvalidTimeZoneException.php
│   │   │               │   ├── InvalidTypeException 2.php
│   │   │               │   ├── InvalidTypeException.php
│   │   │               │   ├── NotACarbonClassException 2.php
│   │   │               │   ├── NotACarbonClassException.php
│   │   │               │   ├── NotAPeriodException 2.php
│   │   │               │   ├── NotAPeriodException.php
│   │   │               │   ├── NotLocaleAwareException 2.php
│   │   │               │   ├── NotLocaleAwareException.php
│   │   │               │   ├── OutOfRangeException 2.php
│   │   │               │   ├── OutOfRangeException.php
│   │   │               │   ├── ParseErrorException 2.php
│   │   │               │   ├── ParseErrorException.php
│   │   │               │   ├── RuntimeException 2.php
│   │   │               │   ├── RuntimeException.php
│   │   │               │   ├── UnitException 2.php
│   │   │               │   ├── UnitException.php
│   │   │               │   ├── UnitNotConfiguredException 2.php
│   │   │               │   ├── UnitNotConfiguredException.php
│   │   │               │   ├── UnknownGetterException 2.php
│   │   │               │   ├── UnknownGetterException.php
│   │   │               │   ├── UnknownMethodException 2.php
│   │   │               │   ├── UnknownMethodException.php
│   │   │               │   ├── UnknownSetterException 2.php
│   │   │               │   ├── UnknownSetterException.php
│   │   │               │   ├── UnknownUnitException 2.php
│   │   │               │   ├── UnknownUnitException.php
│   │   │               │   ├── UnreachableException 2.php
│   │   │               │   └── UnreachableException.php
│   │   │               ├── Factory 2.php
│   │   │               ├── Factory.php
│   │   │               ├── FactoryImmutable 2.php
│   │   │               ├── FactoryImmutable.php
│   │   │               ├── Lang
│   │   │               │   ├── aa 2.php
│   │   │               │   ├── aa.php
│   │   │               │   ├── aa_DJ 2.php
│   │   │               │   ├── aa_DJ.php
│   │   │               │   ├── aa_ER 2.php
│   │   │               │   ├── aa_ER.php
│   │   │               │   ├── aa_ER@saaho 2.php
│   │   │               │   ├── aa_ER@saaho.php
│   │   │               │   ├── aa_ET 2.php
│   │   │               │   ├── aa_ET.php
│   │   │               │   ├── af 2.php
│   │   │               │   ├── af.php
│   │   │               │   ├── af_NA 2.php
│   │   │               │   ├── af_NA.php
│   │   │               │   ├── af_ZA 2.php
│   │   │               │   ├── af_ZA.php
│   │   │               │   ├── agq 2.php
│   │   │               │   ├── agq.php
│   │   │               │   ├── agr 2.php
│   │   │               │   ├── agr.php
│   │   │               │   ├── agr_PE 2.php
│   │   │               │   ├── agr_PE.php
│   │   │               │   ├── ak 2.php
│   │   │               │   ├── ak.php
│   │   │               │   ├── ak_GH 2.php
│   │   │               │   ├── ak_GH.php
│   │   │               │   ├── am 2.php
│   │   │               │   ├── am.php
│   │   │               │   ├── am_ET 2.php
│   │   │               │   ├── am_ET.php
│   │   │               │   ├── an 2.php
│   │   │               │   ├── an.php
│   │   │               │   ├── an_ES 2.php
│   │   │               │   ├── an_ES.php
│   │   │               │   ├── anp 2.php
│   │   │               │   ├── anp.php
│   │   │               │   ├── anp_IN 2.php
│   │   │               │   ├── anp_IN.php
│   │   │               │   ├── ar 2.php
│   │   │               │   ├── ar.php
│   │   │               │   ├── ar_AE 2.php
│   │   │               │   ├── ar_AE.php
│   │   │               │   ├── ar_BH 2.php
│   │   │               │   ├── ar_BH.php
│   │   │               │   ├── ar_DJ 2.php
│   │   │               │   ├── ar_DJ.php
│   │   │               │   ├── ar_DZ 2.php
│   │   │               │   ├── ar_DZ.php
│   │   │               │   ├── ar_EG 2.php
│   │   │               │   ├── ar_EG.php
│   │   │               │   ├── ar_EH 2.php
│   │   │               │   ├── ar_EH.php
│   │   │               │   ├── ar_ER 2.php
│   │   │               │   ├── ar_ER.php
│   │   │               │   ├── ar_IL 2.php
│   │   │               │   ├── ar_IL.php
│   │   │               │   ├── ar_IN 2.php
│   │   │               │   ├── ar_IN.php
│   │   │               │   ├── ar_IQ 2.php
│   │   │               │   ├── ar_IQ.php
│   │   │               │   ├── ar_JO 2.php
│   │   │               │   ├── ar_JO.php
│   │   │               │   ├── ar_KM 2.php
│   │   │               │   ├── ar_KM.php
│   │   │               │   ├── ar_KW 2.php
│   │   │               │   ├── ar_KW.php
│   │   │               │   ├── ar_LB 2.php
│   │   │               │   ├── ar_LB.php
│   │   │               │   ├── ar_LY 2.php
│   │   │               │   ├── ar_LY.php
│   │   │               │   ├── ar_MA 2.php
│   │   │               │   ├── ar_MA.php
│   │   │               │   ├── ar_MR 2.php
│   │   │               │   ├── ar_MR.php
│   │   │               │   ├── ar_OM 2.php
│   │   │               │   ├── ar_OM.php
│   │   │               │   ├── ar_PS 2.php
│   │   │               │   ├── ar_PS.php
│   │   │               │   ├── ar_QA 2.php
│   │   │               │   ├── ar_QA.php
│   │   │               │   ├── ar_SA 2.php
│   │   │               │   ├── ar_SA.php
│   │   │               │   ├── ar_SD 2.php
│   │   │               │   ├── ar_SD.php
│   │   │               │   ├── ar_SO 2.php
│   │   │               │   ├── ar_SO.php
│   │   │               │   ├── ar_SS 2.php
│   │   │               │   ├── ar_SS.php
│   │   │               │   ├── ar_SY 2.php
│   │   │               │   ├── ar_SY.php
│   │   │               │   ├── ar_Shakl 2.php
│   │   │               │   ├── ar_Shakl.php
│   │   │               │   ├── ar_TD 2.php
│   │   │               │   ├── ar_TD.php
│   │   │               │   ├── ar_TN 2.php
│   │   │               │   ├── ar_TN.php
│   │   │               │   ├── ar_YE 2.php
│   │   │               │   ├── ar_YE.php
│   │   │               │   ├── as 2.php
│   │   │               │   ├── as.php
│   │   │               │   ├── as_IN 2.php
│   │   │               │   ├── as_IN.php
│   │   │               │   ├── asa 2.php
│   │   │               │   ├── asa.php
│   │   │               │   ├── ast 2.php
│   │   │               │   ├── ast.php
│   │   │               │   ├── ast_ES 2.php
│   │   │               │   ├── ast_ES.php
│   │   │               │   ├── ayc 2.php
│   │   │               │   ├── ayc.php
│   │   │               │   ├── ayc_PE 2.php
│   │   │               │   ├── ayc_PE.php
│   │   │               │   ├── az 2.php
│   │   │               │   ├── az.php
│   │   │               │   ├── az_AZ 2.php
│   │   │               │   ├── az_AZ.php
│   │   │               │   ├── az_Cyrl 2.php
│   │   │               │   ├── az_Cyrl.php
│   │   │               │   ├── az_IR 2.php
│   │   │               │   ├── az_IR.php
│   │   │               │   ├── az_Latn 2.php
│   │   │               │   ├── az_Latn.php
│   │   │               │   ├── bas 2.php
│   │   │               │   ├── bas.php
│   │   │               │   ├── be 2.php
│   │   │               │   ├── be.php
│   │   │               │   ├── be_BY 2.php
│   │   │               │   ├── be_BY.php
│   │   │               │   ├── be_BY@latin 2.php
│   │   │               │   ├── be_BY@latin.php
│   │   │               │   ├── bem 2.php
│   │   │               │   ├── bem.php
│   │   │               │   ├── bem_ZM 2.php
│   │   │               │   ├── bem_ZM.php
│   │   │               │   ├── ber 2.php
│   │   │               │   ├── ber.php
│   │   │               │   ├── ber_DZ 2.php
│   │   │               │   ├── ber_DZ.php
│   │   │               │   ├── ber_MA 2.php
│   │   │               │   ├── ber_MA.php
│   │   │               │   ├── bez 2.php
│   │   │               │   ├── bez.php
│   │   │               │   ├── bg 2.php
│   │   │               │   ├── bg.php
│   │   │               │   ├── bg_BG 2.php
│   │   │               │   ├── bg_BG.php
│   │   │               │   ├── bhb 2.php
│   │   │               │   ├── bhb.php
│   │   │               │   ├── bhb_IN 2.php
│   │   │               │   ├── bhb_IN.php
│   │   │               │   ├── bho 2.php
│   │   │               │   ├── bho.php
│   │   │               │   ├── bho_IN 2.php
│   │   │               │   ├── bho_IN.php
│   │   │               │   ├── bi 2.php
│   │   │               │   ├── bi.php
│   │   │               │   ├── bi_VU 2.php
│   │   │               │   ├── bi_VU.php
│   │   │               │   ├── bm 2.php
│   │   │               │   ├── bm.php
│   │   │               │   ├── bn 2.php
│   │   │               │   ├── bn.php
│   │   │               │   ├── bn_BD 2.php
│   │   │               │   ├── bn_BD.php
│   │   │               │   ├── bn_IN 2.php
│   │   │               │   ├── bn_IN.php
│   │   │               │   ├── bo 2.php
│   │   │               │   ├── bo.php
│   │   │               │   ├── bo_CN 2.php
│   │   │               │   ├── bo_CN.php
│   │   │               │   ├── bo_IN 2.php
│   │   │               │   ├── bo_IN.php
│   │   │               │   ├── br 2.php
│   │   │               │   ├── br.php
│   │   │               │   ├── br_FR 2.php
│   │   │               │   ├── br_FR.php
│   │   │               │   ├── brx 2.php
│   │   │               │   ├── brx.php
│   │   │               │   ├── brx_IN 2.php
│   │   │               │   ├── brx_IN.php
│   │   │               │   ├── bs 2.php
│   │   │               │   ├── bs.php
│   │   │               │   ├── bs_BA 2.php
│   │   │               │   ├── bs_BA.php
│   │   │               │   ├── bs_Cyrl 2.php
│   │   │               │   ├── bs_Cyrl.php
│   │   │               │   ├── bs_Latn 2.php
│   │   │               │   ├── bs_Latn.php
│   │   │               │   ├── byn 2.php
│   │   │               │   ├── byn.php
│   │   │               │   ├── byn_ER 2.php
│   │   │               │   ├── byn_ER.php
│   │   │               │   ├── ca 2.php
│   │   │               │   ├── ca.php
│   │   │               │   ├── ca_AD 2.php
│   │   │               │   ├── ca_AD.php
│   │   │               │   ├── ca_ES 2.php
│   │   │               │   ├── ca_ES.php
│   │   │               │   ├── ca_ES_Valencia 2.php
│   │   │               │   ├── ca_ES_Valencia.php
│   │   │               │   ├── ca_FR 2.php
│   │   │               │   ├── ca_FR.php
│   │   │               │   ├── ca_IT 2.php
│   │   │               │   ├── ca_IT.php
│   │   │               │   ├── ccp 2.php
│   │   │               │   ├── ccp.php
│   │   │               │   ├── ccp_IN 2.php
│   │   │               │   ├── ccp_IN.php
│   │   │               │   ├── ce 2.php
│   │   │               │   ├── ce.php
│   │   │               │   ├── ce_RU 2.php
│   │   │               │   ├── ce_RU.php
│   │   │               │   ├── cgg 2.php
│   │   │               │   ├── cgg.php
│   │   │               │   ├── chr 2.php
│   │   │               │   ├── chr.php
│   │   │               │   ├── chr_US 2.php
│   │   │               │   ├── chr_US.php
│   │   │               │   ├── cmn 2.php
│   │   │               │   ├── cmn.php
│   │   │               │   ├── cmn_TW 2.php
│   │   │               │   ├── cmn_TW.php
│   │   │               │   ├── crh 2.php
│   │   │               │   ├── crh.php
│   │   │               │   ├── crh_UA 2.php
│   │   │               │   ├── crh_UA.php
│   │   │               │   ├── cs 2.php
│   │   │               │   ├── cs.php
│   │   │               │   ├── cs_CZ 2.php
│   │   │               │   ├── cs_CZ.php
│   │   │               │   ├── csb 2.php
│   │   │               │   ├── csb.php
│   │   │               │   ├── csb_PL 2.php
│   │   │               │   ├── csb_PL.php
│   │   │               │   ├── cu 2.php
│   │   │               │   ├── cu.php
│   │   │               │   ├── cv 2.php
│   │   │               │   ├── cv.php
│   │   │               │   ├── cv_RU 2.php
│   │   │               │   ├── cv_RU.php
│   │   │               │   ├── cy 2.php
│   │   │               │   ├── cy.php
│   │   │               │   ├── cy_GB 2.php
│   │   │               │   ├── cy_GB.php
│   │   │               │   ├── da 2.php
│   │   │               │   ├── da.php
│   │   │               │   ├── da_DK 2.php
│   │   │               │   ├── da_DK.php
│   │   │               │   ├── da_GL 2.php
│   │   │               │   ├── da_GL.php
│   │   │               │   ├── dav 2.php
│   │   │               │   ├── dav.php
│   │   │               │   ├── de 2.php
│   │   │               │   ├── de.php
│   │   │               │   ├── de_AT 2.php
│   │   │               │   ├── de_AT.php
│   │   │               │   ├── de_BE 2.php
│   │   │               │   ├── de_BE.php
│   │   │               │   ├── de_CH 2.php
│   │   │               │   ├── de_CH.php
│   │   │               │   ├── de_DE 2.php
│   │   │               │   ├── de_DE.php
│   │   │               │   ├── de_IT 2.php
│   │   │               │   ├── de_IT.php
│   │   │               │   ├── de_LI 2.php
│   │   │               │   ├── de_LI.php
│   │   │               │   ├── de_LU 2.php
│   │   │               │   ├── de_LU.php
│   │   │               │   ├── dje 2.php
│   │   │               │   ├── dje.php
│   │   │               │   ├── doi 2.php
│   │   │               │   ├── doi.php
│   │   │               │   ├── doi_IN 2.php
│   │   │               │   ├── doi_IN.php
│   │   │               │   ├── dsb 2.php
│   │   │               │   ├── dsb.php
│   │   │               │   ├── dsb_DE 2.php
│   │   │               │   ├── dsb_DE.php
│   │   │               │   ├── dua 2.php
│   │   │               │   ├── dua.php
│   │   │               │   ├── dv 2.php
│   │   │               │   ├── dv.php
│   │   │               │   ├── dv_MV 2.php
│   │   │               │   ├── dv_MV.php
│   │   │               │   ├── dyo 2.php
│   │   │               │   ├── dyo.php
│   │   │               │   ├── dz 2.php
│   │   │               │   ├── dz.php
│   │   │               │   ├── dz_BT 2.php
│   │   │               │   ├── dz_BT.php
│   │   │               │   ├── ebu 2.php
│   │   │               │   ├── ebu.php
│   │   │               │   ├── ee 2.php
│   │   │               │   ├── ee.php
│   │   │               │   ├── ee_TG 2.php
│   │   │               │   ├── ee_TG.php
│   │   │               │   ├── el 2.php
│   │   │               │   ├── el.php
│   │   │               │   ├── el_CY 2.php
│   │   │               │   ├── el_CY.php
│   │   │               │   ├── el_GR 2.php
│   │   │               │   ├── el_GR.php
│   │   │               │   ├── en 2.php
│   │   │               │   ├── en.php
│   │   │               │   ├── en_001 2.php
│   │   │               │   ├── en_001.php
│   │   │               │   ├── en_150 2.php
│   │   │               │   ├── en_150.php
│   │   │               │   ├── en_AG 2.php
│   │   │               │   ├── en_AG.php
│   │   │               │   ├── en_AI 2.php
│   │   │               │   ├── en_AI.php
│   │   │               │   ├── en_AS 2.php
│   │   │               │   ├── en_AS.php
│   │   │               │   ├── en_AT 2.php
│   │   │               │   ├── en_AT.php
│   │   │               │   ├── en_AU 2.php
│   │   │               │   ├── en_AU.php
│   │   │               │   ├── en_BB 2.php
│   │   │               │   ├── en_BB.php
│   │   │               │   ├── en_BE 2.php
│   │   │               │   ├── en_BE.php
│   │   │               │   ├── en_BI 2.php
│   │   │               │   ├── en_BI.php
│   │   │               │   ├── en_BM 2.php
│   │   │               │   ├── en_BM.php
│   │   │               │   ├── en_BS 2.php
│   │   │               │   ├── en_BS.php
│   │   │               │   ├── en_BW 2.php
│   │   │               │   ├── en_BW.php
│   │   │               │   ├── en_BZ 2.php
│   │   │               │   ├── en_BZ.php
│   │   │               │   ├── en_CA 2.php
│   │   │               │   ├── en_CA.php
│   │   │               │   ├── en_CC 2.php
│   │   │               │   ├── en_CC.php
│   │   │               │   ├── en_CH 2.php
│   │   │               │   ├── en_CH.php
│   │   │               │   ├── en_CK 2.php
│   │   │               │   ├── en_CK.php
│   │   │               │   ├── en_CM 2.php
│   │   │               │   ├── en_CM.php
│   │   │               │   ├── en_CX 2.php
│   │   │               │   ├── en_CX.php
│   │   │               │   ├── en_CY 2.php
│   │   │               │   ├── en_CY.php
│   │   │               │   ├── en_DE 2.php
│   │   │               │   ├── en_DE.php
│   │   │               │   ├── en_DG 2.php
│   │   │               │   ├── en_DG.php
│   │   │               │   ├── en_DK 2.php
│   │   │               │   ├── en_DK.php
│   │   │               │   ├── en_DM 2.php
│   │   │               │   ├── en_DM.php
│   │   │               │   ├── en_ER 2.php
│   │   │               │   ├── en_ER.php
│   │   │               │   ├── en_FI 2.php
│   │   │               │   ├── en_FI.php
│   │   │               │   ├── en_FJ 2.php
│   │   │               │   ├── en_FJ.php
│   │   │               │   ├── en_FK 2.php
│   │   │               │   ├── en_FK.php
│   │   │               │   ├── en_FM 2.php
│   │   │               │   ├── en_FM.php
│   │   │               │   ├── en_GB 2.php
│   │   │               │   ├── en_GB.php
│   │   │               │   ├── en_GD 2.php
│   │   │               │   ├── en_GD.php
│   │   │               │   ├── en_GG 2.php
│   │   │               │   ├── en_GG.php
│   │   │               │   ├── en_GH 2.php
│   │   │               │   ├── en_GH.php
│   │   │               │   ├── en_GI 2.php
│   │   │               │   ├── en_GI.php
│   │   │               │   ├── en_GM 2.php
│   │   │               │   ├── en_GM.php
│   │   │               │   ├── en_GU 2.php
│   │   │               │   ├── en_GU.php
│   │   │               │   ├── en_GY 2.php
│   │   │               │   ├── en_GY.php
│   │   │               │   ├── en_HK 2.php
│   │   │               │   ├── en_HK.php
│   │   │               │   ├── en_IE 2.php
│   │   │               │   ├── en_IE.php
│   │   │               │   ├── en_IL 2.php
│   │   │               │   ├── en_IL.php
│   │   │               │   ├── en_IM 2.php
│   │   │               │   ├── en_IM.php
│   │   │               │   ├── en_IN 2.php
│   │   │               │   ├── en_IN.php
│   │   │               │   ├── en_IO 2.php
│   │   │               │   ├── en_IO.php
│   │   │               │   ├── en_ISO 2.php
│   │   │               │   ├── en_ISO.php
│   │   │               │   ├── en_JE 2.php
│   │   │               │   ├── en_JE.php
│   │   │               │   ├── en_JM 2.php
│   │   │               │   ├── en_JM.php
│   │   │               │   ├── en_KE 2.php
│   │   │               │   ├── en_KE.php
│   │   │               │   ├── en_KI 2.php
│   │   │               │   ├── en_KI.php
│   │   │               │   ├── en_KN 2.php
│   │   │               │   ├── en_KN.php
│   │   │               │   ├── en_KY 2.php
│   │   │               │   ├── en_KY.php
│   │   │               │   ├── en_LC 2.php
│   │   │               │   ├── en_LC.php
│   │   │               │   ├── en_LR 2.php
│   │   │               │   ├── en_LR.php
│   │   │               │   ├── en_LS 2.php
│   │   │               │   ├── en_LS.php
│   │   │               │   ├── en_MG 2.php
│   │   │               │   ├── en_MG.php
│   │   │               │   ├── en_MH 2.php
│   │   │               │   ├── en_MH.php
│   │   │               │   ├── en_MO 2.php
│   │   │               │   ├── en_MO.php
│   │   │               │   ├── en_MP 2.php
│   │   │               │   ├── en_MP.php
│   │   │               │   ├── en_MS 2.php
│   │   │               │   ├── en_MS.php
│   │   │               │   ├── en_MT 2.php
│   │   │               │   ├── en_MT.php
│   │   │               │   ├── en_MU 2.php
│   │   │               │   ├── en_MU.php
│   │   │               │   ├── en_MW 2.php
│   │   │               │   ├── en_MW.php
│   │   │               │   ├── en_MY 2.php
│   │   │               │   ├── en_MY.php
│   │   │               │   ├── en_NA 2.php
│   │   │               │   ├── en_NA.php
│   │   │               │   ├── en_NF 2.php
│   │   │               │   ├── en_NF.php
│   │   │               │   ├── en_NG 2.php
│   │   │               │   ├── en_NG.php
│   │   │               │   ├── en_NL 2.php
│   │   │               │   ├── en_NL.php
│   │   │               │   ├── en_NR 2.php
│   │   │               │   ├── en_NR.php
│   │   │               │   ├── en_NU 2.php
│   │   │               │   ├── en_NU.php
│   │   │               │   ├── en_NZ 2.php
│   │   │               │   ├── en_NZ.php
│   │   │               │   ├── en_PG 2.php
│   │   │               │   ├── en_PG.php
│   │   │               │   ├── en_PH 2.php
│   │   │               │   ├── en_PH.php
│   │   │               │   ├── en_PK 2.php
│   │   │               │   ├── en_PK.php
│   │   │               │   ├── en_PN 2.php
│   │   │               │   ├── en_PN.php
│   │   │               │   ├── en_PR 2.php
│   │   │               │   ├── en_PR.php
│   │   │               │   ├── en_PW 2.php
│   │   │               │   ├── en_PW.php
│   │   │               │   ├── en_RW 2.php
│   │   │               │   ├── en_RW.php
│   │   │               │   ├── en_SB 2.php
│   │   │               │   ├── en_SB.php
│   │   │               │   ├── en_SC 2.php
│   │   │               │   ├── en_SC.php
│   │   │               │   ├── en_SD 2.php
│   │   │               │   ├── en_SD.php
│   │   │               │   ├── en_SE 2.php
│   │   │               │   ├── en_SE.php
│   │   │               │   ├── en_SG 2.php
│   │   │               │   ├── en_SG.php
│   │   │               │   ├── en_SH 2.php
│   │   │               │   ├── en_SH.php
│   │   │               │   ├── en_SI 2.php
│   │   │               │   ├── en_SI.php
│   │   │               │   ├── en_SL 2.php
│   │   │               │   ├── en_SL.php
│   │   │               │   ├── en_SS 2.php
│   │   │               │   ├── en_SS.php
│   │   │               │   ├── en_SX 2.php
│   │   │               │   ├── en_SX.php
│   │   │               │   ├── en_SZ 2.php
│   │   │               │   ├── en_SZ.php
│   │   │               │   ├── en_TC 2.php
│   │   │               │   ├── en_TC.php
│   │   │               │   ├── en_TK 2.php
│   │   │               │   ├── en_TK.php
│   │   │               │   ├── en_TO 2.php
│   │   │               │   ├── en_TO.php
│   │   │               │   ├── en_TT 2.php
│   │   │               │   ├── en_TT.php
│   │   │               │   ├── en_TV 2.php
│   │   │               │   ├── en_TV.php
│   │   │               │   ├── en_TZ 2.php
│   │   │               │   ├── en_TZ.php
│   │   │               │   ├── en_UG 2.php
│   │   │               │   ├── en_UG.php
│   │   │               │   ├── en_UM 2.php
│   │   │               │   ├── en_UM.php
│   │   │               │   ├── en_US 2.php
│   │   │               │   ├── en_US.php
│   │   │               │   ├── en_US_Posix 2.php
│   │   │               │   ├── en_US_Posix.php
│   │   │               │   ├── en_VC 2.php
│   │   │               │   ├── en_VC.php
│   │   │               │   ├── en_VG 2.php
│   │   │               │   ├── en_VG.php
│   │   │               │   ├── en_VI 2.php
│   │   │               │   ├── en_VI.php
│   │   │               │   ├── en_VU 2.php
│   │   │               │   ├── en_VU.php
│   │   │               │   ├── en_WS 2.php
│   │   │               │   ├── en_WS.php
│   │   │               │   ├── en_ZA 2.php
│   │   │               │   ├── en_ZA.php
│   │   │               │   ├── en_ZM 2.php
│   │   │               │   ├── en_ZM.php
│   │   │               │   ├── en_ZW 2.php
│   │   │               │   ├── en_ZW.php
│   │   │               │   ├── eo 2.php
│   │   │               │   ├── eo.php
│   │   │               │   ├── es 2.php
│   │   │               │   ├── es.php
│   │   │               │   ├── es_419 2.php
│   │   │               │   ├── es_419.php
│   │   │               │   ├── es_AR 2.php
│   │   │               │   ├── es_AR.php
│   │   │               │   ├── es_BO 2.php
│   │   │               │   ├── es_BO.php
│   │   │               │   ├── es_BR 2.php
│   │   │               │   ├── es_BR.php
│   │   │               │   ├── es_BZ 2.php
│   │   │               │   ├── es_BZ.php
│   │   │               │   ├── es_CL 2.php
│   │   │               │   ├── es_CL.php
│   │   │               │   ├── es_CO 2.php
│   │   │               │   ├── es_CO.php
│   │   │               │   ├── es_CR 2.php
│   │   │               │   ├── es_CR.php
│   │   │               │   ├── es_CU 2.php
│   │   │               │   ├── es_CU.php
│   │   │               │   ├── es_DO 2.php
│   │   │               │   ├── es_DO.php
│   │   │               │   ├── es_EA 2.php
│   │   │               │   ├── es_EA.php
│   │   │               │   ├── es_EC 2.php
│   │   │               │   ├── es_EC.php
│   │   │               │   ├── es_ES 2.php
│   │   │               │   ├── es_ES.php
│   │   │               │   ├── es_GQ 2.php
│   │   │               │   ├── es_GQ.php
│   │   │               │   ├── es_GT 2.php
│   │   │               │   ├── es_GT.php
│   │   │               │   ├── es_HN 2.php
│   │   │               │   ├── es_HN.php
│   │   │               │   ├── es_IC 2.php
│   │   │               │   ├── es_IC.php
│   │   │               │   ├── es_MX 2.php
│   │   │               │   ├── es_MX.php
│   │   │               │   ├── es_NI 2.php
│   │   │               │   ├── es_NI.php
│   │   │               │   ├── es_PA 2.php
│   │   │               │   ├── es_PA.php
│   │   │               │   ├── es_PE 2.php
│   │   │               │   ├── es_PE.php
│   │   │               │   ├── es_PH 2.php
│   │   │               │   ├── es_PH.php
│   │   │               │   ├── es_PR 2.php
│   │   │               │   ├── es_PR.php
│   │   │               │   ├── es_PY 2.php
│   │   │               │   ├── es_PY.php
│   │   │               │   ├── es_SV 2.php
│   │   │               │   ├── es_SV.php
│   │   │               │   ├── es_US 2.php
│   │   │               │   ├── es_US.php
│   │   │               │   ├── es_UY 2.php
│   │   │               │   ├── es_UY.php
│   │   │               │   ├── es_VE 2.php
│   │   │               │   ├── es_VE.php
│   │   │               │   ├── et 2.php
│   │   │               │   ├── et.php
│   │   │               │   ├── et_EE 2.php
│   │   │               │   ├── et_EE.php
│   │   │               │   ├── eu 2.php
│   │   │               │   ├── eu.php
│   │   │               │   ├── eu_ES 2.php
│   │   │               │   ├── eu_ES.php
│   │   │               │   ├── ewo 2.php
│   │   │               │   ├── ewo.php
│   │   │               │   ├── fa 2.php
│   │   │               │   ├── fa.php
│   │   │               │   ├── fa_AF 2.php
│   │   │               │   ├── fa_AF.php
│   │   │               │   ├── fa_IR 2.php
│   │   │               │   ├── fa_IR.php
│   │   │               │   ├── ff 2.php
│   │   │               │   ├── ff.php
│   │   │               │   ├── ff_CM 2.php
│   │   │               │   ├── ff_CM.php
│   │   │               │   ├── ff_GN 2.php
│   │   │               │   ├── ff_GN.php
│   │   │               │   ├── ff_MR 2.php
│   │   │               │   ├── ff_MR.php
│   │   │               │   ├── ff_SN 2.php
│   │   │               │   ├── ff_SN.php
│   │   │               │   ├── fi 2.php
│   │   │               │   ├── fi.php
│   │   │               │   ├── fi_FI 2.php
│   │   │               │   ├── fi_FI.php
│   │   │               │   ├── fil 2.php
│   │   │               │   ├── fil.php
│   │   │               │   ├── fil_PH 2.php
│   │   │               │   ├── fil_PH.php
│   │   │               │   ├── fo 2.php
│   │   │               │   ├── fo.php
│   │   │               │   ├── fo_DK 2.php
│   │   │               │   ├── fo_DK.php
│   │   │               │   ├── fo_FO 2.php
│   │   │               │   ├── fo_FO.php
│   │   │               │   ├── fr 2.php
│   │   │               │   ├── fr.php
│   │   │               │   ├── fr_BE 2.php
│   │   │               │   ├── fr_BE.php
│   │   │               │   ├── fr_BF 2.php
│   │   │               │   ├── fr_BF.php
│   │   │               │   ├── fr_BI 2.php
│   │   │               │   ├── fr_BI.php
│   │   │               │   ├── fr_BJ 2.php
│   │   │               │   ├── fr_BJ.php
│   │   │               │   ├── fr_BL 2.php
│   │   │               │   ├── fr_BL.php
│   │   │               │   ├── fr_CA 2.php
│   │   │               │   ├── fr_CA.php
│   │   │               │   ├── fr_CD 2.php
│   │   │               │   ├── fr_CD.php
│   │   │               │   ├── fr_CF 2.php
│   │   │               │   ├── fr_CF.php
│   │   │               │   ├── fr_CG 2.php
│   │   │               │   ├── fr_CG.php
│   │   │               │   ├── fr_CH 2.php
│   │   │               │   ├── fr_CH.php
│   │   │               │   ├── fr_CI 2.php
│   │   │               │   ├── fr_CI.php
│   │   │               │   ├── fr_CM 2.php
│   │   │               │   ├── fr_CM.php
│   │   │               │   ├── fr_DJ 2.php
│   │   │               │   ├── fr_DJ.php
│   │   │               │   ├── fr_DZ 2.php
│   │   │               │   ├── fr_DZ.php
│   │   │               │   ├── fr_FR 2.php
│   │   │               │   ├── fr_FR.php
│   │   │               │   ├── fr_GA 2.php
│   │   │               │   ├── fr_GA.php
│   │   │               │   ├── fr_GF 2.php
│   │   │               │   ├── fr_GF.php
│   │   │               │   ├── fr_GN 2.php
│   │   │               │   ├── fr_GN.php
│   │   │               │   ├── fr_GP 2.php
│   │   │               │   ├── fr_GP.php
│   │   │               │   ├── fr_GQ 2.php
│   │   │               │   ├── fr_GQ.php
│   │   │               │   ├── fr_HT 2.php
│   │   │               │   ├── fr_HT.php
│   │   │               │   ├── fr_KM 2.php
│   │   │               │   ├── fr_KM.php
│   │   │               │   ├── fr_LU 2.php
│   │   │               │   ├── fr_LU.php
│   │   │               │   ├── fr_MA 2.php
│   │   │               │   ├── fr_MA.php
│   │   │               │   ├── fr_MC 2.php
│   │   │               │   ├── fr_MC.php
│   │   │               │   ├── fr_MF 2.php
│   │   │               │   ├── fr_MF.php
│   │   │               │   ├── fr_MG 2.php
│   │   │               │   ├── fr_MG.php
│   │   │               │   ├── fr_ML 2.php
│   │   │               │   ├── fr_ML.php
│   │   │               │   ├── fr_MQ 2.php
│   │   │               │   ├── fr_MQ.php
│   │   │               │   ├── fr_MR 2.php
│   │   │               │   ├── fr_MR.php
│   │   │               │   ├── fr_MU 2.php
│   │   │               │   ├── fr_MU.php
│   │   │               │   ├── fr_NC 2.php
│   │   │               │   ├── fr_NC.php
│   │   │               │   ├── fr_NE 2.php
│   │   │               │   ├── fr_NE.php
│   │   │               │   ├── fr_PF 2.php
│   │   │               │   ├── fr_PF.php
│   │   │               │   ├── fr_PM 2.php
│   │   │               │   ├── fr_PM.php
│   │   │               │   ├── fr_RE 2.php
│   │   │               │   ├── fr_RE.php
│   │   │               │   ├── fr_RW 2.php
│   │   │               │   ├── fr_RW.php
│   │   │               │   ├── fr_SC 2.php
│   │   │               │   ├── fr_SC.php
│   │   │               │   ├── fr_SN 2.php
│   │   │               │   ├── fr_SN.php
│   │   │               │   ├── fr_SY 2.php
│   │   │               │   ├── fr_SY.php
│   │   │               │   ├── fr_TD 2.php
│   │   │               │   ├── fr_TD.php
│   │   │               │   ├── fr_TG 2.php
│   │   │               │   ├── fr_TG.php
│   │   │               │   ├── fr_TN 2.php
│   │   │               │   ├── fr_TN.php
│   │   │               │   ├── fr_VU 2.php
│   │   │               │   ├── fr_VU.php
│   │   │               │   ├── fr_WF 2.php
│   │   │               │   ├── fr_WF.php
│   │   │               │   ├── fr_YT 2.php
│   │   │               │   ├── fr_YT.php
│   │   │               │   ├── fur 2.php
│   │   │               │   ├── fur.php
│   │   │               │   ├── fur_IT 2.php
│   │   │               │   ├── fur_IT.php
│   │   │               │   ├── fy 2.php
│   │   │               │   ├── fy.php
│   │   │               │   ├── fy_DE 2.php
│   │   │               │   ├── fy_DE.php
│   │   │               │   ├── fy_NL 2.php
│   │   │               │   ├── fy_NL.php
│   │   │               │   ├── ga 2.php
│   │   │               │   ├── ga.php
│   │   │               │   ├── ga_IE 2.php
│   │   │               │   ├── ga_IE.php
│   │   │               │   ├── gd 2.php
│   │   │               │   ├── gd.php
│   │   │               │   ├── gd_GB 2.php
│   │   │               │   ├── gd_GB.php
│   │   │               │   ├── gez 2.php
│   │   │               │   ├── gez.php
│   │   │               │   ├── gez_ER 2.php
│   │   │               │   ├── gez_ER.php
│   │   │               │   ├── gez_ET 2.php
│   │   │               │   ├── gez_ET.php
│   │   │               │   ├── gl 2.php
│   │   │               │   ├── gl.php
│   │   │               │   ├── gl_ES 2.php
│   │   │               │   ├── gl_ES.php
│   │   │               │   ├── gom 2.php
│   │   │               │   ├── gom.php
│   │   │               │   ├── gom_Latn 2.php
│   │   │               │   ├── gom_Latn.php
│   │   │               │   ├── gsw 2.php
│   │   │               │   ├── gsw.php
│   │   │               │   ├── gsw_CH 2.php
│   │   │               │   ├── gsw_CH.php
│   │   │               │   ├── gsw_FR 2.php
│   │   │               │   ├── gsw_FR.php
│   │   │               │   ├── gsw_LI 2.php
│   │   │               │   ├── gsw_LI.php
│   │   │               │   ├── gu 2.php
│   │   │               │   ├── gu.php
│   │   │               │   ├── gu_IN 2.php
│   │   │               │   ├── gu_IN.php
│   │   │               │   ├── guz 2.php
│   │   │               │   ├── guz.php
│   │   │               │   ├── gv 2.php
│   │   │               │   ├── gv.php
│   │   │               │   ├── gv_GB 2.php
│   │   │               │   ├── gv_GB.php
│   │   │               │   ├── ha 2.php
│   │   │               │   ├── ha.php
│   │   │               │   ├── ha_GH 2.php
│   │   │               │   ├── ha_GH.php
│   │   │               │   ├── ha_NE 2.php
│   │   │               │   ├── ha_NE.php
│   │   │               │   ├── ha_NG 2.php
│   │   │               │   ├── ha_NG.php
│   │   │               │   ├── hak 2.php
│   │   │               │   ├── hak.php
│   │   │               │   ├── hak_TW 2.php
│   │   │               │   ├── hak_TW.php
│   │   │               │   ├── haw 2.php
│   │   │               │   ├── haw.php
│   │   │               │   ├── he 2.php
│   │   │               │   ├── he.php
│   │   │               │   ├── he_IL 2.php
│   │   │               │   ├── he_IL.php
│   │   │               │   ├── hi 2.php
│   │   │               │   ├── hi.php
│   │   │               │   ├── hi_IN 2.php
│   │   │               │   ├── hi_IN.php
│   │   │               │   ├── hif 2.php
│   │   │               │   ├── hif.php
│   │   │               │   ├── hif_FJ 2.php
│   │   │               │   ├── hif_FJ.php
│   │   │               │   ├── hne 2.php
│   │   │               │   ├── hne.php
│   │   │               │   ├── hne_IN 2.php
│   │   │               │   ├── hne_IN.php
│   │   │               │   ├── hr 2.php
│   │   │               │   ├── hr.php
│   │   │               │   ├── hr_BA 2.php
│   │   │               │   ├── hr_BA.php
│   │   │               │   ├── hr_HR 2.php
│   │   │               │   ├── hr_HR.php
│   │   │               │   ├── hsb 2.php
│   │   │               │   ├── hsb.php
│   │   │               │   ├── hsb_DE 2.php
│   │   │               │   ├── hsb_DE.php
│   │   │               │   ├── ht 2.php
│   │   │               │   ├── ht.php
│   │   │               │   ├── ht_HT 2.php
│   │   │               │   ├── ht_HT.php
│   │   │               │   ├── hu 2.php
│   │   │               │   ├── hu.php
│   │   │               │   ├── hu_HU 2.php
│   │   │               │   ├── hu_HU.php
│   │   │               │   ├── hy 2.php
│   │   │               │   ├── hy.php
│   │   │               │   ├── hy_AM 2.php
│   │   │               │   ├── hy_AM.php
│   │   │               │   ├── i18n 2.php
│   │   │               │   ├── i18n.php
│   │   │               │   ├── ia 2.php
│   │   │               │   ├── ia.php
│   │   │               │   ├── ia_FR 2.php
│   │   │               │   ├── ia_FR.php
│   │   │               │   ├── id 2.php
│   │   │               │   ├── id.php
│   │   │               │   ├── id_ID 2.php
│   │   │               │   ├── id_ID.php
│   │   │               │   ├── ig 2.php
│   │   │               │   ├── ig.php
│   │   │               │   ├── ig_NG 2.php
│   │   │               │   ├── ig_NG.php
│   │   │               │   ├── ii 2.php
│   │   │               │   ├── ii.php
│   │   │               │   ├── ik 2.php
│   │   │               │   ├── ik.php
│   │   │               │   ├── ik_CA 2.php
│   │   │               │   ├── ik_CA.php
│   │   │               │   ├── in 2.php
│   │   │               │   ├── in.php
│   │   │               │   ├── is 2.php
│   │   │               │   ├── is.php
│   │   │               │   ├── is_IS 2.php
│   │   │               │   ├── is_IS.php
│   │   │               │   ├── it 2.php
│   │   │               │   ├── it.php
│   │   │               │   ├── it_CH 2.php
│   │   │               │   ├── it_CH.php
│   │   │               │   ├── it_IT 2.php
│   │   │               │   ├── it_IT.php
│   │   │               │   ├── it_SM 2.php
│   │   │               │   ├── it_SM.php
│   │   │               │   ├── it_VA 2.php
│   │   │               │   ├── it_VA.php
│   │   │               │   ├── iu 2.php
│   │   │               │   ├── iu.php
│   │   │               │   ├── iu_CA 2.php
│   │   │               │   ├── iu_CA.php
│   │   │               │   ├── iw 2.php
│   │   │               │   ├── iw.php
│   │   │               │   ├── ja 2.php
│   │   │               │   ├── ja.php
│   │   │               │   ├── ja_JP 2.php
│   │   │               │   ├── ja_JP.php
│   │   │               │   ├── jgo 2.php
│   │   │               │   ├── jgo.php
│   │   │               │   ├── jmc 2.php
│   │   │               │   ├── jmc.php
│   │   │               │   ├── jv 2.php
│   │   │               │   ├── jv.php
│   │   │               │   ├── ka 2.php
│   │   │               │   ├── ka.php
│   │   │               │   ├── ka_GE 2.php
│   │   │               │   ├── ka_GE.php
│   │   │               │   ├── kab 2.php
│   │   │               │   ├── kab.php
│   │   │               │   ├── kab_DZ 2.php
│   │   │               │   ├── kab_DZ.php
│   │   │               │   ├── kam 2.php
│   │   │               │   ├── kam.php
│   │   │               │   ├── kde 2.php
│   │   │               │   ├── kde.php
│   │   │               │   ├── kea 2.php
│   │   │               │   ├── kea.php
│   │   │               │   ├── khq 2.php
│   │   │               │   ├── khq.php
│   │   │               │   ├── ki 2.php
│   │   │               │   ├── ki.php
│   │   │               │   ├── kk 2.php
│   │   │               │   ├── kk.php
│   │   │               │   ├── kk_KZ 2.php
│   │   │               │   ├── kk_KZ.php
│   │   │               │   ├── kkj 2.php
│   │   │               │   ├── kkj.php
│   │   │               │   ├── kl 2.php
│   │   │               │   ├── kl.php
│   │   │               │   ├── kl_GL 2.php
│   │   │               │   ├── kl_GL.php
│   │   │               │   ├── kln 2.php
│   │   │               │   ├── kln.php
│   │   │               │   ├── km 2.php
│   │   │               │   ├── km.php
│   │   │               │   ├── km_KH 2.php
│   │   │               │   ├── km_KH.php
│   │   │               │   ├── kn 2.php
│   │   │               │   ├── kn.php
│   │   │               │   ├── kn_IN 2.php
│   │   │               │   ├── kn_IN.php
│   │   │               │   ├── ko 2.php
│   │   │               │   ├── ko.php
│   │   │               │   ├── ko_KP 2.php
│   │   │               │   ├── ko_KP.php
│   │   │               │   ├── ko_KR 2.php
│   │   │               │   ├── ko_KR.php
│   │   │               │   ├── kok 2.php
│   │   │               │   ├── kok.php
│   │   │               │   ├── kok_IN 2.php
│   │   │               │   ├── kok_IN.php
│   │   │               │   ├── ks 2.php
│   │   │               │   ├── ks.php
│   │   │               │   ├── ks_IN 2.php
│   │   │               │   ├── ks_IN.php
│   │   │               │   ├── ks_IN@devanagari 2.php
│   │   │               │   ├── ks_IN@devanagari.php
│   │   │               │   ├── ksb 2.php
│   │   │               │   ├── ksb.php
│   │   │               │   ├── ksf 2.php
│   │   │               │   ├── ksf.php
│   │   │               │   ├── ksh 2.php
│   │   │               │   ├── ksh.php
│   │   │               │   ├── ku 2.php
│   │   │               │   ├── ku.php
│   │   │               │   ├── ku_TR 2.php
│   │   │               │   ├── ku_TR.php
│   │   │               │   ├── kw 2.php
│   │   │               │   ├── kw.php
│   │   │               │   ├── kw_GB 2.php
│   │   │               │   ├── kw_GB.php
│   │   │               │   ├── ky 2.php
│   │   │               │   ├── ky.php
│   │   │               │   ├── ky_KG 2.php
│   │   │               │   ├── ky_KG.php
│   │   │               │   ├── lag 2.php
│   │   │               │   ├── lag.php
│   │   │               │   ├── lb 2.php
│   │   │               │   ├── lb.php
│   │   │               │   ├── lb_LU 2.php
│   │   │               │   ├── lb_LU.php
│   │   │               │   ├── lg 2.php
│   │   │               │   ├── lg.php
│   │   │               │   ├── lg_UG 2.php
│   │   │               │   ├── lg_UG.php
│   │   │               │   ├── li 2.php
│   │   │               │   ├── li.php
│   │   │               │   ├── li_NL 2.php
│   │   │               │   ├── li_NL.php
│   │   │               │   ├── lij 2.php
│   │   │               │   ├── lij.php
│   │   │               │   ├── lij_IT 2.php
│   │   │               │   ├── lij_IT.php
│   │   │               │   ├── lkt 2.php
│   │   │               │   ├── lkt.php
│   │   │               │   ├── ln 2.php
│   │   │               │   ├── ln.php
│   │   │               │   ├── ln_AO 2.php
│   │   │               │   ├── ln_AO.php
│   │   │               │   ├── ln_CD 2.php
│   │   │               │   ├── ln_CD.php
│   │   │               │   ├── ln_CF 2.php
│   │   │               │   ├── ln_CF.php
│   │   │               │   ├── ln_CG 2.php
│   │   │               │   ├── ln_CG.php
│   │   │               │   ├── lo 2.php
│   │   │               │   ├── lo.php
│   │   │               │   ├── lo_LA 2.php
│   │   │               │   ├── lo_LA.php
│   │   │               │   ├── lrc 2.php
│   │   │               │   ├── lrc.php
│   │   │               │   ├── lrc_IQ 2.php
│   │   │               │   ├── lrc_IQ.php
│   │   │               │   ├── lt 2.php
│   │   │               │   ├── lt.php
│   │   │               │   ├── lt_LT 2.php
│   │   │               │   ├── lt_LT.php
│   │   │               │   ├── lu 2.php
│   │   │               │   ├── lu.php
│   │   │               │   ├── luo 2.php
│   │   │               │   ├── luo.php
│   │   │               │   ├── luy 2.php
│   │   │               │   ├── luy.php
│   │   │               │   ├── lv 2.php
│   │   │               │   ├── lv.php
│   │   │               │   ├── lv_LV 2.php
│   │   │               │   ├── lv_LV.php
│   │   │               │   ├── lzh 2.php
│   │   │               │   ├── lzh.php
│   │   │               │   ├── lzh_TW 2.php
│   │   │               │   ├── lzh_TW.php
│   │   │               │   ├── mag 2.php
│   │   │               │   ├── mag.php
│   │   │               │   ├── mag_IN 2.php
│   │   │               │   ├── mag_IN.php
│   │   │               │   ├── mai 2.php
│   │   │               │   ├── mai.php
│   │   │               │   ├── mai_IN 2.php
│   │   │               │   ├── mai_IN.php
│   │   │               │   ├── mas 2.php
│   │   │               │   ├── mas.php
│   │   │               │   ├── mas_TZ 2.php
│   │   │               │   ├── mas_TZ.php
│   │   │               │   ├── mer 2.php
│   │   │               │   ├── mer.php
│   │   │               │   ├── mfe 2.php
│   │   │               │   ├── mfe.php
│   │   │               │   ├── mfe_MU 2.php
│   │   │               │   ├── mfe_MU.php
│   │   │               │   ├── mg 2.php
│   │   │               │   ├── mg.php
│   │   │               │   ├── mg_MG 2.php
│   │   │               │   ├── mg_MG.php
│   │   │               │   ├── mgh 2.php
│   │   │               │   ├── mgh.php
│   │   │               │   ├── mgo 2.php
│   │   │               │   ├── mgo.php
│   │   │               │   ├── mhr 2.php
│   │   │               │   ├── mhr.php
│   │   │               │   ├── mhr_RU 2.php
│   │   │               │   ├── mhr_RU.php
│   │   │               │   ├── mi 2.php
│   │   │               │   ├── mi.php
│   │   │               │   ├── mi_NZ 2.php
│   │   │               │   ├── mi_NZ.php
│   │   │               │   ├── miq 2.php
│   │   │               │   ├── miq.php
│   │   │               │   ├── miq_NI 2.php
│   │   │               │   ├── miq_NI.php
│   │   │               │   ├── mjw 2.php
│   │   │               │   ├── mjw.php
│   │   │               │   ├── mjw_IN 2.php
│   │   │               │   ├── mjw_IN.php
│   │   │               │   ├── mk 2.php
│   │   │               │   ├── mk.php
│   │   │               │   ├── mk_MK 2.php
│   │   │               │   ├── mk_MK.php
│   │   │               │   ├── ml 2.php
│   │   │               │   ├── ml.php
│   │   │               │   ├── ml_IN 2.php
│   │   │               │   ├── ml_IN.php
│   │   │               │   ├── mn 2.php
│   │   │               │   ├── mn.php
│   │   │               │   ├── mn_MN 2.php
│   │   │               │   ├── mn_MN.php
│   │   │               │   ├── mni 2.php
│   │   │               │   ├── mni.php
│   │   │               │   ├── mni_IN 2.php
│   │   │               │   ├── mni_IN.php
│   │   │               │   ├── mo 2.php
│   │   │               │   ├── mo.php
│   │   │               │   ├── mr 2.php
│   │   │               │   ├── mr.php
│   │   │               │   ├── mr_IN 2.php
│   │   │               │   ├── mr_IN.php
│   │   │               │   ├── ms 2.php
│   │   │               │   ├── ms.php
│   │   │               │   ├── ms_BN 2.php
│   │   │               │   ├── ms_BN.php
│   │   │               │   ├── ms_MY 2.php
│   │   │               │   ├── ms_MY.php
│   │   │               │   ├── ms_SG 2.php
│   │   │               │   ├── ms_SG.php
│   │   │               │   ├── mt 2.php
│   │   │               │   ├── mt.php
│   │   │               │   ├── mt_MT 2.php
│   │   │               │   ├── mt_MT.php
│   │   │               │   ├── mua 2.php
│   │   │               │   ├── mua.php
│   │   │               │   ├── my 2.php
│   │   │               │   ├── my.php
│   │   │               │   ├── my_MM 2.php
│   │   │               │   ├── my_MM.php
│   │   │               │   ├── mzn 2.php
│   │   │               │   ├── mzn.php
│   │   │               │   ├── nan 2.php
│   │   │               │   ├── nan.php
│   │   │               │   ├── nan_TW 2.php
│   │   │               │   ├── nan_TW.php
│   │   │               │   ├── nan_TW@latin 2.php
│   │   │               │   ├── nan_TW@latin.php
│   │   │               │   ├── naq 2.php
│   │   │               │   ├── naq.php
│   │   │               │   ├── nb 2.php
│   │   │               │   ├── nb.php
│   │   │               │   ├── nb_NO 2.php
│   │   │               │   ├── nb_NO.php
│   │   │               │   ├── nb_SJ 2.php
│   │   │               │   ├── nb_SJ.php
│   │   │               │   ├── nd 2.php
│   │   │               │   ├── nd.php
│   │   │               │   ├── nds 2.php
│   │   │               │   ├── nds.php
│   │   │               │   ├── nds_DE 2.php
│   │   │               │   ├── nds_DE.php
│   │   │               │   ├── nds_NL 2.php
│   │   │               │   ├── nds_NL.php
│   │   │               │   ├── ne 2.php
│   │   │               │   ├── ne.php
│   │   │               │   ├── ne_IN 2.php
│   │   │               │   ├── ne_IN.php
│   │   │               │   ├── ne_NP 2.php
│   │   │               │   ├── ne_NP.php
│   │   │               │   ├── nhn 2.php
│   │   │               │   ├── nhn.php
│   │   │               │   ├── nhn_MX 2.php
│   │   │               │   ├── nhn_MX.php
│   │   │               │   ├── niu 2.php
│   │   │               │   ├── niu.php
│   │   │               │   ├── niu_NU 2.php
│   │   │               │   ├── niu_NU.php
│   │   │               │   ├── nl 2.php
│   │   │               │   ├── nl.php
│   │   │               │   ├── nl_AW 2.php
│   │   │               │   ├── nl_AW.php
│   │   │               │   ├── nl_BE 2.php
│   │   │               │   ├── nl_BE.php
│   │   │               │   ├── nl_BQ 2.php
│   │   │               │   ├── nl_BQ.php
│   │   │               │   ├── nl_CW 2.php
│   │   │               │   ├── nl_CW.php
│   │   │               │   ├── nl_NL 2.php
│   │   │               │   ├── nl_NL.php
│   │   │               │   ├── nl_SR 2.php
│   │   │               │   ├── nl_SR.php
│   │   │               │   ├── nl_SX 2.php
│   │   │               │   ├── nl_SX.php
│   │   │               │   ├── nmg 2.php
│   │   │               │   ├── nmg.php
│   │   │               │   ├── nn 2.php
│   │   │               │   ├── nn.php
│   │   │               │   ├── nn_NO 2.php
│   │   │               │   ├── nn_NO.php
│   │   │               │   ├── nnh 2.php
│   │   │               │   ├── nnh.php
│   │   │               │   ├── no 2.php
│   │   │               │   ├── no.php
│   │   │               │   ├── nr 2.php
│   │   │               │   ├── nr.php
│   │   │               │   ├── nr_ZA 2.php
│   │   │               │   ├── nr_ZA.php
│   │   │               │   ├── nso 2.php
│   │   │               │   ├── nso.php
│   │   │               │   ├── nso_ZA 2.php
│   │   │               │   ├── nso_ZA.php
│   │   │               │   ├── nus 2.php
│   │   │               │   ├── nus.php
│   │   │               │   ├── nyn 2.php
│   │   │               │   ├── nyn.php
│   │   │               │   ├── oc 2.php
│   │   │               │   ├── oc.php
│   │   │               │   ├── oc_FR 2.php
│   │   │               │   ├── oc_FR.php
│   │   │               │   ├── om 2.php
│   │   │               │   ├── om.php
│   │   │               │   ├── om_ET 2.php
│   │   │               │   ├── om_ET.php
│   │   │               │   ├── om_KE 2.php
│   │   │               │   ├── om_KE.php
│   │   │               │   ├── or 2.php
│   │   │               │   ├── or.php
│   │   │               │   ├── or_IN 2.php
│   │   │               │   ├── or_IN.php
│   │   │               │   ├── os 2.php
│   │   │               │   ├── os.php
│   │   │               │   ├── os_RU 2.php
│   │   │               │   ├── os_RU.php
│   │   │               │   ├── pa 2.php
│   │   │               │   ├── pa.php
│   │   │               │   ├── pa_Arab 2.php
│   │   │               │   ├── pa_Arab.php
│   │   │               │   ├── pa_Guru 2.php
│   │   │               │   ├── pa_Guru.php
│   │   │               │   ├── pa_IN 2.php
│   │   │               │   ├── pa_IN.php
│   │   │               │   ├── pa_PK 2.php
│   │   │               │   ├── pa_PK.php
│   │   │               │   ├── pap 2.php
│   │   │               │   ├── pap.php
│   │   │               │   ├── pap_AW 2.php
│   │   │               │   ├── pap_AW.php
│   │   │               │   ├── pap_CW 2.php
│   │   │               │   ├── pap_CW.php
│   │   │               │   ├── pl 2.php
│   │   │               │   ├── pl.php
│   │   │               │   ├── pl_PL 2.php
│   │   │               │   ├── pl_PL.php
│   │   │               │   ├── prg 2.php
│   │   │               │   ├── prg.php
│   │   │               │   ├── ps 2.php
│   │   │               │   ├── ps.php
│   │   │               │   ├── ps_AF 2.php
│   │   │               │   ├── ps_AF.php
│   │   │               │   ├── pt 2.php
│   │   │               │   ├── pt.php
│   │   │               │   ├── pt_AO 2.php
│   │   │               │   ├── pt_AO.php
│   │   │               │   ├── pt_BR 2.php
│   │   │               │   ├── pt_BR.php
│   │   │               │   ├── pt_CH 2.php
│   │   │               │   ├── pt_CH.php
│   │   │               │   ├── pt_CV 2.php
│   │   │               │   ├── pt_CV.php
│   │   │               │   ├── pt_GQ 2.php
│   │   │               │   ├── pt_GQ.php
│   │   │               │   ├── pt_GW 2.php
│   │   │               │   ├── pt_GW.php
│   │   │               │   ├── pt_LU 2.php
│   │   │               │   ├── pt_LU.php
│   │   │               │   ├── pt_MO 2.php
│   │   │               │   ├── pt_MO.php
│   │   │               │   ├── pt_MZ 2.php
│   │   │               │   ├── pt_MZ.php
│   │   │               │   ├── pt_PT 2.php
│   │   │               │   ├── pt_PT.php
│   │   │               │   ├── pt_ST 2.php
│   │   │               │   ├── pt_ST.php
│   │   │               │   ├── pt_TL 2.php
│   │   │               │   ├── pt_TL.php
│   │   │               │   ├── qu 2.php
│   │   │               │   ├── qu.php
│   │   │               │   ├── qu_BO 2.php
│   │   │               │   ├── qu_BO.php
│   │   │               │   ├── qu_EC 2.php
│   │   │               │   ├── qu_EC.php
│   │   │               │   ├── quz 2.php
│   │   │               │   ├── quz.php
│   │   │               │   ├── quz_PE 2.php
│   │   │               │   ├── quz_PE.php
│   │   │               │   ├── raj 2.php
│   │   │               │   ├── raj.php
│   │   │               │   ├── raj_IN 2.php
│   │   │               │   ├── raj_IN.php
│   │   │               │   ├── rm 2.php
│   │   │               │   ├── rm.php
│   │   │               │   ├── rn 2.php
│   │   │               │   ├── rn.php
│   │   │               │   ├── ro 2.php
│   │   │               │   ├── ro.php
│   │   │               │   ├── ro_MD 2.php
│   │   │               │   ├── ro_MD.php
│   │   │               │   ├── ro_RO 2.php
│   │   │               │   ├── ro_RO.php
│   │   │               │   ├── rof 2.php
│   │   │               │   ├── rof.php
│   │   │               │   ├── ru 2.php
│   │   │               │   ├── ru.php
│   │   │               │   ├── ru_BY 2.php
│   │   │               │   ├── ru_BY.php
│   │   │               │   ├── ru_KG 2.php
│   │   │               │   ├── ru_KG.php
│   │   │               │   ├── ru_KZ 2.php
│   │   │               │   ├── ru_KZ.php
│   │   │               │   ├── ru_MD 2.php
│   │   │               │   ├── ru_MD.php
│   │   │               │   ├── ru_RU 2.php
│   │   │               │   ├── ru_RU.php
│   │   │               │   ├── ru_UA 2.php
│   │   │               │   ├── ru_UA.php
│   │   │               │   ├── rw 2.php
│   │   │               │   ├── rw.php
│   │   │               │   ├── rw_RW 2.php
│   │   │               │   ├── rw_RW.php
│   │   │               │   ├── rwk 2.php
│   │   │               │   ├── rwk.php
│   │   │               │   ├── sa 2.php
│   │   │               │   ├── sa.php
│   │   │               │   ├── sa_IN 2.php
│   │   │               │   ├── sa_IN.php
│   │   │               │   ├── sah 2.php
│   │   │               │   ├── sah.php
│   │   │               │   ├── sah_RU 2.php
│   │   │               │   ├── sah_RU.php
│   │   │               │   ├── saq 2.php
│   │   │               │   ├── saq.php
│   │   │               │   ├── sat 2.php
│   │   │               │   ├── sat.php
│   │   │               │   ├── sat_IN 2.php
│   │   │               │   ├── sat_IN.php
│   │   │               │   ├── sbp 2.php
│   │   │               │   ├── sbp.php
│   │   │               │   ├── sc 2.php
│   │   │               │   ├── sc.php
│   │   │               │   ├── sc_IT 2.php
│   │   │               │   ├── sc_IT.php
│   │   │               │   ├── sd 2.php
│   │   │               │   ├── sd.php
│   │   │               │   ├── sd_IN 2.php
│   │   │               │   ├── sd_IN.php
│   │   │               │   ├── sd_IN@devanagari 2.php
│   │   │               │   ├── sd_IN@devanagari.php
│   │   │               │   ├── se 2.php
│   │   │               │   ├── se.php
│   │   │               │   ├── se_FI 2.php
│   │   │               │   ├── se_FI.php
│   │   │               │   ├── se_NO 2.php
│   │   │               │   ├── se_NO.php
│   │   │               │   ├── se_SE 2.php
│   │   │               │   ├── se_SE.php
│   │   │               │   ├── seh 2.php
│   │   │               │   ├── seh.php
│   │   │               │   ├── ses 2.php
│   │   │               │   ├── ses.php
│   │   │               │   ├── sg 2.php
│   │   │               │   ├── sg.php
│   │   │               │   ├── sgs 2.php
│   │   │               │   ├── sgs.php
│   │   │               │   ├── sgs_LT 2.php
│   │   │               │   ├── sgs_LT.php
│   │   │               │   ├── sh 2.php
│   │   │               │   ├── sh.php
│   │   │               │   ├── shi 2.php
│   │   │               │   ├── shi.php
│   │   │               │   ├── shi_Latn 2.php
│   │   │               │   ├── shi_Latn.php
│   │   │               │   ├── shi_Tfng 2.php
│   │   │               │   ├── shi_Tfng.php
│   │   │               │   ├── shn 2.php
│   │   │               │   ├── shn.php
│   │   │               │   ├── shn_MM 2.php
│   │   │               │   ├── shn_MM.php
│   │   │               │   ├── shs 2.php
│   │   │               │   ├── shs.php
│   │   │               │   ├── shs_CA 2.php
│   │   │               │   ├── shs_CA.php
│   │   │               │   ├── si 2.php
│   │   │               │   ├── si.php
│   │   │               │   ├── si_LK 2.php
│   │   │               │   ├── si_LK.php
│   │   │               │   ├── sid 2.php
│   │   │               │   ├── sid.php
│   │   │               │   ├── sid_ET 2.php
│   │   │               │   ├── sid_ET.php
│   │   │               │   ├── sk 2.php
│   │   │               │   ├── sk.php
│   │   │               │   ├── sk_SK 2.php
│   │   │               │   ├── sk_SK.php
│   │   │               │   ├── sl 2.php
│   │   │               │   ├── sl.php
│   │   │               │   ├── sl_SI 2.php
│   │   │               │   ├── sl_SI.php
│   │   │               │   ├── sm 2.php
│   │   │               │   ├── sm.php
│   │   │               │   ├── sm_WS 2.php
│   │   │               │   ├── sm_WS.php
│   │   │               │   ├── smn 2.php
│   │   │               │   ├── smn.php
│   │   │               │   ├── sn 2.php
│   │   │               │   ├── sn.php
│   │   │               │   ├── so 2.php
│   │   │               │   ├── so.php
│   │   │               │   ├── so_DJ 2.php
│   │   │               │   ├── so_DJ.php
│   │   │               │   ├── so_ET 2.php
│   │   │               │   ├── so_ET.php
│   │   │               │   ├── so_KE 2.php
│   │   │               │   ├── so_KE.php
│   │   │               │   ├── so_SO 2.php
│   │   │               │   ├── so_SO.php
│   │   │               │   ├── sq 2.php
│   │   │               │   ├── sq.php
│   │   │               │   ├── sq_AL 2.php
│   │   │               │   ├── sq_AL.php
│   │   │               │   ├── sq_MK 2.php
│   │   │               │   ├── sq_MK.php
│   │   │               │   ├── sq_XK 2.php
│   │   │               │   ├── sq_XK.php
│   │   │               │   ├── sr 2.php
│   │   │               │   ├── sr.php
│   │   │               │   ├── sr_Cyrl 2.php
│   │   │               │   ├── sr_Cyrl.php
│   │   │               │   ├── sr_Cyrl_BA 2.php
│   │   │               │   ├── sr_Cyrl_BA.php
│   │   │               │   ├── sr_Cyrl_ME 2.php
│   │   │               │   ├── sr_Cyrl_ME.php
│   │   │               │   ├── sr_Cyrl_XK 2.php
│   │   │               │   ├── sr_Cyrl_XK.php
│   │   │               │   ├── sr_Latn 2.php
│   │   │               │   ├── sr_Latn.php
│   │   │               │   ├── sr_Latn_BA 2.php
│   │   │               │   ├── sr_Latn_BA.php
│   │   │               │   ├── sr_Latn_ME 2.php
│   │   │               │   ├── sr_Latn_ME.php
│   │   │               │   ├── sr_Latn_XK 2.php
│   │   │               │   ├── sr_Latn_XK.php
│   │   │               │   ├── sr_ME 2.php
│   │   │               │   ├── sr_ME.php
│   │   │               │   ├── sr_RS 2.php
│   │   │               │   ├── sr_RS.php
│   │   │               │   ├── sr_RS@latin 2.php
│   │   │               │   ├── sr_RS@latin.php
│   │   │               │   ├── ss 2.php
│   │   │               │   ├── ss.php
│   │   │               │   ├── ss_ZA 2.php
│   │   │               │   ├── ss_ZA.php
│   │   │               │   ├── st 2.php
│   │   │               │   ├── st.php
│   │   │               │   ├── st_ZA 2.php
│   │   │               │   ├── st_ZA.php
│   │   │               │   ├── sv 2.php
│   │   │               │   ├── sv.php
│   │   │               │   ├── sv_AX 2.php
│   │   │               │   ├── sv_AX.php
│   │   │               │   ├── sv_FI 2.php
│   │   │               │   ├── sv_FI.php
│   │   │               │   ├── sv_SE 2.php
│   │   │               │   ├── sv_SE.php
│   │   │               │   ├── sw 2.php
│   │   │               │   ├── sw.php
│   │   │               │   ├── sw_CD 2.php
│   │   │               │   ├── sw_CD.php
│   │   │               │   ├── sw_KE 2.php
│   │   │               │   ├── sw_KE.php
│   │   │               │   ├── sw_TZ 2.php
│   │   │               │   ├── sw_TZ.php
│   │   │               │   ├── sw_UG 2.php
│   │   │               │   ├── sw_UG.php
│   │   │               │   ├── szl 2.php
│   │   │               │   ├── szl.php
│   │   │               │   ├── szl_PL 2.php
│   │   │               │   ├── szl_PL.php
│   │   │               │   ├── ta 2.php
│   │   │               │   ├── ta.php
│   │   │               │   ├── ta_IN 2.php
│   │   │               │   ├── ta_IN.php
│   │   │               │   ├── ta_LK 2.php
│   │   │               │   ├── ta_LK.php
│   │   │               │   ├── ta_MY 2.php
│   │   │               │   ├── ta_MY.php
│   │   │               │   ├── ta_SG 2.php
│   │   │               │   ├── ta_SG.php
│   │   │               │   ├── tcy 2.php
│   │   │               │   ├── tcy.php
│   │   │               │   ├── tcy_IN 2.php
│   │   │               │   ├── tcy_IN.php
│   │   │               │   ├── te 2.php
│   │   │               │   ├── te.php
│   │   │               │   ├── te_IN 2.php
│   │   │               │   ├── te_IN.php
│   │   │               │   ├── teo 2.php
│   │   │               │   ├── teo.php
│   │   │               │   ├── teo_KE 2.php
│   │   │               │   ├── teo_KE.php
│   │   │               │   ├── tet 2.php
│   │   │               │   ├── tet.php
│   │   │               │   ├── tg 2.php
│   │   │               │   ├── tg.php
│   │   │               │   ├── tg_TJ 2.php
│   │   │               │   ├── tg_TJ.php
│   │   │               │   ├── th 2.php
│   │   │               │   ├── th.php
│   │   │               │   ├── th_TH 2.php
│   │   │               │   ├── th_TH.php
│   │   │               │   ├── the 2.php
│   │   │               │   ├── the.php
│   │   │               │   ├── the_NP 2.php
│   │   │               │   ├── the_NP.php
│   │   │               │   ├── ti 2.php
│   │   │               │   ├── ti.php
│   │   │               │   ├── ti_ER 2.php
│   │   │               │   ├── ti_ER.php
│   │   │               │   ├── ti_ET 2.php
│   │   │               │   ├── ti_ET.php
│   │   │               │   ├── tig 2.php
│   │   │               │   ├── tig.php
│   │   │               │   ├── tig_ER 2.php
│   │   │               │   ├── tig_ER.php
│   │   │               │   ├── tk 2.php
│   │   │               │   ├── tk.php
│   │   │               │   ├── tk_TM 2.php
│   │   │               │   ├── tk_TM.php
│   │   │               │   ├── tl 2.php
│   │   │               │   ├── tl.php
│   │   │               │   ├── tl_PH 2.php
│   │   │               │   ├── tl_PH.php
│   │   │               │   ├── tlh 2.php
│   │   │               │   ├── tlh.php
│   │   │               │   ├── tn 2.php
│   │   │               │   ├── tn.php
│   │   │               │   ├── tn_ZA 2.php
│   │   │               │   ├── tn_ZA.php
│   │   │               │   ├── to 2.php
│   │   │               │   ├── to.php
│   │   │               │   ├── to_TO 2.php
│   │   │               │   ├── to_TO.php
│   │   │               │   ├── tpi 2.php
│   │   │               │   ├── tpi.php
│   │   │               │   ├── tpi_PG 2.php
│   │   │               │   ├── tpi_PG.php
│   │   │               │   ├── tr 2.php
│   │   │               │   ├── tr.php
│   │   │               │   ├── tr_CY 2.php
│   │   │               │   ├── tr_CY.php
│   │   │               │   ├── tr_TR 2.php
│   │   │               │   ├── tr_TR.php
│   │   │               │   ├── ts 2.php
│   │   │               │   ├── ts.php
│   │   │               │   ├── ts_ZA 2.php
│   │   │               │   ├── ts_ZA.php
│   │   │               │   ├── tt 2.php
│   │   │               │   ├── tt.php
│   │   │               │   ├── tt_RU 2.php
│   │   │               │   ├── tt_RU.php
│   │   │               │   ├── tt_RU@iqtelif 2.php
│   │   │               │   ├── tt_RU@iqtelif.php
│   │   │               │   ├── twq 2.php
│   │   │               │   ├── twq.php
│   │   │               │   ├── tzl 2.php
│   │   │               │   ├── tzl.php
│   │   │               │   ├── tzm 2.php
│   │   │               │   ├── tzm.php
│   │   │               │   ├── tzm_Latn 2.php
│   │   │               │   ├── tzm_Latn.php
│   │   │               │   ├── ug 2.php
│   │   │               │   ├── ug.php
│   │   │               │   ├── ug_CN 2.php
│   │   │               │   ├── ug_CN.php
│   │   │               │   ├── uk 2.php
│   │   │               │   ├── uk.php
│   │   │               │   ├── uk_UA 2.php
│   │   │               │   ├── uk_UA.php
│   │   │               │   ├── unm 2.php
│   │   │               │   ├── unm.php
│   │   │               │   ├── unm_US 2.php
│   │   │               │   ├── unm_US.php
│   │   │               │   ├── ur 2.php
│   │   │               │   ├── ur.php
│   │   │               │   ├── ur_IN 2.php
│   │   │               │   ├── ur_IN.php
│   │   │               │   ├── ur_PK 2.php
│   │   │               │   ├── ur_PK.php
│   │   │               │   ├── uz 2.php
│   │   │               │   ├── uz.php
│   │   │               │   ├── uz_Arab 2.php
│   │   │               │   ├── uz_Arab.php
│   │   │               │   ├── uz_Cyrl 2.php
│   │   │               │   ├── uz_Cyrl.php
│   │   │               │   ├── uz_Latn 2.php
│   │   │               │   ├── uz_Latn.php
│   │   │               │   ├── uz_UZ 2.php
│   │   │               │   ├── uz_UZ.php
│   │   │               │   ├── uz_UZ@cyrillic 2.php
│   │   │               │   ├── uz_UZ@cyrillic.php
│   │   │               │   ├── vai 2.php
│   │   │               │   ├── vai.php
│   │   │               │   ├── vai_Latn 2.php
│   │   │               │   ├── vai_Latn.php
│   │   │               │   ├── vai_Vaii 2.php
│   │   │               │   ├── vai_Vaii.php
│   │   │               │   ├── ve 2.php
│   │   │               │   ├── ve.php
│   │   │               │   ├── ve_ZA 2.php
│   │   │               │   ├── ve_ZA.php
│   │   │               │   ├── vi 2.php
│   │   │               │   ├── vi.php
│   │   │               │   ├── vi_VN 2.php
│   │   │               │   ├── vi_VN.php
│   │   │               │   ├── vo 2.php
│   │   │               │   ├── vo.php
│   │   │               │   ├── vun 2.php
│   │   │               │   ├── vun.php
│   │   │               │   ├── wa 2.php
│   │   │               │   ├── wa.php
│   │   │               │   ├── wa_BE 2.php
│   │   │               │   ├── wa_BE.php
│   │   │               │   ├── wae 2.php
│   │   │               │   ├── wae.php
│   │   │               │   ├── wae_CH 2.php
│   │   │               │   ├── wae_CH.php
│   │   │               │   ├── wal 2.php
│   │   │               │   ├── wal.php
│   │   │               │   ├── wal_ET 2.php
│   │   │               │   ├── wal_ET.php
│   │   │               │   ├── wo 2.php
│   │   │               │   ├── wo.php
│   │   │               │   ├── wo_SN 2.php
│   │   │               │   ├── wo_SN.php
│   │   │               │   ├── xh 2.php
│   │   │               │   ├── xh.php
│   │   │               │   ├── xh_ZA 2.php
│   │   │               │   ├── xh_ZA.php
│   │   │               │   ├── xog 2.php
│   │   │               │   ├── xog.php
│   │   │               │   ├── yav 2.php
│   │   │               │   ├── yav.php
│   │   │               │   ├── yi 2.php
│   │   │               │   ├── yi.php
│   │   │               │   ├── yi_US 2.php
│   │   │               │   ├── yi_US.php
│   │   │               │   ├── yo 2.php
│   │   │               │   ├── yo.php
│   │   │               │   ├── yo_BJ 2.php
│   │   │               │   ├── yo_BJ.php
│   │   │               │   ├── yo_NG 2.php
│   │   │               │   ├── yo_NG.php
│   │   │               │   ├── yue 2.php
│   │   │               │   ├── yue.php
│   │   │               │   ├── yue_HK 2.php
│   │   │               │   ├── yue_HK.php
│   │   │               │   ├── yue_Hans 2.php
│   │   │               │   ├── yue_Hans.php
│   │   │               │   ├── yue_Hant 2.php
│   │   │               │   ├── yue_Hant.php
│   │   │               │   ├── yuw 2.php
│   │   │               │   ├── yuw.php
│   │   │               │   ├── yuw_PG 2.php
│   │   │               │   ├── yuw_PG.php
│   │   │               │   ├── zgh 2.php
│   │   │               │   ├── zgh.php
│   │   │               │   ├── zh 2.php
│   │   │               │   ├── zh.php
│   │   │               │   ├── zh_CN 2.php
│   │   │               │   ├── zh_CN.php
│   │   │               │   ├── zh_HK 2.php
│   │   │               │   ├── zh_HK.php
│   │   │               │   ├── zh_Hans 2.php
│   │   │               │   ├── zh_Hans.php
│   │   │               │   ├── zh_Hans_HK 2.php
│   │   │               │   ├── zh_Hans_HK.php
│   │   │               │   ├── zh_Hans_MO 2.php
│   │   │               │   ├── zh_Hans_MO.php
│   │   │               │   ├── zh_Hans_SG 2.php
│   │   │               │   ├── zh_Hans_SG.php
│   │   │               │   ├── zh_Hant 2.php
│   │   │               │   ├── zh_Hant.php
│   │   │               │   ├── zh_Hant_HK 2.php
│   │   │               │   ├── zh_Hant_HK.php
│   │   │               │   ├── zh_Hant_MO 2.php
│   │   │               │   ├── zh_Hant_MO.php
│   │   │               │   ├── zh_Hant_TW 2.php
│   │   │               │   ├── zh_Hant_TW.php
│   │   │               │   ├── zh_MO 2.php
│   │   │               │   ├── zh_MO.php
│   │   │               │   ├── zh_SG 2.php
│   │   │               │   ├── zh_SG.php
│   │   │               │   ├── zh_TW 2.php
│   │   │               │   ├── zh_TW.php
│   │   │               │   ├── zh_YUE 2.php
│   │   │               │   ├── zh_YUE.php
│   │   │               │   ├── zu 2.php
│   │   │               │   ├── zu.php
│   │   │               │   ├── zu_ZA 2.php
│   │   │               │   └── zu_ZA.php
│   │   │               ├── Language 2.php
│   │   │               ├── Language.php
│   │   │               ├── Laravel
│   │   │               │   ├── ServiceProvider 2.php
│   │   │               │   └── ServiceProvider.php
│   │   │               ├── List
│   │   │               │   ├── languages 2.php
│   │   │               │   ├── languages.php
│   │   │               │   ├── regions 2.php
│   │   │               │   └── regions.php
│   │   │               ├── PHPStan
│   │   │               │   ├── Macro 2.php
│   │   │               │   ├── Macro.php
│   │   │               │   ├── MacroExtension 2.php
│   │   │               │   ├── MacroExtension.php
│   │   │               │   ├── MacroScanner 2.php
│   │   │               │   └── MacroScanner.php
│   │   │               ├── Traits
│   │   │               │   ├── Boundaries 2.php
│   │   │               │   ├── Boundaries.php
│   │   │               │   ├── Cast 2.php
│   │   │               │   ├── Cast.php
│   │   │               │   ├── Comparison 2.php
│   │   │               │   ├── Comparison.php
│   │   │               │   ├── Converter 2.php
│   │   │               │   ├── Converter.php
│   │   │               │   ├── Creator 2.php
│   │   │               │   ├── Creator.php
│   │   │               │   ├── Date 2.php
│   │   │               │   ├── Date.php
│   │   │               │   ├── Difference 2.php
│   │   │               │   ├── Difference.php
│   │   │               │   ├── IntervalRounding 2.php
│   │   │               │   ├── IntervalRounding.php
│   │   │               │   ├── IntervalStep 2.php
│   │   │               │   ├── IntervalStep.php
│   │   │               │   ├── Localization 2.php
│   │   │               │   ├── Localization.php
│   │   │               │   ├── Macro 2.php
│   │   │               │   ├── Macro.php
│   │   │               │   ├── Mixin 2.php
│   │   │               │   ├── Mixin.php
│   │   │               │   ├── Modifiers 2.php
│   │   │               │   ├── Modifiers.php
│   │   │               │   ├── Mutability 2.php
│   │   │               │   ├── Mutability.php
│   │   │               │   ├── ObjectInitialisation 2.php
│   │   │               │   ├── ObjectInitialisation.php
│   │   │               │   ├── Options 2.php
│   │   │               │   ├── Options.php
│   │   │               │   ├── Rounding 2.php
│   │   │               │   ├── Rounding.php
│   │   │               │   ├── Serialization 2.php
│   │   │               │   ├── Serialization.php
│   │   │               │   ├── Test 2.php
│   │   │               │   ├── Test.php
│   │   │               │   ├── Timestamp 2.php
│   │   │               │   ├── Timestamp.php
│   │   │               │   ├── Units 2.php
│   │   │               │   ├── Units.php
│   │   │               │   ├── Week 2.php
│   │   │               │   └── Week.php
│   │   │               ├── Translator 2.php
│   │   │               └── Translator.php
│   │   ├── nikic
│   │   │   └── php-parser
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── bin
│   │   │       │   └── php-parse
│   │   │       ├── composer.json
│   │   │       ├── grammar
│   │   │       │   ├── README.md
│   │   │       │   ├── parser.template
│   │   │       │   ├── php5.y
│   │   │       │   ├── php7.y
│   │   │       │   ├── rebuildParsers.php
│   │   │       │   ├── tokens.template
│   │   │       │   └── tokens.y
│   │   │       └── lib
│   │   │           └── PhpParser
│   │   │               ├── Builder
│   │   │               │   ├── Class_.php
│   │   │               │   ├── Declaration.php
│   │   │               │   ├── FunctionLike.php
│   │   │               │   ├── Function_.php
│   │   │               │   ├── Interface_.php
│   │   │               │   ├── Method.php
│   │   │               │   ├── Namespace_.php
│   │   │               │   ├── Param.php
│   │   │               │   ├── Property.php
│   │   │               │   ├── TraitUse.php
│   │   │               │   ├── TraitUseAdaptation.php
│   │   │               │   ├── Trait_.php
│   │   │               │   └── Use_.php
│   │   │               ├── Builder.php
│   │   │               ├── BuilderFactory.php
│   │   │               ├── BuilderHelpers.php
│   │   │               ├── Comment
│   │   │               │   └── Doc.php
│   │   │               ├── Comment.php
│   │   │               ├── ConstExprEvaluationException.php
│   │   │               ├── ConstExprEvaluator.php
│   │   │               ├── Error.php
│   │   │               ├── ErrorHandler
│   │   │               │   ├── Collecting.php
│   │   │               │   └── Throwing.php
│   │   │               ├── ErrorHandler.php
│   │   │               ├── Internal
│   │   │               │   ├── DiffElem.php
│   │   │               │   ├── Differ.php
│   │   │               │   ├── PrintableNewAnonClassNode.php
│   │   │               │   └── TokenStream.php
│   │   │               ├── JsonDecoder.php
│   │   │               ├── Lexer
│   │   │               │   ├── Emulative.php
│   │   │               │   └── TokenEmulator
│   │   │               │       ├── AttributeEmulator.php
│   │   │               │       ├── CoaleseEqualTokenEmulator.php
│   │   │               │       ├── FlexibleDocStringEmulator.php
│   │   │               │       ├── FnTokenEmulator.php
│   │   │               │       ├── KeywordEmulator.php
│   │   │               │       ├── MatchTokenEmulator.php
│   │   │               │       ├── NullsafeTokenEmulator.php
│   │   │               │       ├── NumericLiteralSeparatorEmulator.php
│   │   │               │       ├── ReverseEmulator.php
│   │   │               │       ├── TokenEmulator.php
│   │   │               │       └── TokenEmulatorInterface.php
│   │   │               ├── Lexer.php
│   │   │               ├── NameContext.php
│   │   │               ├── Node
│   │   │               │   ├── Arg.php
│   │   │               │   ├── Attribute.php
│   │   │               │   ├── AttributeGroup.php
│   │   │               │   ├── Const_.php
│   │   │               │   ├── Expr
│   │   │               │   │   ├── ArrayDimFetch.php
│   │   │               │   │   ├── ArrayItem.php
│   │   │               │   │   ├── Array_.php
│   │   │               │   │   ├── ArrowFunction.php
│   │   │               │   │   ├── Assign.php
│   │   │               │   │   ├── AssignOp
│   │   │               │   │   │   ├── BitwiseAnd.php
│   │   │               │   │   │   ├── BitwiseOr.php
│   │   │               │   │   │   ├── BitwiseXor.php
│   │   │               │   │   │   ├── Coalesce.php
│   │   │               │   │   │   ├── Concat.php
│   │   │               │   │   │   ├── Div.php
│   │   │               │   │   │   ├── Minus.php
│   │   │               │   │   │   ├── Mod.php
│   │   │               │   │   │   ├── Mul.php
│   │   │               │   │   │   ├── Plus.php
│   │   │               │   │   │   ├── Pow.php
│   │   │               │   │   │   ├── ShiftLeft.php
│   │   │               │   │   │   └── ShiftRight.php
│   │   │               │   │   ├── AssignOp.php
│   │   │               │   │   ├── AssignRef.php
│   │   │               │   │   ├── BinaryOp
│   │   │               │   │   │   ├── BitwiseAnd.php
│   │   │               │   │   │   ├── BitwiseOr.php
│   │   │               │   │   │   ├── BitwiseXor.php
│   │   │               │   │   │   ├── BooleanAnd.php
│   │   │               │   │   │   ├── BooleanOr.php
│   │   │               │   │   │   ├── Coalesce.php
│   │   │               │   │   │   ├── Concat.php
│   │   │               │   │   │   ├── Div.php
│   │   │               │   │   │   ├── Equal.php
│   │   │               │   │   │   ├── Greater.php
│   │   │               │   │   │   ├── GreaterOrEqual.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
│   │   │               │   │   │   ├── Smaller.php
│   │   │               │   │   │   ├── SmallerOrEqual.php
│   │   │               │   │   │   └── Spaceship.php
│   │   │               │   │   ├── BinaryOp.php
│   │   │               │   │   ├── BitwiseNot.php
│   │   │               │   │   ├── BooleanNot.php
│   │   │               │   │   ├── Cast
│   │   │               │   │   │   ├── Array_.php
│   │   │               │   │   │   ├── Bool_.php
│   │   │               │   │   │   ├── Double.php
│   │   │               │   │   │   ├── Int_.php
│   │   │               │   │   │   ├── Object_.php
│   │   │               │   │   │   ├── String_.php
│   │   │               │   │   │   └── Unset_.php
│   │   │               │   │   ├── Cast.php
│   │   │               │   │   ├── ClassConstFetch.php
│   │   │               │   │   ├── Clone_.php
│   │   │               │   │   ├── Closure.php
│   │   │               │   │   ├── ClosureUse.php
│   │   │               │   │   ├── ConstFetch.php
│   │   │               │   │   ├── Empty_.php
│   │   │               │   │   ├── Error.php
│   │   │               │   │   ├── ErrorSuppress.php
│   │   │               │   │   ├── Eval_.php
│   │   │               │   │   ├── Exit_.php
│   │   │               │   │   ├── FuncCall.php
│   │   │               │   │   ├── Include_.php
│   │   │               │   │   ├── Instanceof_.php
│   │   │               │   │   ├── Isset_.php
│   │   │               │   │   ├── List_.php
│   │   │               │   │   ├── Match_.php
│   │   │               │   │   ├── MethodCall.php
│   │   │               │   │   ├── New_.php
│   │   │               │   │   ├── NullsafeMethodCall.php
│   │   │               │   │   ├── NullsafePropertyFetch.php
│   │   │               │   │   ├── PostDec.php
│   │   │               │   │   ├── PostInc.php
│   │   │               │   │   ├── PreDec.php
│   │   │               │   │   ├── PreInc.php
│   │   │               │   │   ├── Print_.php
│   │   │               │   │   ├── PropertyFetch.php
│   │   │               │   │   ├── ShellExec.php
│   │   │               │   │   ├── StaticCall.php
│   │   │               │   │   ├── StaticPropertyFetch.php
│   │   │               │   │   ├── Ternary.php
│   │   │               │   │   ├── Throw_.php
│   │   │               │   │   ├── UnaryMinus.php
│   │   │               │   │   ├── UnaryPlus.php
│   │   │               │   │   ├── Variable.php
│   │   │               │   │   ├── YieldFrom.php
│   │   │               │   │   └── Yield_.php
│   │   │               │   ├── Expr.php
│   │   │               │   ├── FunctionLike.php
│   │   │               │   ├── Identifier.php
│   │   │               │   ├── MatchArm.php
│   │   │               │   ├── Name
│   │   │               │   │   ├── FullyQualified.php
│   │   │               │   │   └── Relative.php
│   │   │               │   ├── Name.php
│   │   │               │   ├── NullableType.php
│   │   │               │   ├── Param.php
│   │   │               │   ├── Scalar
│   │   │               │   │   ├── DNumber.php
│   │   │               │   │   ├── Encapsed.php
│   │   │               │   │   ├── EncapsedStringPart.php
│   │   │               │   │   ├── LNumber.php
│   │   │               │   │   ├── MagicConst
│   │   │               │   │   │   ├── Class_.php
│   │   │               │   │   │   ├── Dir.php
│   │   │               │   │   │   ├── File.php
│   │   │               │   │   │   ├── Function_.php
│   │   │               │   │   │   ├── Line.php
│   │   │               │   │   │   ├── Method.php
│   │   │               │   │   │   ├── Namespace_.php
│   │   │               │   │   │   └── Trait_.php
│   │   │               │   │   ├── MagicConst.php
│   │   │               │   │   └── String_.php
│   │   │               │   ├── Scalar.php
│   │   │               │   ├── Stmt
│   │   │               │   │   ├── Break_.php
│   │   │               │   │   ├── Case_.php
│   │   │               │   │   ├── Catch_.php
│   │   │               │   │   ├── ClassConst.php
│   │   │               │   │   ├── ClassLike.php
│   │   │               │   │   ├── ClassMethod.php
│   │   │               │   │   ├── Class_.php
│   │   │               │   │   ├── Const_.php
│   │   │               │   │   ├── Continue_.php
│   │   │               │   │   ├── DeclareDeclare.php
│   │   │               │   │   ├── Declare_.php
│   │   │               │   │   ├── Do_.php
│   │   │               │   │   ├── Echo_.php
│   │   │               │   │   ├── ElseIf_.php
│   │   │               │   │   ├── Else_.php
│   │   │               │   │   ├── Expression.php
│   │   │               │   │   ├── Finally_.php
│   │   │               │   │   ├── For_.php
│   │   │               │   │   ├── Foreach_.php
│   │   │               │   │   ├── Function_.php
│   │   │               │   │   ├── Global_.php
│   │   │               │   │   ├── Goto_.php
│   │   │               │   │   ├── GroupUse.php
│   │   │               │   │   ├── HaltCompiler.php
│   │   │               │   │   ├── If_.php
│   │   │               │   │   ├── InlineHTML.php
│   │   │               │   │   ├── Interface_.php
│   │   │               │   │   ├── Label.php
│   │   │               │   │   ├── Namespace_.php
│   │   │               │   │   ├── Nop.php
│   │   │               │   │   ├── Property.php
│   │   │               │   │   ├── PropertyProperty.php
│   │   │               │   │   ├── Return_.php
│   │   │               │   │   ├── StaticVar.php
│   │   │               │   │   ├── Static_.php
│   │   │               │   │   ├── Switch_.php
│   │   │               │   │   ├── Throw_.php
│   │   │               │   │   ├── TraitUse.php
│   │   │               │   │   ├── TraitUseAdaptation
│   │   │               │   │   │   ├── Alias.php
│   │   │               │   │   │   └── Precedence.php
│   │   │               │   │   ├── TraitUseAdaptation.php
│   │   │               │   │   ├── Trait_.php
│   │   │               │   │   ├── TryCatch.php
│   │   │               │   │   ├── Unset_.php
│   │   │               │   │   ├── UseUse.php
│   │   │               │   │   ├── Use_.php
│   │   │               │   │   └── While_.php
│   │   │               │   ├── Stmt.php
│   │   │               │   ├── UnionType.php
│   │   │               │   └── VarLikeIdentifier.php
│   │   │               ├── Node.php
│   │   │               ├── NodeAbstract.php
│   │   │               ├── NodeDumper.php
│   │   │               ├── NodeFinder.php
│   │   │               ├── NodeTraverser.php
│   │   │               ├── NodeTraverserInterface.php
│   │   │               ├── NodeVisitor
│   │   │               │   ├── CloningVisitor.php
│   │   │               │   ├── FindingVisitor.php
│   │   │               │   ├── FirstFindingVisitor.php
│   │   │               │   ├── NameResolver.php
│   │   │               │   ├── NodeConnectingVisitor.php
│   │   │               │   └── ParentConnectingVisitor.php
│   │   │               ├── NodeVisitor.php
│   │   │               ├── NodeVisitorAbstract.php
│   │   │               ├── Parser
│   │   │               │   ├── Multiple.php
│   │   │               │   ├── Php5.php
│   │   │               │   ├── Php7.php
│   │   │               │   └── Tokens.php
│   │   │               ├── Parser.php
│   │   │               ├── ParserAbstract.php
│   │   │               ├── ParserFactory.php
│   │   │               ├── PrettyPrinter
│   │   │               │   └── Standard.php
│   │   │               └── PrettyPrinterAbstract.php
│   │   ├── nunomaduro
│   │   │   └── collision
│   │   │       ├── LICENSE 2.md
│   │   │       ├── LICENSE.md
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       ├── phpstan.neon 2.dist
│   │   │       ├── phpstan.neon.dist
│   │   │       ├── phpunit.xml 2.dist
│   │   │       ├── phpunit.xml.dist
│   │   │       └── src
│   │   │           ├── Adapters
│   │   │           │   ├── Laravel
│   │   │           │   │   ├── CollisionServiceProvider 2.php
│   │   │           │   │   ├── CollisionServiceProvider.php
│   │   │           │   │   ├── Commands
│   │   │           │   │   │   ├── TestCommand 2.php
│   │   │           │   │   │   └── TestCommand.php
│   │   │           │   │   ├── ExceptionHandler 2.php
│   │   │           │   │   ├── ExceptionHandler.php
│   │   │           │   │   ├── IgnitionSolutionsRepository 2.php
│   │   │           │   │   ├── IgnitionSolutionsRepository.php
│   │   │           │   │   ├── Inspector 2.php
│   │   │           │   │   └── Inspector.php
│   │   │           │   └── Phpunit
│   │   │           │       ├── ConfigureIO 2.php
│   │   │           │       ├── ConfigureIO.php
│   │   │           │       ├── Printer 2.php
│   │   │           │       ├── Printer.php
│   │   │           │       ├── PrinterContents 2.php
│   │   │           │       ├── PrinterContents.php
│   │   │           │       ├── State 2.php
│   │   │           │       ├── State.php
│   │   │           │       ├── Style 2.php
│   │   │           │       ├── Style.php
│   │   │           │       ├── TestResult 2.php
│   │   │           │       ├── TestResult.php
│   │   │           │       ├── Timer 2.php
│   │   │           │       └── Timer.php
│   │   │           ├── ArgumentFormatter 2.php
│   │   │           ├── ArgumentFormatter.php
│   │   │           ├── ConsoleColor 2.php
│   │   │           ├── ConsoleColor.php
│   │   │           ├── Contracts
│   │   │           │   ├── Adapters
│   │   │           │   │   └── Phpunit
│   │   │           │   │       ├── HasPrintableTestCaseName 2.php
│   │   │           │   │       ├── HasPrintableTestCaseName.php
│   │   │           │   │       ├── Listener 2.php
│   │   │           │   │       └── Listener.php
│   │   │           │   ├── ArgumentFormatter 2.php
│   │   │           │   ├── ArgumentFormatter.php
│   │   │           │   ├── Handler 2.php
│   │   │           │   ├── Handler.php
│   │   │           │   ├── Highlighter 2.php
│   │   │           │   ├── Highlighter.php
│   │   │           │   ├── Provider 2.php
│   │   │           │   ├── Provider.php
│   │   │           │   ├── SolutionsRepository 2.php
│   │   │           │   ├── SolutionsRepository.php
│   │   │           │   ├── Writer 2.php
│   │   │           │   └── Writer.php
│   │   │           ├── Exceptions
│   │   │           │   ├── ShouldNotHappen 2.php
│   │   │           │   └── ShouldNotHappen.php
│   │   │           ├── Handler 2.php
│   │   │           ├── Handler.php
│   │   │           ├── Highlighter 2.php
│   │   │           ├── Highlighter.php
│   │   │           ├── Provider 2.php
│   │   │           ├── Provider.php
│   │   │           ├── SolutionsRepositories
│   │   │           │   ├── NullSolutionsRepository 2.php
│   │   │           │   └── NullSolutionsRepository.php
│   │   │           ├── Writer 2.php
│   │   │           └── Writer.php
│   │   ├── opis
│   │   │   └── closure
│   │   │       ├── CHANGELOG 2.md
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── NOTICE
│   │   │       ├── NOTICE 2
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── autoload 2.php
│   │   │       ├── autoload.php
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       ├── functions 2.php
│   │   │       ├── functions.php
│   │   │       └── src
│   │   │           ├── Analyzer 2.php
│   │   │           ├── Analyzer.php
│   │   │           ├── ClosureContext 2.php
│   │   │           ├── ClosureContext.php
│   │   │           ├── ClosureScope 2.php
│   │   │           ├── ClosureScope.php
│   │   │           ├── ClosureStream 2.php
│   │   │           ├── ClosureStream.php
│   │   │           ├── ISecurityProvider 2.php
│   │   │           ├── ISecurityProvider.php
│   │   │           ├── ReflectionClosure 2.php
│   │   │           ├── ReflectionClosure.php
│   │   │           ├── SecurityException 2.php
│   │   │           ├── SecurityException.php
│   │   │           ├── SecurityProvider 2.php
│   │   │           ├── SecurityProvider.php
│   │   │           ├── SelfReference 2.php
│   │   │           ├── SelfReference.php
│   │   │           ├── SerializableClosure 2.php
│   │   │           └── SerializableClosure.php
│   │   ├── phar-io
│   │   │   ├── manifest
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── composer.lock
│   │   │   │   ├── examples
│   │   │   │   │   └── example-01.php
│   │   │   │   ├── phive.xml
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── ManifestDocumentMapper.php
│   │   │   │   │   ├── ManifestLoader.php
│   │   │   │   │   ├── ManifestSerializer.php
│   │   │   │   │   ├── exceptions
│   │   │   │   │   │   ├── Exception.php
│   │   │   │   │   │   ├── InvalidApplicationNameException.php
│   │   │   │   │   │   ├── InvalidEmailException.php
│   │   │   │   │   │   ├── InvalidUrlException.php
│   │   │   │   │   │   ├── ManifestDocumentException.php
│   │   │   │   │   │   ├── ManifestDocumentMapperException.php
│   │   │   │   │   │   ├── ManifestElementException.php
│   │   │   │   │   │   └── ManifestLoaderException.php
│   │   │   │   │   ├── values
│   │   │   │   │   │   ├── Application.php
│   │   │   │   │   │   ├── ApplicationName.php
│   │   │   │   │   │   ├── Author.php
│   │   │   │   │   │   ├── AuthorCollection.php
│   │   │   │   │   │   ├── AuthorCollectionIterator.php
│   │   │   │   │   │   ├── BundledComponent.php
│   │   │   │   │   │   ├── BundledComponentCollection.php
│   │   │   │   │   │   ├── BundledComponentCollectionIterator.php
│   │   │   │   │   │   ├── CopyrightInformation.php
│   │   │   │   │   │   ├── Email.php
│   │   │   │   │   │   ├── Extension.php
│   │   │   │   │   │   ├── Library.php
│   │   │   │   │   │   ├── License.php
│   │   │   │   │   │   ├── Manifest.php
│   │   │   │   │   │   ├── PhpExtensionRequirement.php
│   │   │   │   │   │   ├── PhpVersionRequirement.php
│   │   │   │   │   │   ├── Requirement.php
│   │   │   │   │   │   ├── RequirementCollection.php
│   │   │   │   │   │   ├── RequirementCollectionIterator.php
│   │   │   │   │   │   ├── Type.php
│   │   │   │   │   │   └── Url.php
│   │   │   │   │   └── xml
│   │   │   │   │       ├── AuthorElement.php
│   │   │   │   │       ├── AuthorElementCollection.php
│   │   │   │   │       ├── BundlesElement.php
│   │   │   │   │       ├── ComponentElement.php
│   │   │   │   │       ├── ComponentElementCollection.php
│   │   │   │   │       ├── ContainsElement.php
│   │   │   │   │       ├── CopyrightElement.php
│   │   │   │   │       ├── ElementCollection.php
│   │   │   │   │       ├── ExtElement.php
│   │   │   │   │       ├── ExtElementCollection.php
│   │   │   │   │       ├── ExtensionElement.php
│   │   │   │   │       ├── LicenseElement.php
│   │   │   │   │       ├── ManifestDocument.php
│   │   │   │   │       ├── ManifestDocumentLoadingException.php
│   │   │   │   │       ├── ManifestElement.php
│   │   │   │   │       ├── PhpElement.php
│   │   │   │   │       └── RequiresElement.php
│   │   │   │   └── tests
│   │   │   │       ├── ManifestDocumentMapperTest.php
│   │   │   │       ├── ManifestLoaderTest.php
│   │   │   │       ├── ManifestSerializerTest.php
│   │   │   │       ├── _fixture
│   │   │   │       │   ├── custom.xml
│   │   │   │       │   ├── extension-invalidcompatible.xml
│   │   │   │       │   ├── extension.xml
│   │   │   │       │   ├── invalidversion.xml
│   │   │   │       │   ├── invalidversionconstraint.xml
│   │   │   │       │   ├── library.xml
│   │   │   │       │   ├── manifest.xml
│   │   │   │       │   ├── phpunit-5.6.5.xml
│   │   │   │       │   └── test.phar
│   │   │   │       ├── exceptions
│   │   │   │       │   └── ManifestDocumentLoadingExceptionTest.php
│   │   │   │       ├── values
│   │   │   │       │   ├── ApplicationNameTest.php
│   │   │   │       │   ├── ApplicationTest.php
│   │   │   │       │   ├── AuthorCollectionTest.php
│   │   │   │       │   ├── AuthorTest.php
│   │   │   │       │   ├── BundledComponentCollectionTest.php
│   │   │   │       │   ├── BundledComponentTest.php
│   │   │   │       │   ├── CopyrightInformationTest.php
│   │   │   │       │   ├── EmailTest.php
│   │   │   │       │   ├── ExtensionTest.php
│   │   │   │       │   ├── LibraryTest.php
│   │   │   │       │   ├── LicenseTest.php
│   │   │   │       │   ├── ManifestTest.php
│   │   │   │       │   ├── PhpExtensionRequirementTest.php
│   │   │   │       │   ├── PhpVersionRequirementTest.php
│   │   │   │       │   ├── RequirementCollectionTest.php
│   │   │   │       │   └── UrlTest.php
│   │   │   │       └── xml
│   │   │   │           ├── AuthorElementCollectionTest.php
│   │   │   │           ├── AuthorElementTest.php
│   │   │   │           ├── BundlesElementTest.php
│   │   │   │           ├── ComponentElementCollectionTest.php
│   │   │   │           ├── ComponentElementTest.php
│   │   │   │           ├── ContainsElementTest.php
│   │   │   │           ├── CopyrightElementTest.php
│   │   │   │           ├── ExtElementCollectionTest.php
│   │   │   │           ├── ExtElementTest.php
│   │   │   │           ├── ExtensionElementTest.php
│   │   │   │           ├── LicenseElementTest.php
│   │   │   │           ├── ManifestDocumentTest.php
│   │   │   │           ├── PhpElementTest.php
│   │   │   │           └── RequiresElementTest.php
│   │   │   └── version
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── build.xml
│   │   │       ├── composer.json
│   │   │       ├── phive.xml
│   │   │       ├── phpunit.xml
│   │   │       ├── src
│   │   │       │   ├── PreReleaseSuffix.php
│   │   │       │   ├── Version.php
│   │   │       │   ├── VersionConstraintParser.php
│   │   │       │   ├── VersionConstraintValue.php
│   │   │       │   ├── VersionNumber.php
│   │   │       │   ├── constraints
│   │   │       │   │   ├── AbstractVersionConstraint.php
│   │   │       │   │   ├── AndVersionConstraintGroup.php
│   │   │       │   │   ├── AnyVersionConstraint.php
│   │   │       │   │   ├── ExactVersionConstraint.php
│   │   │       │   │   ├── GreaterThanOrEqualToVersionConstraint.php
│   │   │       │   │   ├── OrVersionConstraintGroup.php
│   │   │       │   │   ├── SpecificMajorAndMinorVersionConstraint.php
│   │   │       │   │   ├── SpecificMajorVersionConstraint.php
│   │   │       │   │   └── VersionConstraint.php
│   │   │       │   └── exceptions
│   │   │       │       ├── Exception.php
│   │   │       │       ├── InvalidPreReleaseSuffixException.php
│   │   │       │       ├── InvalidVersionException.php
│   │   │       │       └── UnsupportedVersionConstraintException.php
│   │   │       └── tests
│   │   │           ├── Integration
│   │   │           │   └── VersionConstraintParserTest.php
│   │   │           └── Unit
│   │   │               ├── AbstractVersionConstraintTest.php
│   │   │               ├── AndVersionConstraintGroupTest.php
│   │   │               ├── AnyVersionConstraintTest.php
│   │   │               ├── ExactVersionConstraintTest.php
│   │   │               ├── GreaterThanOrEqualToVersionConstraintTest.php
│   │   │               ├── OrVersionConstraintGroupTest.php
│   │   │               ├── PreReleaseSuffixTest.php
│   │   │               ├── SpecificMajorAndMinorVersionConstraintTest.php
│   │   │               ├── SpecificMajorVersionConstraintTest.php
│   │   │               └── VersionTest.php
│   │   ├── phpdocumentor
│   │   │   ├── reflection-common
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── Element.php
│   │   │   │       ├── File.php
│   │   │   │       ├── Fqsen.php
│   │   │   │       ├── Location.php
│   │   │   │       ├── Project.php
│   │   │   │       └── ProjectFactory.php
│   │   │   ├── reflection-docblock
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── DocBlock
│   │   │   │       │   ├── Description.php
│   │   │   │       │   ├── DescriptionFactory.php
│   │   │   │       │   ├── ExampleFinder.php
│   │   │   │       │   ├── Serializer.php
│   │   │   │       │   ├── StandardTagFactory.php
│   │   │   │       │   ├── Tag.php
│   │   │   │       │   ├── TagFactory.php
│   │   │   │       │   └── Tags
│   │   │   │       │       ├── Author.php
│   │   │   │       │       ├── BaseTag.php
│   │   │   │       │       ├── Covers.php
│   │   │   │       │       ├── Deprecated.php
│   │   │   │       │       ├── Example.php
│   │   │   │       │       ├── Factory
│   │   │   │       │       │   └── StaticMethod.php
│   │   │   │       │       ├── Formatter
│   │   │   │       │       │   ├── AlignFormatter.php
│   │   │   │       │       │   └── PassthroughFormatter.php
│   │   │   │       │       ├── Formatter.php
│   │   │   │       │       ├── Generic.php
│   │   │   │       │       ├── InvalidTag.php
│   │   │   │       │       ├── Link.php
│   │   │   │       │       ├── Method.php
│   │   │   │       │       ├── Param.php
│   │   │   │       │       ├── Property.php
│   │   │   │       │       ├── PropertyRead.php
│   │   │   │       │       ├── PropertyWrite.php
│   │   │   │       │       ├── Reference
│   │   │   │       │       │   ├── Fqsen.php
│   │   │   │       │       │   ├── Reference.php
│   │   │   │       │       │   └── Url.php
│   │   │   │       │       ├── Return_.php
│   │   │   │       │       ├── See.php
│   │   │   │       │       ├── Since.php
│   │   │   │       │       ├── Source.php
│   │   │   │       │       ├── TagWithType.php
│   │   │   │       │       ├── Throws.php
│   │   │   │       │       ├── Uses.php
│   │   │   │       │       ├── Var_.php
│   │   │   │       │       └── Version.php
│   │   │   │       ├── DocBlock.php
│   │   │   │       ├── DocBlockFactory.php
│   │   │   │       ├── DocBlockFactoryInterface.php
│   │   │   │       ├── Exception
│   │   │   │       │   └── PcreException.php
│   │   │   │       └── Utils.php
│   │   │   └── type-resolver
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       ├── composer.lock
│   │   │       ├── phpbench.json
│   │   │       └── src
│   │   │           ├── FqsenResolver.php
│   │   │           ├── PseudoType.php
│   │   │           ├── PseudoTypes
│   │   │           │   ├── False_.php
│   │   │           │   └── True_.php
│   │   │           ├── Type.php
│   │   │           ├── TypeResolver.php
│   │   │           └── Types
│   │   │               ├── AbstractList.php
│   │   │               ├── AggregatedType.php
│   │   │               ├── Array_.php
│   │   │               ├── Boolean.php
│   │   │               ├── Callable_.php
│   │   │               ├── ClassString.php
│   │   │               ├── Collection.php
│   │   │               ├── Compound.php
│   │   │               ├── Context.php
│   │   │               ├── ContextFactory.php
│   │   │               ├── Expression.php
│   │   │               ├── False_.php
│   │   │               ├── Float_.php
│   │   │               ├── Integer.php
│   │   │               ├── Intersection.php
│   │   │               ├── Iterable_.php
│   │   │               ├── Mixed_.php
│   │   │               ├── Null_.php
│   │   │               ├── Nullable.php
│   │   │               ├── Object_.php
│   │   │               ├── Parent_.php
│   │   │               ├── Resource_.php
│   │   │               ├── Scalar.php
│   │   │               ├── Self_.php
│   │   │               ├── Static_.php
│   │   │               ├── String_.php
│   │   │               ├── This.php
│   │   │               ├── True_.php
│   │   │               └── Void_.php
│   │   ├── phpoption
│   │   │   └── phpoption
│   │   │       ├── LICENSE
│   │   │       ├── Makefile
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── PhpOption
│   │   │               ├── LazyOption.php
│   │   │               ├── None.php
│   │   │               ├── Option.php
│   │   │               └── Some.php
│   │   ├── phpspec
│   │   │   └── prophecy
│   │   │       ├── CHANGES.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── Prophecy
│   │   │               ├── Argument
│   │   │               │   ├── ArgumentsWildcard.php
│   │   │               │   └── Token
│   │   │               │       ├── AnyValueToken.php
│   │   │               │       ├── AnyValuesToken.php
│   │   │               │       ├── ApproximateValueToken.php
│   │   │               │       ├── ArrayCountToken.php
│   │   │               │       ├── ArrayEntryToken.php
│   │   │               │       ├── ArrayEveryEntryToken.php
│   │   │               │       ├── CallbackToken.php
│   │   │               │       ├── ExactValueToken.php
│   │   │               │       ├── IdenticalValueToken.php
│   │   │               │       ├── InArrayToken.php
│   │   │               │       ├── LogicalAndToken.php
│   │   │               │       ├── LogicalNotToken.php
│   │   │               │       ├── NotInArrayToken.php
│   │   │               │       ├── ObjectStateToken.php
│   │   │               │       ├── StringContainsToken.php
│   │   │               │       ├── TokenInterface.php
│   │   │               │       └── TypeToken.php
│   │   │               ├── Argument.php
│   │   │               ├── Call
│   │   │               │   ├── Call.php
│   │   │               │   └── CallCenter.php
│   │   │               ├── Comparator
│   │   │               │   ├── ClosureComparator.php
│   │   │               │   ├── Factory.php
│   │   │               │   └── ProphecyComparator.php
│   │   │               ├── Doubler
│   │   │               │   ├── CachedDoubler.php
│   │   │               │   ├── ClassPatch
│   │   │               │   │   ├── ClassPatchInterface.php
│   │   │               │   │   ├── DisableConstructorPatch.php
│   │   │               │   │   ├── HhvmExceptionPatch.php
│   │   │               │   │   ├── KeywordPatch.php
│   │   │               │   │   ├── MagicCallPatch.php
│   │   │               │   │   ├── ProphecySubjectPatch.php
│   │   │               │   │   ├── ReflectionClassNewInstancePatch.php
│   │   │               │   │   ├── SplFileInfoPatch.php
│   │   │               │   │   ├── ThrowablePatch.php
│   │   │               │   │   └── TraversablePatch.php
│   │   │               │   ├── DoubleInterface.php
│   │   │               │   ├── Doubler.php
│   │   │               │   ├── Generator
│   │   │               │   │   ├── ClassCodeGenerator.php
│   │   │               │   │   ├── ClassCreator.php
│   │   │               │   │   ├── ClassMirror.php
│   │   │               │   │   ├── Node
│   │   │               │   │   │   ├── ArgumentNode.php
│   │   │               │   │   │   ├── ArgumentTypeNode.php
│   │   │               │   │   │   ├── ClassNode.php
│   │   │               │   │   │   ├── MethodNode.php
│   │   │               │   │   │   ├── ReturnTypeNode.php
│   │   │               │   │   │   └── TypeNodeAbstract.php
│   │   │               │   │   ├── ReflectionInterface.php
│   │   │               │   │   └── TypeHintReference.php
│   │   │               │   ├── LazyDouble.php
│   │   │               │   └── NameGenerator.php
│   │   │               ├── Exception
│   │   │               │   ├── Call
│   │   │               │   │   └── UnexpectedCallException.php
│   │   │               │   ├── Doubler
│   │   │               │   │   ├── ClassCreatorException.php
│   │   │               │   │   ├── ClassMirrorException.php
│   │   │               │   │   ├── ClassNotFoundException.php
│   │   │               │   │   ├── DoubleException.php
│   │   │               │   │   ├── DoublerException.php
│   │   │               │   │   ├── InterfaceNotFoundException.php
│   │   │               │   │   ├── MethodNotExtendableException.php
│   │   │               │   │   ├── MethodNotFoundException.php
│   │   │               │   │   └── ReturnByReferenceException.php
│   │   │               │   ├── Exception.php
│   │   │               │   ├── InvalidArgumentException.php
│   │   │               │   ├── Prediction
│   │   │               │   │   ├── AggregateException.php
│   │   │               │   │   ├── FailedPredictionException.php
│   │   │               │   │   ├── NoCallsException.php
│   │   │               │   │   ├── PredictionException.php
│   │   │               │   │   ├── UnexpectedCallsCountException.php
│   │   │               │   │   └── UnexpectedCallsException.php
│   │   │               │   └── Prophecy
│   │   │               │       ├── MethodProphecyException.php
│   │   │               │       ├── ObjectProphecyException.php
│   │   │               │       └── ProphecyException.php
│   │   │               ├── PhpDocumentor
│   │   │               │   ├── ClassAndInterfaceTagRetriever.php
│   │   │               │   ├── ClassTagRetriever.php
│   │   │               │   ├── LegacyClassTagRetriever.php
│   │   │               │   └── MethodTagRetrieverInterface.php
│   │   │               ├── Prediction
│   │   │               │   ├── CallPrediction.php
│   │   │               │   ├── CallTimesPrediction.php
│   │   │               │   ├── CallbackPrediction.php
│   │   │               │   ├── NoCallsPrediction.php
│   │   │               │   └── PredictionInterface.php
│   │   │               ├── Promise
│   │   │               │   ├── CallbackPromise.php
│   │   │               │   ├── PromiseInterface.php
│   │   │               │   ├── ReturnArgumentPromise.php
│   │   │               │   ├── ReturnPromise.php
│   │   │               │   └── ThrowPromise.php
│   │   │               ├── Prophecy
│   │   │               │   ├── MethodProphecy.php
│   │   │               │   ├── ObjectProphecy.php
│   │   │               │   ├── ProphecyInterface.php
│   │   │               │   ├── ProphecySubjectInterface.php
│   │   │               │   ├── Revealer.php
│   │   │               │   └── RevealerInterface.php
│   │   │               ├── Prophet.php
│   │   │               └── Util
│   │   │                   ├── ExportUtil.php
│   │   │                   └── StringUtil.php
│   │   ├── phpunit
│   │   │   ├── php-code-coverage
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phive.xml
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── CodeCoverage.php
│   │   │   │   │   ├── Driver
│   │   │   │   │   │   ├── Driver.php
│   │   │   │   │   │   ├── PCOV.php
│   │   │   │   │   │   ├── PHPDBG.php
│   │   │   │   │   │   └── Xdebug.php
│   │   │   │   │   ├── Exception
│   │   │   │   │   │   ├── CoveredCodeNotExecutedException.php
│   │   │   │   │   │   ├── Exception.php
│   │   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   │   ├── MissingCoversAnnotationException.php
│   │   │   │   │   │   ├── RuntimeException.php
│   │   │   │   │   │   └── UnintentionallyCoveredCodeException.php
│   │   │   │   │   ├── Filter.php
│   │   │   │   │   ├── Node
│   │   │   │   │   │   ├── AbstractNode.php
│   │   │   │   │   │   ├── Builder.php
│   │   │   │   │   │   ├── Directory.php
│   │   │   │   │   │   ├── File.php
│   │   │   │   │   │   └── Iterator.php
│   │   │   │   │   ├── Report
│   │   │   │   │   │   ├── Clover.php
│   │   │   │   │   │   ├── Crap4j.php
│   │   │   │   │   │   ├── Html
│   │   │   │   │   │   │   ├── Facade.php
│   │   │   │   │   │   │   ├── Renderer
│   │   │   │   │   │   │   │   ├── Dashboard.php
│   │   │   │   │   │   │   │   ├── Directory.php
│   │   │   │   │   │   │   │   ├── File.php
│   │   │   │   │   │   │   │   └── Template
│   │   │   │   │   │   │   │       ├── coverage_bar.html.dist
│   │   │   │   │   │   │   │       ├── css
│   │   │   │   │   │   │   │       │   ├── bootstrap.min.css
│   │   │   │   │   │   │   │       │   ├── custom.css
│   │   │   │   │   │   │   │       │   ├── nv.d3.min.css
│   │   │   │   │   │   │   │       │   ├── octicons.css
│   │   │   │   │   │   │   │       │   └── style.css
│   │   │   │   │   │   │   │       ├── dashboard.html.dist
│   │   │   │   │   │   │   │       ├── directory.html.dist
│   │   │   │   │   │   │   │       ├── directory_item.html.dist
│   │   │   │   │   │   │   │       ├── file.html.dist
│   │   │   │   │   │   │   │       ├── file_item.html.dist
│   │   │   │   │   │   │   │       ├── icons
│   │   │   │   │   │   │   │       │   ├── file-code.svg
│   │   │   │   │   │   │   │       │   └── file-directory.svg
│   │   │   │   │   │   │   │       ├── js
│   │   │   │   │   │   │   │       │   ├── bootstrap.min.js
│   │   │   │   │   │   │   │       │   ├── d3.min.js
│   │   │   │   │   │   │   │       │   ├── file.js
│   │   │   │   │   │   │   │       │   ├── jquery.min.js
│   │   │   │   │   │   │   │       │   ├── nv.d3.min.js
│   │   │   │   │   │   │   │       │   └── popper.min.js
│   │   │   │   │   │   │   │       └── method_item.html.dist
│   │   │   │   │   │   │   └── Renderer.php
│   │   │   │   │   │   ├── PHP.php
│   │   │   │   │   │   ├── Text.php
│   │   │   │   │   │   └── Xml
│   │   │   │   │   │       ├── BuildInformation.php
│   │   │   │   │   │       ├── Coverage.php
│   │   │   │   │   │       ├── Directory.php
│   │   │   │   │   │       ├── Facade.php
│   │   │   │   │   │       ├── File.php
│   │   │   │   │   │       ├── Method.php
│   │   │   │   │   │       ├── Node.php
│   │   │   │   │   │       ├── Project.php
│   │   │   │   │   │       ├── Report.php
│   │   │   │   │   │       ├── Source.php
│   │   │   │   │   │       ├── Tests.php
│   │   │   │   │   │       ├── Totals.php
│   │   │   │   │   │       └── Unit.php
│   │   │   │   │   ├── Util.php
│   │   │   │   │   └── Version.php
│   │   │   │   └── tests
│   │   │   │       ├── TestCase.php
│   │   │   │       ├── _files
│   │   │   │       │   ├── BankAccount-clover.xml
│   │   │   │       │   ├── BankAccount-crap4j.xml
│   │   │   │       │   ├── BankAccount-text.txt
│   │   │   │       │   ├── BankAccount.php
│   │   │   │       │   ├── BankAccountTest.php
│   │   │   │       │   ├── CoverageClassExtendedTest.php
│   │   │   │       │   ├── CoverageClassTest.php
│   │   │   │       │   ├── CoverageFunctionParenthesesTest.php
│   │   │   │       │   ├── CoverageFunctionParenthesesWhitespaceTest.php
│   │   │   │       │   ├── CoverageFunctionTest.php
│   │   │   │       │   ├── CoverageMethodOneLineAnnotationTest.php
│   │   │   │       │   ├── CoverageMethodParenthesesTest.php
│   │   │   │       │   ├── CoverageMethodParenthesesWhitespaceTest.php
│   │   │   │       │   ├── CoverageMethodTest.php
│   │   │   │       │   ├── CoverageNoneTest.php
│   │   │   │       │   ├── CoverageNotPrivateTest.php
│   │   │   │       │   ├── CoverageNotProtectedTest.php
│   │   │   │       │   ├── CoverageNotPublicTest.php
│   │   │   │       │   ├── CoverageNothingTest.php
│   │   │   │       │   ├── CoveragePrivateTest.php
│   │   │   │       │   ├── CoverageProtectedTest.php
│   │   │   │       │   ├── CoveragePublicTest.php
│   │   │   │       │   ├── CoverageTwoDefaultClassAnnotations.php
│   │   │   │       │   ├── CoveredClass.php
│   │   │   │       │   ├── CoveredFunction.php
│   │   │   │       │   ├── Crash.php
│   │   │   │       │   ├── NamespaceCoverageClassExtendedTest.php
│   │   │   │       │   ├── NamespaceCoverageClassTest.php
│   │   │   │       │   ├── NamespaceCoverageCoversClassPublicTest.php
│   │   │   │       │   ├── NamespaceCoverageCoversClassTest.php
│   │   │   │       │   ├── NamespaceCoverageMethodTest.php
│   │   │   │       │   ├── NamespaceCoverageNotPrivateTest.php
│   │   │   │       │   ├── NamespaceCoverageNotProtectedTest.php
│   │   │   │       │   ├── NamespaceCoverageNotPublicTest.php
│   │   │   │       │   ├── NamespaceCoveragePrivateTest.php
│   │   │   │       │   ├── NamespaceCoverageProtectedTest.php
│   │   │   │       │   ├── NamespaceCoveragePublicTest.php
│   │   │   │       │   ├── NamespaceCoveredClass.php
│   │   │   │       │   ├── NotExistingCoveredElementTest.php
│   │   │   │       │   ├── Report
│   │   │   │       │   │   ├── HTML
│   │   │   │       │   │   │   ├── CoverageForBankAccount
│   │   │   │       │   │   │   │   ├── BankAccount.php.html
│   │   │   │       │   │   │   │   ├── dashboard.html
│   │   │   │       │   │   │   │   └── index.html
│   │   │   │       │   │   │   ├── CoverageForClassWithAnonymousFunction
│   │   │   │       │   │   │   │   ├── dashboard.html
│   │   │   │       │   │   │   │   ├── index.html
│   │   │   │       │   │   │   │   └── source_with_class_and_anonymous_function.php.html
│   │   │   │       │   │   │   └── CoverageForFileWithIgnoredLines
│   │   │   │       │   │   │       ├── dashboard.html
│   │   │   │       │   │   │       ├── index.html
│   │   │   │       │   │   │       └── source_with_ignore.php.html
│   │   │   │       │   │   └── XML
│   │   │   │       │   │       ├── CoverageForBankAccount
│   │   │   │       │   │       │   ├── BankAccount.php.xml
│   │   │   │       │   │       │   └── index.xml
│   │   │   │       │   │       ├── CoverageForClassWithAnonymousFunction
│   │   │   │       │   │       │   ├── index.xml
│   │   │   │       │   │       │   └── source_with_class_and_anonymous_function.php.xml
│   │   │   │       │   │       └── CoverageForFileWithIgnoredLines
│   │   │   │       │   │           ├── index.xml
│   │   │   │       │   │           └── source_with_ignore.php.xml
│   │   │   │       │   ├── class-with-anonymous-function-clover.xml
│   │   │   │       │   ├── class-with-anonymous-function-crap4j.xml
│   │   │   │       │   ├── class-with-anonymous-function-text.txt
│   │   │   │       │   ├── ignored-lines-clover.xml
│   │   │   │       │   ├── ignored-lines-crap4j.xml
│   │   │   │       │   ├── ignored-lines-text.txt
│   │   │   │       │   ├── source_with_class_and_anonymous_function.php
│   │   │   │       │   ├── source_with_ignore.php
│   │   │   │       │   ├── source_with_namespace.php
│   │   │   │       │   ├── source_with_oneline_annotations.php
│   │   │   │       │   ├── source_with_use_statements.php
│   │   │   │       │   ├── source_without_ignore.php
│   │   │   │       │   └── source_without_namespace.php
│   │   │   │       ├── bootstrap.php
│   │   │   │       └── tests
│   │   │   │           ├── BuilderTest.php
│   │   │   │           ├── CloverTest.php
│   │   │   │           ├── CodeCoverageTest.php
│   │   │   │           ├── Crap4jTest.php
│   │   │   │           ├── Exception
│   │   │   │           │   └── UnintentionallyCoveredCodeExceptionTest.php
│   │   │   │           ├── FilterTest.php
│   │   │   │           ├── HTMLTest.php
│   │   │   │           ├── TextTest.php
│   │   │   │           ├── UtilTest.php
│   │   │   │           └── XmlTest.php
│   │   │   ├── php-file-iterator
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Facade.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   └── Iterator.php
│   │   │   │   └── tests
│   │   │   │       └── FactoryTest.php
│   │   │   ├── php-text-template
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       └── Template.php
│   │   │   ├── php-timer
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── RuntimeException.php
│   │   │   │   │   └── Timer.php
│   │   │   │   └── tests
│   │   │   │       └── TimerTest.php
│   │   │   ├── php-token-stream
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Token
│   │   │   │   │   │   ├── Stream
│   │   │   │   │   │   │   └── CachingFactory.php
│   │   │   │   │   │   ├── Stream.php
│   │   │   │   │   │   └── Util.php
│   │   │   │   │   └── Token.php
│   │   │   │   └── tests
│   │   │   │       ├── Token
│   │   │   │       │   ├── ClassTest.php
│   │   │   │       │   ├── ClosureTest.php
│   │   │   │       │   ├── FunctionTest.php
│   │   │   │       │   ├── IncludeTest.php
│   │   │   │       │   ├── InterfaceTest.php
│   │   │   │       │   └── NamespaceTest.php
│   │   │   │       ├── _fixture
│   │   │   │       │   ├── classExtendsNamespacedClass.php
│   │   │   │       │   ├── classInNamespace.php
│   │   │   │       │   ├── classInScopedNamespace.php
│   │   │   │       │   ├── classUsesNamespacedFunction.php
│   │   │   │       │   ├── class_with_method_named_empty.php
│   │   │   │       │   ├── class_with_method_that_declares_anonymous_class.php
│   │   │   │       │   ├── class_with_method_that_declares_anonymous_class2.php
│   │   │   │       │   ├── class_with_multiple_anonymous_classes_and_functions.php
│   │   │   │       │   ├── closure.php
│   │   │   │       │   ├── issue19.php
│   │   │   │       │   ├── issue30.php
│   │   │   │       │   ├── multipleNamespacesWithOneClassUsingBraces.php
│   │   │   │       │   ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│   │   │   │       │   ├── php-code-coverage-issue-424.php
│   │   │   │       │   ├── source.php
│   │   │   │       │   ├── source2.php
│   │   │   │       │   ├── source3.php
│   │   │   │       │   ├── source4.php
│   │   │   │       │   └── source5.php
│   │   │   │       └── bootstrap.php
│   │   │   └── phpunit
│   │   │       ├── ChangeLog-8.5 2.md
│   │   │       ├── ChangeLog-8.5.md
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       ├── phpunit
│   │   │       ├── phpunit 2
│   │   │       ├── phpunit 2.xsd
│   │   │       ├── phpunit.xsd
│   │   │       └── src
│   │   │           ├── Exception 2.php
│   │   │           ├── Exception.php
│   │   │           ├── Framework
│   │   │           │   ├── Assert
│   │   │           │   │   ├── Functions 2.php
│   │   │           │   │   └── Functions.php
│   │   │           │   ├── Assert 2.php
│   │   │           │   ├── Assert.php
│   │   │           │   ├── Constraint
│   │   │           │   │   ├── ArrayHasKey 2.php
│   │   │           │   │   ├── ArrayHasKey.php
│   │   │           │   │   ├── ArraySubset 2.php
│   │   │           │   │   ├── ArraySubset.php
│   │   │           │   │   ├── Attribute 2.php
│   │   │           │   │   ├── Attribute.php
│   │   │           │   │   ├── Callback 2.php
│   │   │           │   │   ├── Callback.php
│   │   │           │   │   ├── ClassHasAttribute 2.php
│   │   │           │   │   ├── ClassHasAttribute.php
│   │   │           │   │   ├── ClassHasStaticAttribute 2.php
│   │   │           │   │   ├── ClassHasStaticAttribute.php
│   │   │           │   │   ├── Composite 2.php
│   │   │           │   │   ├── Composite.php
│   │   │           │   │   ├── Constraint 2.php
│   │   │           │   │   ├── Constraint.php
│   │   │           │   │   ├── Count 2.php
│   │   │           │   │   ├── Count.php
│   │   │           │   │   ├── DirectoryExists 2.php
│   │   │           │   │   ├── DirectoryExists.php
│   │   │           │   │   ├── Exception 2.php
│   │   │           │   │   ├── Exception.php
│   │   │           │   │   ├── ExceptionCode 2.php
│   │   │           │   │   ├── ExceptionCode.php
│   │   │           │   │   ├── ExceptionMessage 2.php
│   │   │           │   │   ├── ExceptionMessage.php
│   │   │           │   │   ├── ExceptionMessageRegularExpression 2.php
│   │   │           │   │   ├── ExceptionMessageRegularExpression.php
│   │   │           │   │   ├── FileExists 2.php
│   │   │           │   │   ├── FileExists.php
│   │   │           │   │   ├── GreaterThan 2.php
│   │   │           │   │   ├── GreaterThan.php
│   │   │           │   │   ├── IsAnything 2.php
│   │   │           │   │   ├── IsAnything.php
│   │   │           │   │   ├── IsEmpty 2.php
│   │   │           │   │   ├── IsEmpty.php
│   │   │           │   │   ├── IsEqual 2.php
│   │   │           │   │   ├── IsEqual.php
│   │   │           │   │   ├── IsFalse 2.php
│   │   │           │   │   ├── IsFalse.php
│   │   │           │   │   ├── IsFinite 2.php
│   │   │           │   │   ├── IsFinite.php
│   │   │           │   │   ├── IsIdentical 2.php
│   │   │           │   │   ├── IsIdentical.php
│   │   │           │   │   ├── IsInfinite 2.php
│   │   │           │   │   ├── IsInfinite.php
│   │   │           │   │   ├── IsInstanceOf 2.php
│   │   │           │   │   ├── IsInstanceOf.php
│   │   │           │   │   ├── IsJson 2.php
│   │   │           │   │   ├── IsJson.php
│   │   │           │   │   ├── IsNan 2.php
│   │   │           │   │   ├── IsNan.php
│   │   │           │   │   ├── IsNull 2.php
│   │   │           │   │   ├── IsNull.php
│   │   │           │   │   ├── IsReadable 2.php
│   │   │           │   │   ├── IsReadable.php
│   │   │           │   │   ├── IsTrue 2.php
│   │   │           │   │   ├── IsTrue.php
│   │   │           │   │   ├── IsType 2.php
│   │   │           │   │   ├── IsType.php
│   │   │           │   │   ├── IsWritable 2.php
│   │   │           │   │   ├── IsWritable.php
│   │   │           │   │   ├── JsonMatches 2.php
│   │   │           │   │   ├── JsonMatches.php
│   │   │           │   │   ├── JsonMatchesErrorMessageProvider 2.php
│   │   │           │   │   ├── JsonMatchesErrorMessageProvider.php
│   │   │           │   │   ├── LessThan 2.php
│   │   │           │   │   ├── LessThan.php
│   │   │           │   │   ├── LogicalAnd 2.php
│   │   │           │   │   ├── LogicalAnd.php
│   │   │           │   │   ├── LogicalNot 2.php
│   │   │           │   │   ├── LogicalNot.php
│   │   │           │   │   ├── LogicalOr 2.php
│   │   │           │   │   ├── LogicalOr.php
│   │   │           │   │   ├── LogicalXor 2.php
│   │   │           │   │   ├── LogicalXor.php
│   │   │           │   │   ├── ObjectHasAttribute 2.php
│   │   │           │   │   ├── ObjectHasAttribute.php
│   │   │           │   │   ├── RegularExpression 2.php
│   │   │           │   │   ├── RegularExpression.php
│   │   │           │   │   ├── SameSize 2.php
│   │   │           │   │   ├── SameSize.php
│   │   │           │   │   ├── StringContains 2.php
│   │   │           │   │   ├── StringContains.php
│   │   │           │   │   ├── StringEndsWith 2.php
│   │   │           │   │   ├── StringEndsWith.php
│   │   │           │   │   ├── StringMatchesFormatDescription 2.php
│   │   │           │   │   ├── StringMatchesFormatDescription.php
│   │   │           │   │   ├── StringStartsWith 2.php
│   │   │           │   │   ├── StringStartsWith.php
│   │   │           │   │   ├── TraversableContains 2.php
│   │   │           │   │   ├── TraversableContains.php
│   │   │           │   │   ├── TraversableContainsEqual 2.php
│   │   │           │   │   ├── TraversableContainsEqual.php
│   │   │           │   │   ├── TraversableContainsIdentical 2.php
│   │   │           │   │   ├── TraversableContainsIdentical.php
│   │   │           │   │   ├── TraversableContainsOnly 2.php
│   │   │           │   │   └── TraversableContainsOnly.php
│   │   │           │   ├── DataProviderTestSuite 2.php
│   │   │           │   ├── DataProviderTestSuite.php
│   │   │           │   ├── Error
│   │   │           │   │   ├── Deprecated 2.php
│   │   │           │   │   ├── Deprecated.php
│   │   │           │   │   ├── Error 2.php
│   │   │           │   │   ├── Error.php
│   │   │           │   │   ├── Notice 2.php
│   │   │           │   │   ├── Notice.php
│   │   │           │   │   ├── Warning 2.php
│   │   │           │   │   └── Warning.php
│   │   │           │   ├── Exception
│   │   │           │   │   ├── AssertionFailedError 2.php
│   │   │           │   │   ├── AssertionFailedError.php
│   │   │           │   │   ├── CodeCoverageException 2.php
│   │   │           │   │   ├── CodeCoverageException.php
│   │   │           │   │   ├── CoveredCodeNotExecutedException 2.php
│   │   │           │   │   ├── CoveredCodeNotExecutedException.php
│   │   │           │   │   ├── Exception 2.php
│   │   │           │   │   ├── Exception.php
│   │   │           │   │   ├── ExpectationFailedException 2.php
│   │   │           │   │   ├── ExpectationFailedException.php
│   │   │           │   │   ├── IncompleteTestError 2.php
│   │   │           │   │   ├── IncompleteTestError.php
│   │   │           │   │   ├── InvalidArgumentException 2.php
│   │   │           │   │   ├── InvalidArgumentException.php
│   │   │           │   │   ├── InvalidCoversTargetException 2.php
│   │   │           │   │   ├── InvalidCoversTargetException.php
│   │   │           │   │   ├── InvalidDataProviderException 2.php
│   │   │           │   │   ├── InvalidDataProviderException.php
│   │   │           │   │   ├── MissingCoversAnnotationException 2.php
│   │   │           │   │   ├── MissingCoversAnnotationException.php
│   │   │           │   │   ├── NoChildTestSuiteException 2.php
│   │   │           │   │   ├── NoChildTestSuiteException.php
│   │   │           │   │   ├── OutputError 2.php
│   │   │           │   │   ├── OutputError.php
│   │   │           │   │   ├── PHPTAssertionFailedError 2.php
│   │   │           │   │   ├── PHPTAssertionFailedError.php
│   │   │           │   │   ├── RiskyTestError 2.php
│   │   │           │   │   ├── RiskyTestError.php
│   │   │           │   │   ├── SkippedTestError 2.php
│   │   │           │   │   ├── SkippedTestError.php
│   │   │           │   │   ├── SkippedTestSuiteError 2.php
│   │   │           │   │   ├── SkippedTestSuiteError.php
│   │   │           │   │   ├── SyntheticError 2.php
│   │   │           │   │   ├── SyntheticError.php
│   │   │           │   │   ├── SyntheticSkippedError 2.php
│   │   │           │   │   ├── SyntheticSkippedError.php
│   │   │           │   │   ├── UnintentionallyCoveredCodeError 2.php
│   │   │           │   │   ├── UnintentionallyCoveredCodeError.php
│   │   │           │   │   ├── Warning 2.php
│   │   │           │   │   └── Warning.php
│   │   │           │   ├── ExceptionWrapper 2.php
│   │   │           │   ├── ExceptionWrapper.php
│   │   │           │   ├── IncompleteTest 2.php
│   │   │           │   ├── IncompleteTest.php
│   │   │           │   ├── IncompleteTestCase 2.php
│   │   │           │   ├── IncompleteTestCase.php
│   │   │           │   ├── InvalidParameterGroupException 2.php
│   │   │           │   ├── InvalidParameterGroupException.php
│   │   │           │   ├── MockObject
│   │   │           │   │   ├── Api
│   │   │           │   │   │   ├── Api 2.php
│   │   │           │   │   │   ├── Api.php
│   │   │           │   │   │   ├── Method 2.php
│   │   │           │   │   │   ├── Method.php
│   │   │           │   │   │   ├── MockedCloneMethod 2.php
│   │   │           │   │   │   ├── MockedCloneMethod.php
│   │   │           │   │   │   ├── UnmockedCloneMethod 2.php
│   │   │           │   │   │   └── UnmockedCloneMethod.php
│   │   │           │   │   ├── Builder
│   │   │           │   │   │   ├── Identity 2.php
│   │   │           │   │   │   ├── Identity.php
│   │   │           │   │   │   ├── InvocationMocker 2.php
│   │   │           │   │   │   ├── InvocationMocker.php
│   │   │           │   │   │   ├── InvocationStubber 2.php
│   │   │           │   │   │   ├── InvocationStubber.php
│   │   │           │   │   │   ├── Match 2.php
│   │   │           │   │   │   ├── Match.php
│   │   │           │   │   │   ├── MethodNameMatch 2.php
│   │   │           │   │   │   ├── MethodNameMatch.php
│   │   │           │   │   │   ├── ParametersMatch 2.php
│   │   │           │   │   │   ├── ParametersMatch.php
│   │   │           │   │   │   ├── Stub 2.php
│   │   │           │   │   │   └── Stub.php
│   │   │           │   │   ├── ConfigurableMethod 2.php
│   │   │           │   │   ├── ConfigurableMethod.php
│   │   │           │   │   ├── Exception
│   │   │           │   │   │   ├── BadMethodCallException 2.php
│   │   │           │   │   │   ├── BadMethodCallException.php
│   │   │           │   │   │   ├── ConfigurableMethodsAlreadyInitializedException 2.php
│   │   │           │   │   │   ├── ConfigurableMethodsAlreadyInitializedException.php
│   │   │           │   │   │   ├── Exception 2.php
│   │   │           │   │   │   ├── Exception.php
│   │   │           │   │   │   ├── IncompatibleReturnValueException 2.php
│   │   │           │   │   │   ├── IncompatibleReturnValueException.php
│   │   │           │   │   │   ├── RuntimeException 2.php
│   │   │           │   │   │   └── RuntimeException.php
│   │   │           │   │   ├── Generator
│   │   │           │   │   │   ├── deprecation 2.tpl
│   │   │           │   │   │   ├── deprecation.tpl
│   │   │           │   │   │   ├── mocked_class 2.tpl
│   │   │           │   │   │   ├── mocked_class.tpl
│   │   │           │   │   │   ├── mocked_method 2.tpl
│   │   │           │   │   │   ├── mocked_method.tpl
│   │   │           │   │   │   ├── mocked_method_void 2.tpl
│   │   │           │   │   │   ├── mocked_method_void.tpl
│   │   │           │   │   │   ├── mocked_static_method 2.tpl
│   │   │           │   │   │   ├── mocked_static_method.tpl
│   │   │           │   │   │   ├── proxied_method 2.tpl
│   │   │           │   │   │   ├── proxied_method.tpl
│   │   │           │   │   │   ├── proxied_method_void 2.tpl
│   │   │           │   │   │   ├── proxied_method_void.tpl
│   │   │           │   │   │   ├── trait_class 2.tpl
│   │   │           │   │   │   ├── trait_class.tpl
│   │   │           │   │   │   ├── wsdl_class 2.tpl
│   │   │           │   │   │   ├── wsdl_class.tpl
│   │   │           │   │   │   ├── wsdl_method 2.tpl
│   │   │           │   │   │   └── wsdl_method.tpl
│   │   │           │   │   ├── Generator 2.php
│   │   │           │   │   ├── Generator.php
│   │   │           │   │   ├── Invocation 2.php
│   │   │           │   │   ├── Invocation.php
│   │   │           │   │   ├── InvocationHandler 2.php
│   │   │           │   │   ├── InvocationHandler.php
│   │   │           │   │   ├── Matcher 2.php
│   │   │           │   │   ├── Matcher.php
│   │   │           │   │   ├── MethodNameConstraint 2.php
│   │   │           │   │   ├── MethodNameConstraint.php
│   │   │           │   │   ├── MockBuilder 2.php
│   │   │           │   │   ├── MockBuilder.php
│   │   │           │   │   ├── MockClass 2.php
│   │   │           │   │   ├── MockClass.php
│   │   │           │   │   ├── MockMethod 2.php
│   │   │           │   │   ├── MockMethod.php
│   │   │           │   │   ├── MockMethodSet 2.php
│   │   │           │   │   ├── MockMethodSet.php
│   │   │           │   │   ├── MockObject 2.php
│   │   │           │   │   ├── MockObject.php
│   │   │           │   │   ├── MockTrait 2.php
│   │   │           │   │   ├── MockTrait.php
│   │   │           │   │   ├── MockType 2.php
│   │   │           │   │   ├── MockType.php
│   │   │           │   │   ├── Rule
│   │   │           │   │   │   ├── AnyInvokedCount 2.php
│   │   │           │   │   │   ├── AnyInvokedCount.php
│   │   │           │   │   │   ├── AnyParameters 2.php
│   │   │           │   │   │   ├── AnyParameters.php
│   │   │           │   │   │   ├── ConsecutiveParameters 2.php
│   │   │           │   │   │   ├── ConsecutiveParameters.php
│   │   │           │   │   │   ├── InvocationOrder 2.php
│   │   │           │   │   │   ├── InvocationOrder.php
│   │   │           │   │   │   ├── InvokedAtIndex 2.php
│   │   │           │   │   │   ├── InvokedAtIndex.php
│   │   │           │   │   │   ├── InvokedAtLeastCount 2.php
│   │   │           │   │   │   ├── InvokedAtLeastCount.php
│   │   │           │   │   │   ├── InvokedAtLeastOnce 2.php
│   │   │           │   │   │   ├── InvokedAtLeastOnce.php
│   │   │           │   │   │   ├── InvokedAtMostCount 2.php
│   │   │           │   │   │   ├── InvokedAtMostCount.php
│   │   │           │   │   │   ├── InvokedCount 2.php
│   │   │           │   │   │   ├── InvokedCount.php
│   │   │           │   │   │   ├── MethodName 2.php
│   │   │           │   │   │   ├── MethodName.php
│   │   │           │   │   │   ├── Parameters 2.php
│   │   │           │   │   │   ├── Parameters.php
│   │   │           │   │   │   ├── ParametersRule 2.php
│   │   │           │   │   │   └── ParametersRule.php
│   │   │           │   │   ├── Stub
│   │   │           │   │   │   ├── ConsecutiveCalls 2.php
│   │   │           │   │   │   ├── ConsecutiveCalls.php
│   │   │           │   │   │   ├── Exception 2.php
│   │   │           │   │   │   ├── Exception.php
│   │   │           │   │   │   ├── ReturnArgument 2.php
│   │   │           │   │   │   ├── ReturnArgument.php
│   │   │           │   │   │   ├── ReturnCallback 2.php
│   │   │           │   │   │   ├── ReturnCallback.php
│   │   │           │   │   │   ├── ReturnReference 2.php
│   │   │           │   │   │   ├── ReturnReference.php
│   │   │           │   │   │   ├── ReturnSelf 2.php
│   │   │           │   │   │   ├── ReturnSelf.php
│   │   │           │   │   │   ├── ReturnStub 2.php
│   │   │           │   │   │   ├── ReturnStub.php
│   │   │           │   │   │   ├── ReturnValueMap 2.php
│   │   │           │   │   │   ├── ReturnValueMap.php
│   │   │           │   │   │   ├── Stub 2.php
│   │   │           │   │   │   └── Stub.php
│   │   │           │   │   ├── Stub 2.php
│   │   │           │   │   ├── Stub.php
│   │   │           │   │   ├── Verifiable 2.php
│   │   │           │   │   └── Verifiable.php
│   │   │           │   ├── SelfDescribing 2.php
│   │   │           │   ├── SelfDescribing.php
│   │   │           │   ├── SkippedTest 2.php
│   │   │           │   ├── SkippedTest.php
│   │   │           │   ├── SkippedTestCase 2.php
│   │   │           │   ├── SkippedTestCase.php
│   │   │           │   ├── Test 2.php
│   │   │           │   ├── Test.php
│   │   │           │   ├── TestBuilder 2.php
│   │   │           │   ├── TestBuilder.php
│   │   │           │   ├── TestCase 2.php
│   │   │           │   ├── TestCase.php
│   │   │           │   ├── TestFailure 2.php
│   │   │           │   ├── TestFailure.php
│   │   │           │   ├── TestListener 2.php
│   │   │           │   ├── TestListener.php
│   │   │           │   ├── TestListenerDefaultImplementation 2.php
│   │   │           │   ├── TestListenerDefaultImplementation.php
│   │   │           │   ├── TestResult 2.php
│   │   │           │   ├── TestResult.php
│   │   │           │   ├── TestSuite 2.php
│   │   │           │   ├── TestSuite.php
│   │   │           │   ├── TestSuiteIterator 2.php
│   │   │           │   ├── TestSuiteIterator.php
│   │   │           │   ├── WarningTestCase 2.php
│   │   │           │   └── WarningTestCase.php
│   │   │           ├── Runner
│   │   │           │   ├── BaseTestRunner 2.php
│   │   │           │   ├── BaseTestRunner.php
│   │   │           │   ├── DefaultTestResultCache 2.php
│   │   │           │   ├── DefaultTestResultCache.php
│   │   │           │   ├── Exception 2.php
│   │   │           │   ├── Exception.php
│   │   │           │   ├── Filter
│   │   │           │   │   ├── ExcludeGroupFilterIterator 2.php
│   │   │           │   │   ├── ExcludeGroupFilterIterator.php
│   │   │           │   │   ├── Factory 2.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── GroupFilterIterator 2.php
│   │   │           │   │   ├── GroupFilterIterator.php
│   │   │           │   │   ├── IncludeGroupFilterIterator 2.php
│   │   │           │   │   ├── IncludeGroupFilterIterator.php
│   │   │           │   │   ├── NameFilterIterator 2.php
│   │   │           │   │   └── NameFilterIterator.php
│   │   │           │   ├── Hook
│   │   │           │   │   ├── AfterIncompleteTestHook 2.php
│   │   │           │   │   ├── AfterIncompleteTestHook.php
│   │   │           │   │   ├── AfterLastTestHook 2.php
│   │   │           │   │   ├── AfterLastTestHook.php
│   │   │           │   │   ├── AfterRiskyTestHook 2.php
│   │   │           │   │   ├── AfterRiskyTestHook.php
│   │   │           │   │   ├── AfterSkippedTestHook 2.php
│   │   │           │   │   ├── AfterSkippedTestHook.php
│   │   │           │   │   ├── AfterSuccessfulTestHook 2.php
│   │   │           │   │   ├── AfterSuccessfulTestHook.php
│   │   │           │   │   ├── AfterTestErrorHook 2.php
│   │   │           │   │   ├── AfterTestErrorHook.php
│   │   │           │   │   ├── AfterTestFailureHook 2.php
│   │   │           │   │   ├── AfterTestFailureHook.php
│   │   │           │   │   ├── AfterTestHook 2.php
│   │   │           │   │   ├── AfterTestHook.php
│   │   │           │   │   ├── AfterTestWarningHook 2.php
│   │   │           │   │   ├── AfterTestWarningHook.php
│   │   │           │   │   ├── BeforeFirstTestHook 2.php
│   │   │           │   │   ├── BeforeFirstTestHook.php
│   │   │           │   │   ├── BeforeTestHook 2.php
│   │   │           │   │   ├── BeforeTestHook.php
│   │   │           │   │   ├── Hook 2.php
│   │   │           │   │   ├── Hook.php
│   │   │           │   │   ├── TestHook 2.php
│   │   │           │   │   ├── TestHook.php
│   │   │           │   │   ├── TestListenerAdapter 2.php
│   │   │           │   │   └── TestListenerAdapter.php
│   │   │           │   ├── NullTestResultCache 2.php
│   │   │           │   ├── NullTestResultCache.php
│   │   │           │   ├── PhptTestCase 2.php
│   │   │           │   ├── PhptTestCase.php
│   │   │           │   ├── ResultCacheExtension 2.php
│   │   │           │   ├── ResultCacheExtension.php
│   │   │           │   ├── StandardTestSuiteLoader 2.php
│   │   │           │   ├── StandardTestSuiteLoader.php
│   │   │           │   ├── TestResultCache 2.php
│   │   │           │   ├── TestResultCache.php
│   │   │           │   ├── TestSuiteLoader 2.php
│   │   │           │   ├── TestSuiteLoader.php
│   │   │           │   ├── TestSuiteSorter 2.php
│   │   │           │   ├── TestSuiteSorter.php
│   │   │           │   ├── Version 2.php
│   │   │           │   └── Version.php
│   │   │           ├── TextUI
│   │   │           │   ├── Command 2.php
│   │   │           │   ├── Command.php
│   │   │           │   ├── Exception 2.php
│   │   │           │   ├── Exception.php
│   │   │           │   ├── Help 2.php
│   │   │           │   ├── Help.php
│   │   │           │   ├── ResultPrinter 2.php
│   │   │           │   ├── ResultPrinter.php
│   │   │           │   ├── TestRunner 2.php
│   │   │           │   └── TestRunner.php
│   │   │           └── Util
│   │   │               ├── Annotation
│   │   │               │   ├── DocBlock 2.php
│   │   │               │   ├── DocBlock.php
│   │   │               │   ├── Registry 2.php
│   │   │               │   └── Registry.php
│   │   │               ├── Blacklist 2.php
│   │   │               ├── Blacklist.php
│   │   │               ├── Color 2.php
│   │   │               ├── Color.php
│   │   │               ├── Configuration 2.php
│   │   │               ├── Configuration.php
│   │   │               ├── ConfigurationGenerator 2.php
│   │   │               ├── ConfigurationGenerator.php
│   │   │               ├── ErrorHandler 2.php
│   │   │               ├── ErrorHandler.php
│   │   │               ├── Exception 2.php
│   │   │               ├── Exception.php
│   │   │               ├── FileLoader 2.php
│   │   │               ├── FileLoader.php
│   │   │               ├── Filesystem 2.php
│   │   │               ├── Filesystem.php
│   │   │               ├── Filter 2.php
│   │   │               ├── Filter.php
│   │   │               ├── Getopt 2.php
│   │   │               ├── Getopt.php
│   │   │               ├── GlobalState 2.php
│   │   │               ├── GlobalState.php
│   │   │               ├── InvalidDataSetException 2.php
│   │   │               ├── InvalidDataSetException.php
│   │   │               ├── Json 2.php
│   │   │               ├── Json.php
│   │   │               ├── Log
│   │   │               │   ├── JUnit 2.php
│   │   │               │   ├── JUnit.php
│   │   │               │   ├── TeamCity 2.php
│   │   │               │   └── TeamCity.php
│   │   │               ├── PHP
│   │   │               │   ├── AbstractPhpProcess 2.php
│   │   │               │   ├── AbstractPhpProcess.php
│   │   │               │   ├── DefaultPhpProcess 2.php
│   │   │               │   ├── DefaultPhpProcess.php
│   │   │               │   ├── Template
│   │   │               │   │   ├── PhptTestCase 2.tpl
│   │   │               │   │   ├── PhptTestCase.tpl
│   │   │               │   │   ├── TestCaseClass 2.tpl
│   │   │               │   │   ├── TestCaseClass.tpl
│   │   │               │   │   ├── TestCaseMethod 2.tpl
│   │   │               │   │   └── TestCaseMethod.tpl
│   │   │               │   ├── WindowsPhpProcess 2.php
│   │   │               │   └── WindowsPhpProcess.php
│   │   │               ├── Printer 2.php
│   │   │               ├── Printer.php
│   │   │               ├── RegularExpression 2.php
│   │   │               ├── RegularExpression.php
│   │   │               ├── Test 2.php
│   │   │               ├── Test.php
│   │   │               ├── TestDox
│   │   │               │   ├── CliTestDoxPrinter 2.php
│   │   │               │   ├── CliTestDoxPrinter.php
│   │   │               │   ├── HtmlResultPrinter 2.php
│   │   │               │   ├── HtmlResultPrinter.php
│   │   │               │   ├── NamePrettifier 2.php
│   │   │               │   ├── NamePrettifier.php
│   │   │               │   ├── ResultPrinter 2.php
│   │   │               │   ├── ResultPrinter.php
│   │   │               │   ├── TestDoxPrinter 2.php
│   │   │               │   ├── TestDoxPrinter.php
│   │   │               │   ├── TextResultPrinter 2.php
│   │   │               │   ├── TextResultPrinter.php
│   │   │               │   ├── XmlResultPrinter 2.php
│   │   │               │   └── XmlResultPrinter.php
│   │   │               ├── TextTestListRenderer 2.php
│   │   │               ├── TextTestListRenderer.php
│   │   │               ├── Type 2.php
│   │   │               ├── Type.php
│   │   │               ├── VersionComparisonOperator 2.php
│   │   │               ├── VersionComparisonOperator.php
│   │   │               ├── XdebugFilterScriptGenerator 2.php
│   │   │               ├── XdebugFilterScriptGenerator.php
│   │   │               ├── Xml 2.php
│   │   │               ├── Xml.php
│   │   │               ├── XmlTestListRenderer 2.php
│   │   │               └── XmlTestListRenderer.php
│   │   ├── psr
│   │   │   ├── container
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── ContainerExceptionInterface.php
│   │   │   │       ├── ContainerInterface.php
│   │   │   │       └── NotFoundExceptionInterface.php
│   │   │   ├── event-dispatcher
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── EventDispatcherInterface.php
│   │   │   │       ├── ListenerProviderInterface.php
│   │   │   │       └── StoppableEventInterface.php
│   │   │   ├── http-message
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── MessageInterface.php
│   │   │   │       ├── RequestInterface.php
│   │   │   │       ├── ResponseInterface.php
│   │   │   │       ├── ServerRequestInterface.php
│   │   │   │       ├── StreamInterface.php
│   │   │   │       ├── UploadedFileInterface.php
│   │   │   │       └── UriInterface.php
│   │   │   ├── log
│   │   │   │   ├── LICENSE
│   │   │   │   ├── Psr
│   │   │   │   │   └── Log
│   │   │   │   │       ├── AbstractLogger.php
│   │   │   │   │       ├── InvalidArgumentException.php
│   │   │   │   │       ├── LogLevel.php
│   │   │   │   │       ├── LoggerAwareInterface.php
│   │   │   │   │       ├── LoggerAwareTrait.php
│   │   │   │   │       ├── LoggerInterface.php
│   │   │   │   │       ├── LoggerTrait.php
│   │   │   │   │       ├── NullLogger.php
│   │   │   │   │       └── Test
│   │   │   │   │           ├── DummyTest.php
│   │   │   │   │           ├── LoggerInterfaceTest.php
│   │   │   │   │           └── TestLogger.php
│   │   │   │   ├── README.md
│   │   │   │   └── composer.json
│   │   │   └── simple-cache
│   │   │       ├── LICENSE.md
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── CacheException.php
│   │   │           ├── CacheInterface.php
│   │   │           └── InvalidArgumentException.php
│   │   ├── psy
│   │   │   └── psysh
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── bin
│   │   │       │   └── psysh
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── CodeCleaner
│   │   │           │   ├── AbstractClassPass.php
│   │   │           │   ├── AssignThisVariablePass.php
│   │   │           │   ├── CallTimePassByReferencePass.php
│   │   │           │   ├── CalledClassPass.php
│   │   │           │   ├── CodeCleanerPass.php
│   │   │           │   ├── EmptyArrayDimFetchPass.php
│   │   │           │   ├── ExitPass.php
│   │   │           │   ├── FinalClassPass.php
│   │   │           │   ├── FunctionContextPass.php
│   │   │           │   ├── FunctionReturnInWriteContextPass.php
│   │   │           │   ├── ImplicitReturnPass.php
│   │   │           │   ├── InstanceOfPass.php
│   │   │           │   ├── LabelContextPass.php
│   │   │           │   ├── LeavePsyshAlonePass.php
│   │   │           │   ├── ListPass.php
│   │   │           │   ├── LoopContextPass.php
│   │   │           │   ├── MagicConstantsPass.php
│   │   │           │   ├── NamespaceAwarePass.php
│   │   │           │   ├── NamespacePass.php
│   │   │           │   ├── NoReturnValue.php
│   │   │           │   ├── PassableByReferencePass.php
│   │   │           │   ├── RequirePass.php
│   │   │           │   ├── ReturnTypePass.php
│   │   │           │   ├── StrictTypesPass.php
│   │   │           │   ├── UseStatementPass.php
│   │   │           │   ├── ValidClassNamePass.php
│   │   │           │   ├── ValidConstantPass.php
│   │   │           │   ├── ValidConstructorPass.php
│   │   │           │   └── ValidFunctionNamePass.php
│   │   │           ├── CodeCleaner.php
│   │   │           ├── Command
│   │   │           │   ├── BufferCommand.php
│   │   │           │   ├── ClearCommand.php
│   │   │           │   ├── Command.php
│   │   │           │   ├── DocCommand.php
│   │   │           │   ├── DumpCommand.php
│   │   │           │   ├── EditCommand.php
│   │   │           │   ├── ExitCommand.php
│   │   │           │   ├── HelpCommand.php
│   │   │           │   ├── HistoryCommand.php
│   │   │           │   ├── ListCommand
│   │   │           │   │   ├── ClassConstantEnumerator.php
│   │   │           │   │   ├── ClassEnumerator.php
│   │   │           │   │   ├── ConstantEnumerator.php
│   │   │           │   │   ├── Enumerator.php
│   │   │           │   │   ├── FunctionEnumerator.php
│   │   │           │   │   ├── GlobalVariableEnumerator.php
│   │   │           │   │   ├── MethodEnumerator.php
│   │   │           │   │   ├── PropertyEnumerator.php
│   │   │           │   │   └── VariableEnumerator.php
│   │   │           │   ├── ListCommand.php
│   │   │           │   ├── ParseCommand.php
│   │   │           │   ├── PsyVersionCommand.php
│   │   │           │   ├── ReflectingCommand.php
│   │   │           │   ├── ShowCommand.php
│   │   │           │   ├── SudoCommand.php
│   │   │           │   ├── ThrowUpCommand.php
│   │   │           │   ├── TimeitCommand
│   │   │           │   │   └── TimeitVisitor.php
│   │   │           │   ├── TimeitCommand.php
│   │   │           │   ├── TraceCommand.php
│   │   │           │   ├── WhereamiCommand.php
│   │   │           │   └── WtfCommand.php
│   │   │           ├── ConfigPaths.php
│   │   │           ├── Configuration.php
│   │   │           ├── ConsoleColorFactory.php
│   │   │           ├── Context.php
│   │   │           ├── ContextAware.php
│   │   │           ├── Exception
│   │   │           │   ├── BreakException.php
│   │   │           │   ├── DeprecatedException.php
│   │   │           │   ├── ErrorException.php
│   │   │           │   ├── Exception.php
│   │   │           │   ├── FatalErrorException.php
│   │   │           │   ├── ParseErrorException.php
│   │   │           │   ├── RuntimeException.php
│   │   │           │   ├── ThrowUpException.php
│   │   │           │   ├── TypeErrorException.php
│   │   │           │   └── UnexpectedTargetException.php
│   │   │           ├── ExecutionClosure.php
│   │   │           ├── ExecutionLoop
│   │   │           │   ├── AbstractListener.php
│   │   │           │   ├── Listener.php
│   │   │           │   ├── ProcessForker.php
│   │   │           │   └── RunkitReloader.php
│   │   │           ├── ExecutionLoopClosure.php
│   │   │           ├── Formatter
│   │   │           │   ├── CodeFormatter.php
│   │   │           │   ├── DocblockFormatter.php
│   │   │           │   ├── Formatter.php
│   │   │           │   ├── ReflectorFormatter.php
│   │   │           │   ├── SignatureFormatter.php
│   │   │           │   └── TraceFormatter.php
│   │   │           ├── Input
│   │   │           │   ├── CodeArgument.php
│   │   │           │   ├── FilterOptions.php
│   │   │           │   ├── ShellInput.php
│   │   │           │   └── SilentInput.php
│   │   │           ├── Output
│   │   │           │   ├── OutputPager.php
│   │   │           │   ├── PassthruPager.php
│   │   │           │   ├── ProcOutputPager.php
│   │   │           │   └── ShellOutput.php
│   │   │           ├── ParserFactory.php
│   │   │           ├── Readline
│   │   │           │   ├── GNUReadline.php
│   │   │           │   ├── HoaConsole.php
│   │   │           │   ├── Libedit.php
│   │   │           │   ├── Readline.php
│   │   │           │   └── Transient.php
│   │   │           ├── Reflection
│   │   │           │   ├── ReflectionClassConstant.php
│   │   │           │   ├── ReflectionConstant.php
│   │   │           │   ├── ReflectionConstant_.php
│   │   │           │   ├── ReflectionLanguageConstruct.php
│   │   │           │   ├── ReflectionLanguageConstructParameter.php
│   │   │           │   └── ReflectionNamespace.php
│   │   │           ├── Shell.php
│   │   │           ├── Sudo
│   │   │           │   └── SudoVisitor.php
│   │   │           ├── Sudo.php
│   │   │           ├── TabCompletion
│   │   │           │   ├── AutoCompleter.php
│   │   │           │   └── Matcher
│   │   │           │       ├── AbstractContextAwareMatcher.php
│   │   │           │       ├── AbstractDefaultParametersMatcher.php
│   │   │           │       ├── AbstractMatcher.php
│   │   │           │       ├── ClassAttributesMatcher.php
│   │   │           │       ├── ClassMethodDefaultParametersMatcher.php
│   │   │           │       ├── ClassMethodsMatcher.php
│   │   │           │       ├── ClassNamesMatcher.php
│   │   │           │       ├── CommandsMatcher.php
│   │   │           │       ├── ConstantsMatcher.php
│   │   │           │       ├── FunctionDefaultParametersMatcher.php
│   │   │           │       ├── FunctionsMatcher.php
│   │   │           │       ├── KeywordsMatcher.php
│   │   │           │       ├── MongoClientMatcher.php
│   │   │           │       ├── MongoDatabaseMatcher.php
│   │   │           │       ├── ObjectAttributesMatcher.php
│   │   │           │       ├── ObjectMethodDefaultParametersMatcher.php
│   │   │           │       ├── ObjectMethodsMatcher.php
│   │   │           │       └── VariablesMatcher.php
│   │   │           ├── Util
│   │   │           │   ├── Docblock.php
│   │   │           │   ├── Json.php
│   │   │           │   ├── Mirror.php
│   │   │           │   └── Str.php
│   │   │           ├── VarDumper
│   │   │           │   ├── Cloner.php
│   │   │           │   ├── Dumper.php
│   │   │           │   ├── Presenter.php
│   │   │           │   └── PresenterAware.php
│   │   │           ├── VersionUpdater
│   │   │           │   ├── Checker.php
│   │   │           │   ├── GitHubChecker.php
│   │   │           │   ├── IntervalChecker.php
│   │   │           │   └── NoopChecker.php
│   │   │           └── functions.php
│   │   ├── ralouphie
│   │   │   └── getallheaders
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── getallheaders.php
│   │   ├── ramsey
│   │   │   ├── collection
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── AbstractArray.php
│   │   │   │       ├── AbstractCollection.php
│   │   │   │       ├── AbstractSet.php
│   │   │   │       ├── ArrayInterface.php
│   │   │   │       ├── Collection.php
│   │   │   │       ├── CollectionInterface.php
│   │   │   │       ├── DoubleEndedQueue.php
│   │   │   │       ├── DoubleEndedQueueInterface.php
│   │   │   │       ├── Exception
│   │   │   │       │   ├── CollectionMismatchException.php
│   │   │   │       │   ├── InvalidArgumentException.php
│   │   │   │       │   ├── InvalidSortOrderException.php
│   │   │   │       │   ├── NoSuchElementException.php
│   │   │   │       │   ├── OutOfBoundsException.php
│   │   │   │       │   ├── UnsupportedOperationException.php
│   │   │   │       │   └── ValueExtractionException.php
│   │   │   │       ├── GenericArray.php
│   │   │   │       ├── Map
│   │   │   │       │   ├── AbstractMap.php
│   │   │   │       │   ├── AbstractTypedMap.php
│   │   │   │       │   ├── AssociativeArrayMap.php
│   │   │   │       │   ├── MapInterface.php
│   │   │   │       │   ├── NamedParameterMap.php
│   │   │   │       │   ├── TypedMap.php
│   │   │   │       │   └── TypedMapInterface.php
│   │   │   │       ├── Queue.php
│   │   │   │       ├── QueueInterface.php
│   │   │   │       ├── Set.php
│   │   │   │       └── Tool
│   │   │   │           ├── TypeTrait.php
│   │   │   │           ├── ValueExtractorTrait.php
│   │   │   │           └── ValueToStringTrait.php
│   │   │   └── uuid
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── BinaryUtils.php
│   │   │           ├── Builder
│   │   │           │   ├── BuilderCollection.php
│   │   │           │   ├── DefaultUuidBuilder.php
│   │   │           │   ├── DegradedUuidBuilder.php
│   │   │           │   ├── FallbackBuilder.php
│   │   │           │   └── UuidBuilderInterface.php
│   │   │           ├── Codec
│   │   │           │   ├── CodecInterface.php
│   │   │           │   ├── GuidStringCodec.php
│   │   │           │   ├── OrderedTimeCodec.php
│   │   │           │   ├── StringCodec.php
│   │   │           │   ├── TimestampFirstCombCodec.php
│   │   │           │   └── TimestampLastCombCodec.php
│   │   │           ├── Converter
│   │   │           │   ├── Number
│   │   │           │   │   ├── BigNumberConverter.php
│   │   │           │   │   ├── DegradedNumberConverter.php
│   │   │           │   │   └── GenericNumberConverter.php
│   │   │           │   ├── NumberConverterInterface.php
│   │   │           │   ├── Time
│   │   │           │   │   ├── BigNumberTimeConverter.php
│   │   │           │   │   ├── DegradedTimeConverter.php
│   │   │           │   │   ├── GenericTimeConverter.php
│   │   │           │   │   └── PhpTimeConverter.php
│   │   │           │   └── TimeConverterInterface.php
│   │   │           ├── DegradedUuid.php
│   │   │           ├── DeprecatedUuidInterface.php
│   │   │           ├── DeprecatedUuidMethodsTrait.php
│   │   │           ├── Exception
│   │   │           │   ├── BuilderNotFoundException.php
│   │   │           │   ├── DateTimeException.php
│   │   │           │   ├── DceSecurityException.php
│   │   │           │   ├── InvalidArgumentException.php
│   │   │           │   ├── InvalidBytesException.php
│   │   │           │   ├── InvalidUuidStringException.php
│   │   │           │   ├── NameException.php
│   │   │           │   ├── NodeException.php
│   │   │           │   ├── RandomSourceException.php
│   │   │           │   ├── TimeSourceException.php
│   │   │           │   ├── UnableToBuildUuidException.php
│   │   │           │   └── UnsupportedOperationException.php
│   │   │           ├── FeatureSet.php
│   │   │           ├── Fields
│   │   │           │   ├── FieldsInterface.php
│   │   │           │   └── SerializableFieldsTrait.php
│   │   │           ├── Generator
│   │   │           │   ├── CombGenerator.php
│   │   │           │   ├── DceSecurityGenerator.php
│   │   │           │   ├── DceSecurityGeneratorInterface.php
│   │   │           │   ├── DefaultNameGenerator.php
│   │   │           │   ├── DefaultTimeGenerator.php
│   │   │           │   ├── NameGeneratorFactory.php
│   │   │           │   ├── NameGeneratorInterface.php
│   │   │           │   ├── PeclUuidNameGenerator.php
│   │   │           │   ├── PeclUuidRandomGenerator.php
│   │   │           │   ├── PeclUuidTimeGenerator.php
│   │   │           │   ├── RandomBytesGenerator.php
│   │   │           │   ├── RandomGeneratorFactory.php
│   │   │           │   ├── RandomGeneratorInterface.php
│   │   │           │   ├── RandomLibAdapter.php
│   │   │           │   ├── TimeGeneratorFactory.php
│   │   │           │   └── TimeGeneratorInterface.php
│   │   │           ├── Guid
│   │   │           │   ├── Fields.php
│   │   │           │   ├── Guid.php
│   │   │           │   └── GuidBuilder.php
│   │   │           ├── Lazy
│   │   │           │   └── LazyUuidFromString.php
│   │   │           ├── Math
│   │   │           │   ├── BrickMathCalculator.php
│   │   │           │   ├── CalculatorInterface.php
│   │   │           │   └── RoundingMode.php
│   │   │           ├── Nonstandard
│   │   │           │   ├── Fields.php
│   │   │           │   ├── Uuid.php
│   │   │           │   ├── UuidBuilder.php
│   │   │           │   └── UuidV6.php
│   │   │           ├── Provider
│   │   │           │   ├── Dce
│   │   │           │   │   └── SystemDceSecurityProvider.php
│   │   │           │   ├── DceSecurityProviderInterface.php
│   │   │           │   ├── Node
│   │   │           │   │   ├── FallbackNodeProvider.php
│   │   │           │   │   ├── NodeProviderCollection.php
│   │   │           │   │   ├── RandomNodeProvider.php
│   │   │           │   │   ├── StaticNodeProvider.php
│   │   │           │   │   └── SystemNodeProvider.php
│   │   │           │   ├── NodeProviderInterface.php
│   │   │           │   ├── Time
│   │   │           │   │   ├── FixedTimeProvider.php
│   │   │           │   │   └── SystemTimeProvider.php
│   │   │           │   └── TimeProviderInterface.php
│   │   │           ├── Rfc4122
│   │   │           │   ├── Fields.php
│   │   │           │   ├── FieldsInterface.php
│   │   │           │   ├── NilTrait.php
│   │   │           │   ├── NilUuid.php
│   │   │           │   ├── UuidBuilder.php
│   │   │           │   ├── UuidInterface.php
│   │   │           │   ├── UuidV1.php
│   │   │           │   ├── UuidV2.php
│   │   │           │   ├── UuidV3.php
│   │   │           │   ├── UuidV4.php
│   │   │           │   ├── UuidV5.php
│   │   │           │   ├── Validator.php
│   │   │           │   ├── VariantTrait.php
│   │   │           │   └── VersionTrait.php
│   │   │           ├── Type
│   │   │           │   ├── Decimal.php
│   │   │           │   ├── Hexadecimal.php
│   │   │           │   ├── Integer.php
│   │   │           │   ├── NumberInterface.php
│   │   │           │   ├── Time.php
│   │   │           │   └── TypeInterface.php
│   │   │           ├── Uuid.php
│   │   │           ├── UuidFactory.php
│   │   │           ├── UuidFactoryInterface.php
│   │   │           ├── UuidInterface.php
│   │   │           ├── Validator
│   │   │           │   ├── GenericValidator.php
│   │   │           │   └── ValidatorInterface.php
│   │   │           └── functions.php
│   │   ├── santigarcor
│   │   │   └── laratrust
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── VERSION
│   │   │       ├── composer.json
│   │   │       ├── config
│   │   │       │   ├── laratrust.php
│   │   │       │   └── laratrust_seeder.php
│   │   │       ├── package-lock.json
│   │   │       ├── package.json
│   │   │       ├── public
│   │   │       │   ├── img
│   │   │       │   │   └── logo.png
│   │   │       │   ├── laratrust.css
│   │   │       │   └── mix-manifest.json
│   │   │       ├── resources
│   │   │       │   ├── css
│   │   │       │   │   └── styles.css
│   │   │       │   └── views
│   │   │       │       ├── migration.blade.php
│   │   │       │       ├── panel
│   │   │       │       │   ├── edit.blade.php
│   │   │       │       │   ├── layout.blade.php
│   │   │       │       │   ├── pagination.blade.php
│   │   │       │       │   ├── permissions
│   │   │       │       │   │   └── index.blade.php
│   │   │       │       │   ├── roles
│   │   │       │       │   │   ├── index.blade.php
│   │   │       │       │   │   └── show.blade.php
│   │   │       │       │   └── roles-assignment
│   │   │       │       │       ├── edit.blade.php
│   │   │       │       │       └── index.blade.php
│   │   │       │       ├── setup-teams.blade.php
│   │   │       │       └── upgrade-migration.blade.php
│   │   │       ├── routes
│   │   │       │   └── web.php
│   │   │       ├── src
│   │   │       │   ├── Checkers
│   │   │       │   │   ├── LaratrustCheckerManager.php
│   │   │       │   │   ├── Role
│   │   │       │   │   │   ├── LaratrustRoleChecker.php
│   │   │       │   │   │   ├── LaratrustRoleDefaultChecker.php
│   │   │       │   │   │   └── LaratrustRoleQueryChecker.php
│   │   │       │   │   └── User
│   │   │       │   │       ├── LaratrustUserChecker.php
│   │   │       │   │       ├── LaratrustUserDefaultChecker.php
│   │   │       │   │       └── LaratrustUserQueryChecker.php
│   │   │       │   ├── Console
│   │   │       │   │   ├── AddLaratrustUserTraitUseCommand.php
│   │   │       │   │   ├── MakePermissionCommand.php
│   │   │       │   │   ├── MakeRoleCommand.php
│   │   │       │   │   ├── MakeSeederCommand.php
│   │   │       │   │   ├── MakeTeamCommand.php
│   │   │       │   │   ├── MigrationCommand.php
│   │   │       │   │   ├── SetupCommand.php
│   │   │       │   │   ├── SetupTeamsCommand.php
│   │   │       │   │   └── UpgradeCommand.php
│   │   │       │   ├── Contracts
│   │   │       │   │   ├── LaratrustPermissionInterface.php
│   │   │       │   │   ├── LaratrustRoleInterface.php
│   │   │       │   │   ├── LaratrustTeamInterface.php
│   │   │       │   │   ├── LaratrustUserInterface.php
│   │   │       │   │   └── Ownable.php
│   │   │       │   ├── Helper.php
│   │   │       │   ├── Http
│   │   │       │   │   └── Controllers
│   │   │       │   │       ├── PermissionsController.php
│   │   │       │   │       ├── RolesAssignmentController.php
│   │   │       │   │       └── RolesController.php
│   │   │       │   ├── Laratrust.php
│   │   │       │   ├── LaratrustFacade.php
│   │   │       │   ├── LaratrustRegistersBladeDirectives.php
│   │   │       │   ├── LaratrustServiceProvider.php
│   │   │       │   ├── Middleware
│   │   │       │   │   ├── LaratrustAbility.php
│   │   │       │   │   ├── LaratrustMiddleware.php
│   │   │       │   │   ├── LaratrustPermission.php
│   │   │       │   │   └── LaratrustRole.php
│   │   │       │   ├── Models
│   │   │       │   │   ├── LaratrustPermission.php
│   │   │       │   │   ├── LaratrustRole.php
│   │   │       │   │   └── LaratrustTeam.php
│   │   │       │   └── Traits
│   │   │       │       ├── LaratrustDynamicUserRelationsCalls.php
│   │   │       │       ├── LaratrustHasEvents.php
│   │   │       │       ├── LaratrustHasScopes.php
│   │   │       │       ├── LaratrustPermissionTrait.php
│   │   │       │       ├── LaratrustRoleTrait.php
│   │   │       │       ├── LaratrustTeamTrait.php
│   │   │       │       └── LaratrustUserTrait.php
│   │   │       ├── stubs
│   │   │       │   ├── permission.stub
│   │   │       │   ├── role.stub
│   │   │       │   ├── seeder.stub
│   │   │       │   └── team.stub
│   │   │       ├── tailwind.config.js
│   │   │       └── webpack.mix.js
│   │   ├── sebastian
│   │   │   ├── code-unit-reverse-lookup
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   └── Wizard.php
│   │   │   │   └── tests
│   │   │   │       └── WizardTest.php
│   │   │   ├── comparator
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── ArrayComparator.php
│   │   │   │   │   ├── Comparator.php
│   │   │   │   │   ├── ComparisonFailure.php
│   │   │   │   │   ├── DOMNodeComparator.php
│   │   │   │   │   ├── DateTimeComparator.php
│   │   │   │   │   ├── DoubleComparator.php
│   │   │   │   │   ├── ExceptionComparator.php
│   │   │   │   │   ├── Factory.php
│   │   │   │   │   ├── MockObjectComparator.php
│   │   │   │   │   ├── NumericComparator.php
│   │   │   │   │   ├── ObjectComparator.php
│   │   │   │   │   ├── ResourceComparator.php
│   │   │   │   │   ├── ScalarComparator.php
│   │   │   │   │   ├── SplObjectStorageComparator.php
│   │   │   │   │   └── TypeComparator.php
│   │   │   │   └── tests
│   │   │   │       ├── ArrayComparatorTest.php
│   │   │   │       ├── ComparisonFailureTest.php
│   │   │   │       ├── DOMNodeComparatorTest.php
│   │   │   │       ├── DateTimeComparatorTest.php
│   │   │   │       ├── DoubleComparatorTest.php
│   │   │   │       ├── ExceptionComparatorTest.php
│   │   │   │       ├── FactoryTest.php
│   │   │   │       ├── MockObjectComparatorTest.php
│   │   │   │       ├── NumericComparatorTest.php
│   │   │   │       ├── ObjectComparatorTest.php
│   │   │   │       ├── ResourceComparatorTest.php
│   │   │   │       ├── ScalarComparatorTest.php
│   │   │   │       ├── SplObjectStorageComparatorTest.php
│   │   │   │       ├── TypeComparatorTest.php
│   │   │   │       └── _fixture
│   │   │   │           ├── Author.php
│   │   │   │           ├── Book.php
│   │   │   │           ├── ClassWithToString.php
│   │   │   │           ├── SampleClass.php
│   │   │   │           ├── Struct.php
│   │   │   │           ├── TestClass.php
│   │   │   │           └── TestClassComparator.php
│   │   │   ├── diff
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Chunk.php
│   │   │   │   │   ├── Diff.php
│   │   │   │   │   ├── Differ.php
│   │   │   │   │   ├── Exception
│   │   │   │   │   │   ├── ConfigurationException.php
│   │   │   │   │   │   ├── Exception.php
│   │   │   │   │   │   └── InvalidArgumentException.php
│   │   │   │   │   ├── Line.php
│   │   │   │   │   ├── LongestCommonSubsequenceCalculator.php
│   │   │   │   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php
│   │   │   │   │   ├── Output
│   │   │   │   │   │   ├── AbstractChunkOutputBuilder.php
│   │   │   │   │   │   ├── DiffOnlyOutputBuilder.php
│   │   │   │   │   │   ├── DiffOutputBuilderInterface.php
│   │   │   │   │   │   ├── StrictUnifiedDiffOutputBuilder.php
│   │   │   │   │   │   └── UnifiedDiffOutputBuilder.php
│   │   │   │   │   ├── Parser.php
│   │   │   │   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php
│   │   │   │   └── tests
│   │   │   │       ├── ChunkTest.php
│   │   │   │       ├── DiffTest.php
│   │   │   │       ├── DifferTest.php
│   │   │   │       ├── Exception
│   │   │   │       │   ├── ConfigurationExceptionTest.php
│   │   │   │       │   └── InvalidArgumentExceptionTest.php
│   │   │   │       ├── LineTest.php
│   │   │   │       ├── LongestCommonSubsequenceTest.php
│   │   │   │       ├── MemoryEfficientImplementationTest.php
│   │   │   │       ├── Output
│   │   │   │       │   ├── AbstractChunkOutputBuilderTest.php
│   │   │   │       │   ├── DiffOnlyOutputBuilderTest.php
│   │   │   │       │   ├── Integration
│   │   │   │       │   │   ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php
│   │   │   │       │   │   └── UnifiedDiffOutputBuilderIntegrationTest.php
│   │   │   │       │   ├── StrictUnifiedDiffOutputBuilderDataProvider.php
│   │   │   │       │   ├── StrictUnifiedDiffOutputBuilderTest.php
│   │   │   │       │   ├── UnifiedDiffOutputBuilderDataProvider.php
│   │   │   │       │   └── UnifiedDiffOutputBuilderTest.php
│   │   │   │       ├── ParserTest.php
│   │   │   │       ├── TimeEfficientImplementationTest.php
│   │   │   │       ├── Utils
│   │   │   │       │   ├── FileUtils.php
│   │   │   │       │   ├── UnifiedDiffAssertTrait.php
│   │   │   │       │   ├── UnifiedDiffAssertTraitIntegrationTest.php
│   │   │   │       │   └── UnifiedDiffAssertTraitTest.php
│   │   │   │       └── fixtures
│   │   │   │           ├── UnifiedDiffAssertTraitIntegrationTest
│   │   │   │           │   ├── 1_a.txt
│   │   │   │           │   ├── 1_b.txt
│   │   │   │           │   ├── 2_a.txt
│   │   │   │           │   └── 2_b.txt
│   │   │   │           ├── out
│   │   │   │           ├── patch.txt
│   │   │   │           ├── patch2.txt
│   │   │   │           └── serialized_diff.bin
│   │   │   ├── environment
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Console.php
│   │   │   │   │   ├── OperatingSystem.php
│   │   │   │   │   └── Runtime.php
│   │   │   │   └── tests
│   │   │   │       ├── ConsoleTest.php
│   │   │   │       ├── OperatingSystemTest.php
│   │   │   │       └── RuntimeTest.php
│   │   │   ├── exporter
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   └── Exporter.php
│   │   │   │   └── tests
│   │   │   │       └── ExporterTest.php
│   │   │   ├── global-state
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Blacklist.php
│   │   │   │   │   ├── CodeExporter.php
│   │   │   │   │   ├── Restorer.php
│   │   │   │   │   ├── Snapshot.php
│   │   │   │   │   └── exceptions
│   │   │   │   │       ├── Exception.php
│   │   │   │   │       └── RuntimeException.php
│   │   │   │   └── tests
│   │   │   │       ├── BlacklistTest.php
│   │   │   │       ├── CodeExporterTest.php
│   │   │   │       ├── RestorerTest.php
│   │   │   │       ├── SnapshotTest.php
│   │   │   │       └── _fixture
│   │   │   │           ├── BlacklistedChildClass.php
│   │   │   │           ├── BlacklistedClass.php
│   │   │   │           ├── BlacklistedImplementor.php
│   │   │   │           ├── BlacklistedInterface.php
│   │   │   │           ├── SnapshotClass.php
│   │   │   │           ├── SnapshotDomDocument.php
│   │   │   │           ├── SnapshotFunctions.php
│   │   │   │           └── SnapshotTrait.php
│   │   │   ├── object-enumerator
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Enumerator.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   └── InvalidArgumentException.php
│   │   │   │   └── tests
│   │   │   │       ├── EnumeratorTest.php
│   │   │   │       └── _fixture
│   │   │   │           └── ExceptionThrower.php
│   │   │   ├── object-reflector
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   └── ObjectReflector.php
│   │   │   │   └── tests
│   │   │   │       ├── ObjectReflectorTest.php
│   │   │   │       └── _fixture
│   │   │   │           ├── ChildClass.php
│   │   │   │           ├── ClassWithIntegerAttributeName.php
│   │   │   │           └── ParentClass.php
│   │   │   ├── recursion-context
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── Context.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   └── InvalidArgumentException.php
│   │   │   │   └── tests
│   │   │   │       └── ContextTest.php
│   │   │   ├── resource-operations
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build
│   │   │   │   │   └── generate.php
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── src
│   │   │   │   │   └── ResourceOperations.php
│   │   │   │   └── tests
│   │   │   │       └── ResourceOperationsTest.php
│   │   │   ├── type
│   │   │   │   ├── ChangeLog.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── build.xml
│   │   │   │   ├── composer.json
│   │   │   │   ├── phive.xml
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── psalm.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── CallableType.php
│   │   │   │   │   ├── GenericObjectType.php
│   │   │   │   │   ├── IterableType.php
│   │   │   │   │   ├── NullType.php
│   │   │   │   │   ├── ObjectType.php
│   │   │   │   │   ├── SimpleType.php
│   │   │   │   │   ├── Type.php
│   │   │   │   │   ├── TypeName.php
│   │   │   │   │   ├── UnknownType.php
│   │   │   │   │   ├── VoidType.php
│   │   │   │   │   └── exception
│   │   │   │   │       ├── Exception.php
│   │   │   │   │       └── RuntimeException.php
│   │   │   │   └── tests
│   │   │   │       ├── _fixture
│   │   │   │       │   ├── ChildClass.php
│   │   │   │       │   ├── ClassWithCallbackMethods.php
│   │   │   │       │   ├── ClassWithInvokeMethod.php
│   │   │   │       │   ├── Iterator.php
│   │   │   │       │   ├── ParentClass.php
│   │   │   │       │   └── callback_function.php
│   │   │   │       └── unit
│   │   │   │           ├── CallableTypeTest.php
│   │   │   │           ├── GenericObjectTypeTest.php
│   │   │   │           ├── IterableTypeTest.php
│   │   │   │           ├── NullTypeTest.php
│   │   │   │           ├── ObjectTypeTest.php
│   │   │   │           ├── SimpleTypeTest.php
│   │   │   │           ├── TypeNameTest.php
│   │   │   │           ├── TypeTest.php
│   │   │   │           ├── UnknownTypeTest.php
│   │   │   │           └── VoidTypeTest.php
│   │   │   └── version
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── Version.php
│   │   ├── swiftmailer
│   │   │   └── swiftmailer
│   │   │       ├── CHANGES
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       ├── doc
│   │   │       │   ├── headers.rst
│   │   │       │   ├── index.rst
│   │   │       │   ├── introduction.rst
│   │   │       │   ├── japanese.rst
│   │   │       │   ├── messages.rst
│   │   │       │   ├── plugins.rst
│   │   │       │   └── sending.rst
│   │   │       ├── lib
│   │   │       │   ├── classes
│   │   │       │   │   ├── Swift
│   │   │       │   │   │   ├── AddressEncoder
│   │   │       │   │   │   │   ├── IdnAddressEncoder.php
│   │   │       │   │   │   │   └── Utf8AddressEncoder.php
│   │   │       │   │   │   ├── AddressEncoder.php
│   │   │       │   │   │   ├── AddressEncoderException.php
│   │   │       │   │   │   ├── Attachment.php
│   │   │       │   │   │   ├── ByteStream
│   │   │       │   │   │   │   ├── AbstractFilterableInputStream.php
│   │   │       │   │   │   │   ├── ArrayByteStream.php
│   │   │       │   │   │   │   ├── FileByteStream.php
│   │   │       │   │   │   │   └── TemporaryFileByteStream.php
│   │   │       │   │   │   ├── CharacterReader
│   │   │       │   │   │   │   ├── GenericFixedWidthReader.php
│   │   │       │   │   │   │   ├── UsAsciiReader.php
│   │   │       │   │   │   │   └── Utf8Reader.php
│   │   │       │   │   │   ├── CharacterReader.php
│   │   │       │   │   │   ├── CharacterReaderFactory
│   │   │       │   │   │   │   └── SimpleCharacterReaderFactory.php
│   │   │       │   │   │   ├── CharacterReaderFactory.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
│   │   │       │   │   │   ├── Events
│   │   │       │   │   │   │   ├── CommandEvent.php
│   │   │       │   │   │   │   ├── CommandListener.php
│   │   │       │   │   │   │   ├── Event.php
│   │   │       │   │   │   │   ├── EventDispatcher.php
│   │   │       │   │   │   │   ├── EventListener.php
│   │   │       │   │   │   │   ├── EventObject.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
│   │   │       │   │   │   ├── IdGenerator.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
│   │   │       │   │   │   ├── MemorySpool.php
│   │   │       │   │   │   ├── Message.php
│   │   │       │   │   │   ├── Mime
│   │   │       │   │   │   │   ├── Attachment.php
│   │   │       │   │   │   │   ├── CharsetObserver.php
│   │   │       │   │   │   │   ├── ContentEncoder
│   │   │       │   │   │   │   │   ├── Base64ContentEncoder.php
│   │   │       │   │   │   │   │   ├── NativeQpContentEncoder.php
│   │   │       │   │   │   │   │   ├── NullContentEncoder.php
│   │   │       │   │   │   │   │   ├── PlainContentEncoder.php
│   │   │       │   │   │   │   │   ├── QpContentEncoder.php
│   │   │       │   │   │   │   │   ├── QpContentEncoderProxy.php
│   │   │       │   │   │   │   │   └── RawContentEncoder.php
│   │   │       │   │   │   │   ├── ContentEncoder.php
│   │   │       │   │   │   │   ├── EmbeddedFile.php
│   │   │       │   │   │   │   ├── EncodingObserver.php
│   │   │       │   │   │   │   ├── Header.php
│   │   │       │   │   │   │   ├── HeaderEncoder
│   │   │       │   │   │   │   │   ├── Base64HeaderEncoder.php
│   │   │       │   │   │   │   │   └── QpHeaderEncoder.php
│   │   │       │   │   │   │   ├── HeaderEncoder.php
│   │   │       │   │   │   │   ├── Headers
│   │   │       │   │   │   │   │   ├── AbstractHeader.php
│   │   │       │   │   │   │   │   ├── DateHeader.php
│   │   │       │   │   │   │   │   ├── IdentificationHeader.php
│   │   │       │   │   │   │   │   ├── MailboxHeader.php
│   │   │       │   │   │   │   │   ├── OpenDKIMHeader.php
│   │   │       │   │   │   │   │   ├── ParameterizedHeader.php
│   │   │       │   │   │   │   │   ├── PathHeader.php
│   │   │       │   │   │   │   │   └── UnstructuredHeader.php
│   │   │       │   │   │   │   ├── IdGenerator.php
│   │   │       │   │   │   │   ├── MimePart.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
│   │   │       │   │   │   ├── 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
│   │   │       │   │   │   │   ├── StringReplacementFilter.php
│   │   │       │   │   │   │   └── StringReplacementFilterFactory.php
│   │   │       │   │   │   ├── SwiftException.php
│   │   │       │   │   │   ├── Transport
│   │   │       │   │   │   │   ├── AbstractSmtpTransport.php
│   │   │       │   │   │   │   ├── Esmtp
│   │   │       │   │   │   │   │   ├── Auth
│   │   │       │   │   │   │   │   │   ├── CramMd5Authenticator.php
│   │   │       │   │   │   │   │   │   ├── LoginAuthenticator.php
│   │   │       │   │   │   │   │   │   ├── NTLMAuthenticator.php
│   │   │       │   │   │   │   │   │   ├── PlainAuthenticator.php
│   │   │       │   │   │   │   │   │   └── XOAuth2Authenticator.php
│   │   │       │   │   │   │   │   ├── AuthHandler.php
│   │   │       │   │   │   │   │   ├── Authenticator.php
│   │   │       │   │   │   │   │   ├── EightBitMimeHandler.php
│   │   │       │   │   │   │   │   └── SmtpUtf8Handler.php
│   │   │       │   │   │   │   ├── EsmtpHandler.php
│   │   │       │   │   │   │   ├── EsmtpTransport.php
│   │   │       │   │   │   │   ├── FailoverTransport.php
│   │   │       │   │   │   │   ├── IoBuffer.php
│   │   │       │   │   │   │   ├── LoadBalancedTransport.php
│   │   │       │   │   │   │   ├── NullTransport.php
│   │   │       │   │   │   │   ├── SendmailTransport.php
│   │   │       │   │   │   │   ├── SmtpAgent.php
│   │   │       │   │   │   │   ├── SpoolTransport.php
│   │   │       │   │   │   │   └── StreamBuffer.php
│   │   │       │   │   │   ├── Transport.php
│   │   │       │   │   │   └── TransportException.php
│   │   │       │   │   └── Swift.php
│   │   │       │   ├── dependency_maps
│   │   │       │   │   ├── cache_deps.php
│   │   │       │   │   ├── message_deps.php
│   │   │       │   │   ├── mime_deps.php
│   │   │       │   │   └── transport_deps.php
│   │   │       │   ├── mime_types.php
│   │   │       │   ├── preferences.php
│   │   │       │   ├── swift_required.php
│   │   │       │   └── swiftmailer_generate_mimes_config.php
│   │   │       ├── phpunit.xml.dist
│   │   │       └── tests
│   │   │           ├── IdenticalBinaryConstraint.php
│   │   │           ├── StreamCollector.php
│   │   │           ├── SwiftMailerSmokeTestCase.php
│   │   │           ├── SwiftMailerTestCase.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.srl
│   │   │           │       ├── ca.crt
│   │   │           │       ├── ca.key
│   │   │           │       ├── create-cert.sh
│   │   │           │       ├── encrypt.crt
│   │   │           │       ├── encrypt.key
│   │   │           │       ├── encrypt2.crt
│   │   │           │       ├── encrypt2.key
│   │   │           │       ├── intermediate.crt
│   │   │           │       ├── intermediate.key
│   │   │           │       ├── sign.crt
│   │   │           │       ├── sign.key
│   │   │           │       ├── sign2.crt
│   │   │           │       └── sign2.key
│   │   │           ├── acceptance
│   │   │           │   └── Swift
│   │   │           │       ├── AttachmentAcceptanceTest.php
│   │   │           │       ├── ByteStream
│   │   │           │       │   └── FileByteStreamAcceptanceTest.php
│   │   │           │       ├── CharacterReaderFactory
│   │   │           │       │   └── SimpleCharacterReaderFactoryAcceptanceTest.php
│   │   │           │       ├── DependencyContainerAcceptanceTest.php
│   │   │           │       ├── EmbeddedFileAcceptanceTest.php
│   │   │           │       ├── Encoder
│   │   │           │       │   ├── Base64EncoderAcceptanceTest.php
│   │   │           │       │   ├── QpEncoderAcceptanceTest.php
│   │   │           │       │   └── Rfc2231EncoderAcceptanceTest.php
│   │   │           │       ├── KeyCache
│   │   │           │       │   ├── ArrayKeyCacheAcceptanceTest.php
│   │   │           │       │   └── DiskKeyCacheAcceptanceTest.php
│   │   │           │       ├── MessageAcceptanceTest.php
│   │   │           │       ├── Mime
│   │   │           │       │   ├── AttachmentAcceptanceTest.php
│   │   │           │       │   ├── ContentEncoder
│   │   │           │       │   │   ├── Base64ContentEncoderAcceptanceTest.php
│   │   │           │       │   │   ├── NativeQpContentEncoderAcceptanceTest.php
│   │   │           │       │   │   ├── PlainContentEncoderAcceptanceTest.php
│   │   │           │       │   │   └── QpContentEncoderAcceptanceTest.php
│   │   │           │       │   ├── EmbeddedFileAcceptanceTest.php
│   │   │           │       │   ├── HeaderEncoder
│   │   │           │       │   │   └── Base64HeaderEncoderAcceptanceTest.php
│   │   │           │       │   ├── MimePartAcceptanceTest.php
│   │   │           │       │   └── SimpleMessageAcceptanceTest.php
│   │   │           │       ├── MimePartAcceptanceTest.php
│   │   │           │       └── Transport
│   │   │           │           └── StreamBuffer
│   │   │           │               ├── AbstractStreamBufferAcceptanceTest.php
│   │   │           │               ├── BasicSocketAcceptanceTest.php
│   │   │           │               ├── ProcessAcceptanceTest.php
│   │   │           │               ├── SocketTimeoutTest.php
│   │   │           │               ├── SslSocketAcceptanceTest.php
│   │   │           │               └── TlsSocketAcceptanceTest.php
│   │   │           ├── acceptance.conf.php.default
│   │   │           ├── bootstrap.php
│   │   │           ├── bug
│   │   │           │   └── Swift
│   │   │           │       ├── Bug111Test.php
│   │   │           │       ├── Bug118Test.php
│   │   │           │       ├── Bug206Test.php
│   │   │           │       ├── Bug274Test.php
│   │   │           │       ├── Bug34Test.php
│   │   │           │       ├── Bug35Test.php
│   │   │           │       ├── Bug38Test.php
│   │   │           │       ├── Bug518Test.php
│   │   │           │       ├── Bug51Test.php
│   │   │           │       ├── Bug534Test.php
│   │   │           │       ├── Bug650Test.php
│   │   │           │       ├── Bug71Test.php
│   │   │           │       ├── Bug76Test.php
│   │   │           │       └── BugFileByteStreamConsecutiveReadCallsTest.php
│   │   │           ├── fixtures
│   │   │           │   └── MimeEntityFixture.php
│   │   │           ├── smoke
│   │   │           │   └── Swift
│   │   │           │       └── Smoke
│   │   │           │           ├── AttachmentSmokeTest.php
│   │   │           │           ├── BasicSmokeTest.php
│   │   │           │           ├── HtmlWithAttachmentSmokeTest.php
│   │   │           │           └── InternationalSmokeTest.php
│   │   │           ├── smoke.conf.php.default
│   │   │           └── 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
│   │   │                   │   ├── IdGeneratorTest.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
│   │   │                       ├── SendmailTransportTest.php
│   │   │                       └── StreamBufferTest.php
│   │   ├── symfony
│   │   │   ├── console
│   │   │   │   ├── Application 2.php
│   │   │   │   ├── Application.php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Command
│   │   │   │   │   ├── Command 2.php
│   │   │   │   │   ├── Command.php
│   │   │   │   │   ├── HelpCommand 2.php
│   │   │   │   │   ├── HelpCommand.php
│   │   │   │   │   ├── ListCommand 2.php
│   │   │   │   │   ├── ListCommand.php
│   │   │   │   │   ├── LockableTrait 2.php
│   │   │   │   │   └── LockableTrait.php
│   │   │   │   ├── CommandLoader
│   │   │   │   │   ├── CommandLoaderInterface 2.php
│   │   │   │   │   ├── CommandLoaderInterface.php
│   │   │   │   │   ├── ContainerCommandLoader 2.php
│   │   │   │   │   ├── ContainerCommandLoader.php
│   │   │   │   │   ├── FactoryCommandLoader 2.php
│   │   │   │   │   └── FactoryCommandLoader.php
│   │   │   │   ├── ConsoleEvents 2.php
│   │   │   │   ├── ConsoleEvents.php
│   │   │   │   ├── Cursor 2.php
│   │   │   │   ├── Cursor.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── AddConsoleCommandPass 2.php
│   │   │   │   │   └── AddConsoleCommandPass.php
│   │   │   │   ├── Descriptor
│   │   │   │   │   ├── ApplicationDescription 2.php
│   │   │   │   │   ├── ApplicationDescription.php
│   │   │   │   │   ├── Descriptor 2.php
│   │   │   │   │   ├── Descriptor.php
│   │   │   │   │   ├── DescriptorInterface 2.php
│   │   │   │   │   ├── DescriptorInterface.php
│   │   │   │   │   ├── JsonDescriptor 2.php
│   │   │   │   │   ├── JsonDescriptor.php
│   │   │   │   │   ├── MarkdownDescriptor 2.php
│   │   │   │   │   ├── MarkdownDescriptor.php
│   │   │   │   │   ├── TextDescriptor 2.php
│   │   │   │   │   ├── TextDescriptor.php
│   │   │   │   │   ├── XmlDescriptor 2.php
│   │   │   │   │   └── XmlDescriptor.php
│   │   │   │   ├── Event
│   │   │   │   │   ├── ConsoleCommandEvent 2.php
│   │   │   │   │   ├── ConsoleCommandEvent.php
│   │   │   │   │   ├── ConsoleErrorEvent 2.php
│   │   │   │   │   ├── ConsoleErrorEvent.php
│   │   │   │   │   ├── ConsoleEvent 2.php
│   │   │   │   │   ├── ConsoleEvent.php
│   │   │   │   │   ├── ConsoleTerminateEvent 2.php
│   │   │   │   │   └── ConsoleTerminateEvent.php
│   │   │   │   ├── EventListener
│   │   │   │   │   ├── ErrorListener 2.php
│   │   │   │   │   └── ErrorListener.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── CommandNotFoundException 2.php
│   │   │   │   │   ├── CommandNotFoundException.php
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── InvalidArgumentException 2.php
│   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   ├── InvalidOptionException 2.php
│   │   │   │   │   ├── InvalidOptionException.php
│   │   │   │   │   ├── LogicException 2.php
│   │   │   │   │   ├── LogicException.php
│   │   │   │   │   ├── MissingInputException 2.php
│   │   │   │   │   ├── MissingInputException.php
│   │   │   │   │   ├── NamespaceNotFoundException 2.php
│   │   │   │   │   ├── NamespaceNotFoundException.php
│   │   │   │   │   ├── RuntimeException 2.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── Formatter
│   │   │   │   │   ├── NullOutputFormatter 2.php
│   │   │   │   │   ├── NullOutputFormatter.php
│   │   │   │   │   ├── NullOutputFormatterStyle 2.php
│   │   │   │   │   ├── NullOutputFormatterStyle.php
│   │   │   │   │   ├── OutputFormatter 2.php
│   │   │   │   │   ├── OutputFormatter.php
│   │   │   │   │   ├── OutputFormatterInterface 2.php
│   │   │   │   │   ├── OutputFormatterInterface.php
│   │   │   │   │   ├── OutputFormatterStyle 2.php
│   │   │   │   │   ├── OutputFormatterStyle.php
│   │   │   │   │   ├── OutputFormatterStyleInterface 2.php
│   │   │   │   │   ├── OutputFormatterStyleInterface.php
│   │   │   │   │   ├── OutputFormatterStyleStack 2.php
│   │   │   │   │   ├── OutputFormatterStyleStack.php
│   │   │   │   │   ├── WrappableOutputFormatterInterface 2.php
│   │   │   │   │   └── WrappableOutputFormatterInterface.php
│   │   │   │   ├── Helper
│   │   │   │   │   ├── DebugFormatterHelper 2.php
│   │   │   │   │   ├── DebugFormatterHelper.php
│   │   │   │   │   ├── DescriptorHelper 2.php
│   │   │   │   │   ├── DescriptorHelper.php
│   │   │   │   │   ├── Dumper 2.php
│   │   │   │   │   ├── Dumper.php
│   │   │   │   │   ├── FormatterHelper 2.php
│   │   │   │   │   ├── FormatterHelper.php
│   │   │   │   │   ├── Helper 2.php
│   │   │   │   │   ├── Helper.php
│   │   │   │   │   ├── HelperInterface 2.php
│   │   │   │   │   ├── HelperInterface.php
│   │   │   │   │   ├── HelperSet 2.php
│   │   │   │   │   ├── HelperSet.php
│   │   │   │   │   ├── InputAwareHelper 2.php
│   │   │   │   │   ├── InputAwareHelper.php
│   │   │   │   │   ├── ProcessHelper 2.php
│   │   │   │   │   ├── ProcessHelper.php
│   │   │   │   │   ├── ProgressBar 2.php
│   │   │   │   │   ├── ProgressBar.php
│   │   │   │   │   ├── ProgressIndicator 2.php
│   │   │   │   │   ├── ProgressIndicator.php
│   │   │   │   │   ├── QuestionHelper 2.php
│   │   │   │   │   ├── QuestionHelper.php
│   │   │   │   │   ├── SymfonyQuestionHelper 2.php
│   │   │   │   │   ├── SymfonyQuestionHelper.php
│   │   │   │   │   ├── Table 2.php
│   │   │   │   │   ├── Table.php
│   │   │   │   │   ├── TableCell 2.php
│   │   │   │   │   ├── TableCell.php
│   │   │   │   │   ├── TableRows 2.php
│   │   │   │   │   ├── TableRows.php
│   │   │   │   │   ├── TableSeparator 2.php
│   │   │   │   │   ├── TableSeparator.php
│   │   │   │   │   ├── TableStyle 2.php
│   │   │   │   │   └── TableStyle.php
│   │   │   │   ├── Input
│   │   │   │   │   ├── ArgvInput 2.php
│   │   │   │   │   ├── ArgvInput.php
│   │   │   │   │   ├── ArrayInput 2.php
│   │   │   │   │   ├── ArrayInput.php
│   │   │   │   │   ├── Input 2.php
│   │   │   │   │   ├── Input.php
│   │   │   │   │   ├── InputArgument 2.php
│   │   │   │   │   ├── InputArgument.php
│   │   │   │   │   ├── InputAwareInterface 2.php
│   │   │   │   │   ├── InputAwareInterface.php
│   │   │   │   │   ├── InputDefinition 2.php
│   │   │   │   │   ├── InputDefinition.php
│   │   │   │   │   ├── InputInterface 2.php
│   │   │   │   │   ├── InputInterface.php
│   │   │   │   │   ├── InputOption 2.php
│   │   │   │   │   ├── InputOption.php
│   │   │   │   │   ├── StreamableInputInterface 2.php
│   │   │   │   │   ├── StreamableInputInterface.php
│   │   │   │   │   ├── StringInput 2.php
│   │   │   │   │   └── StringInput.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Logger
│   │   │   │   │   ├── ConsoleLogger 2.php
│   │   │   │   │   └── ConsoleLogger.php
│   │   │   │   ├── Output
│   │   │   │   │   ├── BufferedOutput 2.php
│   │   │   │   │   ├── BufferedOutput.php
│   │   │   │   │   ├── ConsoleOutput 2.php
│   │   │   │   │   ├── ConsoleOutput.php
│   │   │   │   │   ├── ConsoleOutputInterface 2.php
│   │   │   │   │   ├── ConsoleOutputInterface.php
│   │   │   │   │   ├── ConsoleSectionOutput 2.php
│   │   │   │   │   ├── ConsoleSectionOutput.php
│   │   │   │   │   ├── NullOutput 2.php
│   │   │   │   │   ├── NullOutput.php
│   │   │   │   │   ├── Output 2.php
│   │   │   │   │   ├── Output.php
│   │   │   │   │   ├── OutputInterface 2.php
│   │   │   │   │   ├── OutputInterface.php
│   │   │   │   │   ├── StreamOutput 2.php
│   │   │   │   │   └── StreamOutput.php
│   │   │   │   ├── Question
│   │   │   │   │   ├── ChoiceQuestion 2.php
│   │   │   │   │   ├── ChoiceQuestion.php
│   │   │   │   │   ├── ConfirmationQuestion 2.php
│   │   │   │   │   ├── ConfirmationQuestion.php
│   │   │   │   │   ├── Question 2.php
│   │   │   │   │   └── Question.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   └── bin
│   │   │   │   │       ├── hiddeninput 2.exe
│   │   │   │   │       └── hiddeninput.exe
│   │   │   │   ├── SingleCommandApplication 2.php
│   │   │   │   ├── SingleCommandApplication.php
│   │   │   │   ├── Style
│   │   │   │   │   ├── OutputStyle 2.php
│   │   │   │   │   ├── OutputStyle.php
│   │   │   │   │   ├── StyleInterface 2.php
│   │   │   │   │   ├── StyleInterface.php
│   │   │   │   │   ├── SymfonyStyle 2.php
│   │   │   │   │   └── SymfonyStyle.php
│   │   │   │   ├── Terminal 2.php
│   │   │   │   ├── Terminal.php
│   │   │   │   ├── Tester
│   │   │   │   │   ├── ApplicationTester 2.php
│   │   │   │   │   ├── ApplicationTester.php
│   │   │   │   │   ├── CommandTester 2.php
│   │   │   │   │   ├── CommandTester.php
│   │   │   │   │   ├── TesterTrait 2.php
│   │   │   │   │   └── TesterTrait.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── css-selector
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── CssSelectorConverter 2.php
│   │   │   │   ├── CssSelectorConverter.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── ExpressionErrorException 2.php
│   │   │   │   │   ├── ExpressionErrorException.php
│   │   │   │   │   ├── InternalErrorException 2.php
│   │   │   │   │   ├── InternalErrorException.php
│   │   │   │   │   ├── ParseException 2.php
│   │   │   │   │   ├── ParseException.php
│   │   │   │   │   ├── SyntaxErrorException 2.php
│   │   │   │   │   └── SyntaxErrorException.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Node
│   │   │   │   │   ├── AbstractNode 2.php
│   │   │   │   │   ├── AbstractNode.php
│   │   │   │   │   ├── AttributeNode 2.php
│   │   │   │   │   ├── AttributeNode.php
│   │   │   │   │   ├── ClassNode 2.php
│   │   │   │   │   ├── ClassNode.php
│   │   │   │   │   ├── CombinedSelectorNode 2.php
│   │   │   │   │   ├── CombinedSelectorNode.php
│   │   │   │   │   ├── ElementNode 2.php
│   │   │   │   │   ├── ElementNode.php
│   │   │   │   │   ├── FunctionNode 2.php
│   │   │   │   │   ├── FunctionNode.php
│   │   │   │   │   ├── HashNode 2.php
│   │   │   │   │   ├── HashNode.php
│   │   │   │   │   ├── NegationNode 2.php
│   │   │   │   │   ├── NegationNode.php
│   │   │   │   │   ├── NodeInterface 2.php
│   │   │   │   │   ├── NodeInterface.php
│   │   │   │   │   ├── PseudoNode 2.php
│   │   │   │   │   ├── PseudoNode.php
│   │   │   │   │   ├── SelectorNode 2.php
│   │   │   │   │   ├── SelectorNode.php
│   │   │   │   │   ├── Specificity 2.php
│   │   │   │   │   └── Specificity.php
│   │   │   │   ├── Parser
│   │   │   │   │   ├── Handler
│   │   │   │   │   │   ├── CommentHandler 2.php
│   │   │   │   │   │   ├── CommentHandler.php
│   │   │   │   │   │   ├── HandlerInterface 2.php
│   │   │   │   │   │   ├── HandlerInterface.php
│   │   │   │   │   │   ├── HashHandler 2.php
│   │   │   │   │   │   ├── HashHandler.php
│   │   │   │   │   │   ├── IdentifierHandler 2.php
│   │   │   │   │   │   ├── IdentifierHandler.php
│   │   │   │   │   │   ├── NumberHandler 2.php
│   │   │   │   │   │   ├── NumberHandler.php
│   │   │   │   │   │   ├── StringHandler 2.php
│   │   │   │   │   │   ├── StringHandler.php
│   │   │   │   │   │   ├── WhitespaceHandler 2.php
│   │   │   │   │   │   └── WhitespaceHandler.php
│   │   │   │   │   ├── Parser 2.php
│   │   │   │   │   ├── Parser.php
│   │   │   │   │   ├── ParserInterface 2.php
│   │   │   │   │   ├── ParserInterface.php
│   │   │   │   │   ├── Reader 2.php
│   │   │   │   │   ├── Reader.php
│   │   │   │   │   ├── Shortcut
│   │   │   │   │   │   ├── ClassParser 2.php
│   │   │   │   │   │   ├── ClassParser.php
│   │   │   │   │   │   ├── ElementParser 2.php
│   │   │   │   │   │   ├── ElementParser.php
│   │   │   │   │   │   ├── EmptyStringParser 2.php
│   │   │   │   │   │   ├── EmptyStringParser.php
│   │   │   │   │   │   ├── HashParser 2.php
│   │   │   │   │   │   └── HashParser.php
│   │   │   │   │   ├── Token 2.php
│   │   │   │   │   ├── Token.php
│   │   │   │   │   ├── TokenStream 2.php
│   │   │   │   │   ├── TokenStream.php
│   │   │   │   │   └── Tokenizer
│   │   │   │   │       ├── Tokenizer 2.php
│   │   │   │   │       ├── Tokenizer.php
│   │   │   │   │       ├── TokenizerEscaping 2.php
│   │   │   │   │       ├── TokenizerEscaping.php
│   │   │   │   │       ├── TokenizerPatterns 2.php
│   │   │   │   │       └── TokenizerPatterns.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── XPath
│   │   │   │   │   ├── Extension
│   │   │   │   │   │   ├── AbstractExtension 2.php
│   │   │   │   │   │   ├── AbstractExtension.php
│   │   │   │   │   │   ├── AttributeMatchingExtension 2.php
│   │   │   │   │   │   ├── AttributeMatchingExtension.php
│   │   │   │   │   │   ├── CombinationExtension 2.php
│   │   │   │   │   │   ├── CombinationExtension.php
│   │   │   │   │   │   ├── ExtensionInterface 2.php
│   │   │   │   │   │   ├── ExtensionInterface.php
│   │   │   │   │   │   ├── FunctionExtension 2.php
│   │   │   │   │   │   ├── FunctionExtension.php
│   │   │   │   │   │   ├── HtmlExtension 2.php
│   │   │   │   │   │   ├── HtmlExtension.php
│   │   │   │   │   │   ├── NodeExtension 2.php
│   │   │   │   │   │   ├── NodeExtension.php
│   │   │   │   │   │   ├── PseudoClassExtension 2.php
│   │   │   │   │   │   └── PseudoClassExtension.php
│   │   │   │   │   ├── Translator 2.php
│   │   │   │   │   ├── Translator.php
│   │   │   │   │   ├── TranslatorInterface 2.php
│   │   │   │   │   ├── TranslatorInterface.php
│   │   │   │   │   ├── XPathExpr 2.php
│   │   │   │   │   └── XPathExpr.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── deprecation-contracts
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── function.php
│   │   │   ├── error-handler
│   │   │   │   ├── BufferingLogger 2.php
│   │   │   │   ├── BufferingLogger.php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Debug 2.php
│   │   │   │   ├── Debug.php
│   │   │   │   ├── DebugClassLoader 2.php
│   │   │   │   ├── DebugClassLoader.php
│   │   │   │   ├── Error
│   │   │   │   │   ├── ClassNotFoundError 2.php
│   │   │   │   │   ├── ClassNotFoundError.php
│   │   │   │   │   ├── FatalError 2.php
│   │   │   │   │   ├── FatalError.php
│   │   │   │   │   ├── OutOfMemoryError 2.php
│   │   │   │   │   ├── OutOfMemoryError.php
│   │   │   │   │   ├── UndefinedFunctionError 2.php
│   │   │   │   │   ├── UndefinedFunctionError.php
│   │   │   │   │   ├── UndefinedMethodError 2.php
│   │   │   │   │   └── UndefinedMethodError.php
│   │   │   │   ├── ErrorEnhancer
│   │   │   │   │   ├── ClassNotFoundErrorEnhancer 2.php
│   │   │   │   │   ├── ClassNotFoundErrorEnhancer.php
│   │   │   │   │   ├── ErrorEnhancerInterface 2.php
│   │   │   │   │   ├── ErrorEnhancerInterface.php
│   │   │   │   │   ├── UndefinedFunctionErrorEnhancer 2.php
│   │   │   │   │   ├── UndefinedFunctionErrorEnhancer.php
│   │   │   │   │   ├── UndefinedMethodErrorEnhancer 2.php
│   │   │   │   │   └── UndefinedMethodErrorEnhancer.php
│   │   │   │   ├── ErrorHandler 2.php
│   │   │   │   ├── ErrorHandler.php
│   │   │   │   ├── ErrorRenderer
│   │   │   │   │   ├── CliErrorRenderer 2.php
│   │   │   │   │   ├── CliErrorRenderer.php
│   │   │   │   │   ├── ErrorRendererInterface 2.php
│   │   │   │   │   ├── ErrorRendererInterface.php
│   │   │   │   │   ├── HtmlErrorRenderer 2.php
│   │   │   │   │   ├── HtmlErrorRenderer.php
│   │   │   │   │   ├── SerializerErrorRenderer 2.php
│   │   │   │   │   └── SerializerErrorRenderer.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── FlattenException 2.php
│   │   │   │   │   ├── FlattenException.php
│   │   │   │   │   ├── SilencedErrorContext 2.php
│   │   │   │   │   └── SilencedErrorContext.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   ├── assets
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   ├── error 2.css
│   │   │   │   │   │   │   ├── error.css
│   │   │   │   │   │   │   ├── exception 2.css
│   │   │   │   │   │   │   ├── exception.css
│   │   │   │   │   │   │   ├── exception_full 2.css
│   │   │   │   │   │   │   └── exception_full.css
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── chevron-right 2.svg
│   │   │   │   │   │   │   ├── chevron-right.svg
│   │   │   │   │   │   │   ├── favicon.png 2.base64
│   │   │   │   │   │   │   ├── favicon.png.base64
│   │   │   │   │   │   │   ├── icon-book 2.svg
│   │   │   │   │   │   │   ├── icon-book.svg
│   │   │   │   │   │   │   ├── icon-minus-square 2.svg
│   │   │   │   │   │   │   ├── icon-minus-square-o 2.svg
│   │   │   │   │   │   │   ├── icon-minus-square-o.svg
│   │   │   │   │   │   │   ├── icon-minus-square.svg
│   │   │   │   │   │   │   ├── icon-plus-square 2.svg
│   │   │   │   │   │   │   ├── icon-plus-square-o 2.svg
│   │   │   │   │   │   │   ├── icon-plus-square-o.svg
│   │   │   │   │   │   │   ├── icon-plus-square.svg
│   │   │   │   │   │   │   ├── icon-support 2.svg
│   │   │   │   │   │   │   ├── icon-support.svg
│   │   │   │   │   │   │   ├── symfony-ghost.svg 2.php
│   │   │   │   │   │   │   ├── symfony-ghost.svg.php
│   │   │   │   │   │   │   ├── symfony-logo 2.svg
│   │   │   │   │   │   │   └── symfony-logo.svg
│   │   │   │   │   │   └── js
│   │   │   │   │   │       ├── exception 2.js
│   │   │   │   │   │       └── exception.js
│   │   │   │   │   └── views
│   │   │   │   │       ├── error.html 2.php
│   │   │   │   │       ├── error.html.php
│   │   │   │   │       ├── exception.html 2.php
│   │   │   │   │       ├── exception.html.php
│   │   │   │   │       ├── exception_full.html 2.php
│   │   │   │   │       ├── exception_full.html.php
│   │   │   │   │       ├── logs.html 2.php
│   │   │   │   │       ├── logs.html.php
│   │   │   │   │       ├── trace.html 2.php
│   │   │   │   │       ├── trace.html.php
│   │   │   │   │       ├── traces.html 2.php
│   │   │   │   │       ├── traces.html.php
│   │   │   │   │       ├── traces_text.html 2.php
│   │   │   │   │       └── traces_text.html.php
│   │   │   │   ├── ThrowableUtils 2.php
│   │   │   │   ├── ThrowableUtils.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── event-dispatcher
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Debug
│   │   │   │   │   ├── TraceableEventDispatcher 2.php
│   │   │   │   │   ├── TraceableEventDispatcher.php
│   │   │   │   │   ├── WrappedListener 2.php
│   │   │   │   │   └── WrappedListener.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── AddEventAliasesPass 2.php
│   │   │   │   │   ├── AddEventAliasesPass.php
│   │   │   │   │   ├── RegisterListenersPass 2.php
│   │   │   │   │   └── RegisterListenersPass.php
│   │   │   │   ├── EventDispatcher 2.php
│   │   │   │   ├── EventDispatcher.php
│   │   │   │   ├── EventDispatcherInterface 2.php
│   │   │   │   ├── EventDispatcherInterface.php
│   │   │   │   ├── EventSubscriberInterface 2.php
│   │   │   │   ├── EventSubscriberInterface.php
│   │   │   │   ├── GenericEvent 2.php
│   │   │   │   ├── GenericEvent.php
│   │   │   │   ├── ImmutableEventDispatcher 2.php
│   │   │   │   ├── ImmutableEventDispatcher.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── LegacyEventDispatcherProxy 2.php
│   │   │   │   ├── LegacyEventDispatcherProxy.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── event-dispatcher-contracts
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Event.php
│   │   │   │   ├── EventDispatcherInterface.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   └── composer.json
│   │   │   ├── finder
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Comparator
│   │   │   │   │   ├── Comparator 2.php
│   │   │   │   │   ├── Comparator.php
│   │   │   │   │   ├── DateComparator 2.php
│   │   │   │   │   ├── DateComparator.php
│   │   │   │   │   ├── NumberComparator 2.php
│   │   │   │   │   └── NumberComparator.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── AccessDeniedException 2.php
│   │   │   │   │   ├── AccessDeniedException.php
│   │   │   │   │   ├── DirectoryNotFoundException 2.php
│   │   │   │   │   └── DirectoryNotFoundException.php
│   │   │   │   ├── Finder 2.php
│   │   │   │   ├── Finder.php
│   │   │   │   ├── Gitignore 2.php
│   │   │   │   ├── Gitignore.php
│   │   │   │   ├── Glob 2.php
│   │   │   │   ├── Glob.php
│   │   │   │   ├── Iterator
│   │   │   │   │   ├── CustomFilterIterator 2.php
│   │   │   │   │   ├── CustomFilterIterator.php
│   │   │   │   │   ├── DateRangeFilterIterator 2.php
│   │   │   │   │   ├── DateRangeFilterIterator.php
│   │   │   │   │   ├── DepthRangeFilterIterator 2.php
│   │   │   │   │   ├── DepthRangeFilterIterator.php
│   │   │   │   │   ├── ExcludeDirectoryFilterIterator 2.php
│   │   │   │   │   ├── ExcludeDirectoryFilterIterator.php
│   │   │   │   │   ├── FileTypeFilterIterator 2.php
│   │   │   │   │   ├── FileTypeFilterIterator.php
│   │   │   │   │   ├── FilecontentFilterIterator 2.php
│   │   │   │   │   ├── FilecontentFilterIterator.php
│   │   │   │   │   ├── FilenameFilterIterator 2.php
│   │   │   │   │   ├── FilenameFilterIterator.php
│   │   │   │   │   ├── MultiplePcreFilterIterator 2.php
│   │   │   │   │   ├── MultiplePcreFilterIterator.php
│   │   │   │   │   ├── PathFilterIterator 2.php
│   │   │   │   │   ├── PathFilterIterator.php
│   │   │   │   │   ├── RecursiveDirectoryIterator 2.php
│   │   │   │   │   ├── RecursiveDirectoryIterator.php
│   │   │   │   │   ├── SizeRangeFilterIterator 2.php
│   │   │   │   │   ├── SizeRangeFilterIterator.php
│   │   │   │   │   ├── SortableIterator 2.php
│   │   │   │   │   └── SortableIterator.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── SplFileInfo 2.php
│   │   │   │   ├── SplFileInfo.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── http-client-contracts
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── ChunkInterface 2.php
│   │   │   │   ├── ChunkInterface.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── ClientExceptionInterface 2.php
│   │   │   │   │   ├── ClientExceptionInterface.php
│   │   │   │   │   ├── DecodingExceptionInterface 2.php
│   │   │   │   │   ├── DecodingExceptionInterface.php
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── HttpExceptionInterface 2.php
│   │   │   │   │   ├── HttpExceptionInterface.php
│   │   │   │   │   ├── RedirectionExceptionInterface 2.php
│   │   │   │   │   ├── RedirectionExceptionInterface.php
│   │   │   │   │   ├── ServerExceptionInterface 2.php
│   │   │   │   │   ├── ServerExceptionInterface.php
│   │   │   │   │   ├── TimeoutExceptionInterface 2.php
│   │   │   │   │   ├── TimeoutExceptionInterface.php
│   │   │   │   │   ├── TransportExceptionInterface 2.php
│   │   │   │   │   └── TransportExceptionInterface.php
│   │   │   │   ├── HttpClientInterface 2.php
│   │   │   │   ├── HttpClientInterface.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── ResponseInterface 2.php
│   │   │   │   ├── ResponseInterface.php
│   │   │   │   ├── ResponseStreamInterface 2.php
│   │   │   │   ├── ResponseStreamInterface.php
│   │   │   │   ├── Test
│   │   │   │   │   ├── Fixtures
│   │   │   │   │   │   └── web
│   │   │   │   │   │       ├── index 2.php
│   │   │   │   │   │       └── index.php
│   │   │   │   │   ├── HttpClientTestCase 2.php
│   │   │   │   │   ├── HttpClientTestCase.php
│   │   │   │   │   ├── TestHttpServer 2.php
│   │   │   │   │   └── TestHttpServer.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── http-foundation
│   │   │   │   ├── AcceptHeader 2.php
│   │   │   │   ├── AcceptHeader.php
│   │   │   │   ├── AcceptHeaderItem 2.php
│   │   │   │   ├── AcceptHeaderItem.php
│   │   │   │   ├── BinaryFileResponse 2.php
│   │   │   │   ├── BinaryFileResponse.php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Cookie 2.php
│   │   │   │   ├── Cookie.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── BadRequestException 2.php
│   │   │   │   │   ├── BadRequestException.php
│   │   │   │   │   ├── ConflictingHeadersException 2.php
│   │   │   │   │   ├── ConflictingHeadersException.php
│   │   │   │   │   ├── RequestExceptionInterface 2.php
│   │   │   │   │   ├── RequestExceptionInterface.php
│   │   │   │   │   ├── SuspiciousOperationException 2.php
│   │   │   │   │   └── SuspiciousOperationException.php
│   │   │   │   ├── ExpressionRequestMatcher 2.php
│   │   │   │   ├── ExpressionRequestMatcher.php
│   │   │   │   ├── File
│   │   │   │   │   ├── Exception
│   │   │   │   │   │   ├── AccessDeniedException 2.php
│   │   │   │   │   │   ├── AccessDeniedException.php
│   │   │   │   │   │   ├── CannotWriteFileException 2.php
│   │   │   │   │   │   ├── CannotWriteFileException.php
│   │   │   │   │   │   ├── ExtensionFileException 2.php
│   │   │   │   │   │   ├── ExtensionFileException.php
│   │   │   │   │   │   ├── FileException 2.php
│   │   │   │   │   │   ├── FileException.php
│   │   │   │   │   │   ├── FileNotFoundException 2.php
│   │   │   │   │   │   ├── FileNotFoundException.php
│   │   │   │   │   │   ├── FormSizeFileException 2.php
│   │   │   │   │   │   ├── FormSizeFileException.php
│   │   │   │   │   │   ├── IniSizeFileException 2.php
│   │   │   │   │   │   ├── IniSizeFileException.php
│   │   │   │   │   │   ├── NoFileException 2.php
│   │   │   │   │   │   ├── NoFileException.php
│   │   │   │   │   │   ├── NoTmpDirFileException 2.php
│   │   │   │   │   │   ├── NoTmpDirFileException.php
│   │   │   │   │   │   ├── PartialFileException 2.php
│   │   │   │   │   │   ├── PartialFileException.php
│   │   │   │   │   │   ├── UnexpectedTypeException 2.php
│   │   │   │   │   │   ├── UnexpectedTypeException.php
│   │   │   │   │   │   ├── UploadException 2.php
│   │   │   │   │   │   └── UploadException.php
│   │   │   │   │   ├── File 2.php
│   │   │   │   │   ├── File.php
│   │   │   │   │   ├── Stream 2.php
│   │   │   │   │   ├── Stream.php
│   │   │   │   │   ├── UploadedFile 2.php
│   │   │   │   │   └── UploadedFile.php
│   │   │   │   ├── FileBag 2.php
│   │   │   │   ├── FileBag.php
│   │   │   │   ├── HeaderBag 2.php
│   │   │   │   ├── HeaderBag.php
│   │   │   │   ├── HeaderUtils 2.php
│   │   │   │   ├── HeaderUtils.php
│   │   │   │   ├── InputBag 2.php
│   │   │   │   ├── InputBag.php
│   │   │   │   ├── IpUtils 2.php
│   │   │   │   ├── IpUtils.php
│   │   │   │   ├── JsonResponse 2.php
│   │   │   │   ├── JsonResponse.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── ParameterBag 2.php
│   │   │   │   ├── ParameterBag.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── RedirectResponse 2.php
│   │   │   │   ├── RedirectResponse.php
│   │   │   │   ├── Request 2.php
│   │   │   │   ├── Request.php
│   │   │   │   ├── RequestMatcher 2.php
│   │   │   │   ├── RequestMatcher.php
│   │   │   │   ├── RequestMatcherInterface 2.php
│   │   │   │   ├── RequestMatcherInterface.php
│   │   │   │   ├── RequestStack 2.php
│   │   │   │   ├── RequestStack.php
│   │   │   │   ├── Response 2.php
│   │   │   │   ├── Response.php
│   │   │   │   ├── ResponseHeaderBag 2.php
│   │   │   │   ├── ResponseHeaderBag.php
│   │   │   │   ├── ServerBag 2.php
│   │   │   │   ├── ServerBag.php
│   │   │   │   ├── Session
│   │   │   │   │   ├── Attribute
│   │   │   │   │   │   ├── AttributeBag 2.php
│   │   │   │   │   │   ├── AttributeBag.php
│   │   │   │   │   │   ├── AttributeBagInterface 2.php
│   │   │   │   │   │   ├── AttributeBagInterface.php
│   │   │   │   │   │   ├── NamespacedAttributeBag 2.php
│   │   │   │   │   │   └── NamespacedAttributeBag.php
│   │   │   │   │   ├── Flash
│   │   │   │   │   │   ├── AutoExpireFlashBag 2.php
│   │   │   │   │   │   ├── AutoExpireFlashBag.php
│   │   │   │   │   │   ├── FlashBag 2.php
│   │   │   │   │   │   ├── FlashBag.php
│   │   │   │   │   │   ├── FlashBagInterface 2.php
│   │   │   │   │   │   └── FlashBagInterface.php
│   │   │   │   │   ├── Session 2.php
│   │   │   │   │   ├── Session.php
│   │   │   │   │   ├── SessionBagInterface 2.php
│   │   │   │   │   ├── SessionBagInterface.php
│   │   │   │   │   ├── SessionBagProxy 2.php
│   │   │   │   │   ├── SessionBagProxy.php
│   │   │   │   │   ├── SessionInterface 2.php
│   │   │   │   │   ├── SessionInterface.php
│   │   │   │   │   ├── SessionUtils 2.php
│   │   │   │   │   ├── SessionUtils.php
│   │   │   │   │   └── Storage
│   │   │   │   │       ├── Handler
│   │   │   │   │       │   ├── AbstractSessionHandler 2.php
│   │   │   │   │       │   ├── AbstractSessionHandler.php
│   │   │   │   │       │   ├── IdentityMarshaller 2.php
│   │   │   │   │       │   ├── IdentityMarshaller.php
│   │   │   │   │       │   ├── MarshallingSessionHandler 2.php
│   │   │   │   │       │   ├── MarshallingSessionHandler.php
│   │   │   │   │       │   ├── MemcachedSessionHandler 2.php
│   │   │   │   │       │   ├── MemcachedSessionHandler.php
│   │   │   │   │       │   ├── MigratingSessionHandler 2.php
│   │   │   │   │       │   ├── MigratingSessionHandler.php
│   │   │   │   │       │   ├── MongoDbSessionHandler 2.php
│   │   │   │   │       │   ├── MongoDbSessionHandler.php
│   │   │   │   │       │   ├── NativeFileSessionHandler 2.php
│   │   │   │   │       │   ├── NativeFileSessionHandler.php
│   │   │   │   │       │   ├── NullSessionHandler 2.php
│   │   │   │   │       │   ├── NullSessionHandler.php
│   │   │   │   │       │   ├── PdoSessionHandler 2.php
│   │   │   │   │       │   ├── PdoSessionHandler.php
│   │   │   │   │       │   ├── RedisSessionHandler 2.php
│   │   │   │   │       │   ├── RedisSessionHandler.php
│   │   │   │   │       │   ├── SessionHandlerFactory 2.php
│   │   │   │   │       │   ├── SessionHandlerFactory.php
│   │   │   │   │       │   ├── StrictSessionHandler 2.php
│   │   │   │   │       │   └── StrictSessionHandler.php
│   │   │   │   │       ├── MetadataBag 2.php
│   │   │   │   │       ├── MetadataBag.php
│   │   │   │   │       ├── MockArraySessionStorage 2.php
│   │   │   │   │       ├── MockArraySessionStorage.php
│   │   │   │   │       ├── MockFileSessionStorage 2.php
│   │   │   │   │       ├── MockFileSessionStorage.php
│   │   │   │   │       ├── NativeSessionStorage 2.php
│   │   │   │   │       ├── NativeSessionStorage.php
│   │   │   │   │       ├── PhpBridgeSessionStorage 2.php
│   │   │   │   │       ├── PhpBridgeSessionStorage.php
│   │   │   │   │       ├── Proxy
│   │   │   │   │       │   ├── AbstractProxy 2.php
│   │   │   │   │       │   ├── AbstractProxy.php
│   │   │   │   │       │   ├── SessionHandlerProxy 2.php
│   │   │   │   │       │   └── SessionHandlerProxy.php
│   │   │   │   │       ├── SessionStorageInterface 2.php
│   │   │   │   │       └── SessionStorageInterface.php
│   │   │   │   ├── StreamedResponse 2.php
│   │   │   │   ├── StreamedResponse.php
│   │   │   │   ├── Test
│   │   │   │   │   └── Constraint
│   │   │   │   │       ├── RequestAttributeValueSame 2.php
│   │   │   │   │       ├── RequestAttributeValueSame.php
│   │   │   │   │       ├── ResponseCookieValueSame 2.php
│   │   │   │   │       ├── ResponseCookieValueSame.php
│   │   │   │   │       ├── ResponseHasCookie 2.php
│   │   │   │   │       ├── ResponseHasCookie.php
│   │   │   │   │       ├── ResponseHasHeader 2.php
│   │   │   │   │       ├── ResponseHasHeader.php
│   │   │   │   │       ├── ResponseHeaderSame 2.php
│   │   │   │   │       ├── ResponseHeaderSame.php
│   │   │   │   │       ├── ResponseIsRedirected 2.php
│   │   │   │   │       ├── ResponseIsRedirected.php
│   │   │   │   │       ├── ResponseIsSuccessful 2.php
│   │   │   │   │       ├── ResponseIsSuccessful.php
│   │   │   │   │       ├── ResponseStatusCodeSame 2.php
│   │   │   │   │       └── ResponseStatusCodeSame.php
│   │   │   │   ├── UrlHelper 2.php
│   │   │   │   ├── UrlHelper.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── http-kernel
│   │   │   │   ├── Bundle
│   │   │   │   │   ├── Bundle 2.php
│   │   │   │   │   ├── Bundle.php
│   │   │   │   │   ├── BundleInterface 2.php
│   │   │   │   │   └── BundleInterface.php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── CacheClearer
│   │   │   │   │   ├── CacheClearerInterface 2.php
│   │   │   │   │   ├── CacheClearerInterface.php
│   │   │   │   │   ├── ChainCacheClearer 2.php
│   │   │   │   │   ├── ChainCacheClearer.php
│   │   │   │   │   ├── Psr6CacheClearer 2.php
│   │   │   │   │   └── Psr6CacheClearer.php
│   │   │   │   ├── CacheWarmer
│   │   │   │   │   ├── CacheWarmer 2.php
│   │   │   │   │   ├── CacheWarmer.php
│   │   │   │   │   ├── CacheWarmerAggregate 2.php
│   │   │   │   │   ├── CacheWarmerAggregate.php
│   │   │   │   │   ├── CacheWarmerInterface 2.php
│   │   │   │   │   ├── CacheWarmerInterface.php
│   │   │   │   │   ├── WarmableInterface 2.php
│   │   │   │   │   └── WarmableInterface.php
│   │   │   │   ├── Config
│   │   │   │   │   ├── FileLocator 2.php
│   │   │   │   │   └── FileLocator.php
│   │   │   │   ├── Controller
│   │   │   │   │   ├── ArgumentResolver
│   │   │   │   │   │   ├── DefaultValueResolver 2.php
│   │   │   │   │   │   ├── DefaultValueResolver.php
│   │   │   │   │   │   ├── NotTaggedControllerValueResolver 2.php
│   │   │   │   │   │   ├── NotTaggedControllerValueResolver.php
│   │   │   │   │   │   ├── RequestAttributeValueResolver 2.php
│   │   │   │   │   │   ├── RequestAttributeValueResolver.php
│   │   │   │   │   │   ├── RequestValueResolver 2.php
│   │   │   │   │   │   ├── RequestValueResolver.php
│   │   │   │   │   │   ├── ServiceValueResolver 2.php
│   │   │   │   │   │   ├── ServiceValueResolver.php
│   │   │   │   │   │   ├── SessionValueResolver 2.php
│   │   │   │   │   │   ├── SessionValueResolver.php
│   │   │   │   │   │   ├── TraceableValueResolver 2.php
│   │   │   │   │   │   ├── TraceableValueResolver.php
│   │   │   │   │   │   ├── VariadicValueResolver 2.php
│   │   │   │   │   │   └── VariadicValueResolver.php
│   │   │   │   │   ├── ArgumentResolver 2.php
│   │   │   │   │   ├── ArgumentResolver.php
│   │   │   │   │   ├── ArgumentResolverInterface 2.php
│   │   │   │   │   ├── ArgumentResolverInterface.php
│   │   │   │   │   ├── ArgumentValueResolverInterface 2.php
│   │   │   │   │   ├── ArgumentValueResolverInterface.php
│   │   │   │   │   ├── ContainerControllerResolver 2.php
│   │   │   │   │   ├── ContainerControllerResolver.php
│   │   │   │   │   ├── ControllerReference 2.php
│   │   │   │   │   ├── ControllerReference.php
│   │   │   │   │   ├── ControllerResolver 2.php
│   │   │   │   │   ├── ControllerResolver.php
│   │   │   │   │   ├── ControllerResolverInterface 2.php
│   │   │   │   │   ├── ControllerResolverInterface.php
│   │   │   │   │   ├── ErrorController 2.php
│   │   │   │   │   ├── ErrorController.php
│   │   │   │   │   ├── TraceableArgumentResolver 2.php
│   │   │   │   │   ├── TraceableArgumentResolver.php
│   │   │   │   │   ├── TraceableControllerResolver 2.php
│   │   │   │   │   └── TraceableControllerResolver.php
│   │   │   │   ├── ControllerMetadata
│   │   │   │   │   ├── ArgumentMetadata 2.php
│   │   │   │   │   ├── ArgumentMetadata.php
│   │   │   │   │   ├── ArgumentMetadataFactory 2.php
│   │   │   │   │   ├── ArgumentMetadataFactory.php
│   │   │   │   │   ├── ArgumentMetadataFactoryInterface 2.php
│   │   │   │   │   └── ArgumentMetadataFactoryInterface.php
│   │   │   │   ├── DataCollector
│   │   │   │   │   ├── AjaxDataCollector 2.php
│   │   │   │   │   ├── AjaxDataCollector.php
│   │   │   │   │   ├── ConfigDataCollector 2.php
│   │   │   │   │   ├── ConfigDataCollector.php
│   │   │   │   │   ├── DataCollector 2.php
│   │   │   │   │   ├── DataCollector.php
│   │   │   │   │   ├── DataCollectorInterface 2.php
│   │   │   │   │   ├── DataCollectorInterface.php
│   │   │   │   │   ├── DumpDataCollector 2.php
│   │   │   │   │   ├── DumpDataCollector.php
│   │   │   │   │   ├── EventDataCollector 2.php
│   │   │   │   │   ├── EventDataCollector.php
│   │   │   │   │   ├── ExceptionDataCollector 2.php
│   │   │   │   │   ├── ExceptionDataCollector.php
│   │   │   │   │   ├── LateDataCollectorInterface 2.php
│   │   │   │   │   ├── LateDataCollectorInterface.php
│   │   │   │   │   ├── LoggerDataCollector 2.php
│   │   │   │   │   ├── LoggerDataCollector.php
│   │   │   │   │   ├── MemoryDataCollector 2.php
│   │   │   │   │   ├── MemoryDataCollector.php
│   │   │   │   │   ├── RequestDataCollector 2.php
│   │   │   │   │   ├── RequestDataCollector.php
│   │   │   │   │   ├── RouterDataCollector 2.php
│   │   │   │   │   ├── RouterDataCollector.php
│   │   │   │   │   ├── TimeDataCollector 2.php
│   │   │   │   │   └── TimeDataCollector.php
│   │   │   │   ├── Debug
│   │   │   │   │   ├── FileLinkFormatter 2.php
│   │   │   │   │   ├── FileLinkFormatter.php
│   │   │   │   │   ├── TraceableEventDispatcher 2.php
│   │   │   │   │   └── TraceableEventDispatcher.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── AddAnnotatedClassesToCachePass 2.php
│   │   │   │   │   ├── AddAnnotatedClassesToCachePass.php
│   │   │   │   │   ├── ConfigurableExtension 2.php
│   │   │   │   │   ├── ConfigurableExtension.php
│   │   │   │   │   ├── ControllerArgumentValueResolverPass 2.php
│   │   │   │   │   ├── ControllerArgumentValueResolverPass.php
│   │   │   │   │   ├── Extension 2.php
│   │   │   │   │   ├── Extension.php
│   │   │   │   │   ├── FragmentRendererPass 2.php
│   │   │   │   │   ├── FragmentRendererPass.php
│   │   │   │   │   ├── LazyLoadingFragmentHandler 2.php
│   │   │   │   │   ├── LazyLoadingFragmentHandler.php
│   │   │   │   │   ├── LoggerPass 2.php
│   │   │   │   │   ├── LoggerPass.php
│   │   │   │   │   ├── MergeExtensionConfigurationPass 2.php
│   │   │   │   │   ├── MergeExtensionConfigurationPass.php
│   │   │   │   │   ├── RegisterControllerArgumentLocatorsPass 2.php
│   │   │   │   │   ├── RegisterControllerArgumentLocatorsPass.php
│   │   │   │   │   ├── RegisterLocaleAwareServicesPass 2.php
│   │   │   │   │   ├── RegisterLocaleAwareServicesPass.php
│   │   │   │   │   ├── RemoveEmptyControllerArgumentLocatorsPass 2.php
│   │   │   │   │   ├── RemoveEmptyControllerArgumentLocatorsPass.php
│   │   │   │   │   ├── ResettableServicePass 2.php
│   │   │   │   │   ├── ResettableServicePass.php
│   │   │   │   │   ├── ServicesResetter 2.php
│   │   │   │   │   └── ServicesResetter.php
│   │   │   │   ├── Event
│   │   │   │   │   ├── ControllerArgumentsEvent 2.php
│   │   │   │   │   ├── ControllerArgumentsEvent.php
│   │   │   │   │   ├── ControllerEvent 2.php
│   │   │   │   │   ├── ControllerEvent.php
│   │   │   │   │   ├── ExceptionEvent 2.php
│   │   │   │   │   ├── ExceptionEvent.php
│   │   │   │   │   ├── FinishRequestEvent 2.php
│   │   │   │   │   ├── FinishRequestEvent.php
│   │   │   │   │   ├── KernelEvent 2.php
│   │   │   │   │   ├── KernelEvent.php
│   │   │   │   │   ├── RequestEvent 2.php
│   │   │   │   │   ├── RequestEvent.php
│   │   │   │   │   ├── ResponseEvent 2.php
│   │   │   │   │   ├── ResponseEvent.php
│   │   │   │   │   ├── TerminateEvent 2.php
│   │   │   │   │   ├── TerminateEvent.php
│   │   │   │   │   ├── ViewEvent 2.php
│   │   │   │   │   └── ViewEvent.php
│   │   │   │   ├── EventListener
│   │   │   │   │   ├── AbstractSessionListener 2.php
│   │   │   │   │   ├── AbstractSessionListener.php
│   │   │   │   │   ├── AbstractTestSessionListener 2.php
│   │   │   │   │   ├── AbstractTestSessionListener.php
│   │   │   │   │   ├── AddRequestFormatsListener 2.php
│   │   │   │   │   ├── AddRequestFormatsListener.php
│   │   │   │   │   ├── DebugHandlersListener 2.php
│   │   │   │   │   ├── DebugHandlersListener.php
│   │   │   │   │   ├── DisallowRobotsIndexingListener 2.php
│   │   │   │   │   ├── DisallowRobotsIndexingListener.php
│   │   │   │   │   ├── DumpListener 2.php
│   │   │   │   │   ├── DumpListener.php
│   │   │   │   │   ├── ErrorListener 2.php
│   │   │   │   │   ├── ErrorListener.php
│   │   │   │   │   ├── FragmentListener 2.php
│   │   │   │   │   ├── FragmentListener.php
│   │   │   │   │   ├── LocaleAwareListener 2.php
│   │   │   │   │   ├── LocaleAwareListener.php
│   │   │   │   │   ├── LocaleListener 2.php
│   │   │   │   │   ├── LocaleListener.php
│   │   │   │   │   ├── ProfilerListener 2.php
│   │   │   │   │   ├── ProfilerListener.php
│   │   │   │   │   ├── ResponseListener 2.php
│   │   │   │   │   ├── ResponseListener.php
│   │   │   │   │   ├── RouterListener 2.php
│   │   │   │   │   ├── RouterListener.php
│   │   │   │   │   ├── SessionListener 2.php
│   │   │   │   │   ├── SessionListener.php
│   │   │   │   │   ├── StreamedResponseListener 2.php
│   │   │   │   │   ├── StreamedResponseListener.php
│   │   │   │   │   ├── SurrogateListener 2.php
│   │   │   │   │   ├── SurrogateListener.php
│   │   │   │   │   ├── TestSessionListener 2.php
│   │   │   │   │   ├── TestSessionListener.php
│   │   │   │   │   ├── ValidateRequestListener 2.php
│   │   │   │   │   └── ValidateRequestListener.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── AccessDeniedHttpException 2.php
│   │   │   │   │   ├── AccessDeniedHttpException.php
│   │   │   │   │   ├── BadRequestHttpException 2.php
│   │   │   │   │   ├── BadRequestHttpException.php
│   │   │   │   │   ├── ConflictHttpException 2.php
│   │   │   │   │   ├── ConflictHttpException.php
│   │   │   │   │   ├── ControllerDoesNotReturnResponseException 2.php
│   │   │   │   │   ├── ControllerDoesNotReturnResponseException.php
│   │   │   │   │   ├── GoneHttpException 2.php
│   │   │   │   │   ├── GoneHttpException.php
│   │   │   │   │   ├── HttpException 2.php
│   │   │   │   │   ├── HttpException.php
│   │   │   │   │   ├── HttpExceptionInterface 2.php
│   │   │   │   │   ├── HttpExceptionInterface.php
│   │   │   │   │   ├── LengthRequiredHttpException 2.php
│   │   │   │   │   ├── LengthRequiredHttpException.php
│   │   │   │   │   ├── MethodNotAllowedHttpException 2.php
│   │   │   │   │   ├── MethodNotAllowedHttpException.php
│   │   │   │   │   ├── NotAcceptableHttpException 2.php
│   │   │   │   │   ├── NotAcceptableHttpException.php
│   │   │   │   │   ├── NotFoundHttpException 2.php
│   │   │   │   │   ├── NotFoundHttpException.php
│   │   │   │   │   ├── PreconditionFailedHttpException 2.php
│   │   │   │   │   ├── PreconditionFailedHttpException.php
│   │   │   │   │   ├── PreconditionRequiredHttpException 2.php
│   │   │   │   │   ├── PreconditionRequiredHttpException.php
│   │   │   │   │   ├── ServiceUnavailableHttpException 2.php
│   │   │   │   │   ├── ServiceUnavailableHttpException.php
│   │   │   │   │   ├── TooManyRequestsHttpException 2.php
│   │   │   │   │   ├── TooManyRequestsHttpException.php
│   │   │   │   │   ├── UnauthorizedHttpException 2.php
│   │   │   │   │   ├── UnauthorizedHttpException.php
│   │   │   │   │   ├── UnexpectedSessionUsageException 2.php
│   │   │   │   │   ├── UnexpectedSessionUsageException.php
│   │   │   │   │   ├── UnprocessableEntityHttpException 2.php
│   │   │   │   │   ├── UnprocessableEntityHttpException.php
│   │   │   │   │   ├── UnsupportedMediaTypeHttpException 2.php
│   │   │   │   │   └── UnsupportedMediaTypeHttpException.php
│   │   │   │   ├── Fragment
│   │   │   │   │   ├── AbstractSurrogateFragmentRenderer 2.php
│   │   │   │   │   ├── AbstractSurrogateFragmentRenderer.php
│   │   │   │   │   ├── EsiFragmentRenderer 2.php
│   │   │   │   │   ├── EsiFragmentRenderer.php
│   │   │   │   │   ├── FragmentHandler 2.php
│   │   │   │   │   ├── FragmentHandler.php
│   │   │   │   │   ├── FragmentRendererInterface 2.php
│   │   │   │   │   ├── FragmentRendererInterface.php
│   │   │   │   │   ├── HIncludeFragmentRenderer 2.php
│   │   │   │   │   ├── HIncludeFragmentRenderer.php
│   │   │   │   │   ├── InlineFragmentRenderer 2.php
│   │   │   │   │   ├── InlineFragmentRenderer.php
│   │   │   │   │   ├── RoutableFragmentRenderer 2.php
│   │   │   │   │   ├── RoutableFragmentRenderer.php
│   │   │   │   │   ├── SsiFragmentRenderer 2.php
│   │   │   │   │   └── SsiFragmentRenderer.php
│   │   │   │   ├── HttpCache
│   │   │   │   │   ├── AbstractSurrogate 2.php
│   │   │   │   │   ├── AbstractSurrogate.php
│   │   │   │   │   ├── Esi 2.php
│   │   │   │   │   ├── Esi.php
│   │   │   │   │   ├── HttpCache 2.php
│   │   │   │   │   ├── HttpCache.php
│   │   │   │   │   ├── ResponseCacheStrategy 2.php
│   │   │   │   │   ├── ResponseCacheStrategy.php
│   │   │   │   │   ├── ResponseCacheStrategyInterface 2.php
│   │   │   │   │   ├── ResponseCacheStrategyInterface.php
│   │   │   │   │   ├── Ssi 2.php
│   │   │   │   │   ├── Ssi.php
│   │   │   │   │   ├── Store 2.php
│   │   │   │   │   ├── Store.php
│   │   │   │   │   ├── StoreInterface 2.php
│   │   │   │   │   ├── StoreInterface.php
│   │   │   │   │   ├── SubRequestHandler 2.php
│   │   │   │   │   ├── SubRequestHandler.php
│   │   │   │   │   ├── SurrogateInterface 2.php
│   │   │   │   │   └── SurrogateInterface.php
│   │   │   │   ├── HttpClientKernel 2.php
│   │   │   │   ├── HttpClientKernel.php
│   │   │   │   ├── HttpKernel 2.php
│   │   │   │   ├── HttpKernel.php
│   │   │   │   ├── HttpKernelBrowser 2.php
│   │   │   │   ├── HttpKernelBrowser.php
│   │   │   │   ├── HttpKernelInterface 2.php
│   │   │   │   ├── HttpKernelInterface.php
│   │   │   │   ├── Kernel 2.php
│   │   │   │   ├── Kernel.php
│   │   │   │   ├── KernelEvents 2.php
│   │   │   │   ├── KernelEvents.php
│   │   │   │   ├── KernelInterface 2.php
│   │   │   │   ├── KernelInterface.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Log
│   │   │   │   │   ├── DebugLoggerInterface 2.php
│   │   │   │   │   ├── DebugLoggerInterface.php
│   │   │   │   │   ├── Logger 2.php
│   │   │   │   │   └── Logger.php
│   │   │   │   ├── Profiler
│   │   │   │   │   ├── FileProfilerStorage 2.php
│   │   │   │   │   ├── FileProfilerStorage.php
│   │   │   │   │   ├── Profile 2.php
│   │   │   │   │   ├── Profile.php
│   │   │   │   │   ├── Profiler 2.php
│   │   │   │   │   ├── Profiler.php
│   │   │   │   │   ├── ProfilerStorageInterface 2.php
│   │   │   │   │   └── ProfilerStorageInterface.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── RebootableInterface 2.php
│   │   │   │   ├── RebootableInterface.php
│   │   │   │   ├── Resources
│   │   │   │   │   ├── welcome.html 2.php
│   │   │   │   │   └── welcome.html.php
│   │   │   │   ├── TerminableInterface 2.php
│   │   │   │   ├── TerminableInterface.php
│   │   │   │   ├── UriSigner 2.php
│   │   │   │   ├── UriSigner.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── mime
│   │   │   │   ├── Address 2.php
│   │   │   │   ├── Address.php
│   │   │   │   ├── BodyRendererInterface 2.php
│   │   │   │   ├── BodyRendererInterface.php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── CharacterStream 2.php
│   │   │   │   ├── CharacterStream.php
│   │   │   │   ├── Crypto
│   │   │   │   │   ├── SMime 2.php
│   │   │   │   │   ├── SMime.php
│   │   │   │   │   ├── SMimeEncrypter 2.php
│   │   │   │   │   ├── SMimeEncrypter.php
│   │   │   │   │   ├── SMimeSigner 2.php
│   │   │   │   │   └── SMimeSigner.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── AddMimeTypeGuesserPass 2.php
│   │   │   │   │   └── AddMimeTypeGuesserPass.php
│   │   │   │   ├── Email 2.php
│   │   │   │   ├── Email.php
│   │   │   │   ├── Encoder
│   │   │   │   │   ├── AddressEncoderInterface 2.php
│   │   │   │   │   ├── AddressEncoderInterface.php
│   │   │   │   │   ├── Base64ContentEncoder 2.php
│   │   │   │   │   ├── Base64ContentEncoder.php
│   │   │   │   │   ├── Base64Encoder 2.php
│   │   │   │   │   ├── Base64Encoder.php
│   │   │   │   │   ├── Base64MimeHeaderEncoder 2.php
│   │   │   │   │   ├── Base64MimeHeaderEncoder.php
│   │   │   │   │   ├── ContentEncoderInterface 2.php
│   │   │   │   │   ├── ContentEncoderInterface.php
│   │   │   │   │   ├── EightBitContentEncoder 2.php
│   │   │   │   │   ├── EightBitContentEncoder.php
│   │   │   │   │   ├── EncoderInterface 2.php
│   │   │   │   │   ├── EncoderInterface.php
│   │   │   │   │   ├── IdnAddressEncoder 2.php
│   │   │   │   │   ├── IdnAddressEncoder.php
│   │   │   │   │   ├── MimeHeaderEncoderInterface 2.php
│   │   │   │   │   ├── MimeHeaderEncoderInterface.php
│   │   │   │   │   ├── QpContentEncoder 2.php
│   │   │   │   │   ├── QpContentEncoder.php
│   │   │   │   │   ├── QpEncoder 2.php
│   │   │   │   │   ├── QpEncoder.php
│   │   │   │   │   ├── QpMimeHeaderEncoder 2.php
│   │   │   │   │   ├── QpMimeHeaderEncoder.php
│   │   │   │   │   ├── Rfc2231Encoder 2.php
│   │   │   │   │   └── Rfc2231Encoder.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── AddressEncoderException 2.php
│   │   │   │   │   ├── AddressEncoderException.php
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── InvalidArgumentException 2.php
│   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   ├── LogicException 2.php
│   │   │   │   │   ├── LogicException.php
│   │   │   │   │   ├── RfcComplianceException 2.php
│   │   │   │   │   ├── RfcComplianceException.php
│   │   │   │   │   ├── RuntimeException 2.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── FileBinaryMimeTypeGuesser 2.php
│   │   │   │   ├── FileBinaryMimeTypeGuesser.php
│   │   │   │   ├── FileinfoMimeTypeGuesser 2.php
│   │   │   │   ├── FileinfoMimeTypeGuesser.php
│   │   │   │   ├── Header
│   │   │   │   │   ├── AbstractHeader 2.php
│   │   │   │   │   ├── AbstractHeader.php
│   │   │   │   │   ├── DateHeader 2.php
│   │   │   │   │   ├── DateHeader.php
│   │   │   │   │   ├── HeaderInterface 2.php
│   │   │   │   │   ├── HeaderInterface.php
│   │   │   │   │   ├── Headers 2.php
│   │   │   │   │   ├── Headers.php
│   │   │   │   │   ├── IdentificationHeader 2.php
│   │   │   │   │   ├── IdentificationHeader.php
│   │   │   │   │   ├── MailboxHeader 2.php
│   │   │   │   │   ├── MailboxHeader.php
│   │   │   │   │   ├── MailboxListHeader 2.php
│   │   │   │   │   ├── MailboxListHeader.php
│   │   │   │   │   ├── ParameterizedHeader 2.php
│   │   │   │   │   ├── ParameterizedHeader.php
│   │   │   │   │   ├── PathHeader 2.php
│   │   │   │   │   ├── PathHeader.php
│   │   │   │   │   ├── UnstructuredHeader 2.php
│   │   │   │   │   └── UnstructuredHeader.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Message 2.php
│   │   │   │   ├── Message.php
│   │   │   │   ├── MessageConverter 2.php
│   │   │   │   ├── MessageConverter.php
│   │   │   │   ├── MimeTypeGuesserInterface 2.php
│   │   │   │   ├── MimeTypeGuesserInterface.php
│   │   │   │   ├── MimeTypes 2.php
│   │   │   │   ├── MimeTypes.php
│   │   │   │   ├── MimeTypesInterface 2.php
│   │   │   │   ├── MimeTypesInterface.php
│   │   │   │   ├── Part
│   │   │   │   │   ├── AbstractMultipartPart 2.php
│   │   │   │   │   ├── AbstractMultipartPart.php
│   │   │   │   │   ├── AbstractPart 2.php
│   │   │   │   │   ├── AbstractPart.php
│   │   │   │   │   ├── DataPart 2.php
│   │   │   │   │   ├── DataPart.php
│   │   │   │   │   ├── MessagePart 2.php
│   │   │   │   │   ├── MessagePart.php
│   │   │   │   │   ├── Multipart
│   │   │   │   │   │   ├── AlternativePart 2.php
│   │   │   │   │   │   ├── AlternativePart.php
│   │   │   │   │   │   ├── DigestPart 2.php
│   │   │   │   │   │   ├── DigestPart.php
│   │   │   │   │   │   ├── FormDataPart 2.php
│   │   │   │   │   │   ├── FormDataPart.php
│   │   │   │   │   │   ├── MixedPart 2.php
│   │   │   │   │   │   ├── MixedPart.php
│   │   │   │   │   │   ├── RelatedPart 2.php
│   │   │   │   │   │   └── RelatedPart.php
│   │   │   │   │   ├── SMimePart 2.php
│   │   │   │   │   ├── SMimePart.php
│   │   │   │   │   ├── TextPart 2.php
│   │   │   │   │   └── TextPart.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── RawMessage 2.php
│   │   │   │   ├── RawMessage.php
│   │   │   │   ├── Resources
│   │   │   │   │   └── bin
│   │   │   │   │       ├── update_mime_types 2.php
│   │   │   │   │       └── update_mime_types.php
│   │   │   │   ├── Test
│   │   │   │   │   └── Constraint
│   │   │   │   │       ├── EmailAddressContains 2.php
│   │   │   │   │       ├── EmailAddressContains.php
│   │   │   │   │       ├── EmailAttachmentCount 2.php
│   │   │   │   │       ├── EmailAttachmentCount.php
│   │   │   │   │       ├── EmailHasHeader 2.php
│   │   │   │   │       ├── EmailHasHeader.php
│   │   │   │   │       ├── EmailHeaderSame 2.php
│   │   │   │   │       ├── EmailHeaderSame.php
│   │   │   │   │       ├── EmailHtmlBodyContains 2.php
│   │   │   │   │       ├── EmailHtmlBodyContains.php
│   │   │   │   │       ├── EmailTextBodyContains 2.php
│   │   │   │   │       └── EmailTextBodyContains.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-ctype
│   │   │   │   ├── Ctype 2.php
│   │   │   │   ├── Ctype.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-iconv
│   │   │   │   ├── Iconv 2.php
│   │   │   │   ├── Iconv.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   └── charset
│   │   │   │   │       ├── from.big5 2.php
│   │   │   │   │       ├── from.big5.php
│   │   │   │   │       ├── from.cp037 2.php
│   │   │   │   │       ├── from.cp037.php
│   │   │   │   │       ├── from.cp1006 2.php
│   │   │   │   │       ├── from.cp1006.php
│   │   │   │   │       ├── from.cp1026 2.php
│   │   │   │   │       ├── from.cp1026.php
│   │   │   │   │       ├── from.cp424 2.php
│   │   │   │   │       ├── from.cp424.php
│   │   │   │   │       ├── from.cp437 2.php
│   │   │   │   │       ├── from.cp437.php
│   │   │   │   │       ├── from.cp500 2.php
│   │   │   │   │       ├── from.cp500.php
│   │   │   │   │       ├── from.cp737 2.php
│   │   │   │   │       ├── from.cp737.php
│   │   │   │   │       ├── from.cp775 2.php
│   │   │   │   │       ├── from.cp775.php
│   │   │   │   │       ├── from.cp850 2.php
│   │   │   │   │       ├── from.cp850.php
│   │   │   │   │       ├── from.cp852 2.php
│   │   │   │   │       ├── from.cp852.php
│   │   │   │   │       ├── from.cp855 2.php
│   │   │   │   │       ├── from.cp855.php
│   │   │   │   │       ├── from.cp856 2.php
│   │   │   │   │       ├── from.cp856.php
│   │   │   │   │       ├── from.cp857 2.php
│   │   │   │   │       ├── from.cp857.php
│   │   │   │   │       ├── from.cp860 2.php
│   │   │   │   │       ├── from.cp860.php
│   │   │   │   │       ├── from.cp861 2.php
│   │   │   │   │       ├── from.cp861.php
│   │   │   │   │       ├── from.cp862 2.php
│   │   │   │   │       ├── from.cp862.php
│   │   │   │   │       ├── from.cp863 2.php
│   │   │   │   │       ├── from.cp863.php
│   │   │   │   │       ├── from.cp864 2.php
│   │   │   │   │       ├── from.cp864.php
│   │   │   │   │       ├── from.cp865 2.php
│   │   │   │   │       ├── from.cp865.php
│   │   │   │   │       ├── from.cp866 2.php
│   │   │   │   │       ├── from.cp866.php
│   │   │   │   │       ├── from.cp869 2.php
│   │   │   │   │       ├── from.cp869.php
│   │   │   │   │       ├── from.cp874 2.php
│   │   │   │   │       ├── from.cp874.php
│   │   │   │   │       ├── from.cp875 2.php
│   │   │   │   │       ├── from.cp875.php
│   │   │   │   │       ├── from.cp932 2.php
│   │   │   │   │       ├── from.cp932.php
│   │   │   │   │       ├── from.cp936 2.php
│   │   │   │   │       ├── from.cp936.php
│   │   │   │   │       ├── from.cp949 2.php
│   │   │   │   │       ├── from.cp949.php
│   │   │   │   │       ├── from.cp950 2.php
│   │   │   │   │       ├── from.cp950.php
│   │   │   │   │       ├── from.iso-8859-1 2.php
│   │   │   │   │       ├── from.iso-8859-1.php
│   │   │   │   │       ├── from.iso-8859-10 2.php
│   │   │   │   │       ├── from.iso-8859-10.php
│   │   │   │   │       ├── from.iso-8859-11 2.php
│   │   │   │   │       ├── from.iso-8859-11.php
│   │   │   │   │       ├── from.iso-8859-13 2.php
│   │   │   │   │       ├── from.iso-8859-13.php
│   │   │   │   │       ├── from.iso-8859-14 2.php
│   │   │   │   │       ├── from.iso-8859-14.php
│   │   │   │   │       ├── from.iso-8859-15 2.php
│   │   │   │   │       ├── from.iso-8859-15.php
│   │   │   │   │       ├── from.iso-8859-16 2.php
│   │   │   │   │       ├── from.iso-8859-16.php
│   │   │   │   │       ├── from.iso-8859-2 2.php
│   │   │   │   │       ├── from.iso-8859-2.php
│   │   │   │   │       ├── from.iso-8859-3 2.php
│   │   │   │   │       ├── from.iso-8859-3.php
│   │   │   │   │       ├── from.iso-8859-4 2.php
│   │   │   │   │       ├── from.iso-8859-4.php
│   │   │   │   │       ├── from.iso-8859-5 2.php
│   │   │   │   │       ├── from.iso-8859-5.php
│   │   │   │   │       ├── from.iso-8859-6 2.php
│   │   │   │   │       ├── from.iso-8859-6.php
│   │   │   │   │       ├── from.iso-8859-7 2.php
│   │   │   │   │       ├── from.iso-8859-7.php
│   │   │   │   │       ├── from.iso-8859-8 2.php
│   │   │   │   │       ├── from.iso-8859-8.php
│   │   │   │   │       ├── from.iso-8859-9 2.php
│   │   │   │   │       ├── from.iso-8859-9.php
│   │   │   │   │       ├── from.koi8-r 2.php
│   │   │   │   │       ├── from.koi8-r.php
│   │   │   │   │       ├── from.koi8-u 2.php
│   │   │   │   │       ├── from.koi8-u.php
│   │   │   │   │       ├── from.us-ascii 2.php
│   │   │   │   │       ├── from.us-ascii.php
│   │   │   │   │       ├── from.windows-1250 2.php
│   │   │   │   │       ├── from.windows-1250.php
│   │   │   │   │       ├── from.windows-1251 2.php
│   │   │   │   │       ├── from.windows-1251.php
│   │   │   │   │       ├── from.windows-1252 2.php
│   │   │   │   │       ├── from.windows-1252.php
│   │   │   │   │       ├── from.windows-1253 2.php
│   │   │   │   │       ├── from.windows-1253.php
│   │   │   │   │       ├── from.windows-1254 2.php
│   │   │   │   │       ├── from.windows-1254.php
│   │   │   │   │       ├── from.windows-1255 2.php
│   │   │   │   │       ├── from.windows-1255.php
│   │   │   │   │       ├── from.windows-1256 2.php
│   │   │   │   │       ├── from.windows-1256.php
│   │   │   │   │       ├── from.windows-1257 2.php
│   │   │   │   │       ├── from.windows-1257.php
│   │   │   │   │       ├── from.windows-1258 2.php
│   │   │   │   │       ├── from.windows-1258.php
│   │   │   │   │       ├── translit 2.php
│   │   │   │   │       └── translit.php
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-intl-grapheme
│   │   │   │   ├── Grapheme 2.php
│   │   │   │   ├── Grapheme.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-intl-idn
│   │   │   │   ├── Idn 2.php
│   │   │   │   ├── Idn.php
│   │   │   │   ├── Info 2.php
│   │   │   │   ├── Info.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   └── unidata
│   │   │   │   │       ├── DisallowedRanges 2.php
│   │   │   │   │       ├── DisallowedRanges.php
│   │   │   │   │       ├── Regex 2.php
│   │   │   │   │       ├── Regex.php
│   │   │   │   │       ├── deviation 2.php
│   │   │   │   │       ├── deviation.php
│   │   │   │   │       ├── disallowed 2.php
│   │   │   │   │       ├── disallowed.php
│   │   │   │   │       ├── disallowed_STD3_mapped 2.php
│   │   │   │   │       ├── disallowed_STD3_mapped.php
│   │   │   │   │       ├── disallowed_STD3_valid 2.php
│   │   │   │   │       ├── disallowed_STD3_valid.php
│   │   │   │   │       ├── ignored 2.php
│   │   │   │   │       ├── ignored.php
│   │   │   │   │       ├── mapped 2.php
│   │   │   │   │       ├── mapped.php
│   │   │   │   │       ├── virama 2.php
│   │   │   │   │       └── virama.php
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-intl-normalizer
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Normalizer 2.php
│   │   │   │   ├── Normalizer.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   ├── stubs
│   │   │   │   │   │   ├── Normalizer 2.php
│   │   │   │   │   │   └── Normalizer.php
│   │   │   │   │   └── unidata
│   │   │   │   │       ├── canonicalComposition 2.php
│   │   │   │   │       ├── canonicalComposition.php
│   │   │   │   │       ├── canonicalDecomposition 2.php
│   │   │   │   │       ├── canonicalDecomposition.php
│   │   │   │   │       ├── combiningClass 2.php
│   │   │   │   │       ├── combiningClass.php
│   │   │   │   │       ├── compatibilityDecomposition 2.php
│   │   │   │   │       └── compatibilityDecomposition.php
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-mbstring
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Mbstring 2.php
│   │   │   │   ├── Mbstring.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   └── unidata
│   │   │   │   │       ├── lowerCase 2.php
│   │   │   │   │       ├── lowerCase.php
│   │   │   │   │       ├── titleCaseRegexp 2.php
│   │   │   │   │       ├── titleCaseRegexp.php
│   │   │   │   │       ├── upperCase 2.php
│   │   │   │   │       └── upperCase.php
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-php72
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Php72 2.php
│   │   │   │   ├── Php72.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-php73
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Php73 2.php
│   │   │   │   ├── Php73.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   └── stubs
│   │   │   │   │       ├── JsonException 2.php
│   │   │   │   │       └── JsonException.php
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── polyfill-php80
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Php80 2.php
│   │   │   │   ├── Php80.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   └── stubs
│   │   │   │   │       ├── Attribute.php
│   │   │   │   │       ├── Stringable 2.php
│   │   │   │   │       ├── Stringable.php
│   │   │   │   │       ├── UnhandledMatchError 2.php
│   │   │   │   │       ├── UnhandledMatchError.php
│   │   │   │   │       ├── ValueError 2.php
│   │   │   │   │       └── ValueError.php
│   │   │   │   ├── bootstrap 2.php
│   │   │   │   ├── bootstrap.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── process
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Exception
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── InvalidArgumentException 2.php
│   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   ├── LogicException 2.php
│   │   │   │   │   ├── LogicException.php
│   │   │   │   │   ├── ProcessFailedException 2.php
│   │   │   │   │   ├── ProcessFailedException.php
│   │   │   │   │   ├── ProcessSignaledException 2.php
│   │   │   │   │   ├── ProcessSignaledException.php
│   │   │   │   │   ├── ProcessTimedOutException 2.php
│   │   │   │   │   ├── ProcessTimedOutException.php
│   │   │   │   │   ├── RuntimeException 2.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── ExecutableFinder 2.php
│   │   │   │   ├── ExecutableFinder.php
│   │   │   │   ├── InputStream 2.php
│   │   │   │   ├── InputStream.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── PhpExecutableFinder 2.php
│   │   │   │   ├── PhpExecutableFinder.php
│   │   │   │   ├── PhpProcess 2.php
│   │   │   │   ├── PhpProcess.php
│   │   │   │   ├── Pipes
│   │   │   │   │   ├── AbstractPipes 2.php
│   │   │   │   │   ├── AbstractPipes.php
│   │   │   │   │   ├── PipesInterface 2.php
│   │   │   │   │   ├── PipesInterface.php
│   │   │   │   │   ├── UnixPipes 2.php
│   │   │   │   │   ├── UnixPipes.php
│   │   │   │   │   ├── WindowsPipes 2.php
│   │   │   │   │   └── WindowsPipes.php
│   │   │   │   ├── Process 2.php
│   │   │   │   ├── Process.php
│   │   │   │   ├── ProcessUtils 2.php
│   │   │   │   ├── ProcessUtils.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── routing
│   │   │   │   ├── Annotation
│   │   │   │   │   ├── Route 2.php
│   │   │   │   │   └── Route.php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── CompiledRoute 2.php
│   │   │   │   ├── CompiledRoute.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── RoutingResolverPass 2.php
│   │   │   │   │   └── RoutingResolverPass.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── InvalidParameterException 2.php
│   │   │   │   │   ├── InvalidParameterException.php
│   │   │   │   │   ├── MethodNotAllowedException 2.php
│   │   │   │   │   ├── MethodNotAllowedException.php
│   │   │   │   │   ├── MissingMandatoryParametersException 2.php
│   │   │   │   │   ├── MissingMandatoryParametersException.php
│   │   │   │   │   ├── NoConfigurationException 2.php
│   │   │   │   │   ├── NoConfigurationException.php
│   │   │   │   │   ├── ResourceNotFoundException 2.php
│   │   │   │   │   ├── ResourceNotFoundException.php
│   │   │   │   │   ├── RouteNotFoundException 2.php
│   │   │   │   │   └── RouteNotFoundException.php
│   │   │   │   ├── Generator
│   │   │   │   │   ├── CompiledUrlGenerator 2.php
│   │   │   │   │   ├── CompiledUrlGenerator.php
│   │   │   │   │   ├── ConfigurableRequirementsInterface 2.php
│   │   │   │   │   ├── ConfigurableRequirementsInterface.php
│   │   │   │   │   ├── Dumper
│   │   │   │   │   │   ├── CompiledUrlGeneratorDumper 2.php
│   │   │   │   │   │   ├── CompiledUrlGeneratorDumper.php
│   │   │   │   │   │   ├── GeneratorDumper 2.php
│   │   │   │   │   │   ├── GeneratorDumper.php
│   │   │   │   │   │   ├── GeneratorDumperInterface 2.php
│   │   │   │   │   │   └── GeneratorDumperInterface.php
│   │   │   │   │   ├── UrlGenerator 2.php
│   │   │   │   │   ├── UrlGenerator.php
│   │   │   │   │   ├── UrlGeneratorInterface 2.php
│   │   │   │   │   └── UrlGeneratorInterface.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Loader
│   │   │   │   │   ├── AnnotationClassLoader 2.php
│   │   │   │   │   ├── AnnotationClassLoader.php
│   │   │   │   │   ├── AnnotationDirectoryLoader 2.php
│   │   │   │   │   ├── AnnotationDirectoryLoader.php
│   │   │   │   │   ├── AnnotationFileLoader 2.php
│   │   │   │   │   ├── AnnotationFileLoader.php
│   │   │   │   │   ├── ClosureLoader 2.php
│   │   │   │   │   ├── ClosureLoader.php
│   │   │   │   │   ├── Configurator
│   │   │   │   │   │   ├── CollectionConfigurator 2.php
│   │   │   │   │   │   ├── CollectionConfigurator.php
│   │   │   │   │   │   ├── ImportConfigurator 2.php
│   │   │   │   │   │   ├── ImportConfigurator.php
│   │   │   │   │   │   ├── RouteConfigurator 2.php
│   │   │   │   │   │   ├── RouteConfigurator.php
│   │   │   │   │   │   ├── RoutingConfigurator 2.php
│   │   │   │   │   │   ├── RoutingConfigurator.php
│   │   │   │   │   │   └── Traits
│   │   │   │   │   │       ├── AddTrait 2.php
│   │   │   │   │   │       ├── AddTrait.php
│   │   │   │   │   │       ├── HostTrait 2.php
│   │   │   │   │   │       ├── HostTrait.php
│   │   │   │   │   │       ├── LocalizedRouteTrait 2.php
│   │   │   │   │   │       ├── LocalizedRouteTrait.php
│   │   │   │   │   │       ├── PrefixTrait 2.php
│   │   │   │   │   │       ├── PrefixTrait.php
│   │   │   │   │   │       ├── RouteTrait 2.php
│   │   │   │   │   │       └── RouteTrait.php
│   │   │   │   │   ├── ContainerLoader 2.php
│   │   │   │   │   ├── ContainerLoader.php
│   │   │   │   │   ├── DirectoryLoader 2.php
│   │   │   │   │   ├── DirectoryLoader.php
│   │   │   │   │   ├── GlobFileLoader 2.php
│   │   │   │   │   ├── GlobFileLoader.php
│   │   │   │   │   ├── ObjectLoader 2.php
│   │   │   │   │   ├── ObjectLoader.php
│   │   │   │   │   ├── PhpFileLoader 2.php
│   │   │   │   │   ├── PhpFileLoader.php
│   │   │   │   │   ├── XmlFileLoader 2.php
│   │   │   │   │   ├── XmlFileLoader.php
│   │   │   │   │   ├── YamlFileLoader 2.php
│   │   │   │   │   ├── YamlFileLoader.php
│   │   │   │   │   └── schema
│   │   │   │   │       └── routing
│   │   │   │   │           ├── routing-1.0 2.xsd
│   │   │   │   │           └── routing-1.0.xsd
│   │   │   │   ├── Matcher
│   │   │   │   │   ├── CompiledUrlMatcher 2.php
│   │   │   │   │   ├── CompiledUrlMatcher.php
│   │   │   │   │   ├── Dumper
│   │   │   │   │   │   ├── CompiledUrlMatcherDumper 2.php
│   │   │   │   │   │   ├── CompiledUrlMatcherDumper.php
│   │   │   │   │   │   ├── CompiledUrlMatcherTrait 2.php
│   │   │   │   │   │   ├── CompiledUrlMatcherTrait.php
│   │   │   │   │   │   ├── MatcherDumper 2.php
│   │   │   │   │   │   ├── MatcherDumper.php
│   │   │   │   │   │   ├── MatcherDumperInterface 2.php
│   │   │   │   │   │   ├── MatcherDumperInterface.php
│   │   │   │   │   │   ├── StaticPrefixCollection 2.php
│   │   │   │   │   │   └── StaticPrefixCollection.php
│   │   │   │   │   ├── ExpressionLanguageProvider 2.php
│   │   │   │   │   ├── ExpressionLanguageProvider.php
│   │   │   │   │   ├── RedirectableUrlMatcher 2.php
│   │   │   │   │   ├── RedirectableUrlMatcher.php
│   │   │   │   │   ├── RedirectableUrlMatcherInterface 2.php
│   │   │   │   │   ├── RedirectableUrlMatcherInterface.php
│   │   │   │   │   ├── RequestMatcherInterface 2.php
│   │   │   │   │   ├── RequestMatcherInterface.php
│   │   │   │   │   ├── TraceableUrlMatcher 2.php
│   │   │   │   │   ├── TraceableUrlMatcher.php
│   │   │   │   │   ├── UrlMatcher 2.php
│   │   │   │   │   ├── UrlMatcher.php
│   │   │   │   │   ├── UrlMatcherInterface 2.php
│   │   │   │   │   └── UrlMatcherInterface.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── RequestContext 2.php
│   │   │   │   ├── RequestContext.php
│   │   │   │   ├── RequestContextAwareInterface 2.php
│   │   │   │   ├── RequestContextAwareInterface.php
│   │   │   │   ├── Route 2.php
│   │   │   │   ├── Route.php
│   │   │   │   ├── RouteCollection 2.php
│   │   │   │   ├── RouteCollection.php
│   │   │   │   ├── RouteCollectionBuilder 2.php
│   │   │   │   ├── RouteCollectionBuilder.php
│   │   │   │   ├── RouteCompiler 2.php
│   │   │   │   ├── RouteCompiler.php
│   │   │   │   ├── RouteCompilerInterface 2.php
│   │   │   │   ├── RouteCompilerInterface.php
│   │   │   │   ├── Router 2.php
│   │   │   │   ├── Router.php
│   │   │   │   ├── RouterInterface 2.php
│   │   │   │   ├── RouterInterface.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── service-contracts
│   │   │   │   ├── Attribute
│   │   │   │   │   └── Required.php
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── ResetInterface.php
│   │   │   │   ├── ServiceLocatorTrait.php
│   │   │   │   ├── ServiceProviderInterface.php
│   │   │   │   ├── ServiceSubscriberInterface.php
│   │   │   │   ├── ServiceSubscriberTrait.php
│   │   │   │   ├── Test
│   │   │   │   │   └── ServiceLocatorTest.php
│   │   │   │   └── composer.json
│   │   │   ├── string
│   │   │   │   ├── AbstractString 2.php
│   │   │   │   ├── AbstractString.php
│   │   │   │   ├── AbstractUnicodeString 2.php
│   │   │   │   ├── AbstractUnicodeString.php
│   │   │   │   ├── ByteString 2.php
│   │   │   │   ├── ByteString.php
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── CodePointString 2.php
│   │   │   │   ├── CodePointString.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── InvalidArgumentException 2.php
│   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   ├── RuntimeException 2.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── Inflector
│   │   │   │   │   ├── EnglishInflector 2.php
│   │   │   │   │   ├── EnglishInflector.php
│   │   │   │   │   ├── InflectorInterface 2.php
│   │   │   │   │   └── InflectorInterface.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── LazyString 2.php
│   │   │   │   ├── LazyString.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Resources
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── wcswidth_table_wide 2.php
│   │   │   │   │   │   ├── wcswidth_table_wide.php
│   │   │   │   │   │   ├── wcswidth_table_zero 2.php
│   │   │   │   │   │   └── wcswidth_table_zero.php
│   │   │   │   │   ├── functions 2.php
│   │   │   │   │   └── functions.php
│   │   │   │   ├── Slugger
│   │   │   │   │   ├── AsciiSlugger 2.php
│   │   │   │   │   ├── AsciiSlugger.php
│   │   │   │   │   ├── SluggerInterface 2.php
│   │   │   │   │   └── SluggerInterface.php
│   │   │   │   ├── UnicodeString 2.php
│   │   │   │   ├── UnicodeString.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── translation
│   │   │   │   ├── CHANGELOG 2.md
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── Catalogue
│   │   │   │   │   ├── AbstractOperation 2.php
│   │   │   │   │   ├── AbstractOperation.php
│   │   │   │   │   ├── MergeOperation 2.php
│   │   │   │   │   ├── MergeOperation.php
│   │   │   │   │   ├── OperationInterface 2.php
│   │   │   │   │   ├── OperationInterface.php
│   │   │   │   │   ├── TargetOperation 2.php
│   │   │   │   │   └── TargetOperation.php
│   │   │   │   ├── Command
│   │   │   │   │   ├── XliffLintCommand 2.php
│   │   │   │   │   └── XliffLintCommand.php
│   │   │   │   ├── DataCollector
│   │   │   │   │   ├── TranslationDataCollector 2.php
│   │   │   │   │   └── TranslationDataCollector.php
│   │   │   │   ├── DataCollectorTranslator 2.php
│   │   │   │   ├── DataCollectorTranslator.php
│   │   │   │   ├── DependencyInjection
│   │   │   │   │   ├── TranslationDumperPass 2.php
│   │   │   │   │   ├── TranslationDumperPass.php
│   │   │   │   │   ├── TranslationExtractorPass 2.php
│   │   │   │   │   ├── TranslationExtractorPass.php
│   │   │   │   │   ├── TranslatorPass 2.php
│   │   │   │   │   ├── TranslatorPass.php
│   │   │   │   │   ├── TranslatorPathsPass 2.php
│   │   │   │   │   └── TranslatorPathsPass.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── CsvFileDumper 2.php
│   │   │   │   │   ├── CsvFileDumper.php
│   │   │   │   │   ├── DumperInterface 2.php
│   │   │   │   │   ├── DumperInterface.php
│   │   │   │   │   ├── FileDumper 2.php
│   │   │   │   │   ├── FileDumper.php
│   │   │   │   │   ├── IcuResFileDumper 2.php
│   │   │   │   │   ├── IcuResFileDumper.php
│   │   │   │   │   ├── IniFileDumper 2.php
│   │   │   │   │   ├── IniFileDumper.php
│   │   │   │   │   ├── JsonFileDumper 2.php
│   │   │   │   │   ├── JsonFileDumper.php
│   │   │   │   │   ├── MoFileDumper 2.php
│   │   │   │   │   ├── MoFileDumper.php
│   │   │   │   │   ├── PhpFileDumper 2.php
│   │   │   │   │   ├── PhpFileDumper.php
│   │   │   │   │   ├── PoFileDumper 2.php
│   │   │   │   │   ├── PoFileDumper.php
│   │   │   │   │   ├── QtFileDumper 2.php
│   │   │   │   │   ├── QtFileDumper.php
│   │   │   │   │   ├── XliffFileDumper 2.php
│   │   │   │   │   ├── XliffFileDumper.php
│   │   │   │   │   ├── YamlFileDumper 2.php
│   │   │   │   │   └── YamlFileDumper.php
│   │   │   │   ├── Exception
│   │   │   │   │   ├── ExceptionInterface 2.php
│   │   │   │   │   ├── ExceptionInterface.php
│   │   │   │   │   ├── InvalidArgumentException 2.php
│   │   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   │   ├── InvalidResourceException 2.php
│   │   │   │   │   ├── InvalidResourceException.php
│   │   │   │   │   ├── LogicException 2.php
│   │   │   │   │   ├── LogicException.php
│   │   │   │   │   ├── NotFoundResourceException 2.php
│   │   │   │   │   ├── NotFoundResourceException.php
│   │   │   │   │   ├── RuntimeException 2.php
│   │   │   │   │   └── RuntimeException.php
│   │   │   │   ├── Extractor
│   │   │   │   │   ├── AbstractFileExtractor 2.php
│   │   │   │   │   ├── AbstractFileExtractor.php
│   │   │   │   │   ├── ChainExtractor 2.php
│   │   │   │   │   ├── ChainExtractor.php
│   │   │   │   │   ├── ExtractorInterface 2.php
│   │   │   │   │   ├── ExtractorInterface.php
│   │   │   │   │   ├── PhpExtractor 2.php
│   │   │   │   │   ├── PhpExtractor.php
│   │   │   │   │   ├── PhpStringTokenParser 2.php
│   │   │   │   │   └── PhpStringTokenParser.php
│   │   │   │   ├── Formatter
│   │   │   │   │   ├── IntlFormatter 2.php
│   │   │   │   │   ├── IntlFormatter.php
│   │   │   │   │   ├── IntlFormatterInterface 2.php
│   │   │   │   │   ├── IntlFormatterInterface.php
│   │   │   │   │   ├── MessageFormatter 2.php
│   │   │   │   │   ├── MessageFormatter.php
│   │   │   │   │   ├── MessageFormatterInterface 2.php
│   │   │   │   │   └── MessageFormatterInterface.php
│   │   │   │   ├── IdentityTranslator 2.php
│   │   │   │   ├── IdentityTranslator.php
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LICENSE 2
│   │   │   │   ├── Loader
│   │   │   │   │   ├── ArrayLoader 2.php
│   │   │   │   │   ├── ArrayLoader.php
│   │   │   │   │   ├── CsvFileLoader 2.php
│   │   │   │   │   ├── CsvFileLoader.php
│   │   │   │   │   ├── FileLoader 2.php
│   │   │   │   │   ├── FileLoader.php
│   │   │   │   │   ├── IcuDatFileLoader 2.php
│   │   │   │   │   ├── IcuDatFileLoader.php
│   │   │   │   │   ├── IcuResFileLoader 2.php
│   │   │   │   │   ├── IcuResFileLoader.php
│   │   │   │   │   ├── IniFileLoader 2.php
│   │   │   │   │   ├── IniFileLoader.php
│   │   │   │   │   ├── JsonFileLoader 2.php
│   │   │   │   │   ├── JsonFileLoader.php
│   │   │   │   │   ├── LoaderInterface 2.php
│   │   │   │   │   ├── LoaderInterface.php
│   │   │   │   │   ├── MoFileLoader 2.php
│   │   │   │   │   ├── MoFileLoader.php
│   │   │   │   │   ├── PhpFileLoader 2.php
│   │   │   │   │   ├── PhpFileLoader.php
│   │   │   │   │   ├── PoFileLoader 2.php
│   │   │   │   │   ├── PoFileLoader.php
│   │   │   │   │   ├── QtFileLoader 2.php
│   │   │   │   │   ├── QtFileLoader.php
│   │   │   │   │   ├── XliffFileLoader 2.php
│   │   │   │   │   ├── XliffFileLoader.php
│   │   │   │   │   ├── YamlFileLoader 2.php
│   │   │   │   │   └── YamlFileLoader.php
│   │   │   │   ├── LoggingTranslator 2.php
│   │   │   │   ├── LoggingTranslator.php
│   │   │   │   ├── MessageCatalogue 2.php
│   │   │   │   ├── MessageCatalogue.php
│   │   │   │   ├── MessageCatalogueInterface 2.php
│   │   │   │   ├── MessageCatalogueInterface.php
│   │   │   │   ├── MetadataAwareInterface 2.php
│   │   │   │   ├── MetadataAwareInterface.php
│   │   │   │   ├── README 2.md
│   │   │   │   ├── README.md
│   │   │   │   ├── Reader
│   │   │   │   │   ├── TranslationReader 2.php
│   │   │   │   │   ├── TranslationReader.php
│   │   │   │   │   ├── TranslationReaderInterface 2.php
│   │   │   │   │   └── TranslationReaderInterface.php
│   │   │   │   ├── Resources
│   │   │   │   │   ├── bin
│   │   │   │   │   │   ├── translation-status 2.php
│   │   │   │   │   │   └── translation-status.php
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── parents 2.json
│   │   │   │   │   │   └── parents.json
│   │   │   │   │   └── schemas
│   │   │   │   │       ├── xliff-core-1.2-strict 2.xsd
│   │   │   │   │       ├── xliff-core-1.2-strict.xsd
│   │   │   │   │       ├── xliff-core-2.0 2.xsd
│   │   │   │   │       ├── xliff-core-2.0.xsd
│   │   │   │   │       ├── xml 2.xsd
│   │   │   │   │       └── xml.xsd
│   │   │   │   ├── Translator 2.php
│   │   │   │   ├── Translator.php
│   │   │   │   ├── TranslatorBagInterface 2.php
│   │   │   │   ├── TranslatorBagInterface.php
│   │   │   │   ├── Util
│   │   │   │   │   ├── ArrayConverter 2.php
│   │   │   │   │   ├── ArrayConverter.php
│   │   │   │   │   ├── XliffUtils 2.php
│   │   │   │   │   └── XliffUtils.php
│   │   │   │   ├── Writer
│   │   │   │   │   ├── TranslationWriter 2.php
│   │   │   │   │   ├── TranslationWriter.php
│   │   │   │   │   ├── TranslationWriterInterface 2.php
│   │   │   │   │   └── TranslationWriterInterface.php
│   │   │   │   ├── composer 2.json
│   │   │   │   └── composer.json
│   │   │   ├── translation-contracts
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── LocaleAwareInterface.php
│   │   │   │   ├── README.md
│   │   │   │   ├── Test
│   │   │   │   │   └── TranslatorTest.php
│   │   │   │   ├── TranslatableInterface.php
│   │   │   │   ├── TranslatorInterface.php
│   │   │   │   ├── TranslatorTrait.php
│   │   │   │   └── composer.json
│   │   │   └── var-dumper
│   │   │       ├── CHANGELOG 2.md
│   │   │       ├── CHANGELOG.md
│   │   │       ├── Caster
│   │   │       │   ├── AmqpCaster 2.php
│   │   │       │   ├── AmqpCaster.php
│   │   │       │   ├── ArgsStub 2.php
│   │   │       │   ├── ArgsStub.php
│   │   │       │   ├── Caster 2.php
│   │   │       │   ├── Caster.php
│   │   │       │   ├── ClassStub 2.php
│   │   │       │   ├── ClassStub.php
│   │   │       │   ├── ConstStub 2.php
│   │   │       │   ├── ConstStub.php
│   │   │       │   ├── CutArrayStub 2.php
│   │   │       │   ├── CutArrayStub.php
│   │   │       │   ├── CutStub 2.php
│   │   │       │   ├── CutStub.php
│   │   │       │   ├── DOMCaster 2.php
│   │   │       │   ├── DOMCaster.php
│   │   │       │   ├── DateCaster 2.php
│   │   │       │   ├── DateCaster.php
│   │   │       │   ├── DoctrineCaster 2.php
│   │   │       │   ├── DoctrineCaster.php
│   │   │       │   ├── DsCaster 2.php
│   │   │       │   ├── DsCaster.php
│   │   │       │   ├── DsPairStub 2.php
│   │   │       │   ├── DsPairStub.php
│   │   │       │   ├── EnumStub 2.php
│   │   │       │   ├── EnumStub.php
│   │   │       │   ├── ExceptionCaster 2.php
│   │   │       │   ├── ExceptionCaster.php
│   │   │       │   ├── FrameStub 2.php
│   │   │       │   ├── FrameStub.php
│   │   │       │   ├── GmpCaster 2.php
│   │   │       │   ├── GmpCaster.php
│   │   │       │   ├── ImagineCaster 2.php
│   │   │       │   ├── ImagineCaster.php
│   │   │       │   ├── ImgStub 2.php
│   │   │       │   ├── ImgStub.php
│   │   │       │   ├── IntlCaster 2.php
│   │   │       │   ├── IntlCaster.php
│   │   │       │   ├── LinkStub 2.php
│   │   │       │   ├── LinkStub.php
│   │   │       │   ├── MemcachedCaster 2.php
│   │   │       │   ├── MemcachedCaster.php
│   │   │       │   ├── PdoCaster 2.php
│   │   │       │   ├── PdoCaster.php
│   │   │       │   ├── PgSqlCaster 2.php
│   │   │       │   ├── PgSqlCaster.php
│   │   │       │   ├── ProxyManagerCaster 2.php
│   │   │       │   ├── ProxyManagerCaster.php
│   │   │       │   ├── RdKafkaCaster 2.php
│   │   │       │   ├── RdKafkaCaster.php
│   │   │       │   ├── RedisCaster 2.php
│   │   │       │   ├── RedisCaster.php
│   │   │       │   ├── ReflectionCaster 2.php
│   │   │       │   ├── ReflectionCaster.php
│   │   │       │   ├── ResourceCaster 2.php
│   │   │       │   ├── ResourceCaster.php
│   │   │       │   ├── SplCaster 2.php
│   │   │       │   ├── SplCaster.php
│   │   │       │   ├── StubCaster 2.php
│   │   │       │   ├── StubCaster.php
│   │   │       │   ├── SymfonyCaster 2.php
│   │   │       │   ├── SymfonyCaster.php
│   │   │       │   ├── TraceStub 2.php
│   │   │       │   ├── TraceStub.php
│   │   │       │   ├── UuidCaster 2.php
│   │   │       │   ├── UuidCaster.php
│   │   │       │   ├── XmlReaderCaster 2.php
│   │   │       │   ├── XmlReaderCaster.php
│   │   │       │   ├── XmlResourceCaster 2.php
│   │   │       │   └── XmlResourceCaster.php
│   │   │       ├── Cloner
│   │   │       │   ├── AbstractCloner 2.php
│   │   │       │   ├── AbstractCloner.php
│   │   │       │   ├── ClonerInterface 2.php
│   │   │       │   ├── ClonerInterface.php
│   │   │       │   ├── Cursor 2.php
│   │   │       │   ├── Cursor.php
│   │   │       │   ├── Data 2.php
│   │   │       │   ├── Data.php
│   │   │       │   ├── DumperInterface 2.php
│   │   │       │   ├── DumperInterface.php
│   │   │       │   ├── Stub 2.php
│   │   │       │   ├── Stub.php
│   │   │       │   ├── VarCloner 2.php
│   │   │       │   └── VarCloner.php
│   │   │       ├── Command
│   │   │       │   ├── Descriptor
│   │   │       │   │   ├── CliDescriptor 2.php
│   │   │       │   │   ├── CliDescriptor.php
│   │   │       │   │   ├── DumpDescriptorInterface 2.php
│   │   │       │   │   ├── DumpDescriptorInterface.php
│   │   │       │   │   ├── HtmlDescriptor 2.php
│   │   │       │   │   └── HtmlDescriptor.php
│   │   │       │   ├── ServerDumpCommand 2.php
│   │   │       │   └── ServerDumpCommand.php
│   │   │       ├── Dumper
│   │   │       │   ├── AbstractDumper 2.php
│   │   │       │   ├── AbstractDumper.php
│   │   │       │   ├── CliDumper 2.php
│   │   │       │   ├── CliDumper.php
│   │   │       │   ├── ContextProvider
│   │   │       │   │   ├── CliContextProvider 2.php
│   │   │       │   │   ├── CliContextProvider.php
│   │   │       │   │   ├── ContextProviderInterface 2.php
│   │   │       │   │   ├── ContextProviderInterface.php
│   │   │       │   │   ├── RequestContextProvider 2.php
│   │   │       │   │   ├── RequestContextProvider.php
│   │   │       │   │   ├── SourceContextProvider 2.php
│   │   │       │   │   └── SourceContextProvider.php
│   │   │       │   ├── ContextualizedDumper 2.php
│   │   │       │   ├── ContextualizedDumper.php
│   │   │       │   ├── DataDumperInterface 2.php
│   │   │       │   ├── DataDumperInterface.php
│   │   │       │   ├── HtmlDumper 2.php
│   │   │       │   ├── HtmlDumper.php
│   │   │       │   ├── ServerDumper 2.php
│   │   │       │   └── ServerDumper.php
│   │   │       ├── Exception
│   │   │       │   ├── ThrowingCasterException 2.php
│   │   │       │   └── ThrowingCasterException.php
│   │   │       ├── LICENSE
│   │   │       ├── LICENSE 2
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── Resources
│   │   │       │   ├── bin
│   │   │       │   │   ├── var-dump-server
│   │   │       │   │   └── var-dump-server 2
│   │   │       │   ├── css
│   │   │       │   │   ├── htmlDescriptor 2.css
│   │   │       │   │   └── htmlDescriptor.css
│   │   │       │   ├── functions
│   │   │       │   │   ├── dump 2.php
│   │   │       │   │   └── dump.php
│   │   │       │   └── js
│   │   │       │       ├── htmlDescriptor 2.js
│   │   │       │       └── htmlDescriptor.js
│   │   │       ├── Server
│   │   │       │   ├── Connection 2.php
│   │   │       │   ├── Connection.php
│   │   │       │   ├── DumpServer 2.php
│   │   │       │   └── DumpServer.php
│   │   │       ├── Test
│   │   │       │   ├── VarDumperTestTrait 2.php
│   │   │       │   └── VarDumperTestTrait.php
│   │   │       ├── VarDumper 2.php
│   │   │       ├── VarDumper.php
│   │   │       ├── composer 2.json
│   │   │       └── composer.json
│   │   ├── theseer
│   │   │   └── tokenizer
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── Exception.php
│   │   │           ├── NamespaceUri.php
│   │   │           ├── NamespaceUriException.php
│   │   │           ├── Token.php
│   │   │           ├── TokenCollection.php
│   │   │           ├── TokenCollectionException.php
│   │   │           ├── Tokenizer.php
│   │   │           └── XMLSerializer.php
│   │   ├── tijsverkoyen
│   │   │   └── css-to-inline-styles
│   │   │       ├── LICENSE.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── Css
│   │   │           │   ├── Processor.php
│   │   │           │   ├── Property
│   │   │           │   │   ├── Processor.php
│   │   │           │   │   └── Property.php
│   │   │           │   └── Rule
│   │   │           │       ├── Processor.php
│   │   │           │       └── Rule.php
│   │   │           └── CssToInlineStyles.php
│   │   ├── vlucas
│   │   │   └── phpdotenv
│   │   │       ├── LICENSE
│   │   │       ├── Makefile
│   │   │       ├── composer.json
│   │   │       ├── phpstan.src.neon.dist
│   │   │       └── src
│   │   │           ├── Dotenv.php
│   │   │           ├── Exception
│   │   │           │   ├── ExceptionInterface.php
│   │   │           │   ├── InvalidFileException.php
│   │   │           │   ├── InvalidPathException.php
│   │   │           │   └── ValidationException.php
│   │   │           ├── Loader
│   │   │           │   ├── Lines.php
│   │   │           │   ├── Loader.php
│   │   │           │   ├── LoaderInterface.php
│   │   │           │   ├── Parser.php
│   │   │           │   └── Value.php
│   │   │           ├── Regex
│   │   │           │   └── Regex.php
│   │   │           ├── Repository
│   │   │           │   ├── AbstractRepository.php
│   │   │           │   ├── Adapter
│   │   │           │   │   ├── ApacheAdapter.php
│   │   │           │   │   ├── ArrayAdapter.php
│   │   │           │   │   ├── AvailabilityInterface.php
│   │   │           │   │   ├── EnvConstAdapter.php
│   │   │           │   │   ├── PutenvAdapter.php
│   │   │           │   │   ├── ReaderInterface.php
│   │   │           │   │   ├── ServerConstAdapter.php
│   │   │           │   │   └── WriterInterface.php
│   │   │           │   ├── AdapterRepository.php
│   │   │           │   ├── RepositoryBuilder.php
│   │   │           │   └── RepositoryInterface.php
│   │   │           ├── Result
│   │   │           │   ├── Error.php
│   │   │           │   ├── Result.php
│   │   │           │   └── Success.php
│   │   │           ├── Store
│   │   │           │   ├── File
│   │   │           │   │   ├── Paths.php
│   │   │           │   │   └── Reader.php
│   │   │           │   ├── FileStore.php
│   │   │           │   ├── StoreBuilder.php
│   │   │           │   └── StoreInterface.php
│   │   │           └── Validator.php
│   │   ├── voku
│   │   │   └── portable-ascii
│   │   │       ├── CHANGELOG 2.md
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE 2.txt
│   │   │       ├── LICENSE.txt
│   │   │       ├── README 2.md
│   │   │       ├── README.md
│   │   │       ├── build
│   │   │       │   ├── composer 2.json
│   │   │       │   ├── composer.json
│   │   │       │   ├── docs
│   │   │       │   │   ├── base 2.md
│   │   │       │   │   └── base.md
│   │   │       │   ├── generate_docs 2.php
│   │   │       │   ├── generate_docs.php
│   │   │       │   ├── generate_max_key_length 2.php
│   │   │       │   └── generate_max_key_length.php
│   │   │       ├── composer 2.json
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           └── voku
│   │   │               └── helper
│   │   │                   ├── ASCII 2.php
│   │   │                   ├── ASCII.php
│   │   │                   └── data
│   │   │                       ├── ascii_by_languages 2.php
│   │   │                       ├── ascii_by_languages.php
│   │   │                       ├── ascii_extras_by_languages 2.php
│   │   │                       ├── ascii_extras_by_languages.php
│   │   │                       ├── ascii_language_max_key 2.php
│   │   │                       ├── ascii_language_max_key.php
│   │   │                       ├── ascii_ord 2.php
│   │   │                       ├── ascii_ord.php
│   │   │                       ├── x000 2.php
│   │   │                       ├── x000.php
│   │   │                       ├── x001 2.php
│   │   │                       ├── x001.php
│   │   │                       ├── x002 2.php
│   │   │                       ├── x002.php
│   │   │                       ├── x003 2.php
│   │   │                       ├── x003.php
│   │   │                       ├── x004 2.php
│   │   │                       ├── x004.php
│   │   │                       ├── x005 2.php
│   │   │                       ├── x005.php
│   │   │                       ├── x006 2.php
│   │   │                       ├── x006.php
│   │   │                       ├── x007 2.php
│   │   │                       ├── x007.php
│   │   │                       ├── x009 2.php
│   │   │                       ├── x009.php
│   │   │                       ├── x00a 2.php
│   │   │                       ├── x00a.php
│   │   │                       ├── x00b 2.php
│   │   │                       ├── x00b.php
│   │   │                       ├── x00c 2.php
│   │   │                       ├── x00c.php
│   │   │                       ├── x00d 2.php
│   │   │                       ├── x00d.php
│   │   │                       ├── x00e 2.php
│   │   │                       ├── x00e.php
│   │   │                       ├── x00f 2.php
│   │   │                       ├── x00f.php
│   │   │                       ├── x010 2.php
│   │   │                       ├── x010.php
│   │   │                       ├── x011 2.php
│   │   │                       ├── x011.php
│   │   │                       ├── x012 2.php
│   │   │                       ├── x012.php
│   │   │                       ├── x013 2.php
│   │   │                       ├── x013.php
│   │   │                       ├── x014 2.php
│   │   │                       ├── x014.php
│   │   │                       ├── x015 2.php
│   │   │                       ├── x015.php
│   │   │                       ├── x016 2.php
│   │   │                       ├── x016.php
│   │   │                       ├── x017 2.php
│   │   │                       ├── x017.php
│   │   │                       ├── x018 2.php
│   │   │                       ├── x018.php
│   │   │                       ├── x01d 2.php
│   │   │                       ├── x01d.php
│   │   │                       ├── x01e 2.php
│   │   │                       ├── x01e.php
│   │   │                       ├── x01f 2.php
│   │   │                       ├── x01f.php
│   │   │                       ├── x020 2.php
│   │   │                       ├── x020.php
│   │   │                       ├── x021 2.php
│   │   │                       ├── x021.php
│   │   │                       ├── x022 2.php
│   │   │                       ├── x022.php
│   │   │                       ├── x023 2.php
│   │   │                       ├── x023.php
│   │   │                       ├── x024 2.php
│   │   │                       ├── x024.php
│   │   │                       ├── x025 2.php
│   │   │                       ├── x025.php
│   │   │                       ├── x026 2.php
│   │   │                       ├── x026.php
│   │   │                       ├── x027 2.php
│   │   │                       ├── x027.php
│   │   │                       ├── x028 2.php
│   │   │                       ├── x028.php
│   │   │                       ├── x029 2.php
│   │   │                       ├── x029.php
│   │   │                       ├── x02a 2.php
│   │   │                       ├── x02a.php
│   │   │                       ├── x02c 2.php
│   │   │                       ├── x02c.php
│   │   │                       ├── x02e 2.php
│   │   │                       ├── x02e.php
│   │   │                       ├── x02f 2.php
│   │   │                       ├── x02f.php
│   │   │                       ├── x030 2.php
│   │   │                       ├── x030.php
│   │   │                       ├── x031 2.php
│   │   │                       ├── x031.php
│   │   │                       ├── x032 2.php
│   │   │                       ├── x032.php
│   │   │                       ├── x033 2.php
│   │   │                       ├── x033.php
│   │   │                       ├── x04d 2.php
│   │   │                       ├── x04d.php
│   │   │                       ├── x04e 2.php
│   │   │                       ├── x04e.php
│   │   │                       ├── x04f 2.php
│   │   │                       ├── x04f.php
│   │   │                       ├── x050 2.php
│   │   │                       ├── x050.php
│   │   │                       ├── x051 2.php
│   │   │                       ├── x051.php
│   │   │                       ├── x052 2.php
│   │   │                       ├── x052.php
│   │   │                       ├── x053 2.php
│   │   │                       ├── x053.php
│   │   │                       ├── x054 2.php
│   │   │                       ├── x054.php
│   │   │                       ├── x055 2.php
│   │   │                       ├── x055.php
│   │   │                       ├── x056 2.php
│   │   │                       ├── x056.php
│   │   │                       ├── x057 2.php
│   │   │                       ├── x057.php
│   │   │                       ├── x058 2.php
│   │   │                       ├── x058.php
│   │   │                       ├── x059 2.php
│   │   │                       ├── x059.php
│   │   │                       ├── x05a 2.php
│   │   │                       ├── x05a.php
│   │   │                       ├── x05b 2.php
│   │   │                       ├── x05b.php
│   │   │                       ├── x05c 2.php
│   │   │                       ├── x05c.php
│   │   │                       ├── x05d 2.php
│   │   │                       ├── x05d.php
│   │   │                       ├── x05e 2.php
│   │   │                       ├── x05e.php
│   │   │                       ├── x05f 2.php
│   │   │                       ├── x05f.php
│   │   │                       ├── x060 2.php
│   │   │                       ├── x060.php
│   │   │                       ├── x061 2.php
│   │   │                       ├── x061.php
│   │   │                       ├── x062 2.php
│   │   │                       ├── x062.php
│   │   │                       ├── x063 2.php
│   │   │                       ├── x063.php
│   │   │                       ├── x064 2.php
│   │   │                       ├── x064.php
│   │   │                       ├── x065 2.php
│   │   │                       ├── x065.php
│   │   │                       ├── x066 2.php
│   │   │                       ├── x066.php
│   │   │                       ├── x067 2.php
│   │   │                       ├── x067.php
│   │   │                       ├── x068 2.php
│   │   │                       ├── x068.php
│   │   │                       ├── x069 2.php
│   │   │                       ├── x069.php
│   │   │                       ├── x06a 2.php
│   │   │                       ├── x06a.php
│   │   │                       ├── x06b 2.php
│   │   │                       ├── x06b.php
│   │   │                       ├── x06c 2.php
│   │   │                       ├── x06c.php
│   │   │                       ├── x06d 2.php
│   │   │                       ├── x06d.php
│   │   │                       ├── x06e 2.php
│   │   │                       ├── x06e.php
│   │   │                       ├── x06f 2.php
│   │   │                       ├── x06f.php
│   │   │                       ├── x070 2.php
│   │   │                       ├── x070.php
│   │   │                       ├── x071 2.php
│   │   │                       ├── x071.php
│   │   │                       ├── x072 2.php
│   │   │                       ├── x072.php
│   │   │                       ├── x073 2.php
│   │   │                       ├── x073.php
│   │   │                       ├── x074 2.php
│   │   │                       ├── x074.php
│   │   │                       ├── x075 2.php
│   │   │                       ├── x075.php
│   │   │                       ├── x076 2.php
│   │   │                       ├── x076.php
│   │   │                       ├── x077 2.php
│   │   │                       ├── x077.php
│   │   │                       ├── x078 2.php
│   │   │                       ├── x078.php
│   │   │                       ├── x079 2.php
│   │   │                       ├── x079.php
│   │   │                       ├── x07a 2.php
│   │   │                       ├── x07a.php
│   │   │                       ├── x07b 2.php
│   │   │                       ├── x07b.php
│   │   │                       ├── x07c 2.php
│   │   │                       ├── x07c.php
│   │   │                       ├── x07d 2.php
│   │   │                       ├── x07d.php
│   │   │                       ├── x07e 2.php
│   │   │                       ├── x07e.php
│   │   │                       ├── x07f 2.php
│   │   │                       ├── x07f.php
│   │   │                       ├── x080 2.php
│   │   │                       ├── x080.php
│   │   │                       ├── x081 2.php
│   │   │                       ├── x081.php
│   │   │                       ├── x082 2.php
│   │   │                       ├── x082.php
│   │   │                       ├── x083 2.php
│   │   │                       ├── x083.php
│   │   │                       ├── x084 2.php
│   │   │                       ├── x084.php
│   │   │                       ├── x085 2.php
│   │   │                       ├── x085.php
│   │   │                       ├── x086 2.php
│   │   │                       ├── x086.php
│   │   │                       ├── x087 2.php
│   │   │                       ├── x087.php
│   │   │                       ├── x088 2.php
│   │   │                       ├── x088.php
│   │   │                       ├── x089 2.php
│   │   │                       ├── x089.php
│   │   │                       ├── x08a 2.php
│   │   │                       ├── x08a.php
│   │   │                       ├── x08b 2.php
│   │   │                       ├── x08b.php
│   │   │                       ├── x08c 2.php
│   │   │                       ├── x08c.php
│   │   │                       ├── x08d 2.php
│   │   │                       ├── x08d.php
│   │   │                       ├── x08e 2.php
│   │   │                       ├── x08e.php
│   │   │                       ├── x08f 2.php
│   │   │                       ├── x08f.php
│   │   │                       ├── x090 2.php
│   │   │                       ├── x090.php
│   │   │                       ├── x091 2.php
│   │   │                       ├── x091.php
│   │   │                       ├── x092 2.php
│   │   │                       ├── x092.php
│   │   │                       ├── x093 2.php
│   │   │                       ├── x093.php
│   │   │                       ├── x094 2.php
│   │   │                       ├── x094.php
│   │   │                       ├── x095 2.php
│   │   │                       ├── x095.php
│   │   │                       ├── x096 2.php
│   │   │                       ├── x096.php
│   │   │                       ├── x097 2.php
│   │   │                       ├── x097.php
│   │   │                       ├── x098 2.php
│   │   │                       ├── x098.php
│   │   │                       ├── x099 2.php
│   │   │                       ├── x099.php
│   │   │                       ├── x09a 2.php
│   │   │                       ├── x09a.php
│   │   │                       ├── x09b 2.php
│   │   │                       ├── x09b.php
│   │   │                       ├── x09c 2.php
│   │   │                       ├── x09c.php
│   │   │                       ├── x09d 2.php
│   │   │                       ├── x09d.php
│   │   │                       ├── x09e 2.php
│   │   │                       ├── x09e.php
│   │   │                       ├── x09f 2.php
│   │   │                       ├── x09f.php
│   │   │                       ├── x0a0 2.php
│   │   │                       ├── x0a0.php
│   │   │                       ├── x0a1 2.php
│   │   │                       ├── x0a1.php
│   │   │                       ├── x0a2 2.php
│   │   │                       ├── x0a2.php
│   │   │                       ├── x0a3 2.php
│   │   │                       ├── x0a3.php
│   │   │                       ├── x0a4 2.php
│   │   │                       ├── x0a4.php
│   │   │                       ├── x0ac 2.php
│   │   │                       ├── x0ac.php
│   │   │                       ├── x0ad 2.php
│   │   │                       ├── x0ad.php
│   │   │                       ├── x0ae 2.php
│   │   │                       ├── x0ae.php
│   │   │                       ├── x0af 2.php
│   │   │                       ├── x0af.php
│   │   │                       ├── x0b0 2.php
│   │   │                       ├── x0b0.php
│   │   │                       ├── x0b1 2.php
│   │   │                       ├── x0b1.php
│   │   │                       ├── x0b2 2.php
│   │   │                       ├── x0b2.php
│   │   │                       ├── x0b3 2.php
│   │   │                       ├── x0b3.php
│   │   │                       ├── x0b4 2.php
│   │   │                       ├── x0b4.php
│   │   │                       ├── x0b5 2.php
│   │   │                       ├── x0b5.php
│   │   │                       ├── x0b6 2.php
│   │   │                       ├── x0b6.php
│   │   │                       ├── x0b7 2.php
│   │   │                       ├── x0b7.php
│   │   │                       ├── x0b8 2.php
│   │   │                       ├── x0b8.php
│   │   │                       ├── x0b9 2.php
│   │   │                       ├── x0b9.php
│   │   │                       ├── x0ba 2.php
│   │   │                       ├── x0ba.php
│   │   │                       ├── x0bb 2.php
│   │   │                       ├── x0bb.php
│   │   │                       ├── x0bc 2.php
│   │   │                       ├── x0bc.php
│   │   │                       ├── x0bd 2.php
│   │   │                       ├── x0bd.php
│   │   │                       ├── x0be 2.php
│   │   │                       ├── x0be.php
│   │   │                       ├── x0bf 2.php
│   │   │                       ├── x0bf.php
│   │   │                       ├── x0c0 2.php
│   │   │                       ├── x0c0.php
│   │   │                       ├── x0c1 2.php
│   │   │                       ├── x0c1.php
│   │   │                       ├── x0c2 2.php
│   │   │                       ├── x0c2.php
│   │   │                       ├── x0c3 2.php
│   │   │                       ├── x0c3.php
│   │   │                       ├── x0c4 2.php
│   │   │                       ├── x0c4.php
│   │   │                       ├── x0c5 2.php
│   │   │                       ├── x0c5.php
│   │   │                       ├── x0c6 2.php
│   │   │                       ├── x0c6.php
│   │   │                       ├── x0c7 2.php
│   │   │                       ├── x0c7.php
│   │   │                       ├── x0c8 2.php
│   │   │                       ├── x0c8.php
│   │   │                       ├── x0c9 2.php
│   │   │                       ├── x0c9.php
│   │   │                       ├── x0ca 2.php
│   │   │                       ├── x0ca.php
│   │   │                       ├── x0cb 2.php
│   │   │                       ├── x0cb.php
│   │   │                       ├── x0cc 2.php
│   │   │                       ├── x0cc.php
│   │   │                       ├── x0cd 2.php
│   │   │                       ├── x0cd.php
│   │   │                       ├── x0ce 2.php
│   │   │                       ├── x0ce.php
│   │   │                       ├── x0cf 2.php
│   │   │                       ├── x0cf.php
│   │   │                       ├── x0d0 2.php
│   │   │                       ├── x0d0.php
│   │   │                       ├── x0d1 2.php
│   │   │                       ├── x0d1.php
│   │   │                       ├── x0d2 2.php
│   │   │                       ├── x0d2.php
│   │   │                       ├── x0d3 2.php
│   │   │                       ├── x0d3.php
│   │   │                       ├── x0d4 2.php
│   │   │                       ├── x0d4.php
│   │   │                       ├── x0d5 2.php
│   │   │                       ├── x0d5.php
│   │   │                       ├── x0d6 2.php
│   │   │                       ├── x0d6.php
│   │   │                       ├── x0d7 2.php
│   │   │                       ├── x0d7.php
│   │   │                       ├── x0f9 2.php
│   │   │                       ├── x0f9.php
│   │   │                       ├── x0fa 2.php
│   │   │                       ├── x0fa.php
│   │   │                       ├── x0fb 2.php
│   │   │                       ├── x0fb.php
│   │   │                       ├── x0fc 2.php
│   │   │                       ├── x0fc.php
│   │   │                       ├── x0fd 2.php
│   │   │                       ├── x0fd.php
│   │   │                       ├── x0fe 2.php
│   │   │                       ├── x0fe.php
│   │   │                       ├── x0ff 2.php
│   │   │                       ├── x0ff.php
│   │   │                       ├── x1d4 2.php
│   │   │                       ├── x1d4.php
│   │   │                       ├── x1d5 2.php
│   │   │                       ├── x1d5.php
│   │   │                       ├── x1d6 2.php
│   │   │                       ├── x1d6.php
│   │   │                       ├── x1d7 2.php
│   │   │                       ├── x1d7.php
│   │   │                       ├── x1f1 2.php
│   │   │                       └── x1f1.php
│   │   └── webmozart
│   │       └── assert
│   │           ├── CHANGELOG.md
│   │           ├── LICENSE
│   │           ├── README.md
│   │           ├── composer.json
│   │           ├── psalm.xml
│   │           └── src
│   │               ├── Assert.php
│   │               └── Mixin.php
│   └── webpack.mix.js
├── vendor
│   ├── autoload.php
│   ├── bin
│   │   ├── carbon
│   │   ├── carbon.bat
│   │   ├── commonmark
│   │   ├── commonmark.bat
│   │   ├── php-parse
│   │   ├── php-parse.bat
│   │   ├── var-dump-server
│   │   └── var-dump-server.bat
│   ├── brick
│   │   └── math
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── SECURITY.md
│   │       ├── composer.json
│   │       ├── random-tests.php
│   │       └── src
│   │           ├── BigDecimal.php
│   │           ├── BigInteger.php
│   │           ├── BigNumber.php
│   │           ├── BigRational.php
│   │           ├── Exception
│   │           │   ├── DivisionByZeroException.php
│   │           │   ├── IntegerOverflowException.php
│   │           │   ├── MathException.php
│   │           │   ├── NegativeNumberException.php
│   │           │   ├── NumberFormatException.php
│   │           │   └── RoundingNecessaryException.php
│   │           ├── Internal
│   │           │   ├── Calculator
│   │           │   │   ├── BcMathCalculator.php
│   │           │   │   ├── GmpCalculator.php
│   │           │   │   └── NativeCalculator.php
│   │           │   └── Calculator.php
│   │           └── RoundingMode.php
│   ├── composer
│   │   ├── ClassLoader.php
│   │   ├── LICENSE
│   │   ├── autoload_classmap.php
│   │   ├── autoload_files.php
│   │   ├── autoload_namespaces.php
│   │   ├── autoload_psr4.php
│   │   ├── autoload_real.php
│   │   ├── autoload_static.php
│   │   └── installed.json
│   ├── doctrine
│   │   ├── inflector
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── composer.json
│   │   │   ├── docs
│   │   │   │   └── en
│   │   │   │       └── index.rst
│   │   │   ├── lib
│   │   │   │   └── Doctrine
│   │   │   │       └── Inflector
│   │   │   │           ├── CachedWordInflector.php
│   │   │   │           ├── GenericLanguageInflectorFactory.php
│   │   │   │           ├── Inflector.php
│   │   │   │           ├── InflectorFactory.php
│   │   │   │           ├── Language.php
│   │   │   │           ├── LanguageInflectorFactory.php
│   │   │   │           ├── NoopWordInflector.php
│   │   │   │           ├── Rules
│   │   │   │           │   ├── English
│   │   │   │           │   │   ├── Inflectible.php
│   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │           │   │   ├── Rules.php
│   │   │   │           │   │   └── Uninflected.php
│   │   │   │           │   ├── French
│   │   │   │           │   │   ├── Inflectible.php
│   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │           │   │   ├── Rules.php
│   │   │   │           │   │   └── Uninflected.php
│   │   │   │           │   ├── NorwegianBokmal
│   │   │   │           │   │   ├── Inflectible.php
│   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │           │   │   ├── Rules.php
│   │   │   │           │   │   └── Uninflected.php
│   │   │   │           │   ├── Pattern.php
│   │   │   │           │   ├── Patterns.php
│   │   │   │           │   ├── Portuguese
│   │   │   │           │   │   ├── Inflectible.php
│   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │           │   │   ├── Rules.php
│   │   │   │           │   │   └── Uninflected.php
│   │   │   │           │   ├── Ruleset.php
│   │   │   │           │   ├── Spanish
│   │   │   │           │   │   ├── Inflectible.php
│   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │           │   │   ├── Rules.php
│   │   │   │           │   │   └── Uninflected.php
│   │   │   │           │   ├── Substitution.php
│   │   │   │           │   ├── Substitutions.php
│   │   │   │           │   ├── Transformation.php
│   │   │   │           │   ├── Transformations.php
│   │   │   │           │   ├── Turkish
│   │   │   │           │   │   ├── Inflectible.php
│   │   │   │           │   │   ├── InflectorFactory.php
│   │   │   │           │   │   ├── Rules.php
│   │   │   │           │   │   └── Uninflected.php
│   │   │   │           │   └── Word.php
│   │   │   │           ├── RulesetInflector.php
│   │   │   │           └── WordInflector.php
│   │   │   └── phpstan.neon.dist
│   │   └── lexer
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── composer.json
│   │       └── lib
│   │           └── Doctrine
│   │               └── Common
│   │                   └── Lexer
│   │                       └── AbstractLexer.php
│   ├── dragonmantank
│   │   └── cron-expression
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── composer.json
│   │       ├── src
│   │       │   └── Cron
│   │       │       ├── AbstractField.php
│   │       │       ├── CronExpression.php
│   │       │       ├── DayOfMonthField.php
│   │       │       ├── DayOfWeekField.php
│   │       │       ├── FieldFactory.php
│   │       │       ├── FieldInterface.php
│   │       │       ├── HoursField.php
│   │       │       ├── MinutesField.php
│   │       │       └── MonthField.php
│   │       └── tests
│   │           └── Cron
│   │               ├── AbstractFieldTest.php
│   │               ├── CronExpressionTest.php
│   │               ├── DayOfMonthFieldTest.php
│   │               ├── DayOfWeekFieldTest.php
│   │               ├── FieldFactoryTest.php
│   │               ├── HoursFieldTest.php
│   │               ├── MinutesFieldTest.php
│   │               └── MonthFieldTest.php
│   ├── egulias
│   │   └── email-validator
│   │       ├── LICENSE
│   │       ├── composer.json
│   │       └── src
│   │           ├── EmailLexer.php
│   │           ├── EmailParser.php
│   │           ├── EmailValidator.php
│   │           ├── Exception
│   │           │   ├── AtextAfterCFWS.php
│   │           │   ├── CRLFAtTheEnd.php
│   │           │   ├── CRLFX2.php
│   │           │   ├── CRNoLF.php
│   │           │   ├── CharNotAllowed.php
│   │           │   ├── CommaInDomain.php
│   │           │   ├── ConsecutiveAt.php
│   │           │   ├── ConsecutiveDot.php
│   │           │   ├── DomainAcceptsNoMail.php
│   │           │   ├── DomainHyphened.php
│   │           │   ├── DotAtEnd.php
│   │           │   ├── DotAtStart.php
│   │           │   ├── ExpectingAT.php
│   │           │   ├── ExpectingATEXT.php
│   │           │   ├── ExpectingCTEXT.php
│   │           │   ├── ExpectingDTEXT.php
│   │           │   ├── ExpectingDomainLiteralClose.php
│   │           │   ├── ExpectingQPair.php
│   │           │   ├── InvalidEmail.php
│   │           │   ├── LocalOrReservedDomain.php
│   │           │   ├── NoDNSRecord.php
│   │           │   ├── NoDomainPart.php
│   │           │   ├── NoLocalPart.php
│   │           │   ├── UnclosedComment.php
│   │           │   ├── UnclosedQuotedString.php
│   │           │   └── UnopenedComment.php
│   │           ├── Parser
│   │           │   ├── DomainPart.php
│   │           │   ├── LocalPart.php
│   │           │   └── Parser.php
│   │           ├── Validation
│   │           │   ├── DNSCheckValidation.php
│   │           │   ├── EmailValidation.php
│   │           │   ├── Error
│   │           │   │   ├── RFCWarnings.php
│   │           │   │   └── SpoofEmail.php
│   │           │   ├── Exception
│   │           │   │   └── EmptyValidationList.php
│   │           │   ├── MultipleErrors.php
│   │           │   ├── MultipleValidationWithAnd.php
│   │           │   ├── NoRFCWarningsValidation.php
│   │           │   ├── RFCValidation.php
│   │           │   └── SpoofCheckValidation.php
│   │           └── Warning
│   │               ├── AddressLiteral.php
│   │               ├── CFWSNearAt.php
│   │               ├── CFWSWithFWS.php
│   │               ├── Comment.php
│   │               ├── DeprecatedComment.php
│   │               ├── DomainLiteral.php
│   │               ├── DomainTooLong.php
│   │               ├── EmailTooLong.php
│   │               ├── IPV6BadChar.php
│   │               ├── IPV6ColonEnd.php
│   │               ├── IPV6ColonStart.php
│   │               ├── IPV6Deprecated.php
│   │               ├── IPV6DoubleColon.php
│   │               ├── IPV6GroupCount.php
│   │               ├── IPV6MaxGroups.php
│   │               ├── LabelTooLong.php
│   │               ├── LocalTooLong.php
│   │               ├── NoDNSMXRecord.php
│   │               ├── ObsoleteDTEXT.php
│   │               ├── QuotedPart.php
│   │               ├── QuotedString.php
│   │               ├── TLD.php
│   │               └── Warning.php
│   ├── kkszymanowski
│   │   └── traitor
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── composer.json
│   │       └── src
│   │           ├── Handlers
│   │           │   ├── AbstractTreeHandler.php
│   │           │   └── Handler.php
│   │           ├── TraitUseAdder.php
│   │           └── Traitor.php
│   ├── laravel
│   │   ├── framework
│   │   │   ├── LICENSE.md
│   │   │   ├── README.md
│   │   │   ├── composer.json
│   │   │   └── src
│   │   │       └── Illuminate
│   │   │           ├── Auth
│   │   │           │   ├── Access
│   │   │           │   │   ├── AuthorizationException.php
│   │   │           │   │   ├── Gate.php
│   │   │           │   │   ├── HandlesAuthorization.php
│   │   │           │   │   └── Response.php
│   │   │           │   ├── AuthManager.php
│   │   │           │   ├── AuthServiceProvider.php
│   │   │           │   ├── Authenticatable.php
│   │   │           │   ├── AuthenticationException.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── ClearResetsCommand.php
│   │   │           │   │   └── stubs
│   │   │           │   │       └── make
│   │   │           │   │           └── views
│   │   │           │   │               └── layouts
│   │   │           │   │                   └── app.stub
│   │   │           │   ├── CreatesUserProviders.php
│   │   │           │   ├── DatabaseUserProvider.php
│   │   │           │   ├── EloquentUserProvider.php
│   │   │           │   ├── Events
│   │   │           │   │   ├── Attempting.php
│   │   │           │   │   ├── Authenticated.php
│   │   │           │   │   ├── CurrentDeviceLogout.php
│   │   │           │   │   ├── Failed.php
│   │   │           │   │   ├── Lockout.php
│   │   │           │   │   ├── Login.php
│   │   │           │   │   ├── Logout.php
│   │   │           │   │   ├── OtherDeviceLogout.php
│   │   │           │   │   ├── PasswordReset.php
│   │   │           │   │   ├── Registered.php
│   │   │           │   │   ├── Validated.php
│   │   │           │   │   └── Verified.php
│   │   │           │   ├── GenericUser.php
│   │   │           │   ├── GuardHelpers.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Listeners
│   │   │           │   │   └── SendEmailVerificationNotification.php
│   │   │           │   ├── Middleware
│   │   │           │   │   ├── Authenticate.php
│   │   │           │   │   ├── AuthenticateWithBasicAuth.php
│   │   │           │   │   ├── Authorize.php
│   │   │           │   │   ├── EnsureEmailIsVerified.php
│   │   │           │   │   └── RequirePassword.php
│   │   │           │   ├── MustVerifyEmail.php
│   │   │           │   ├── Notifications
│   │   │           │   │   ├── ResetPassword.php
│   │   │           │   │   └── VerifyEmail.php
│   │   │           │   ├── Passwords
│   │   │           │   │   ├── CanResetPassword.php
│   │   │           │   │   ├── DatabaseTokenRepository.php
│   │   │           │   │   ├── PasswordBroker.php
│   │   │           │   │   ├── PasswordBrokerManager.php
│   │   │           │   │   ├── PasswordResetServiceProvider.php
│   │   │           │   │   └── TokenRepositoryInterface.php
│   │   │           │   ├── Recaller.php
│   │   │           │   ├── RequestGuard.php
│   │   │           │   ├── SessionGuard.php
│   │   │           │   ├── TokenGuard.php
│   │   │           │   └── composer.json
│   │   │           ├── Broadcasting
│   │   │           │   ├── BroadcastController.php
│   │   │           │   ├── BroadcastEvent.php
│   │   │           │   ├── BroadcastException.php
│   │   │           │   ├── BroadcastManager.php
│   │   │           │   ├── BroadcastServiceProvider.php
│   │   │           │   ├── Broadcasters
│   │   │           │   │   ├── Broadcaster.php
│   │   │           │   │   ├── LogBroadcaster.php
│   │   │           │   │   ├── NullBroadcaster.php
│   │   │           │   │   ├── PusherBroadcaster.php
│   │   │           │   │   ├── RedisBroadcaster.php
│   │   │           │   │   └── UsePusherChannelConventions.php
│   │   │           │   ├── Channel.php
│   │   │           │   ├── EncryptedPrivateChannel.php
│   │   │           │   ├── InteractsWithSockets.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── PendingBroadcast.php
│   │   │           │   ├── PresenceChannel.php
│   │   │           │   ├── PrivateChannel.php
│   │   │           │   └── composer.json
│   │   │           ├── Bus
│   │   │           │   ├── BusServiceProvider.php
│   │   │           │   ├── Dispatcher.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Queueable.php
│   │   │           │   └── composer.json
│   │   │           ├── Cache
│   │   │           │   ├── ApcStore.php
│   │   │           │   ├── ApcWrapper.php
│   │   │           │   ├── ArrayLock.php
│   │   │           │   ├── ArrayStore.php
│   │   │           │   ├── CacheManager.php
│   │   │           │   ├── CacheServiceProvider.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── CacheTableCommand.php
│   │   │           │   │   ├── ClearCommand.php
│   │   │           │   │   ├── ForgetCommand.php
│   │   │           │   │   └── stubs
│   │   │           │   │       └── cache.stub
│   │   │           │   ├── DatabaseLock.php
│   │   │           │   ├── DatabaseStore.php
│   │   │           │   ├── DynamoDbLock.php
│   │   │           │   ├── DynamoDbStore.php
│   │   │           │   ├── Events
│   │   │           │   │   ├── CacheEvent.php
│   │   │           │   │   ├── CacheHit.php
│   │   │           │   │   ├── CacheMissed.php
│   │   │           │   │   ├── KeyForgotten.php
│   │   │           │   │   └── KeyWritten.php
│   │   │           │   ├── FileStore.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Lock.php
│   │   │           │   ├── LuaScripts.php
│   │   │           │   ├── MemcachedConnector.php
│   │   │           │   ├── MemcachedLock.php
│   │   │           │   ├── MemcachedStore.php
│   │   │           │   ├── NullStore.php
│   │   │           │   ├── RateLimiter.php
│   │   │           │   ├── RedisLock.php
│   │   │           │   ├── RedisStore.php
│   │   │           │   ├── RedisTaggedCache.php
│   │   │           │   ├── Repository.php
│   │   │           │   ├── RetrievesMultipleKeys.php
│   │   │           │   ├── TagSet.php
│   │   │           │   ├── TaggableStore.php
│   │   │           │   ├── TaggedCache.php
│   │   │           │   └── composer.json
│   │   │           ├── Config
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Repository.php
│   │   │           │   └── composer.json
│   │   │           ├── Console
│   │   │           │   ├── Application.php
│   │   │           │   ├── Command.php
│   │   │           │   ├── Concerns
│   │   │           │   │   ├── CallsCommands.php
│   │   │           │   │   ├── HasParameters.php
│   │   │           │   │   └── InteractsWithIO.php
│   │   │           │   ├── ConfirmableTrait.php
│   │   │           │   ├── Events
│   │   │           │   │   ├── ArtisanStarting.php
│   │   │           │   │   ├── CommandFinished.php
│   │   │           │   │   ├── CommandStarting.php
│   │   │           │   │   ├── ScheduledTaskFailed.php
│   │   │           │   │   ├── ScheduledTaskFinished.php
│   │   │           │   │   ├── ScheduledTaskSkipped.php
│   │   │           │   │   └── ScheduledTaskStarting.php
│   │   │           │   ├── GeneratorCommand.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── OutputStyle.php
│   │   │           │   ├── Parser.php
│   │   │           │   ├── Scheduling
│   │   │           │   │   ├── CacheAware.php
│   │   │           │   │   ├── CacheEventMutex.php
│   │   │           │   │   ├── CacheSchedulingMutex.php
│   │   │           │   │   ├── CallbackEvent.php
│   │   │           │   │   ├── CommandBuilder.php
│   │   │           │   │   ├── Event.php
│   │   │           │   │   ├── EventMutex.php
│   │   │           │   │   ├── ManagesFrequencies.php
│   │   │           │   │   ├── Schedule.php
│   │   │           │   │   ├── ScheduleFinishCommand.php
│   │   │           │   │   ├── ScheduleRunCommand.php
│   │   │           │   │   └── SchedulingMutex.php
│   │   │           │   └── composer.json
│   │   │           ├── Container
│   │   │           │   ├── BoundMethod.php
│   │   │           │   ├── Container.php
│   │   │           │   ├── ContextualBindingBuilder.php
│   │   │           │   ├── EntryNotFoundException.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── RewindableGenerator.php
│   │   │           │   ├── Util.php
│   │   │           │   └── composer.json
│   │   │           ├── Contracts
│   │   │           │   ├── Auth
│   │   │           │   │   ├── Access
│   │   │           │   │   │   ├── Authorizable.php
│   │   │           │   │   │   └── Gate.php
│   │   │           │   │   ├── Authenticatable.php
│   │   │           │   │   ├── CanResetPassword.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── Guard.php
│   │   │           │   │   ├── Middleware
│   │   │           │   │   │   └── AuthenticatesRequests.php
│   │   │           │   │   ├── MustVerifyEmail.php
│   │   │           │   │   ├── PasswordBroker.php
│   │   │           │   │   ├── PasswordBrokerFactory.php
│   │   │           │   │   ├── StatefulGuard.php
│   │   │           │   │   ├── SupportsBasicAuth.php
│   │   │           │   │   └── UserProvider.php
│   │   │           │   ├── Broadcasting
│   │   │           │   │   ├── Broadcaster.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── ShouldBroadcast.php
│   │   │           │   │   └── ShouldBroadcastNow.php
│   │   │           │   ├── Bus
│   │   │           │   │   ├── Dispatcher.php
│   │   │           │   │   └── QueueingDispatcher.php
│   │   │           │   ├── Cache
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── Lock.php
│   │   │           │   │   ├── LockProvider.php
│   │   │           │   │   ├── LockTimeoutException.php
│   │   │           │   │   ├── Repository.php
│   │   │           │   │   └── Store.php
│   │   │           │   ├── Config
│   │   │           │   │   └── Repository.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── Application.php
│   │   │           │   │   └── Kernel.php
│   │   │           │   ├── Container
│   │   │           │   │   ├── BindingResolutionException.php
│   │   │           │   │   ├── Container.php
│   │   │           │   │   └── ContextualBindingBuilder.php
│   │   │           │   ├── Cookie
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   └── QueueingFactory.php
│   │   │           │   ├── Database
│   │   │           │   │   ├── Eloquent
│   │   │           │   │   │   ├── Castable.php
│   │   │           │   │   │   ├── CastsAttributes.php
│   │   │           │   │   │   └── CastsInboundAttributes.php
│   │   │           │   │   ├── Events
│   │   │           │   │   │   └── MigrationEvent.php
│   │   │           │   │   └── ModelIdentifier.php
│   │   │           │   ├── Debug
│   │   │           │   │   └── ExceptionHandler.php
│   │   │           │   ├── Encryption
│   │   │           │   │   ├── DecryptException.php
│   │   │           │   │   ├── EncryptException.php
│   │   │           │   │   └── Encrypter.php
│   │   │           │   ├── Events
│   │   │           │   │   └── Dispatcher.php
│   │   │           │   ├── Filesystem
│   │   │           │   │   ├── Cloud.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── FileExistsException.php
│   │   │           │   │   ├── FileNotFoundException.php
│   │   │           │   │   └── Filesystem.php
│   │   │           │   ├── Foundation
│   │   │           │   │   ├── Application.php
│   │   │           │   │   ├── CachesConfiguration.php
│   │   │           │   │   └── CachesRoutes.php
│   │   │           │   ├── Hashing
│   │   │           │   │   └── Hasher.php
│   │   │           │   ├── Http
│   │   │           │   │   └── Kernel.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Mail
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── MailQueue.php
│   │   │           │   │   ├── Mailable.php
│   │   │           │   │   └── Mailer.php
│   │   │           │   ├── Notifications
│   │   │           │   │   ├── Dispatcher.php
│   │   │           │   │   └── Factory.php
│   │   │           │   ├── Pagination
│   │   │           │   │   ├── LengthAwarePaginator.php
│   │   │           │   │   └── Paginator.php
│   │   │           │   ├── Pipeline
│   │   │           │   │   ├── Hub.php
│   │   │           │   │   └── Pipeline.php
│   │   │           │   ├── Queue
│   │   │           │   │   ├── EntityNotFoundException.php
│   │   │           │   │   ├── EntityResolver.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── Job.php
│   │   │           │   │   ├── Monitor.php
│   │   │           │   │   ├── Queue.php
│   │   │           │   │   ├── QueueableCollection.php
│   │   │           │   │   ├── QueueableEntity.php
│   │   │           │   │   └── ShouldQueue.php
│   │   │           │   ├── Redis
│   │   │           │   │   ├── Connection.php
│   │   │           │   │   ├── Connector.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   └── LimiterTimeoutException.php
│   │   │           │   ├── Routing
│   │   │           │   │   ├── BindingRegistrar.php
│   │   │           │   │   ├── Registrar.php
│   │   │           │   │   ├── ResponseFactory.php
│   │   │           │   │   ├── UrlGenerator.php
│   │   │           │   │   └── UrlRoutable.php
│   │   │           │   ├── Session
│   │   │           │   │   └── Session.php
│   │   │           │   ├── Support
│   │   │           │   │   ├── Arrayable.php
│   │   │           │   │   ├── DeferrableProvider.php
│   │   │           │   │   ├── DeferringDisplayableValue.php
│   │   │           │   │   ├── Htmlable.php
│   │   │           │   │   ├── Jsonable.php
│   │   │           │   │   ├── MessageBag.php
│   │   │           │   │   ├── MessageProvider.php
│   │   │           │   │   ├── Renderable.php
│   │   │           │   │   └── Responsable.php
│   │   │           │   ├── Translation
│   │   │           │   │   ├── HasLocalePreference.php
│   │   │           │   │   ├── Loader.php
│   │   │           │   │   └── Translator.php
│   │   │           │   ├── Validation
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── ImplicitRule.php
│   │   │           │   │   ├── Rule.php
│   │   │           │   │   ├── ValidatesWhenResolved.php
│   │   │           │   │   └── Validator.php
│   │   │           │   ├── View
│   │   │           │   │   ├── Engine.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   └── View.php
│   │   │           │   └── composer.json
│   │   │           ├── Cookie
│   │   │           │   ├── CookieJar.php
│   │   │           │   ├── CookieServiceProvider.php
│   │   │           │   ├── CookieValuePrefix.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Middleware
│   │   │           │   │   ├── AddQueuedCookiesToResponse.php
│   │   │           │   │   └── EncryptCookies.php
│   │   │           │   └── composer.json
│   │   │           ├── Database
│   │   │           │   ├── Capsule
│   │   │           │   │   └── Manager.php
│   │   │           │   ├── Concerns
│   │   │           │   │   ├── BuildsQueries.php
│   │   │           │   │   └── ManagesTransactions.php
│   │   │           │   ├── ConfigurationUrlParser.php
│   │   │           │   ├── Connection.php
│   │   │           │   ├── ConnectionInterface.php
│   │   │           │   ├── ConnectionResolver.php
│   │   │           │   ├── ConnectionResolverInterface.php
│   │   │           │   ├── Connectors
│   │   │           │   │   ├── ConnectionFactory.php
│   │   │           │   │   ├── Connector.php
│   │   │           │   │   ├── ConnectorInterface.php
│   │   │           │   │   ├── MySqlConnector.php
│   │   │           │   │   ├── PostgresConnector.php
│   │   │           │   │   ├── SQLiteConnector.php
│   │   │           │   │   └── SqlServerConnector.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── Factories
│   │   │           │   │   │   ├── FactoryMakeCommand.php
│   │   │           │   │   │   └── stubs
│   │   │           │   │   │       └── factory.stub
│   │   │           │   │   ├── Migrations
│   │   │           │   │   │   ├── BaseCommand.php
│   │   │           │   │   │   ├── FreshCommand.php
│   │   │           │   │   │   ├── InstallCommand.php
│   │   │           │   │   │   ├── MigrateCommand.php
│   │   │           │   │   │   ├── MigrateMakeCommand.php
│   │   │           │   │   │   ├── RefreshCommand.php
│   │   │           │   │   │   ├── ResetCommand.php
│   │   │           │   │   │   ├── RollbackCommand.php
│   │   │           │   │   │   ├── StatusCommand.php
│   │   │           │   │   │   └── TableGuesser.php
│   │   │           │   │   ├── Seeds
│   │   │           │   │   │   ├── SeedCommand.php
│   │   │           │   │   │   ├── SeederMakeCommand.php
│   │   │           │   │   │   └── stubs
│   │   │           │   │   │       └── seeder.stub
│   │   │           │   │   └── WipeCommand.php
│   │   │           │   ├── DatabaseManager.php
│   │   │           │   ├── DatabaseServiceProvider.php
│   │   │           │   ├── DetectsConcurrencyErrors.php
│   │   │           │   ├── DetectsLostConnections.php
│   │   │           │   ├── Eloquent
│   │   │           │   │   ├── Builder.php
│   │   │           │   │   ├── Collection.php
│   │   │           │   │   ├── Concerns
│   │   │           │   │   │   ├── GuardsAttributes.php
│   │   │           │   │   │   ├── HasAttributes.php
│   │   │           │   │   │   ├── HasEvents.php
│   │   │           │   │   │   ├── HasGlobalScopes.php
│   │   │           │   │   │   ├── HasRelationships.php
│   │   │           │   │   │   ├── HasTimestamps.php
│   │   │           │   │   │   ├── HidesAttributes.php
│   │   │           │   │   │   └── QueriesRelationships.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── FactoryBuilder.php
│   │   │           │   │   ├── HigherOrderBuilderProxy.php
│   │   │           │   │   ├── JsonEncodingException.php
│   │   │           │   │   ├── MassAssignmentException.php
│   │   │           │   │   ├── Model.php
│   │   │           │   │   ├── ModelNotFoundException.php
│   │   │           │   │   ├── QueueEntityResolver.php
│   │   │           │   │   ├── RelationNotFoundException.php
│   │   │           │   │   ├── Relations
│   │   │           │   │   │   ├── BelongsTo.php
│   │   │           │   │   │   ├── BelongsToMany.php
│   │   │           │   │   │   ├── Concerns
│   │   │           │   │   │   │   ├── AsPivot.php
│   │   │           │   │   │   │   ├── InteractsWithPivotTable.php
│   │   │           │   │   │   │   └── SupportsDefaultModels.php
│   │   │           │   │   │   ├── HasMany.php
│   │   │           │   │   │   ├── HasManyThrough.php
│   │   │           │   │   │   ├── HasOne.php
│   │   │           │   │   │   ├── HasOneOrMany.php
│   │   │           │   │   │   ├── HasOneThrough.php
│   │   │           │   │   │   ├── MorphMany.php
│   │   │           │   │   │   ├── MorphOne.php
│   │   │           │   │   │   ├── MorphOneOrMany.php
│   │   │           │   │   │   ├── MorphPivot.php
│   │   │           │   │   │   ├── MorphTo.php
│   │   │           │   │   │   ├── MorphToMany.php
│   │   │           │   │   │   ├── Pivot.php
│   │   │           │   │   │   └── Relation.php
│   │   │           │   │   ├── Scope.php
│   │   │           │   │   ├── SoftDeletes.php
│   │   │           │   │   └── SoftDeletingScope.php
│   │   │           │   ├── Events
│   │   │           │   │   ├── ConnectionEvent.php
│   │   │           │   │   ├── MigrationEnded.php
│   │   │           │   │   ├── MigrationEvent.php
│   │   │           │   │   ├── MigrationStarted.php
│   │   │           │   │   ├── MigrationsEnded.php
│   │   │           │   │   ├── MigrationsStarted.php
│   │   │           │   │   ├── NoPendingMigrations.php
│   │   │           │   │   ├── QueryExecuted.php
│   │   │           │   │   ├── StatementPrepared.php
│   │   │           │   │   ├── TransactionBeginning.php
│   │   │           │   │   ├── TransactionCommitted.php
│   │   │           │   │   └── TransactionRolledBack.php
│   │   │           │   ├── Grammar.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── MigrationServiceProvider.php
│   │   │           │   ├── Migrations
│   │   │           │   │   ├── DatabaseMigrationRepository.php
│   │   │           │   │   ├── Migration.php
│   │   │           │   │   ├── MigrationCreator.php
│   │   │           │   │   ├── MigrationRepositoryInterface.php
│   │   │           │   │   ├── Migrator.php
│   │   │           │   │   └── stubs
│   │   │           │   │       ├── migration.create.stub
│   │   │           │   │       ├── migration.stub
│   │   │           │   │       └── migration.update.stub
│   │   │           │   ├── 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
│   │   │           │   ├── SQLiteConnection.php
│   │   │           │   ├── Schema
│   │   │           │   │   ├── Blueprint.php
│   │   │           │   │   ├── Builder.php
│   │   │           │   │   ├── ColumnDefinition.php
│   │   │           │   │   ├── ForeignIdColumnDefinition.php
│   │   │           │   │   ├── ForeignKeyDefinition.php
│   │   │           │   │   ├── Grammars
│   │   │           │   │   │   ├── ChangeColumn.php
│   │   │           │   │   │   ├── Grammar.php
│   │   │           │   │   │   ├── MySqlGrammar.php
│   │   │           │   │   │   ├── PostgresGrammar.php
│   │   │           │   │   │   ├── RenameColumn.php
│   │   │           │   │   │   ├── SQLiteGrammar.php
│   │   │           │   │   │   └── SqlServerGrammar.php
│   │   │           │   │   ├── MySqlBuilder.php
│   │   │           │   │   ├── PostgresBuilder.php
│   │   │           │   │   ├── SQLiteBuilder.php
│   │   │           │   │   └── SqlServerBuilder.php
│   │   │           │   ├── Seeder.php
│   │   │           │   ├── SqlServerConnection.php
│   │   │           │   └── composer.json
│   │   │           ├── Encryption
│   │   │           │   ├── Encrypter.php
│   │   │           │   ├── EncryptionServiceProvider.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   └── composer.json
│   │   │           ├── Events
│   │   │           │   ├── CallQueuedListener.php
│   │   │           │   ├── Dispatcher.php
│   │   │           │   ├── EventServiceProvider.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── NullDispatcher.php
│   │   │           │   └── composer.json
│   │   │           ├── Filesystem
│   │   │           │   ├── Cache.php
│   │   │           │   ├── Filesystem.php
│   │   │           │   ├── FilesystemAdapter.php
│   │   │           │   ├── FilesystemManager.php
│   │   │           │   ├── FilesystemServiceProvider.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   └── composer.json
│   │   │           ├── Foundation
│   │   │           │   ├── AliasLoader.php
│   │   │           │   ├── Application.php
│   │   │           │   ├── Auth
│   │   │           │   │   ├── Access
│   │   │           │   │   │   ├── Authorizable.php
│   │   │           │   │   │   └── AuthorizesRequests.php
│   │   │           │   │   └── User.php
│   │   │           │   ├── Bootstrap
│   │   │           │   │   ├── BootProviders.php
│   │   │           │   │   ├── HandleExceptions.php
│   │   │           │   │   ├── LoadConfiguration.php
│   │   │           │   │   ├── LoadEnvironmentVariables.php
│   │   │           │   │   ├── RegisterFacades.php
│   │   │           │   │   ├── RegisterProviders.php
│   │   │           │   │   └── SetRequestForConsole.php
│   │   │           │   ├── Bus
│   │   │           │   │   ├── Dispatchable.php
│   │   │           │   │   ├── DispatchesJobs.php
│   │   │           │   │   ├── PendingChain.php
│   │   │           │   │   └── PendingDispatch.php
│   │   │           │   ├── ComposerScripts.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── CastMakeCommand.php
│   │   │           │   │   ├── ChannelMakeCommand.php
│   │   │           │   │   ├── ClearCompiledCommand.php
│   │   │           │   │   ├── ClosureCommand.php
│   │   │           │   │   ├── ComponentMakeCommand.php
│   │   │           │   │   ├── ConfigCacheCommand.php
│   │   │           │   │   ├── ConfigClearCommand.php
│   │   │           │   │   ├── ConsoleMakeCommand.php
│   │   │           │   │   ├── DownCommand.php
│   │   │           │   │   ├── EnvironmentCommand.php
│   │   │           │   │   ├── EventCacheCommand.php
│   │   │           │   │   ├── EventClearCommand.php
│   │   │           │   │   ├── EventGenerateCommand.php
│   │   │           │   │   ├── EventListCommand.php
│   │   │           │   │   ├── EventMakeCommand.php
│   │   │           │   │   ├── ExceptionMakeCommand.php
│   │   │           │   │   ├── JobMakeCommand.php
│   │   │           │   │   ├── Kernel.php
│   │   │           │   │   ├── KeyGenerateCommand.php
│   │   │           │   │   ├── ListenerMakeCommand.php
│   │   │           │   │   ├── MailMakeCommand.php
│   │   │           │   │   ├── ModelMakeCommand.php
│   │   │           │   │   ├── NotificationMakeCommand.php
│   │   │           │   │   ├── ObserverMakeCommand.php
│   │   │           │   │   ├── OptimizeClearCommand.php
│   │   │           │   │   ├── OptimizeCommand.php
│   │   │           │   │   ├── PackageDiscoverCommand.php
│   │   │           │   │   ├── PolicyMakeCommand.php
│   │   │           │   │   ├── ProviderMakeCommand.php
│   │   │           │   │   ├── QueuedCommand.php
│   │   │           │   │   ├── RequestMakeCommand.php
│   │   │           │   │   ├── ResourceMakeCommand.php
│   │   │           │   │   ├── RouteCacheCommand.php
│   │   │           │   │   ├── RouteClearCommand.php
│   │   │           │   │   ├── RouteListCommand.php
│   │   │           │   │   ├── RuleMakeCommand.php
│   │   │           │   │   ├── ServeCommand.php
│   │   │           │   │   ├── StorageLinkCommand.php
│   │   │           │   │   ├── StubPublishCommand.php
│   │   │           │   │   ├── TestMakeCommand.php
│   │   │           │   │   ├── UpCommand.php
│   │   │           │   │   ├── VendorPublishCommand.php
│   │   │           │   │   ├── ViewCacheCommand.php
│   │   │           │   │   ├── ViewClearCommand.php
│   │   │           │   │   └── stubs
│   │   │           │   │       ├── cast.stub
│   │   │           │   │       ├── channel.stub
│   │   │           │   │       ├── console.stub
│   │   │           │   │       ├── event.stub
│   │   │           │   │       ├── exception-render-report.stub
│   │   │           │   │       ├── exception-render.stub
│   │   │           │   │       ├── exception-report.stub
│   │   │           │   │       ├── exception.stub
│   │   │           │   │       ├── job.queued.stub
│   │   │           │   │       ├── job.stub
│   │   │           │   │       ├── listener-duck.stub
│   │   │           │   │       ├── listener-queued-duck.stub
│   │   │           │   │       ├── listener-queued.stub
│   │   │           │   │       ├── listener.stub
│   │   │           │   │       ├── mail.stub
│   │   │           │   │       ├── markdown-mail.stub
│   │   │           │   │       ├── markdown-notification.stub
│   │   │           │   │       ├── markdown.stub
│   │   │           │   │       ├── model.pivot.stub
│   │   │           │   │       ├── model.stub
│   │   │           │   │       ├── notification.stub
│   │   │           │   │       ├── observer.plain.stub
│   │   │           │   │       ├── observer.stub
│   │   │           │   │       ├── policy.plain.stub
│   │   │           │   │       ├── policy.stub
│   │   │           │   │       ├── provider.stub
│   │   │           │   │       ├── request.stub
│   │   │           │   │       ├── resource-collection.stub
│   │   │           │   │       ├── resource.stub
│   │   │           │   │       ├── routes.stub
│   │   │           │   │       ├── rule.stub
│   │   │           │   │       ├── test.stub
│   │   │           │   │       ├── test.unit.stub
│   │   │           │   │       └── view-component.stub
│   │   │           │   ├── EnvironmentDetector.php
│   │   │           │   ├── Events
│   │   │           │   │   ├── DiscoverEvents.php
│   │   │           │   │   ├── Dispatchable.php
│   │   │           │   │   └── LocaleUpdated.php
│   │   │           │   ├── Exceptions
│   │   │           │   │   ├── Handler.php
│   │   │           │   │   ├── WhoopsHandler.php
│   │   │           │   │   └── views
│   │   │           │   │       ├── 401.blade.php
│   │   │           │   │       ├── 403.blade.php
│   │   │           │   │       ├── 404.blade.php
│   │   │           │   │       ├── 419.blade.php
│   │   │           │   │       ├── 429.blade.php
│   │   │           │   │       ├── 500.blade.php
│   │   │           │   │       ├── 503.blade.php
│   │   │           │   │       ├── illustrated-layout.blade.php
│   │   │           │   │       ├── layout.blade.php
│   │   │           │   │       └── minimal.blade.php
│   │   │           │   ├── Http
│   │   │           │   │   ├── Events
│   │   │           │   │   │   └── RequestHandled.php
│   │   │           │   │   ├── Exceptions
│   │   │           │   │   │   └── MaintenanceModeException.php
│   │   │           │   │   ├── FormRequest.php
│   │   │           │   │   ├── Kernel.php
│   │   │           │   │   └── Middleware
│   │   │           │   │       ├── CheckForMaintenanceMode.php
│   │   │           │   │       ├── ConvertEmptyStringsToNull.php
│   │   │           │   │       ├── TransformsRequest.php
│   │   │           │   │       ├── TrimStrings.php
│   │   │           │   │       ├── ValidatePostSize.php
│   │   │           │   │       └── VerifyCsrfToken.php
│   │   │           │   ├── Inspiring.php
│   │   │           │   ├── Mix.php
│   │   │           │   ├── PackageManifest.php
│   │   │           │   ├── ProviderRepository.php
│   │   │           │   ├── Providers
│   │   │           │   │   ├── ArtisanServiceProvider.php
│   │   │           │   │   ├── ComposerServiceProvider.php
│   │   │           │   │   ├── ConsoleSupportServiceProvider.php
│   │   │           │   │   ├── FormRequestServiceProvider.php
│   │   │           │   │   └── FoundationServiceProvider.php
│   │   │           │   ├── Support
│   │   │           │   │   └── Providers
│   │   │           │   │       ├── AuthServiceProvider.php
│   │   │           │   │       ├── EventServiceProvider.php
│   │   │           │   │       └── RouteServiceProvider.php
│   │   │           │   ├── Testing
│   │   │           │   │   ├── Concerns
│   │   │           │   │   │   ├── InteractsWithAuthentication.php
│   │   │           │   │   │   ├── InteractsWithConsole.php
│   │   │           │   │   │   ├── InteractsWithContainer.php
│   │   │           │   │   │   ├── InteractsWithDatabase.php
│   │   │           │   │   │   ├── InteractsWithExceptionHandling.php
│   │   │           │   │   │   ├── InteractsWithRedis.php
│   │   │           │   │   │   ├── InteractsWithSession.php
│   │   │           │   │   │   ├── MakesHttpRequests.php
│   │   │           │   │   │   └── MocksApplicationServices.php
│   │   │           │   │   ├── DatabaseMigrations.php
│   │   │           │   │   ├── DatabaseTransactions.php
│   │   │           │   │   ├── RefreshDatabase.php
│   │   │           │   │   ├── RefreshDatabaseState.php
│   │   │           │   │   ├── TestCase.php
│   │   │           │   │   ├── WithFaker.php
│   │   │           │   │   ├── WithoutEvents.php
│   │   │           │   │   └── WithoutMiddleware.php
│   │   │           │   ├── Validation
│   │   │           │   │   └── ValidatesRequests.php
│   │   │           │   ├── helpers.php
│   │   │           │   └── stubs
│   │   │           │       └── facade.stub
│   │   │           ├── Hashing
│   │   │           │   ├── AbstractHasher.php
│   │   │           │   ├── Argon2IdHasher.php
│   │   │           │   ├── ArgonHasher.php
│   │   │           │   ├── BcryptHasher.php
│   │   │           │   ├── HashManager.php
│   │   │           │   ├── HashServiceProvider.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   └── composer.json
│   │   │           ├── Http
│   │   │           │   ├── Client
│   │   │           │   │   ├── ConnectionException.php
│   │   │           │   │   ├── Factory.php
│   │   │           │   │   ├── HttpClientException.php
│   │   │           │   │   ├── PendingRequest.php
│   │   │           │   │   ├── Request.php
│   │   │           │   │   ├── RequestException.php
│   │   │           │   │   ├── Response.php
│   │   │           │   │   └── ResponseSequence.php
│   │   │           │   ├── Concerns
│   │   │           │   │   ├── InteractsWithContentTypes.php
│   │   │           │   │   ├── InteractsWithFlashData.php
│   │   │           │   │   └── InteractsWithInput.php
│   │   │           │   ├── Exceptions
│   │   │           │   │   ├── HttpResponseException.php
│   │   │           │   │   ├── PostTooLargeException.php
│   │   │           │   │   └── ThrottleRequestsException.php
│   │   │           │   ├── File.php
│   │   │           │   ├── FileHelpers.php
│   │   │           │   ├── JsonResponse.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Middleware
│   │   │           │   │   ├── CheckResponseForModifications.php
│   │   │           │   │   ├── FrameGuard.php
│   │   │           │   │   ├── SetCacheHeaders.php
│   │   │           │   │   └── TrustHosts.php
│   │   │           │   ├── RedirectResponse.php
│   │   │           │   ├── Request.php
│   │   │           │   ├── Resources
│   │   │           │   │   ├── CollectsResources.php
│   │   │           │   │   ├── ConditionallyLoadsAttributes.php
│   │   │           │   │   ├── DelegatesToResource.php
│   │   │           │   │   ├── Json
│   │   │           │   │   │   ├── AnonymousResourceCollection.php
│   │   │           │   │   │   ├── JsonResource.php
│   │   │           │   │   │   ├── PaginatedResourceResponse.php
│   │   │           │   │   │   ├── ResourceCollection.php
│   │   │           │   │   │   └── ResourceResponse.php
│   │   │           │   │   ├── MergeValue.php
│   │   │           │   │   ├── MissingValue.php
│   │   │           │   │   └── PotentiallyMissing.php
│   │   │           │   ├── Response.php
│   │   │           │   ├── ResponseTrait.php
│   │   │           │   ├── Testing
│   │   │           │   │   ├── File.php
│   │   │           │   │   ├── FileFactory.php
│   │   │           │   │   └── MimeType.php
│   │   │           │   ├── UploadedFile.php
│   │   │           │   └── composer.json
│   │   │           ├── Log
│   │   │           │   ├── Events
│   │   │           │   │   └── MessageLogged.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── LogManager.php
│   │   │           │   ├── LogServiceProvider.php
│   │   │           │   ├── Logger.php
│   │   │           │   ├── ParsesLogConfiguration.php
│   │   │           │   └── composer.json
│   │   │           ├── Mail
│   │   │           │   ├── Events
│   │   │           │   │   ├── MessageSending.php
│   │   │           │   │   └── MessageSent.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── MailManager.php
│   │   │           │   ├── MailServiceProvider.php
│   │   │           │   ├── Mailable.php
│   │   │           │   ├── Mailer.php
│   │   │           │   ├── Markdown.php
│   │   │           │   ├── Message.php
│   │   │           │   ├── PendingMail.php
│   │   │           │   ├── SendQueuedMailable.php
│   │   │           │   ├── Transport
│   │   │           │   │   ├── ArrayTransport.php
│   │   │           │   │   ├── LogTransport.php
│   │   │           │   │   ├── MailgunTransport.php
│   │   │           │   │   ├── SesTransport.php
│   │   │           │   │   └── Transport.php
│   │   │           │   ├── composer.json
│   │   │           │   └── resources
│   │   │           │       └── views
│   │   │           │           ├── html
│   │   │           │           │   ├── button.blade.php
│   │   │           │           │   ├── footer.blade.php
│   │   │           │           │   ├── header.blade.php
│   │   │           │           │   ├── layout.blade.php
│   │   │           │           │   ├── message.blade.php
│   │   │           │           │   ├── panel.blade.php
│   │   │           │           │   ├── subcopy.blade.php
│   │   │           │           │   ├── table.blade.php
│   │   │           │           │   └── themes
│   │   │           │           │       └── default.css
│   │   │           │           └── text
│   │   │           │               ├── button.blade.php
│   │   │           │               ├── footer.blade.php
│   │   │           │               ├── header.blade.php
│   │   │           │               ├── layout.blade.php
│   │   │           │               ├── message.blade.php
│   │   │           │               ├── panel.blade.php
│   │   │           │               ├── subcopy.blade.php
│   │   │           │               └── table.blade.php
│   │   │           ├── Notifications
│   │   │           │   ├── Action.php
│   │   │           │   ├── AnonymousNotifiable.php
│   │   │           │   ├── ChannelManager.php
│   │   │           │   ├── Channels
│   │   │           │   │   ├── BroadcastChannel.php
│   │   │           │   │   ├── DatabaseChannel.php
│   │   │           │   │   └── MailChannel.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── NotificationTableCommand.php
│   │   │           │   │   └── stubs
│   │   │           │   │       └── notifications.stub
│   │   │           │   ├── DatabaseNotification.php
│   │   │           │   ├── DatabaseNotificationCollection.php
│   │   │           │   ├── Events
│   │   │           │   │   ├── BroadcastNotificationCreated.php
│   │   │           │   │   ├── NotificationFailed.php
│   │   │           │   │   ├── NotificationSending.php
│   │   │           │   │   └── NotificationSent.php
│   │   │           │   ├── HasDatabaseNotifications.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Messages
│   │   │           │   │   ├── BroadcastMessage.php
│   │   │           │   │   ├── DatabaseMessage.php
│   │   │           │   │   ├── MailMessage.php
│   │   │           │   │   └── SimpleMessage.php
│   │   │           │   ├── Notifiable.php
│   │   │           │   ├── Notification.php
│   │   │           │   ├── NotificationSender.php
│   │   │           │   ├── NotificationServiceProvider.php
│   │   │           │   ├── RoutesNotifications.php
│   │   │           │   ├── SendQueuedNotifications.php
│   │   │           │   ├── composer.json
│   │   │           │   └── resources
│   │   │           │       └── views
│   │   │           │           └── email.blade.php
│   │   │           ├── Pagination
│   │   │           │   ├── AbstractPaginator.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── LengthAwarePaginator.php
│   │   │           │   ├── PaginationServiceProvider.php
│   │   │           │   ├── Paginator.php
│   │   │           │   ├── UrlWindow.php
│   │   │           │   ├── composer.json
│   │   │           │   └── resources
│   │   │           │       └── views
│   │   │           │           ├── bootstrap-4.blade.php
│   │   │           │           ├── default.blade.php
│   │   │           │           ├── semantic-ui.blade.php
│   │   │           │           ├── simple-bootstrap-4.blade.php
│   │   │           │           ├── simple-default.blade.php
│   │   │           │           ├── simple-tailwind.blade.php
│   │   │           │           └── tailwind.blade.php
│   │   │           ├── Pipeline
│   │   │           │   ├── Hub.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Pipeline.php
│   │   │           │   ├── PipelineServiceProvider.php
│   │   │           │   └── composer.json
│   │   │           ├── Queue
│   │   │           │   ├── BeanstalkdQueue.php
│   │   │           │   ├── CallQueuedClosure.php
│   │   │           │   ├── CallQueuedHandler.php
│   │   │           │   ├── Capsule
│   │   │           │   │   └── Manager.php
│   │   │           │   ├── Connectors
│   │   │           │   │   ├── BeanstalkdConnector.php
│   │   │           │   │   ├── ConnectorInterface.php
│   │   │           │   │   ├── DatabaseConnector.php
│   │   │           │   │   ├── NullConnector.php
│   │   │           │   │   ├── RedisConnector.php
│   │   │           │   │   ├── SqsConnector.php
│   │   │           │   │   └── SyncConnector.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── FailedTableCommand.php
│   │   │           │   │   ├── FlushFailedCommand.php
│   │   │           │   │   ├── ForgetFailedCommand.php
│   │   │           │   │   ├── ListFailedCommand.php
│   │   │           │   │   ├── ListenCommand.php
│   │   │           │   │   ├── RestartCommand.php
│   │   │           │   │   ├── RetryCommand.php
│   │   │           │   │   ├── TableCommand.php
│   │   │           │   │   ├── WorkCommand.php
│   │   │           │   │   └── stubs
│   │   │           │   │       ├── failed_jobs.stub
│   │   │           │   │       └── jobs.stub
│   │   │           │   ├── DatabaseQueue.php
│   │   │           │   ├── Events
│   │   │           │   │   ├── JobExceptionOccurred.php
│   │   │           │   │   ├── JobFailed.php
│   │   │           │   │   ├── JobProcessed.php
│   │   │           │   │   ├── JobProcessing.php
│   │   │           │   │   ├── Looping.php
│   │   │           │   │   └── WorkerStopping.php
│   │   │           │   ├── Failed
│   │   │           │   │   ├── DatabaseFailedJobProvider.php
│   │   │           │   │   ├── DynamoDbFailedJobProvider.php
│   │   │           │   │   ├── FailedJobProviderInterface.php
│   │   │           │   │   └── NullFailedJobProvider.php
│   │   │           │   ├── InteractsWithQueue.php
│   │   │           │   ├── InvalidPayloadException.php
│   │   │           │   ├── Jobs
│   │   │           │   │   ├── BeanstalkdJob.php
│   │   │           │   │   ├── DatabaseJob.php
│   │   │           │   │   ├── DatabaseJobRecord.php
│   │   │           │   │   ├── Job.php
│   │   │           │   │   ├── JobName.php
│   │   │           │   │   ├── RedisJob.php
│   │   │           │   │   ├── SqsJob.php
│   │   │           │   │   └── SyncJob.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Listener.php
│   │   │           │   ├── ListenerOptions.php
│   │   │           │   ├── LuaScripts.php
│   │   │           │   ├── ManuallyFailedException.php
│   │   │           │   ├── MaxAttemptsExceededException.php
│   │   │           │   ├── NullQueue.php
│   │   │           │   ├── Queue.php
│   │   │           │   ├── QueueManager.php
│   │   │           │   ├── QueueServiceProvider.php
│   │   │           │   ├── README.md
│   │   │           │   ├── RedisQueue.php
│   │   │           │   ├── SerializableClosure.php
│   │   │           │   ├── SerializesAndRestoresModelIdentifiers.php
│   │   │           │   ├── SerializesModels.php
│   │   │           │   ├── SqsQueue.php
│   │   │           │   ├── SyncQueue.php
│   │   │           │   ├── Worker.php
│   │   │           │   ├── WorkerOptions.php
│   │   │           │   └── composer.json
│   │   │           ├── Redis
│   │   │           │   ├── Connections
│   │   │           │   │   ├── Connection.php
│   │   │           │   │   ├── PhpRedisClusterConnection.php
│   │   │           │   │   ├── PhpRedisConnection.php
│   │   │           │   │   ├── PredisClusterConnection.php
│   │   │           │   │   └── PredisConnection.php
│   │   │           │   ├── Connectors
│   │   │           │   │   ├── PhpRedisConnector.php
│   │   │           │   │   └── PredisConnector.php
│   │   │           │   ├── Events
│   │   │           │   │   └── CommandExecuted.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Limiters
│   │   │           │   │   ├── ConcurrencyLimiter.php
│   │   │           │   │   ├── ConcurrencyLimiterBuilder.php
│   │   │           │   │   ├── DurationLimiter.php
│   │   │           │   │   └── DurationLimiterBuilder.php
│   │   │           │   ├── RedisManager.php
│   │   │           │   ├── RedisServiceProvider.php
│   │   │           │   └── composer.json
│   │   │           ├── Routing
│   │   │           │   ├── AbstractRouteCollection.php
│   │   │           │   ├── CompiledRouteCollection.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── ControllerMakeCommand.php
│   │   │           │   │   ├── MiddlewareMakeCommand.php
│   │   │           │   │   └── stubs
│   │   │           │   │       ├── controller.api.stub
│   │   │           │   │       ├── controller.invokable.stub
│   │   │           │   │       ├── controller.model.api.stub
│   │   │           │   │       ├── controller.model.stub
│   │   │           │   │       ├── controller.nested.api.stub
│   │   │           │   │       ├── controller.nested.stub
│   │   │           │   │       ├── controller.plain.stub
│   │   │           │   │       ├── controller.stub
│   │   │           │   │       └── middleware.stub
│   │   │           │   ├── Contracts
│   │   │           │   │   └── ControllerDispatcher.php
│   │   │           │   ├── Controller.php
│   │   │           │   ├── ControllerDispatcher.php
│   │   │           │   ├── ControllerMiddlewareOptions.php
│   │   │           │   ├── Events
│   │   │           │   │   └── RouteMatched.php
│   │   │           │   ├── Exceptions
│   │   │           │   │   ├── InvalidSignatureException.php
│   │   │           │   │   └── UrlGenerationException.php
│   │   │           │   ├── ImplicitRouteBinding.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Matching
│   │   │           │   │   ├── HostValidator.php
│   │   │           │   │   ├── MethodValidator.php
│   │   │           │   │   ├── SchemeValidator.php
│   │   │           │   │   ├── UriValidator.php
│   │   │           │   │   └── ValidatorInterface.php
│   │   │           │   ├── Middleware
│   │   │           │   │   ├── SubstituteBindings.php
│   │   │           │   │   ├── ThrottleRequests.php
│   │   │           │   │   ├── ThrottleRequestsWithRedis.php
│   │   │           │   │   └── ValidateSignature.php
│   │   │           │   ├── MiddlewareNameResolver.php
│   │   │           │   ├── PendingResourceRegistration.php
│   │   │           │   ├── Pipeline.php
│   │   │           │   ├── RedirectController.php
│   │   │           │   ├── Redirector.php
│   │   │           │   ├── ResourceRegistrar.php
│   │   │           │   ├── ResponseFactory.php
│   │   │           │   ├── Route.php
│   │   │           │   ├── RouteAction.php
│   │   │           │   ├── RouteBinding.php
│   │   │           │   ├── RouteCollection.php
│   │   │           │   ├── RouteCollectionInterface.php
│   │   │           │   ├── RouteDependencyResolverTrait.php
│   │   │           │   ├── RouteFileRegistrar.php
│   │   │           │   ├── RouteGroup.php
│   │   │           │   ├── RouteParameterBinder.php
│   │   │           │   ├── RouteRegistrar.php
│   │   │           │   ├── RouteSignatureParameters.php
│   │   │           │   ├── RouteUri.php
│   │   │           │   ├── RouteUrlGenerator.php
│   │   │           │   ├── Router.php
│   │   │           │   ├── RoutingServiceProvider.php
│   │   │           │   ├── SortedMiddleware.php
│   │   │           │   ├── UrlGenerator.php
│   │   │           │   ├── ViewController.php
│   │   │           │   └── composer.json
│   │   │           ├── Session
│   │   │           │   ├── ArraySessionHandler.php
│   │   │           │   ├── CacheBasedSessionHandler.php
│   │   │           │   ├── Console
│   │   │           │   │   ├── SessionTableCommand.php
│   │   │           │   │   └── stubs
│   │   │           │   │       └── database.stub
│   │   │           │   ├── CookieSessionHandler.php
│   │   │           │   ├── DatabaseSessionHandler.php
│   │   │           │   ├── EncryptedStore.php
│   │   │           │   ├── ExistenceAwareInterface.php
│   │   │           │   ├── FileSessionHandler.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── Middleware
│   │   │           │   │   ├── AuthenticateSession.php
│   │   │           │   │   └── StartSession.php
│   │   │           │   ├── NullSessionHandler.php
│   │   │           │   ├── SessionManager.php
│   │   │           │   ├── SessionServiceProvider.php
│   │   │           │   ├── Store.php
│   │   │           │   ├── TokenMismatchException.php
│   │   │           │   └── composer.json
│   │   │           ├── Support
│   │   │           │   ├── AggregateServiceProvider.php
│   │   │           │   ├── Arr.php
│   │   │           │   ├── Carbon.php
│   │   │           │   ├── Collection.php
│   │   │           │   ├── Composer.php
│   │   │           │   ├── ConfigurationUrlParser.php
│   │   │           │   ├── DateFactory.php
│   │   │           │   ├── Enumerable.php
│   │   │           │   ├── Env.php
│   │   │           │   ├── Facades
│   │   │           │   │   ├── App.php
│   │   │           │   │   ├── Artisan.php
│   │   │           │   │   ├── Auth.php
│   │   │           │   │   ├── Blade.php
│   │   │           │   │   ├── Broadcast.php
│   │   │           │   │   ├── Bus.php
│   │   │           │   │   ├── Cache.php
│   │   │           │   │   ├── Config.php
│   │   │           │   │   ├── Cookie.php
│   │   │           │   │   ├── Crypt.php
│   │   │           │   │   ├── DB.php
│   │   │           │   │   ├── Date.php
│   │   │           │   │   ├── Event.php
│   │   │           │   │   ├── Facade.php
│   │   │           │   │   ├── File.php
│   │   │           │   │   ├── Gate.php
│   │   │           │   │   ├── Hash.php
│   │   │           │   │   ├── Http.php
│   │   │           │   │   ├── Lang.php
│   │   │           │   │   ├── Log.php
│   │   │           │   │   ├── Mail.php
│   │   │           │   │   ├── Notification.php
│   │   │           │   │   ├── Password.php
│   │   │           │   │   ├── Queue.php
│   │   │           │   │   ├── Redirect.php
│   │   │           │   │   ├── Redis.php
│   │   │           │   │   ├── Request.php
│   │   │           │   │   ├── Response.php
│   │   │           │   │   ├── Route.php
│   │   │           │   │   ├── Schema.php
│   │   │           │   │   ├── Session.php
│   │   │           │   │   ├── Storage.php
│   │   │           │   │   ├── URL.php
│   │   │           │   │   ├── Validator.php
│   │   │           │   │   └── View.php
│   │   │           │   ├── Fluent.php
│   │   │           │   ├── HigherOrderCollectionProxy.php
│   │   │           │   ├── HigherOrderTapProxy.php
│   │   │           │   ├── HigherOrderWhenProxy.php
│   │   │           │   ├── HtmlString.php
│   │   │           │   ├── InteractsWithTime.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── LazyCollection.php
│   │   │           │   ├── Manager.php
│   │   │           │   ├── MessageBag.php
│   │   │           │   ├── NamespacedItemResolver.php
│   │   │           │   ├── Optional.php
│   │   │           │   ├── Pluralizer.php
│   │   │           │   ├── ProcessUtils.php
│   │   │           │   ├── Reflector.php
│   │   │           │   ├── ServiceProvider.php
│   │   │           │   ├── Str.php
│   │   │           │   ├── Stringable.php
│   │   │           │   ├── Testing
│   │   │           │   │   └── Fakes
│   │   │           │   │       ├── BusFake.php
│   │   │           │   │       ├── EventFake.php
│   │   │           │   │       ├── MailFake.php
│   │   │           │   │       ├── NotificationFake.php
│   │   │           │   │       ├── PendingMailFake.php
│   │   │           │   │       └── QueueFake.php
│   │   │           │   ├── Traits
│   │   │           │   │   ├── CapsuleManagerTrait.php
│   │   │           │   │   ├── EnumeratesValues.php
│   │   │           │   │   ├── ForwardsCalls.php
│   │   │           │   │   ├── Localizable.php
│   │   │           │   │   ├── Macroable.php
│   │   │           │   │   ├── ReflectsClosures.php
│   │   │           │   │   └── Tappable.php
│   │   │           │   ├── ViewErrorBag.php
│   │   │           │   ├── composer.json
│   │   │           │   └── helpers.php
│   │   │           ├── Testing
│   │   │           │   ├── Assert.php
│   │   │           │   ├── Constraints
│   │   │           │   │   ├── ArraySubset.php
│   │   │           │   │   ├── CountInDatabase.php
│   │   │           │   │   ├── HasInDatabase.php
│   │   │           │   │   ├── SeeInOrder.php
│   │   │           │   │   └── SoftDeletedInDatabase.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── PendingCommand.php
│   │   │           │   ├── TestResponse.php
│   │   │           │   └── composer.json
│   │   │           ├── Translation
│   │   │           │   ├── ArrayLoader.php
│   │   │           │   ├── FileLoader.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── MessageSelector.php
│   │   │           │   ├── TranslationServiceProvider.php
│   │   │           │   ├── Translator.php
│   │   │           │   └── composer.json
│   │   │           ├── Validation
│   │   │           │   ├── ClosureValidationRule.php
│   │   │           │   ├── Concerns
│   │   │           │   │   ├── FilterEmailValidation.php
│   │   │           │   │   ├── FormatsMessages.php
│   │   │           │   │   ├── ReplacesAttributes.php
│   │   │           │   │   └── ValidatesAttributes.php
│   │   │           │   ├── DatabasePresenceVerifier.php
│   │   │           │   ├── DatabasePresenceVerifierInterface.php
│   │   │           │   ├── Factory.php
│   │   │           │   ├── LICENSE.md
│   │   │           │   ├── PresenceVerifierInterface.php
│   │   │           │   ├── Rule.php
│   │   │           │   ├── Rules
│   │   │           │   │   ├── DatabaseRule.php
│   │   │           │   │   ├── Dimensions.php
│   │   │           │   │   ├── Exists.php
│   │   │           │   │   ├── In.php
│   │   │           │   │   ├── NotIn.php
│   │   │           │   │   ├── RequiredIf.php
│   │   │           │   │   └── Unique.php
│   │   │           │   ├── UnauthorizedException.php
│   │   │           │   ├── ValidatesWhenResolvedTrait.php
│   │   │           │   ├── ValidationData.php
│   │   │           │   ├── ValidationException.php
│   │   │           │   ├── ValidationRuleParser.php
│   │   │           │   ├── ValidationServiceProvider.php
│   │   │           │   ├── Validator.php
│   │   │           │   └── composer.json
│   │   │           └── View
│   │   │               ├── AnonymousComponent.php
│   │   │               ├── Compilers
│   │   │               │   ├── BladeCompiler.php
│   │   │               │   ├── Compiler.php
│   │   │               │   ├── CompilerInterface.php
│   │   │               │   ├── ComponentTagCompiler.php
│   │   │               │   └── Concerns
│   │   │               │       ├── CompilesAuthorizations.php
│   │   │               │       ├── CompilesComments.php
│   │   │               │       ├── CompilesComponents.php
│   │   │               │       ├── CompilesConditionals.php
│   │   │               │       ├── CompilesEchos.php
│   │   │               │       ├── CompilesErrors.php
│   │   │               │       ├── CompilesHelpers.php
│   │   │               │       ├── CompilesIncludes.php
│   │   │               │       ├── CompilesInjections.php
│   │   │               │       ├── CompilesJson.php
│   │   │               │       ├── CompilesLayouts.php
│   │   │               │       ├── CompilesLoops.php
│   │   │               │       ├── CompilesRawPhp.php
│   │   │               │       ├── CompilesStacks.php
│   │   │               │       └── CompilesTranslations.php
│   │   │               ├── Component.php
│   │   │               ├── ComponentAttributeBag.php
│   │   │               ├── Concerns
│   │   │               │   ├── ManagesComponents.php
│   │   │               │   ├── ManagesEvents.php
│   │   │               │   ├── ManagesLayouts.php
│   │   │               │   ├── ManagesLoops.php
│   │   │               │   ├── ManagesStacks.php
│   │   │               │   └── ManagesTranslations.php
│   │   │               ├── Engines
│   │   │               │   ├── CompilerEngine.php
│   │   │               │   ├── Engine.php
│   │   │               │   ├── EngineResolver.php
│   │   │               │   ├── FileEngine.php
│   │   │               │   └── PhpEngine.php
│   │   │               ├── Factory.php
│   │   │               ├── FileViewFinder.php
│   │   │               ├── InvokableComponentVariable.php
│   │   │               ├── LICENSE.md
│   │   │               ├── Middleware
│   │   │               │   └── ShareErrorsFromSession.php
│   │   │               ├── View.php
│   │   │               ├── ViewFinderInterface.php
│   │   │               ├── ViewName.php
│   │   │               ├── ViewServiceProvider.php
│   │   │               └── composer.json
│   │   └── ui
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE.md
│   │       ├── README.md
│   │       ├── auth-backend
│   │       │   ├── AuthenticatesUsers.php
│   │       │   ├── ConfirmsPasswords.php
│   │       │   ├── RedirectsUsers.php
│   │       │   ├── RegistersUsers.php
│   │       │   ├── ResetsPasswords.php
│   │       │   ├── SendsPasswordResetEmails.php
│   │       │   ├── ThrottlesLogins.php
│   │       │   └── VerifiesEmails.php
│   │       ├── composer.json
│   │       ├── src
│   │       │   ├── Auth
│   │       │   │   ├── bootstrap-stubs
│   │       │   │   │   ├── auth
│   │       │   │   │   │   ├── login.stub
│   │       │   │   │   │   ├── passwords
│   │       │   │   │   │   │   ├── confirm.stub
│   │       │   │   │   │   │   ├── email.stub
│   │       │   │   │   │   │   └── reset.stub
│   │       │   │   │   │   ├── register.stub
│   │       │   │   │   │   └── verify.stub
│   │       │   │   │   ├── home.stub
│   │       │   │   │   └── layouts
│   │       │   │   │       └── app.stub
│   │       │   │   └── stubs
│   │       │   │       ├── controllers
│   │       │   │       │   └── HomeController.stub
│   │       │   │       └── routes.stub
│   │       │   ├── AuthCommand.php
│   │       │   ├── AuthRouteMethods.php
│   │       │   ├── ControllersCommand.php
│   │       │   ├── Presets
│   │       │   │   ├── Bootstrap.php
│   │       │   │   ├── Preset.php
│   │       │   │   ├── React.php
│   │       │   │   ├── Vue.php
│   │       │   │   ├── bootstrap-stubs
│   │       │   │   │   ├── _variables.scss
│   │       │   │   │   ├── app.scss
│   │       │   │   │   └── bootstrap.js
│   │       │   │   ├── react-stubs
│   │       │   │   │   ├── Example.js
│   │       │   │   │   ├── app.js
│   │       │   │   │   └── webpack.mix.js
│   │       │   │   └── vue-stubs
│   │       │   │       ├── ExampleComponent.vue
│   │       │   │       ├── app.js
│   │       │   │       └── webpack.mix.js
│   │       │   ├── UiCommand.php
│   │       │   └── UiServiceProvider.php
│   │       └── stubs
│   │           ├── Auth
│   │           │   ├── ConfirmPasswordController.stub
│   │           │   ├── ForgotPasswordController.stub
│   │           │   ├── LoginController.stub
│   │           │   ├── RegisterController.stub
│   │           │   ├── ResetPasswordController.stub
│   │           │   └── VerificationController.stub
│   │           └── migrations
│   │               └── 2014_10_12_100000_create_password_resets_table.php
│   ├── league
│   │   ├── commonmark
│   │   │   ├── CHANGELOG-0.x.md
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── bin
│   │   │   │   └── commonmark
│   │   │   ├── composer.json
│   │   │   └── src
│   │   │       ├── Block
│   │   │       │   ├── Element
│   │   │       │   │   ├── AbstractBlock.php
│   │   │       │   │   ├── AbstractStringContainerBlock.php
│   │   │       │   │   ├── BlockQuote.php
│   │   │       │   │   ├── Document.php
│   │   │       │   │   ├── FencedCode.php
│   │   │       │   │   ├── Heading.php
│   │   │       │   │   ├── HtmlBlock.php
│   │   │       │   │   ├── IndentedCode.php
│   │   │       │   │   ├── InlineContainerInterface.php
│   │   │       │   │   ├── ListBlock.php
│   │   │       │   │   ├── ListData.php
│   │   │       │   │   ├── ListItem.php
│   │   │       │   │   ├── Paragraph.php
│   │   │       │   │   ├── StringContainerInterface.php
│   │   │       │   │   └── ThematicBreak.php
│   │   │       │   ├── Parser
│   │   │       │   │   ├── ATXHeadingParser.php
│   │   │       │   │   ├── BlockParserInterface.php
│   │   │       │   │   ├── BlockQuoteParser.php
│   │   │       │   │   ├── FencedCodeParser.php
│   │   │       │   │   ├── HtmlBlockParser.php
│   │   │       │   │   ├── IndentedCodeParser.php
│   │   │       │   │   ├── LazyParagraphParser.php
│   │   │       │   │   ├── ListParser.php
│   │   │       │   │   ├── SetExtHeadingParser.php
│   │   │       │   │   └── ThematicBreakParser.php
│   │   │       │   └── Renderer
│   │   │       │       ├── BlockQuoteRenderer.php
│   │   │       │       ├── BlockRendererInterface.php
│   │   │       │       ├── DocumentRenderer.php
│   │   │       │       ├── FencedCodeRenderer.php
│   │   │       │       ├── HeadingRenderer.php
│   │   │       │       ├── HtmlBlockRenderer.php
│   │   │       │       ├── IndentedCodeRenderer.php
│   │   │       │       ├── ListBlockRenderer.php
│   │   │       │       ├── ListItemRenderer.php
│   │   │       │       ├── ParagraphRenderer.php
│   │   │       │       └── ThematicBreakRenderer.php
│   │   │       ├── CommonMarkConverter.php
│   │   │       ├── ConfigurableEnvironmentInterface.php
│   │   │       ├── Context.php
│   │   │       ├── ContextInterface.php
│   │   │       ├── Converter.php
│   │   │       ├── ConverterInterface.php
│   │   │       ├── Cursor.php
│   │   │       ├── Delimiter
│   │   │       │   ├── Delimiter.php
│   │   │       │   ├── DelimiterInterface.php
│   │   │       │   ├── DelimiterStack.php
│   │   │       │   └── Processor
│   │   │       │       ├── DelimiterProcessorCollection.php
│   │   │       │       ├── DelimiterProcessorCollectionInterface.php
│   │   │       │       ├── DelimiterProcessorInterface.php
│   │   │       │       ├── EmphasisDelimiterProcessor.php
│   │   │       │       └── StaggeredDelimiterProcessor.php
│   │   │       ├── DocParser.php
│   │   │       ├── DocParserInterface.php
│   │   │       ├── ElementRendererInterface.php
│   │   │       ├── Environment.php
│   │   │       ├── EnvironmentAwareInterface.php
│   │   │       ├── EnvironmentInterface.php
│   │   │       ├── Event
│   │   │       │   ├── AbstractEvent.php
│   │   │       │   ├── DocumentParsedEvent.php
│   │   │       │   └── DocumentPreParsedEvent.php
│   │   │       ├── Exception
│   │   │       │   ├── InvalidOptionException.php
│   │   │       │   └── UnexpectedEncodingException.php
│   │   │       ├── Extension
│   │   │       │   ├── Attributes
│   │   │       │   │   ├── AttributesExtension.php
│   │   │       │   │   ├── Event
│   │   │       │   │   │   └── AttributesListener.php
│   │   │       │   │   ├── Node
│   │   │       │   │   │   ├── Attributes.php
│   │   │       │   │   │   └── AttributesInline.php
│   │   │       │   │   ├── Parser
│   │   │       │   │   │   ├── AttributesBlockParser.php
│   │   │       │   │   │   └── AttributesInlineParser.php
│   │   │       │   │   └── Util
│   │   │       │   │       └── AttributesHelper.php
│   │   │       │   ├── Autolink
│   │   │       │   │   ├── AutolinkExtension.php
│   │   │       │   │   ├── EmailAutolinkProcessor.php
│   │   │       │   │   ├── InlineMentionParser.php
│   │   │       │   │   └── UrlAutolinkProcessor.php
│   │   │       │   ├── CommonMarkCoreExtension.php
│   │   │       │   ├── DisallowedRawHtml
│   │   │       │   │   ├── DisallowedRawHtmlBlockRenderer.php
│   │   │       │   │   ├── DisallowedRawHtmlExtension.php
│   │   │       │   │   └── DisallowedRawHtmlInlineRenderer.php
│   │   │       │   ├── ExtensionInterface.php
│   │   │       │   ├── ExternalLink
│   │   │       │   │   ├── ExternalLinkExtension.php
│   │   │       │   │   └── ExternalLinkProcessor.php
│   │   │       │   ├── Footnote
│   │   │       │   │   ├── Event
│   │   │       │   │   │   ├── AnonymousFootnotesListener.php
│   │   │       │   │   │   ├── GatherFootnotesListener.php
│   │   │       │   │   │   └── NumberFootnotesListener.php
│   │   │       │   │   ├── FootnoteExtension.php
│   │   │       │   │   ├── Node
│   │   │       │   │   │   ├── Footnote.php
│   │   │       │   │   │   ├── FootnoteBackref.php
│   │   │       │   │   │   ├── FootnoteContainer.php
│   │   │       │   │   │   └── FootnoteRef.php
│   │   │       │   │   ├── Parser
│   │   │       │   │   │   ├── AnonymousFootnoteRefParser.php
│   │   │       │   │   │   ├── FootnoteParser.php
│   │   │       │   │   │   └── FootnoteRefParser.php
│   │   │       │   │   └── Renderer
│   │   │       │   │       ├── FootnoteBackrefRenderer.php
│   │   │       │   │       ├── FootnoteContainerRenderer.php
│   │   │       │   │       ├── FootnoteRefRenderer.php
│   │   │       │   │       └── FootnoteRenderer.php
│   │   │       │   ├── GithubFlavoredMarkdownExtension.php
│   │   │       │   ├── HeadingPermalink
│   │   │       │   │   ├── HeadingPermalink.php
│   │   │       │   │   ├── HeadingPermalinkExtension.php
│   │   │       │   │   ├── HeadingPermalinkProcessor.php
│   │   │       │   │   ├── HeadingPermalinkRenderer.php
│   │   │       │   │   └── Slug
│   │   │       │   │       ├── DefaultSlugGenerator.php
│   │   │       │   │       └── SlugGeneratorInterface.php
│   │   │       │   ├── InlinesOnly
│   │   │       │   │   ├── ChildRenderer.php
│   │   │       │   │   └── InlinesOnlyExtension.php
│   │   │       │   ├── Mention
│   │   │       │   │   ├── Generator
│   │   │       │   │   │   ├── CallbackGenerator.php
│   │   │       │   │   │   ├── MentionGeneratorInterface.php
│   │   │       │   │   │   └── StringTemplateLinkGenerator.php
│   │   │       │   │   ├── Mention.php
│   │   │       │   │   ├── MentionExtension.php
│   │   │       │   │   └── MentionParser.php
│   │   │       │   ├── SmartPunct
│   │   │       │   │   ├── PunctuationParser.php
│   │   │       │   │   ├── Quote.php
│   │   │       │   │   ├── QuoteParser.php
│   │   │       │   │   ├── QuoteProcessor.php
│   │   │       │   │   ├── QuoteRenderer.php
│   │   │       │   │   └── SmartPunctExtension.php
│   │   │       │   ├── Strikethrough
│   │   │       │   │   ├── Strikethrough.php
│   │   │       │   │   ├── StrikethroughDelimiterProcessor.php
│   │   │       │   │   ├── StrikethroughExtension.php
│   │   │       │   │   └── StrikethroughRenderer.php
│   │   │       │   ├── Table
│   │   │       │   │   ├── Table.php
│   │   │       │   │   ├── TableCell.php
│   │   │       │   │   ├── TableCellRenderer.php
│   │   │       │   │   ├── TableExtension.php
│   │   │       │   │   ├── TableParser.php
│   │   │       │   │   ├── TableRenderer.php
│   │   │       │   │   ├── TableRow.php
│   │   │       │   │   ├── TableRowRenderer.php
│   │   │       │   │   ├── TableSection.php
│   │   │       │   │   └── TableSectionRenderer.php
│   │   │       │   ├── TableOfContents
│   │   │       │   │   ├── Node
│   │   │       │   │   │   ├── TableOfContents.php
│   │   │       │   │   │   └── TableOfContentsPlaceholder.php
│   │   │       │   │   ├── Normalizer
│   │   │       │   │   │   ├── AsIsNormalizerStrategy.php
│   │   │       │   │   │   ├── FlatNormalizerStrategy.php
│   │   │       │   │   │   ├── NormalizerStrategyInterface.php
│   │   │       │   │   │   └── RelativeNormalizerStrategy.php
│   │   │       │   │   ├── TableOfContents.php
│   │   │       │   │   ├── TableOfContentsBuilder.php
│   │   │       │   │   ├── TableOfContentsExtension.php
│   │   │       │   │   ├── TableOfContentsGenerator.php
│   │   │       │   │   ├── TableOfContentsGeneratorInterface.php
│   │   │       │   │   ├── TableOfContentsPlaceholderParser.php
│   │   │       │   │   └── TableOfContentsPlaceholderRenderer.php
│   │   │       │   └── TaskList
│   │   │       │       ├── TaskListExtension.php
│   │   │       │       ├── TaskListItemMarker.php
│   │   │       │       ├── TaskListItemMarkerParser.php
│   │   │       │       └── TaskListItemMarkerRenderer.php
│   │   │       ├── GithubFlavoredMarkdownConverter.php
│   │   │       ├── HtmlElement.php
│   │   │       ├── HtmlRenderer.php
│   │   │       ├── Inline
│   │   │       │   ├── AdjacentTextMerger.php
│   │   │       │   ├── Element
│   │   │       │   │   ├── AbstractInline.php
│   │   │       │   │   ├── AbstractStringContainer.php
│   │   │       │   │   ├── AbstractWebResource.php
│   │   │       │   │   ├── Code.php
│   │   │       │   │   ├── Emphasis.php
│   │   │       │   │   ├── HtmlInline.php
│   │   │       │   │   ├── Image.php
│   │   │       │   │   ├── Link.php
│   │   │       │   │   ├── Newline.php
│   │   │       │   │   ├── Strong.php
│   │   │       │   │   └── Text.php
│   │   │       │   ├── Parser
│   │   │       │   │   ├── AutolinkParser.php
│   │   │       │   │   ├── BacktickParser.php
│   │   │       │   │   ├── BangParser.php
│   │   │       │   │   ├── CloseBracketParser.php
│   │   │       │   │   ├── EntityParser.php
│   │   │       │   │   ├── EscapableParser.php
│   │   │       │   │   ├── HtmlInlineParser.php
│   │   │       │   │   ├── InlineParserInterface.php
│   │   │       │   │   ├── NewlineParser.php
│   │   │       │   │   └── OpenBracketParser.php
│   │   │       │   └── Renderer
│   │   │       │       ├── CodeRenderer.php
│   │   │       │       ├── EmphasisRenderer.php
│   │   │       │       ├── HtmlInlineRenderer.php
│   │   │       │       ├── ImageRenderer.php
│   │   │       │       ├── InlineRendererInterface.php
│   │   │       │       ├── LinkRenderer.php
│   │   │       │       ├── NewlineRenderer.php
│   │   │       │       ├── StrongRenderer.php
│   │   │       │       └── TextRenderer.php
│   │   │       ├── InlineParserContext.php
│   │   │       ├── InlineParserEngine.php
│   │   │       ├── Input
│   │   │       │   ├── MarkdownInput.php
│   │   │       │   └── MarkdownInputInterface.php
│   │   │       ├── MarkdownConverterInterface.php
│   │   │       ├── Node
│   │   │       │   ├── Node.php
│   │   │       │   ├── NodeWalker.php
│   │   │       │   └── NodeWalkerEvent.php
│   │   │       ├── Normalizer
│   │   │       │   ├── SlugNormalizer.php
│   │   │       │   ├── TextNormalizer.php
│   │   │       │   └── TextNormalizerInterface.php
│   │   │       ├── Reference
│   │   │       │   ├── Reference.php
│   │   │       │   ├── ReferenceInterface.php
│   │   │       │   ├── ReferenceMap.php
│   │   │       │   ├── ReferenceMapInterface.php
│   │   │       │   └── ReferenceParser.php
│   │   │       ├── UnmatchedBlockCloser.php
│   │   │       └── Util
│   │   │           ├── ArrayCollection.php
│   │   │           ├── Configuration.php
│   │   │           ├── ConfigurationAwareInterface.php
│   │   │           ├── ConfigurationInterface.php
│   │   │           ├── Html5Entities.php
│   │   │           ├── Html5EntityDecoder.php
│   │   │           ├── LinkParserHelper.php
│   │   │           ├── PrioritizedList.php
│   │   │           ├── RegexHelper.php
│   │   │           ├── UrlEncoder.php
│   │   │           └── Xml.php
│   │   ├── flysystem
│   │   │   ├── CODE_OF_CONDUCT.md
│   │   │   ├── LICENSE
│   │   │   ├── SECURITY.md
│   │   │   ├── composer.json
│   │   │   ├── deprecations.md
│   │   │   └── src
│   │   │       ├── Adapter
│   │   │       │   ├── AbstractAdapter.php
│   │   │       │   ├── AbstractFtpAdapter.php
│   │   │       │   ├── CanOverwriteFiles.php
│   │   │       │   ├── Ftp.php
│   │   │       │   ├── Ftpd.php
│   │   │       │   ├── Local.php
│   │   │       │   ├── NullAdapter.php
│   │   │       │   ├── Polyfill
│   │   │       │   │   ├── NotSupportingVisibilityTrait.php
│   │   │       │   │   ├── StreamedCopyTrait.php
│   │   │       │   │   ├── StreamedReadingTrait.php
│   │   │       │   │   ├── StreamedTrait.php
│   │   │       │   │   └── StreamedWritingTrait.php
│   │   │       │   └── SynologyFtp.php
│   │   │       ├── AdapterInterface.php
│   │   │       ├── Config.php
│   │   │       ├── ConfigAwareTrait.php
│   │   │       ├── ConnectionErrorException.php
│   │   │       ├── ConnectionRuntimeException.php
│   │   │       ├── Directory.php
│   │   │       ├── Exception.php
│   │   │       ├── File.php
│   │   │       ├── FileExistsException.php
│   │   │       ├── FileNotFoundException.php
│   │   │       ├── Filesystem.php
│   │   │       ├── FilesystemException.php
│   │   │       ├── FilesystemInterface.php
│   │   │       ├── FilesystemNotFoundException.php
│   │   │       ├── Handler.php
│   │   │       ├── InvalidRootException.php
│   │   │       ├── MountManager.php
│   │   │       ├── NotSupportedException.php
│   │   │       ├── Plugin
│   │   │       │   ├── AbstractPlugin.php
│   │   │       │   ├── EmptyDir.php
│   │   │       │   ├── ForcedCopy.php
│   │   │       │   ├── ForcedRename.php
│   │   │       │   ├── GetWithMetadata.php
│   │   │       │   ├── ListFiles.php
│   │   │       │   ├── ListPaths.php
│   │   │       │   ├── ListWith.php
│   │   │       │   ├── PluggableTrait.php
│   │   │       │   └── PluginNotFoundException.php
│   │   │       ├── PluginInterface.php
│   │   │       ├── ReadInterface.php
│   │   │       ├── RootViolationException.php
│   │   │       ├── SafeStorage.php
│   │   │       ├── UnreadableFileException.php
│   │   │       ├── Util
│   │   │       │   ├── ContentListingFormatter.php
│   │   │       │   ├── MimeType.php
│   │   │       │   └── StreamHasher.php
│   │   │       └── Util.php
│   │   └── mime-type-detection
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── composer.json
│   │       └── src
│   │           ├── EmptyExtensionToMimeTypeMap.php
│   │           ├── ExtensionMimeTypeDetector.php
│   │           ├── ExtensionToMimeTypeMap.php
│   │           ├── FinfoMimeTypeDetector.php
│   │           ├── GeneratedExtensionToMimeTypeMap.php
│   │           └── MimeTypeDetector.php
│   ├── monolog
│   │   └── monolog
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── UPGRADE.md
│   │       ├── composer.json
│   │       ├── phpstan.neon.dist
│   │       └── src
│   │           └── Monolog
│   │               ├── DateTimeImmutable.php
│   │               ├── ErrorHandler.php
│   │               ├── Formatter
│   │               │   ├── ChromePHPFormatter.php
│   │               │   ├── ElasticaFormatter.php
│   │               │   ├── ElasticsearchFormatter.php
│   │               │   ├── FlowdockFormatter.php
│   │               │   ├── FluentdFormatter.php
│   │               │   ├── FormatterInterface.php
│   │               │   ├── GelfMessageFormatter.php
│   │               │   ├── HtmlFormatter.php
│   │               │   ├── JsonFormatter.php
│   │               │   ├── LineFormatter.php
│   │               │   ├── LogglyFormatter.php
│   │               │   ├── LogmaticFormatter.php
│   │               │   ├── LogstashFormatter.php
│   │               │   ├── MongoDBFormatter.php
│   │               │   ├── NormalizerFormatter.php
│   │               │   ├── ScalarFormatter.php
│   │               │   └── WildfireFormatter.php
│   │               ├── Handler
│   │               │   ├── AbstractHandler.php
│   │               │   ├── AbstractProcessingHandler.php
│   │               │   ├── AbstractSyslogHandler.php
│   │               │   ├── AmqpHandler.php
│   │               │   ├── BrowserConsoleHandler.php
│   │               │   ├── BufferHandler.php
│   │               │   ├── ChromePHPHandler.php
│   │               │   ├── CouchDBHandler.php
│   │               │   ├── CubeHandler.php
│   │               │   ├── Curl
│   │               │   │   └── Util.php
│   │               │   ├── DeduplicationHandler.php
│   │               │   ├── DoctrineCouchDBHandler.php
│   │               │   ├── DynamoDbHandler.php
│   │               │   ├── ElasticaHandler.php
│   │               │   ├── ElasticsearchHandler.php
│   │               │   ├── ErrorLogHandler.php
│   │               │   ├── FallbackGroupHandler.php
│   │               │   ├── FilterHandler.php
│   │               │   ├── FingersCrossed
│   │               │   │   ├── ActivationStrategyInterface.php
│   │               │   │   ├── ChannelLevelActivationStrategy.php
│   │               │   │   └── ErrorLevelActivationStrategy.php
│   │               │   ├── FingersCrossedHandler.php
│   │               │   ├── FirePHPHandler.php
│   │               │   ├── FleepHookHandler.php
│   │               │   ├── FlowdockHandler.php
│   │               │   ├── FormattableHandlerInterface.php
│   │               │   ├── FormattableHandlerTrait.php
│   │               │   ├── GelfHandler.php
│   │               │   ├── GroupHandler.php
│   │               │   ├── Handler.php
│   │               │   ├── HandlerInterface.php
│   │               │   ├── HandlerWrapper.php
│   │               │   ├── IFTTTHandler.php
│   │               │   ├── InsightOpsHandler.php
│   │               │   ├── LogEntriesHandler.php
│   │               │   ├── LogglyHandler.php
│   │               │   ├── LogmaticHandler.php
│   │               │   ├── MailHandler.php
│   │               │   ├── MandrillHandler.php
│   │               │   ├── MissingExtensionException.php
│   │               │   ├── MongoDBHandler.php
│   │               │   ├── NativeMailerHandler.php
│   │               │   ├── NewRelicHandler.php
│   │               │   ├── NoopHandler.php
│   │               │   ├── NullHandler.php
│   │               │   ├── OverflowHandler.php
│   │               │   ├── PHPConsoleHandler.php
│   │               │   ├── ProcessHandler.php
│   │               │   ├── ProcessableHandlerInterface.php
│   │               │   ├── ProcessableHandlerTrait.php
│   │               │   ├── PsrHandler.php
│   │               │   ├── PushoverHandler.php
│   │               │   ├── RedisHandler.php
│   │               │   ├── RedisPubSubHandler.php
│   │               │   ├── RollbarHandler.php
│   │               │   ├── RotatingFileHandler.php
│   │               │   ├── SamplingHandler.php
│   │               │   ├── SendGridHandler.php
│   │               │   ├── Slack
│   │               │   │   └── SlackRecord.php
│   │               │   ├── SlackHandler.php
│   │               │   ├── SlackWebhookHandler.php
│   │               │   ├── SocketHandler.php
│   │               │   ├── SqsHandler.php
│   │               │   ├── StreamHandler.php
│   │               │   ├── SwiftMailerHandler.php
│   │               │   ├── SyslogHandler.php
│   │               │   ├── SyslogUdp
│   │               │   │   └── UdpSocket.php
│   │               │   ├── SyslogUdpHandler.php
│   │               │   ├── TelegramBotHandler.php
│   │               │   ├── TestHandler.php
│   │               │   ├── WebRequestRecognizerTrait.php
│   │               │   ├── WhatFailureGroupHandler.php
│   │               │   └── ZendMonitorHandler.php
│   │               ├── Logger.php
│   │               ├── Processor
│   │               │   ├── GitProcessor.php
│   │               │   ├── HostnameProcessor.php
│   │               │   ├── IntrospectionProcessor.php
│   │               │   ├── MemoryPeakUsageProcessor.php
│   │               │   ├── MemoryProcessor.php
│   │               │   ├── MemoryUsageProcessor.php
│   │               │   ├── MercurialProcessor.php
│   │               │   ├── ProcessIdProcessor.php
│   │               │   ├── ProcessorInterface.php
│   │               │   ├── PsrLogMessageProcessor.php
│   │               │   ├── TagProcessor.php
│   │               │   ├── UidProcessor.php
│   │               │   └── WebProcessor.php
│   │               ├── Registry.php
│   │               ├── ResettableInterface.php
│   │               ├── SignalHandler.php
│   │               ├── Test
│   │               │   └── TestCase.php
│   │               └── Utils.php
│   ├── nesbot
│   │   └── carbon
│   │       ├── LICENSE
│   │       ├── bin
│   │       │   ├── carbon
│   │       │   └── carbon.bat
│   │       ├── composer.json
│   │       ├── contributing.md
│   │       ├── extension.neon
│   │       ├── phpmd.xml
│   │       ├── readme.md
│   │       └── src
│   │           └── Carbon
│   │               ├── Carbon.php
│   │               ├── CarbonConverterInterface.php
│   │               ├── CarbonImmutable.php
│   │               ├── CarbonInterface.php
│   │               ├── CarbonInterval.php
│   │               ├── CarbonPeriod.php
│   │               ├── CarbonTimeZone.php
│   │               ├── Cli
│   │               │   └── Invoker.php
│   │               ├── Doctrine
│   │               │   ├── CarbonDoctrineType.php
│   │               │   ├── CarbonImmutableType.php
│   │               │   ├── CarbonType.php
│   │               │   ├── CarbonTypeConverter.php
│   │               │   ├── DateTimeDefaultPrecision.php
│   │               │   ├── DateTimeImmutableType.php
│   │               │   └── DateTimeType.php
│   │               ├── Exceptions
│   │               │   ├── BadComparisonUnitException.php
│   │               │   ├── BadFluentConstructorException.php
│   │               │   ├── BadFluentSetterException.php
│   │               │   ├── BadMethodCallException.php
│   │               │   ├── Exception.php
│   │               │   ├── ImmutableException.php
│   │               │   ├── InvalidArgumentException.php
│   │               │   ├── InvalidCastException.php
│   │               │   ├── InvalidDateException.php
│   │               │   ├── InvalidFormatException.php
│   │               │   ├── InvalidIntervalException.php
│   │               │   ├── InvalidPeriodDateException.php
│   │               │   ├── InvalidPeriodParameterException.php
│   │               │   ├── InvalidTimeZoneException.php
│   │               │   ├── InvalidTypeException.php
│   │               │   ├── NotACarbonClassException.php
│   │               │   ├── NotAPeriodException.php
│   │               │   ├── NotLocaleAwareException.php
│   │               │   ├── OutOfRangeException.php
│   │               │   ├── ParseErrorException.php
│   │               │   ├── RuntimeException.php
│   │               │   ├── UnitException.php
│   │               │   ├── UnitNotConfiguredException.php
│   │               │   ├── UnknownGetterException.php
│   │               │   ├── UnknownMethodException.php
│   │               │   ├── UnknownSetterException.php
│   │               │   ├── UnknownUnitException.php
│   │               │   └── UnreachableException.php
│   │               ├── Factory.php
│   │               ├── FactoryImmutable.php
│   │               ├── Lang
│   │               │   ├── aa.php
│   │               │   ├── aa_DJ.php
│   │               │   ├── aa_ER.php
│   │               │   ├── aa_ER@saaho.php
│   │               │   ├── aa_ET.php
│   │               │   ├── af.php
│   │               │   ├── af_NA.php
│   │               │   ├── af_ZA.php
│   │               │   ├── agq.php
│   │               │   ├── agr.php
│   │               │   ├── agr_PE.php
│   │               │   ├── ak.php
│   │               │   ├── ak_GH.php
│   │               │   ├── am.php
│   │               │   ├── am_ET.php
│   │               │   ├── an.php
│   │               │   ├── an_ES.php
│   │               │   ├── anp.php
│   │               │   ├── anp_IN.php
│   │               │   ├── ar.php
│   │               │   ├── ar_AE.php
│   │               │   ├── ar_BH.php
│   │               │   ├── ar_DJ.php
│   │               │   ├── ar_DZ.php
│   │               │   ├── ar_EG.php
│   │               │   ├── ar_EH.php
│   │               │   ├── ar_ER.php
│   │               │   ├── ar_IL.php
│   │               │   ├── ar_IN.php
│   │               │   ├── ar_IQ.php
│   │               │   ├── ar_JO.php
│   │               │   ├── ar_KM.php
│   │               │   ├── ar_KW.php
│   │               │   ├── ar_LB.php
│   │               │   ├── ar_LY.php
│   │               │   ├── ar_MA.php
│   │               │   ├── ar_MR.php
│   │               │   ├── ar_OM.php
│   │               │   ├── ar_PS.php
│   │               │   ├── ar_QA.php
│   │               │   ├── ar_SA.php
│   │               │   ├── ar_SD.php
│   │               │   ├── ar_SO.php
│   │               │   ├── ar_SS.php
│   │               │   ├── ar_SY.php
│   │               │   ├── ar_Shakl.php
│   │               │   ├── ar_TD.php
│   │               │   ├── ar_TN.php
│   │               │   ├── ar_YE.php
│   │               │   ├── as.php
│   │               │   ├── as_IN.php
│   │               │   ├── asa.php
│   │               │   ├── ast.php
│   │               │   ├── ast_ES.php
│   │               │   ├── ayc.php
│   │               │   ├── ayc_PE.php
│   │               │   ├── az.php
│   │               │   ├── az_AZ.php
│   │               │   ├── az_Cyrl.php
│   │               │   ├── az_IR.php
│   │               │   ├── az_Latn.php
│   │               │   ├── bas.php
│   │               │   ├── be.php
│   │               │   ├── be_BY.php
│   │               │   ├── be_BY@latin.php
│   │               │   ├── bem.php
│   │               │   ├── bem_ZM.php
│   │               │   ├── ber.php
│   │               │   ├── ber_DZ.php
│   │               │   ├── ber_MA.php
│   │               │   ├── bez.php
│   │               │   ├── bg.php
│   │               │   ├── bg_BG.php
│   │               │   ├── bhb.php
│   │               │   ├── bhb_IN.php
│   │               │   ├── bho.php
│   │               │   ├── bho_IN.php
│   │               │   ├── bi.php
│   │               │   ├── bi_VU.php
│   │               │   ├── bm.php
│   │               │   ├── bn.php
│   │               │   ├── bn_BD.php
│   │               │   ├── bn_IN.php
│   │               │   ├── bo.php
│   │               │   ├── bo_CN.php
│   │               │   ├── bo_IN.php
│   │               │   ├── br.php
│   │               │   ├── br_FR.php
│   │               │   ├── brx.php
│   │               │   ├── brx_IN.php
│   │               │   ├── bs.php
│   │               │   ├── bs_BA.php
│   │               │   ├── bs_Cyrl.php
│   │               │   ├── bs_Latn.php
│   │               │   ├── byn.php
│   │               │   ├── byn_ER.php
│   │               │   ├── ca.php
│   │               │   ├── ca_AD.php
│   │               │   ├── ca_ES.php
│   │               │   ├── ca_ES_Valencia.php
│   │               │   ├── ca_FR.php
│   │               │   ├── ca_IT.php
│   │               │   ├── ccp.php
│   │               │   ├── ccp_IN.php
│   │               │   ├── ce.php
│   │               │   ├── ce_RU.php
│   │               │   ├── cgg.php
│   │               │   ├── chr.php
│   │               │   ├── chr_US.php
│   │               │   ├── cmn.php
│   │               │   ├── cmn_TW.php
│   │               │   ├── crh.php
│   │               │   ├── crh_UA.php
│   │               │   ├── cs.php
│   │               │   ├── cs_CZ.php
│   │               │   ├── csb.php
│   │               │   ├── csb_PL.php
│   │               │   ├── cu.php
│   │               │   ├── cv.php
│   │               │   ├── cv_RU.php
│   │               │   ├── cy.php
│   │               │   ├── cy_GB.php
│   │               │   ├── da.php
│   │               │   ├── da_DK.php
│   │               │   ├── da_GL.php
│   │               │   ├── dav.php
│   │               │   ├── de.php
│   │               │   ├── de_AT.php
│   │               │   ├── de_BE.php
│   │               │   ├── de_CH.php
│   │               │   ├── de_DE.php
│   │               │   ├── de_IT.php
│   │               │   ├── de_LI.php
│   │               │   ├── de_LU.php
│   │               │   ├── dje.php
│   │               │   ├── doi.php
│   │               │   ├── doi_IN.php
│   │               │   ├── dsb.php
│   │               │   ├── dsb_DE.php
│   │               │   ├── dua.php
│   │               │   ├── dv.php
│   │               │   ├── dv_MV.php
│   │               │   ├── dyo.php
│   │               │   ├── dz.php
│   │               │   ├── dz_BT.php
│   │               │   ├── ebu.php
│   │               │   ├── ee.php
│   │               │   ├── ee_TG.php
│   │               │   ├── el.php
│   │               │   ├── el_CY.php
│   │               │   ├── el_GR.php
│   │               │   ├── en.php
│   │               │   ├── en_001.php
│   │               │   ├── en_150.php
│   │               │   ├── en_AG.php
│   │               │   ├── en_AI.php
│   │               │   ├── en_AS.php
│   │               │   ├── en_AT.php
│   │               │   ├── en_AU.php
│   │               │   ├── en_BB.php
│   │               │   ├── en_BE.php
│   │               │   ├── en_BI.php
│   │               │   ├── en_BM.php
│   │               │   ├── en_BS.php
│   │               │   ├── en_BW.php
│   │               │   ├── en_BZ.php
│   │               │   ├── en_CA.php
│   │               │   ├── en_CC.php
│   │               │   ├── en_CH.php
│   │               │   ├── en_CK.php
│   │               │   ├── en_CM.php
│   │               │   ├── en_CX.php
│   │               │   ├── en_CY.php
│   │               │   ├── en_DE.php
│   │               │   ├── en_DG.php
│   │               │   ├── en_DK.php
│   │               │   ├── en_DM.php
│   │               │   ├── en_ER.php
│   │               │   ├── en_FI.php
│   │               │   ├── en_FJ.php
│   │               │   ├── en_FK.php
│   │               │   ├── en_FM.php
│   │               │   ├── en_GB.php
│   │               │   ├── en_GD.php
│   │               │   ├── en_GG.php
│   │               │   ├── en_GH.php
│   │               │   ├── en_GI.php
│   │               │   ├── en_GM.php
│   │               │   ├── en_GU.php
│   │               │   ├── en_GY.php
│   │               │   ├── en_HK.php
│   │               │   ├── en_IE.php
│   │               │   ├── en_IL.php
│   │               │   ├── en_IM.php
│   │               │   ├── en_IN.php
│   │               │   ├── en_IO.php
│   │               │   ├── en_ISO.php
│   │               │   ├── en_JE.php
│   │               │   ├── en_JM.php
│   │               │   ├── en_KE.php
│   │               │   ├── en_KI.php
│   │               │   ├── en_KN.php
│   │               │   ├── en_KY.php
│   │               │   ├── en_LC.php
│   │               │   ├── en_LR.php
│   │               │   ├── en_LS.php
│   │               │   ├── en_MG.php
│   │               │   ├── en_MH.php
│   │               │   ├── en_MO.php
│   │               │   ├── en_MP.php
│   │               │   ├── en_MS.php
│   │               │   ├── en_MT.php
│   │               │   ├── en_MU.php
│   │               │   ├── en_MW.php
│   │               │   ├── en_MY.php
│   │               │   ├── en_NA.php
│   │               │   ├── en_NF.php
│   │               │   ├── en_NG.php
│   │               │   ├── en_NL.php
│   │               │   ├── en_NR.php
│   │               │   ├── en_NU.php
│   │               │   ├── en_NZ.php
│   │               │   ├── en_PG.php
│   │               │   ├── en_PH.php
│   │               │   ├── en_PK.php
│   │               │   ├── en_PN.php
│   │               │   ├── en_PR.php
│   │               │   ├── en_PW.php
│   │               │   ├── en_RW.php
│   │               │   ├── en_SB.php
│   │               │   ├── en_SC.php
│   │               │   ├── en_SD.php
│   │               │   ├── en_SE.php
│   │               │   ├── en_SG.php
│   │               │   ├── en_SH.php
│   │               │   ├── en_SI.php
│   │               │   ├── en_SL.php
│   │               │   ├── en_SS.php
│   │               │   ├── en_SX.php
│   │               │   ├── en_SZ.php
│   │               │   ├── en_TC.php
│   │               │   ├── en_TK.php
│   │               │   ├── en_TO.php
│   │               │   ├── en_TT.php
│   │               │   ├── en_TV.php
│   │               │   ├── en_TZ.php
│   │               │   ├── en_UG.php
│   │               │   ├── en_UM.php
│   │               │   ├── en_US.php
│   │               │   ├── en_US_Posix.php
│   │               │   ├── en_VC.php
│   │               │   ├── en_VG.php
│   │               │   ├── en_VI.php
│   │               │   ├── en_VU.php
│   │               │   ├── en_WS.php
│   │               │   ├── en_ZA.php
│   │               │   ├── en_ZM.php
│   │               │   ├── en_ZW.php
│   │               │   ├── eo.php
│   │               │   ├── es.php
│   │               │   ├── es_419.php
│   │               │   ├── es_AR.php
│   │               │   ├── es_BO.php
│   │               │   ├── es_BR.php
│   │               │   ├── es_BZ.php
│   │               │   ├── es_CL.php
│   │               │   ├── es_CO.php
│   │               │   ├── es_CR.php
│   │               │   ├── es_CU.php
│   │               │   ├── es_DO.php
│   │               │   ├── es_EA.php
│   │               │   ├── es_EC.php
│   │               │   ├── es_ES.php
│   │               │   ├── es_GQ.php
│   │               │   ├── es_GT.php
│   │               │   ├── es_HN.php
│   │               │   ├── es_IC.php
│   │               │   ├── es_MX.php
│   │               │   ├── es_NI.php
│   │               │   ├── es_PA.php
│   │               │   ├── es_PE.php
│   │               │   ├── es_PH.php
│   │               │   ├── es_PR.php
│   │               │   ├── es_PY.php
│   │               │   ├── es_SV.php
│   │               │   ├── es_US.php
│   │               │   ├── es_UY.php
│   │               │   ├── es_VE.php
│   │               │   ├── et.php
│   │               │   ├── et_EE.php
│   │               │   ├── eu.php
│   │               │   ├── eu_ES.php
│   │               │   ├── ewo.php
│   │               │   ├── fa.php
│   │               │   ├── fa_AF.php
│   │               │   ├── fa_IR.php
│   │               │   ├── ff.php
│   │               │   ├── ff_CM.php
│   │               │   ├── ff_GN.php
│   │               │   ├── ff_MR.php
│   │               │   ├── ff_SN.php
│   │               │   ├── fi.php
│   │               │   ├── fi_FI.php
│   │               │   ├── fil.php
│   │               │   ├── fil_PH.php
│   │               │   ├── fo.php
│   │               │   ├── fo_DK.php
│   │               │   ├── fo_FO.php
│   │               │   ├── fr.php
│   │               │   ├── fr_BE.php
│   │               │   ├── fr_BF.php
│   │               │   ├── fr_BI.php
│   │               │   ├── fr_BJ.php
│   │               │   ├── fr_BL.php
│   │               │   ├── fr_CA.php
│   │               │   ├── fr_CD.php
│   │               │   ├── fr_CF.php
│   │               │   ├── fr_CG.php
│   │               │   ├── fr_CH.php
│   │               │   ├── fr_CI.php
│   │               │   ├── fr_CM.php
│   │               │   ├── fr_DJ.php
│   │               │   ├── fr_DZ.php
│   │               │   ├── fr_FR.php
│   │               │   ├── fr_GA.php
│   │               │   ├── fr_GF.php
│   │               │   ├── fr_GN.php
│   │               │   ├── fr_GP.php
│   │               │   ├── fr_GQ.php
│   │               │   ├── fr_HT.php
│   │               │   ├── fr_KM.php
│   │               │   ├── fr_LU.php
│   │               │   ├── fr_MA.php
│   │               │   ├── fr_MC.php
│   │               │   ├── fr_MF.php
│   │               │   ├── fr_MG.php
│   │               │   ├── fr_ML.php
│   │               │   ├── fr_MQ.php
│   │               │   ├── fr_MR.php
│   │               │   ├── fr_MU.php
│   │               │   ├── fr_NC.php
│   │               │   ├── fr_NE.php
│   │               │   ├── fr_PF.php
│   │               │   ├── fr_PM.php
│   │               │   ├── fr_RE.php
│   │               │   ├── fr_RW.php
│   │               │   ├── fr_SC.php
│   │               │   ├── fr_SN.php
│   │               │   ├── fr_SY.php
│   │               │   ├── fr_TD.php
│   │               │   ├── fr_TG.php
│   │               │   ├── fr_TN.php
│   │               │   ├── fr_VU.php
│   │               │   ├── fr_WF.php
│   │               │   ├── fr_YT.php
│   │               │   ├── fur.php
│   │               │   ├── fur_IT.php
│   │               │   ├── fy.php
│   │               │   ├── fy_DE.php
│   │               │   ├── fy_NL.php
│   │               │   ├── ga.php
│   │               │   ├── ga_IE.php
│   │               │   ├── gd.php
│   │               │   ├── gd_GB.php
│   │               │   ├── gez.php
│   │               │   ├── gez_ER.php
│   │               │   ├── gez_ET.php
│   │               │   ├── gl.php
│   │               │   ├── gl_ES.php
│   │               │   ├── gom.php
│   │               │   ├── gom_Latn.php
│   │               │   ├── gsw.php
│   │               │   ├── gsw_CH.php
│   │               │   ├── gsw_FR.php
│   │               │   ├── gsw_LI.php
│   │               │   ├── gu.php
│   │               │   ├── gu_IN.php
│   │               │   ├── guz.php
│   │               │   ├── gv.php
│   │               │   ├── gv_GB.php
│   │               │   ├── ha.php
│   │               │   ├── ha_GH.php
│   │               │   ├── ha_NE.php
│   │               │   ├── ha_NG.php
│   │               │   ├── hak.php
│   │               │   ├── hak_TW.php
│   │               │   ├── haw.php
│   │               │   ├── he.php
│   │               │   ├── he_IL.php
│   │               │   ├── hi.php
│   │               │   ├── hi_IN.php
│   │               │   ├── hif.php
│   │               │   ├── hif_FJ.php
│   │               │   ├── hne.php
│   │               │   ├── hne_IN.php
│   │               │   ├── hr.php
│   │               │   ├── hr_BA.php
│   │               │   ├── hr_HR.php
│   │               │   ├── hsb.php
│   │               │   ├── hsb_DE.php
│   │               │   ├── ht.php
│   │               │   ├── ht_HT.php
│   │               │   ├── hu.php
│   │               │   ├── hu_HU.php
│   │               │   ├── hy.php
│   │               │   ├── hy_AM.php
│   │               │   ├── i18n.php
│   │               │   ├── ia.php
│   │               │   ├── ia_FR.php
│   │               │   ├── id.php
│   │               │   ├── id_ID.php
│   │               │   ├── ig.php
│   │               │   ├── ig_NG.php
│   │               │   ├── ii.php
│   │               │   ├── ik.php
│   │               │   ├── ik_CA.php
│   │               │   ├── in.php
│   │               │   ├── is.php
│   │               │   ├── is_IS.php
│   │               │   ├── it.php
│   │               │   ├── it_CH.php
│   │               │   ├── it_IT.php
│   │               │   ├── it_SM.php
│   │               │   ├── it_VA.php
│   │               │   ├── iu.php
│   │               │   ├── iu_CA.php
│   │               │   ├── iw.php
│   │               │   ├── ja.php
│   │               │   ├── ja_JP.php
│   │               │   ├── jgo.php
│   │               │   ├── jmc.php
│   │               │   ├── jv.php
│   │               │   ├── ka.php
│   │               │   ├── ka_GE.php
│   │               │   ├── kab.php
│   │               │   ├── kab_DZ.php
│   │               │   ├── kam.php
│   │               │   ├── kde.php
│   │               │   ├── kea.php
│   │               │   ├── khq.php
│   │               │   ├── ki.php
│   │               │   ├── kk.php
│   │               │   ├── kk_KZ.php
│   │               │   ├── kkj.php
│   │               │   ├── kl.php
│   │               │   ├── kl_GL.php
│   │               │   ├── kln.php
│   │               │   ├── km.php
│   │               │   ├── km_KH.php
│   │               │   ├── kn.php
│   │               │   ├── kn_IN.php
│   │               │   ├── ko.php
│   │               │   ├── ko_KP.php
│   │               │   ├── ko_KR.php
│   │               │   ├── kok.php
│   │               │   ├── kok_IN.php
│   │               │   ├── ks.php
│   │               │   ├── ks_IN.php
│   │               │   ├── ks_IN@devanagari.php
│   │               │   ├── ksb.php
│   │               │   ├── ksf.php
│   │               │   ├── ksh.php
│   │               │   ├── ku.php
│   │               │   ├── ku_TR.php
│   │               │   ├── kw.php
│   │               │   ├── kw_GB.php
│   │               │   ├── ky.php
│   │               │   ├── ky_KG.php
│   │               │   ├── lag.php
│   │               │   ├── lb.php
│   │               │   ├── lb_LU.php
│   │               │   ├── lg.php
│   │               │   ├── lg_UG.php
│   │               │   ├── li.php
│   │               │   ├── li_NL.php
│   │               │   ├── lij.php
│   │               │   ├── lij_IT.php
│   │               │   ├── lkt.php
│   │               │   ├── ln.php
│   │               │   ├── ln_AO.php
│   │               │   ├── ln_CD.php
│   │               │   ├── ln_CF.php
│   │               │   ├── ln_CG.php
│   │               │   ├── lo.php
│   │               │   ├── lo_LA.php
│   │               │   ├── lrc.php
│   │               │   ├── lrc_IQ.php
│   │               │   ├── lt.php
│   │               │   ├── lt_LT.php
│   │               │   ├── lu.php
│   │               │   ├── luo.php
│   │               │   ├── luy.php
│   │               │   ├── lv.php
│   │               │   ├── lv_LV.php
│   │               │   ├── lzh.php
│   │               │   ├── lzh_TW.php
│   │               │   ├── mag.php
│   │               │   ├── mag_IN.php
│   │               │   ├── mai.php
│   │               │   ├── mai_IN.php
│   │               │   ├── mas.php
│   │               │   ├── mas_TZ.php
│   │               │   ├── mer.php
│   │               │   ├── mfe.php
│   │               │   ├── mfe_MU.php
│   │               │   ├── mg.php
│   │               │   ├── mg_MG.php
│   │               │   ├── mgh.php
│   │               │   ├── mgo.php
│   │               │   ├── mhr.php
│   │               │   ├── mhr_RU.php
│   │               │   ├── mi.php
│   │               │   ├── mi_NZ.php
│   │               │   ├── miq.php
│   │               │   ├── miq_NI.php
│   │               │   ├── mjw.php
│   │               │   ├── mjw_IN.php
│   │               │   ├── mk.php
│   │               │   ├── mk_MK.php
│   │               │   ├── ml.php
│   │               │   ├── ml_IN.php
│   │               │   ├── mn.php
│   │               │   ├── mn_MN.php
│   │               │   ├── mni.php
│   │               │   ├── mni_IN.php
│   │               │   ├── mo.php
│   │               │   ├── mr.php
│   │               │   ├── mr_IN.php
│   │               │   ├── ms.php
│   │               │   ├── ms_BN.php
│   │               │   ├── ms_MY.php
│   │               │   ├── ms_SG.php
│   │               │   ├── mt.php
│   │               │   ├── mt_MT.php
│   │               │   ├── mua.php
│   │               │   ├── my.php
│   │               │   ├── my_MM.php
│   │               │   ├── mzn.php
│   │               │   ├── nan.php
│   │               │   ├── nan_TW.php
│   │               │   ├── nan_TW@latin.php
│   │               │   ├── naq.php
│   │               │   ├── nb.php
│   │               │   ├── nb_NO.php
│   │               │   ├── nb_SJ.php
│   │               │   ├── nd.php
│   │               │   ├── nds.php
│   │               │   ├── nds_DE.php
│   │               │   ├── nds_NL.php
│   │               │   ├── ne.php
│   │               │   ├── ne_IN.php
│   │               │   ├── ne_NP.php
│   │               │   ├── nhn.php
│   │               │   ├── nhn_MX.php
│   │               │   ├── niu.php
│   │               │   ├── niu_NU.php
│   │               │   ├── nl.php
│   │               │   ├── nl_AW.php
│   │               │   ├── nl_BE.php
│   │               │   ├── nl_BQ.php
│   │               │   ├── nl_CW.php
│   │               │   ├── nl_NL.php
│   │               │   ├── nl_SR.php
│   │               │   ├── nl_SX.php
│   │               │   ├── nmg.php
│   │               │   ├── nn.php
│   │               │   ├── nn_NO.php
│   │               │   ├── nnh.php
│   │               │   ├── no.php
│   │               │   ├── nr.php
│   │               │   ├── nr_ZA.php
│   │               │   ├── nso.php
│   │               │   ├── nso_ZA.php
│   │               │   ├── nus.php
│   │               │   ├── nyn.php
│   │               │   ├── oc.php
│   │               │   ├── oc_FR.php
│   │               │   ├── om.php
│   │               │   ├── om_ET.php
│   │               │   ├── om_KE.php
│   │               │   ├── or.php
│   │               │   ├── or_IN.php
│   │               │   ├── os.php
│   │               │   ├── os_RU.php
│   │               │   ├── pa.php
│   │               │   ├── pa_Arab.php
│   │               │   ├── pa_Guru.php
│   │               │   ├── pa_IN.php
│   │               │   ├── pa_PK.php
│   │               │   ├── pap.php
│   │               │   ├── pap_AW.php
│   │               │   ├── pap_CW.php
│   │               │   ├── pl.php
│   │               │   ├── pl_PL.php
│   │               │   ├── prg.php
│   │               │   ├── ps.php
│   │               │   ├── ps_AF.php
│   │               │   ├── pt.php
│   │               │   ├── pt_AO.php
│   │               │   ├── pt_BR.php
│   │               │   ├── pt_CH.php
│   │               │   ├── pt_CV.php
│   │               │   ├── pt_GQ.php
│   │               │   ├── pt_GW.php
│   │               │   ├── pt_LU.php
│   │               │   ├── pt_MO.php
│   │               │   ├── pt_MZ.php
│   │               │   ├── pt_PT.php
│   │               │   ├── pt_ST.php
│   │               │   ├── pt_TL.php
│   │               │   ├── qu.php
│   │               │   ├── qu_BO.php
│   │               │   ├── qu_EC.php
│   │               │   ├── quz.php
│   │               │   ├── quz_PE.php
│   │               │   ├── raj.php
│   │               │   ├── raj_IN.php
│   │               │   ├── rm.php
│   │               │   ├── rn.php
│   │               │   ├── ro.php
│   │               │   ├── ro_MD.php
│   │               │   ├── ro_RO.php
│   │               │   ├── rof.php
│   │               │   ├── ru.php
│   │               │   ├── ru_BY.php
│   │               │   ├── ru_KG.php
│   │               │   ├── ru_KZ.php
│   │               │   ├── ru_MD.php
│   │               │   ├── ru_RU.php
│   │               │   ├── ru_UA.php
│   │               │   ├── rw.php
│   │               │   ├── rw_RW.php
│   │               │   ├── rwk.php
│   │               │   ├── sa.php
│   │               │   ├── sa_IN.php
│   │               │   ├── sah.php
│   │               │   ├── sah_RU.php
│   │               │   ├── saq.php
│   │               │   ├── sat.php
│   │               │   ├── sat_IN.php
│   │               │   ├── sbp.php
│   │               │   ├── sc.php
│   │               │   ├── sc_IT.php
│   │               │   ├── sd.php
│   │               │   ├── sd_IN.php
│   │               │   ├── sd_IN@devanagari.php
│   │               │   ├── se.php
│   │               │   ├── se_FI.php
│   │               │   ├── se_NO.php
│   │               │   ├── se_SE.php
│   │               │   ├── seh.php
│   │               │   ├── ses.php
│   │               │   ├── sg.php
│   │               │   ├── sgs.php
│   │               │   ├── sgs_LT.php
│   │               │   ├── sh.php
│   │               │   ├── shi.php
│   │               │   ├── shi_Latn.php
│   │               │   ├── shi_Tfng.php
│   │               │   ├── shn.php
│   │               │   ├── shn_MM.php
│   │               │   ├── shs.php
│   │               │   ├── shs_CA.php
│   │               │   ├── si.php
│   │               │   ├── si_LK.php
│   │               │   ├── sid.php
│   │               │   ├── sid_ET.php
│   │               │   ├── sk.php
│   │               │   ├── sk_SK.php
│   │               │   ├── sl.php
│   │               │   ├── sl_SI.php
│   │               │   ├── sm.php
│   │               │   ├── sm_WS.php
│   │               │   ├── smn.php
│   │               │   ├── sn.php
│   │               │   ├── so.php
│   │               │   ├── so_DJ.php
│   │               │   ├── so_ET.php
│   │               │   ├── so_KE.php
│   │               │   ├── so_SO.php
│   │               │   ├── sq.php
│   │               │   ├── sq_AL.php
│   │               │   ├── sq_MK.php
│   │               │   ├── sq_XK.php
│   │               │   ├── sr.php
│   │               │   ├── sr_Cyrl.php
│   │               │   ├── sr_Cyrl_BA.php
│   │               │   ├── sr_Cyrl_ME.php
│   │               │   ├── sr_Cyrl_XK.php
│   │               │   ├── sr_Latn.php
│   │               │   ├── sr_Latn_BA.php
│   │               │   ├── sr_Latn_ME.php
│   │               │   ├── sr_Latn_XK.php
│   │               │   ├── sr_ME.php
│   │               │   ├── sr_RS.php
│   │               │   ├── sr_RS@latin.php
│   │               │   ├── ss.php
│   │               │   ├── ss_ZA.php
│   │               │   ├── st.php
│   │               │   ├── st_ZA.php
│   │               │   ├── sv.php
│   │               │   ├── sv_AX.php
│   │               │   ├── sv_FI.php
│   │               │   ├── sv_SE.php
│   │               │   ├── sw.php
│   │               │   ├── sw_CD.php
│   │               │   ├── sw_KE.php
│   │               │   ├── sw_TZ.php
│   │               │   ├── sw_UG.php
│   │               │   ├── szl.php
│   │               │   ├── szl_PL.php
│   │               │   ├── ta.php
│   │               │   ├── ta_IN.php
│   │               │   ├── ta_LK.php
│   │               │   ├── ta_MY.php
│   │               │   ├── ta_SG.php
│   │               │   ├── tcy.php
│   │               │   ├── tcy_IN.php
│   │               │   ├── te.php
│   │               │   ├── te_IN.php
│   │               │   ├── teo.php
│   │               │   ├── teo_KE.php
│   │               │   ├── tet.php
│   │               │   ├── tg.php
│   │               │   ├── tg_TJ.php
│   │               │   ├── th.php
│   │               │   ├── th_TH.php
│   │               │   ├── the.php
│   │               │   ├── the_NP.php
│   │               │   ├── ti.php
│   │               │   ├── ti_ER.php
│   │               │   ├── ti_ET.php
│   │               │   ├── tig.php
│   │               │   ├── tig_ER.php
│   │               │   ├── tk.php
│   │               │   ├── tk_TM.php
│   │               │   ├── tl.php
│   │               │   ├── tl_PH.php
│   │               │   ├── tlh.php
│   │               │   ├── tn.php
│   │               │   ├── tn_ZA.php
│   │               │   ├── to.php
│   │               │   ├── to_TO.php
│   │               │   ├── tpi.php
│   │               │   ├── tpi_PG.php
│   │               │   ├── tr.php
│   │               │   ├── tr_CY.php
│   │               │   ├── tr_TR.php
│   │               │   ├── ts.php
│   │               │   ├── ts_ZA.php
│   │               │   ├── tt.php
│   │               │   ├── tt_RU.php
│   │               │   ├── tt_RU@iqtelif.php
│   │               │   ├── twq.php
│   │               │   ├── tzl.php
│   │               │   ├── tzm.php
│   │               │   ├── tzm_Latn.php
│   │               │   ├── ug.php
│   │               │   ├── ug_CN.php
│   │               │   ├── uk.php
│   │               │   ├── uk_UA.php
│   │               │   ├── unm.php
│   │               │   ├── unm_US.php
│   │               │   ├── ur.php
│   │               │   ├── ur_IN.php
│   │               │   ├── ur_PK.php
│   │               │   ├── uz.php
│   │               │   ├── uz_Arab.php
│   │               │   ├── uz_Cyrl.php
│   │               │   ├── uz_Latn.php
│   │               │   ├── uz_UZ.php
│   │               │   ├── uz_UZ@cyrillic.php
│   │               │   ├── vai.php
│   │               │   ├── vai_Latn.php
│   │               │   ├── vai_Vaii.php
│   │               │   ├── ve.php
│   │               │   ├── ve_ZA.php
│   │               │   ├── vi.php
│   │               │   ├── vi_VN.php
│   │               │   ├── vo.php
│   │               │   ├── vun.php
│   │               │   ├── wa.php
│   │               │   ├── wa_BE.php
│   │               │   ├── wae.php
│   │               │   ├── wae_CH.php
│   │               │   ├── wal.php
│   │               │   ├── wal_ET.php
│   │               │   ├── wo.php
│   │               │   ├── wo_SN.php
│   │               │   ├── xh.php
│   │               │   ├── xh_ZA.php
│   │               │   ├── xog.php
│   │               │   ├── yav.php
│   │               │   ├── yi.php
│   │               │   ├── yi_US.php
│   │               │   ├── yo.php
│   │               │   ├── yo_BJ.php
│   │               │   ├── yo_NG.php
│   │               │   ├── yue.php
│   │               │   ├── yue_HK.php
│   │               │   ├── yue_Hans.php
│   │               │   ├── yue_Hant.php
│   │               │   ├── yuw.php
│   │               │   ├── yuw_PG.php
│   │               │   ├── zgh.php
│   │               │   ├── zh.php
│   │               │   ├── zh_CN.php
│   │               │   ├── zh_HK.php
│   │               │   ├── zh_Hans.php
│   │               │   ├── zh_Hans_HK.php
│   │               │   ├── zh_Hans_MO.php
│   │               │   ├── zh_Hans_SG.php
│   │               │   ├── zh_Hant.php
│   │               │   ├── zh_Hant_HK.php
│   │               │   ├── zh_Hant_MO.php
│   │               │   ├── zh_Hant_TW.php
│   │               │   ├── zh_MO.php
│   │               │   ├── zh_SG.php
│   │               │   ├── zh_TW.php
│   │               │   ├── zh_YUE.php
│   │               │   ├── zu.php
│   │               │   └── zu_ZA.php
│   │               ├── Language.php
│   │               ├── Laravel
│   │               │   └── ServiceProvider.php
│   │               ├── List
│   │               │   ├── languages.php
│   │               │   └── regions.php
│   │               ├── PHPStan
│   │               │   ├── Macro.php
│   │               │   ├── MacroExtension.php
│   │               │   └── MacroScanner.php
│   │               ├── Traits
│   │               │   ├── Boundaries.php
│   │               │   ├── Cast.php
│   │               │   ├── Comparison.php
│   │               │   ├── Converter.php
│   │               │   ├── Creator.php
│   │               │   ├── Date.php
│   │               │   ├── Difference.php
│   │               │   ├── IntervalRounding.php
│   │               │   ├── IntervalStep.php
│   │               │   ├── Localization.php
│   │               │   ├── Macro.php
│   │               │   ├── Mixin.php
│   │               │   ├── Modifiers.php
│   │               │   ├── Mutability.php
│   │               │   ├── ObjectInitialisation.php
│   │               │   ├── Options.php
│   │               │   ├── Rounding.php
│   │               │   ├── Serialization.php
│   │               │   ├── Test.php
│   │               │   ├── Timestamp.php
│   │               │   ├── Units.php
│   │               │   └── Week.php
│   │               └── Translator.php
│   ├── nikic
│   │   └── php-parser
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── bin
│   │       │   └── php-parse
│   │       ├── composer.json
│   │       ├── grammar
│   │       │   ├── README.md
│   │       │   ├── parser.template
│   │       │   ├── php5.y
│   │       │   ├── php7.y
│   │       │   ├── rebuildParsers.php
│   │       │   ├── tokens.template
│   │       │   └── tokens.y
│   │       └── lib
│   │           └── PhpParser
│   │               ├── Builder
│   │               │   ├── Class_.php
│   │               │   ├── Declaration.php
│   │               │   ├── FunctionLike.php
│   │               │   ├── Function_.php
│   │               │   ├── Interface_.php
│   │               │   ├── Method.php
│   │               │   ├── Namespace_.php
│   │               │   ├── Param.php
│   │               │   ├── Property.php
│   │               │   ├── TraitUse.php
│   │               │   ├── TraitUseAdaptation.php
│   │               │   ├── Trait_.php
│   │               │   └── Use_.php
│   │               ├── Builder.php
│   │               ├── BuilderFactory.php
│   │               ├── BuilderHelpers.php
│   │               ├── Comment
│   │               │   └── Doc.php
│   │               ├── Comment.php
│   │               ├── ConstExprEvaluationException.php
│   │               ├── ConstExprEvaluator.php
│   │               ├── Error.php
│   │               ├── ErrorHandler
│   │               │   ├── Collecting.php
│   │               │   └── Throwing.php
│   │               ├── ErrorHandler.php
│   │               ├── Internal
│   │               │   ├── DiffElem.php
│   │               │   ├── Differ.php
│   │               │   ├── PrintableNewAnonClassNode.php
│   │               │   └── TokenStream.php
│   │               ├── JsonDecoder.php
│   │               ├── Lexer
│   │               │   ├── Emulative.php
│   │               │   └── TokenEmulator
│   │               │       ├── AttributeEmulator.php
│   │               │       ├── CoaleseEqualTokenEmulator.php
│   │               │       ├── FlexibleDocStringEmulator.php
│   │               │       ├── FnTokenEmulator.php
│   │               │       ├── KeywordEmulator.php
│   │               │       ├── MatchTokenEmulator.php
│   │               │       ├── NullsafeTokenEmulator.php
│   │               │       ├── NumericLiteralSeparatorEmulator.php
│   │               │       ├── ReverseEmulator.php
│   │               │       └── TokenEmulator.php
│   │               ├── Lexer.php
│   │               ├── NameContext.php
│   │               ├── Node
│   │               │   ├── Arg.php
│   │               │   ├── Attribute.php
│   │               │   ├── AttributeGroup.php
│   │               │   ├── Const_.php
│   │               │   ├── Expr
│   │               │   │   ├── ArrayDimFetch.php
│   │               │   │   ├── ArrayItem.php
│   │               │   │   ├── Array_.php
│   │               │   │   ├── ArrowFunction.php
│   │               │   │   ├── Assign.php
│   │               │   │   ├── AssignOp
│   │               │   │   │   ├── BitwiseAnd.php
│   │               │   │   │   ├── BitwiseOr.php
│   │               │   │   │   ├── BitwiseXor.php
│   │               │   │   │   ├── Coalesce.php
│   │               │   │   │   ├── Concat.php
│   │               │   │   │   ├── Div.php
│   │               │   │   │   ├── Minus.php
│   │               │   │   │   ├── Mod.php
│   │               │   │   │   ├── Mul.php
│   │               │   │   │   ├── Plus.php
│   │               │   │   │   ├── Pow.php
│   │               │   │   │   ├── ShiftLeft.php
│   │               │   │   │   └── ShiftRight.php
│   │               │   │   ├── AssignOp.php
│   │               │   │   ├── AssignRef.php
│   │               │   │   ├── BinaryOp
│   │               │   │   │   ├── BitwiseAnd.php
│   │               │   │   │   ├── BitwiseOr.php
│   │               │   │   │   ├── BitwiseXor.php
│   │               │   │   │   ├── BooleanAnd.php
│   │               │   │   │   ├── BooleanOr.php
│   │               │   │   │   ├── Coalesce.php
│   │               │   │   │   ├── Concat.php
│   │               │   │   │   ├── Div.php
│   │               │   │   │   ├── Equal.php
│   │               │   │   │   ├── Greater.php
│   │               │   │   │   ├── GreaterOrEqual.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
│   │               │   │   │   ├── Smaller.php
│   │               │   │   │   ├── SmallerOrEqual.php
│   │               │   │   │   └── Spaceship.php
│   │               │   │   ├── BinaryOp.php
│   │               │   │   ├── BitwiseNot.php
│   │               │   │   ├── BooleanNot.php
│   │               │   │   ├── Cast
│   │               │   │   │   ├── Array_.php
│   │               │   │   │   ├── Bool_.php
│   │               │   │   │   ├── Double.php
│   │               │   │   │   ├── Int_.php
│   │               │   │   │   ├── Object_.php
│   │               │   │   │   ├── String_.php
│   │               │   │   │   └── Unset_.php
│   │               │   │   ├── Cast.php
│   │               │   │   ├── ClassConstFetch.php
│   │               │   │   ├── Clone_.php
│   │               │   │   ├── Closure.php
│   │               │   │   ├── ClosureUse.php
│   │               │   │   ├── ConstFetch.php
│   │               │   │   ├── Empty_.php
│   │               │   │   ├── Error.php
│   │               │   │   ├── ErrorSuppress.php
│   │               │   │   ├── Eval_.php
│   │               │   │   ├── Exit_.php
│   │               │   │   ├── FuncCall.php
│   │               │   │   ├── Include_.php
│   │               │   │   ├── Instanceof_.php
│   │               │   │   ├── Isset_.php
│   │               │   │   ├── List_.php
│   │               │   │   ├── Match_.php
│   │               │   │   ├── MethodCall.php
│   │               │   │   ├── New_.php
│   │               │   │   ├── NullsafeMethodCall.php
│   │               │   │   ├── NullsafePropertyFetch.php
│   │               │   │   ├── PostDec.php
│   │               │   │   ├── PostInc.php
│   │               │   │   ├── PreDec.php
│   │               │   │   ├── PreInc.php
│   │               │   │   ├── Print_.php
│   │               │   │   ├── PropertyFetch.php
│   │               │   │   ├── ShellExec.php
│   │               │   │   ├── StaticCall.php
│   │               │   │   ├── StaticPropertyFetch.php
│   │               │   │   ├── Ternary.php
│   │               │   │   ├── Throw_.php
│   │               │   │   ├── UnaryMinus.php
│   │               │   │   ├── UnaryPlus.php
│   │               │   │   ├── Variable.php
│   │               │   │   ├── YieldFrom.php
│   │               │   │   └── Yield_.php
│   │               │   ├── Expr.php
│   │               │   ├── FunctionLike.php
│   │               │   ├── Identifier.php
│   │               │   ├── MatchArm.php
│   │               │   ├── Name
│   │               │   │   ├── FullyQualified.php
│   │               │   │   └── Relative.php
│   │               │   ├── Name.php
│   │               │   ├── NullableType.php
│   │               │   ├── Param.php
│   │               │   ├── Scalar
│   │               │   │   ├── DNumber.php
│   │               │   │   ├── Encapsed.php
│   │               │   │   ├── EncapsedStringPart.php
│   │               │   │   ├── LNumber.php
│   │               │   │   ├── MagicConst
│   │               │   │   │   ├── Class_.php
│   │               │   │   │   ├── Dir.php
│   │               │   │   │   ├── File.php
│   │               │   │   │   ├── Function_.php
│   │               │   │   │   ├── Line.php
│   │               │   │   │   ├── Method.php
│   │               │   │   │   ├── Namespace_.php
│   │               │   │   │   └── Trait_.php
│   │               │   │   ├── MagicConst.php
│   │               │   │   └── String_.php
│   │               │   ├── Scalar.php
│   │               │   ├── Stmt
│   │               │   │   ├── Break_.php
│   │               │   │   ├── Case_.php
│   │               │   │   ├── Catch_.php
│   │               │   │   ├── ClassConst.php
│   │               │   │   ├── ClassLike.php
│   │               │   │   ├── ClassMethod.php
│   │               │   │   ├── Class_.php
│   │               │   │   ├── Const_.php
│   │               │   │   ├── Continue_.php
│   │               │   │   ├── DeclareDeclare.php
│   │               │   │   ├── Declare_.php
│   │               │   │   ├── Do_.php
│   │               │   │   ├── Echo_.php
│   │               │   │   ├── ElseIf_.php
│   │               │   │   ├── Else_.php
│   │               │   │   ├── Expression.php
│   │               │   │   ├── Finally_.php
│   │               │   │   ├── For_.php
│   │               │   │   ├── Foreach_.php
│   │               │   │   ├── Function_.php
│   │               │   │   ├── Global_.php
│   │               │   │   ├── Goto_.php
│   │               │   │   ├── GroupUse.php
│   │               │   │   ├── HaltCompiler.php
│   │               │   │   ├── If_.php
│   │               │   │   ├── InlineHTML.php
│   │               │   │   ├── Interface_.php
│   │               │   │   ├── Label.php
│   │               │   │   ├── Namespace_.php
│   │               │   │   ├── Nop.php
│   │               │   │   ├── Property.php
│   │               │   │   ├── PropertyProperty.php
│   │               │   │   ├── Return_.php
│   │               │   │   ├── StaticVar.php
│   │               │   │   ├── Static_.php
│   │               │   │   ├── Switch_.php
│   │               │   │   ├── Throw_.php
│   │               │   │   ├── TraitUse.php
│   │               │   │   ├── TraitUseAdaptation
│   │               │   │   │   ├── Alias.php
│   │               │   │   │   └── Precedence.php
│   │               │   │   ├── TraitUseAdaptation.php
│   │               │   │   ├── Trait_.php
│   │               │   │   ├── TryCatch.php
│   │               │   │   ├── Unset_.php
│   │               │   │   ├── UseUse.php
│   │               │   │   ├── Use_.php
│   │               │   │   └── While_.php
│   │               │   ├── Stmt.php
│   │               │   ├── UnionType.php
│   │               │   └── VarLikeIdentifier.php
│   │               ├── Node.php
│   │               ├── NodeAbstract.php
│   │               ├── NodeDumper.php
│   │               ├── NodeFinder.php
│   │               ├── NodeTraverser.php
│   │               ├── NodeTraverserInterface.php
│   │               ├── NodeVisitor
│   │               │   ├── CloningVisitor.php
│   │               │   ├── FindingVisitor.php
│   │               │   ├── FirstFindingVisitor.php
│   │               │   ├── NameResolver.php
│   │               │   ├── NodeConnectingVisitor.php
│   │               │   └── ParentConnectingVisitor.php
│   │               ├── NodeVisitor.php
│   │               ├── NodeVisitorAbstract.php
│   │               ├── Parser
│   │               │   ├── Multiple.php
│   │               │   ├── Php5.php
│   │               │   ├── Php7.php
│   │               │   └── Tokens.php
│   │               ├── Parser.php
│   │               ├── ParserAbstract.php
│   │               ├── ParserFactory.php
│   │               ├── PrettyPrinter
│   │               │   └── Standard.php
│   │               └── PrettyPrinterAbstract.php
│   ├── opis
│   │   └── closure
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── NOTICE
│   │       ├── README.md
│   │       ├── autoload.php
│   │       ├── composer.json
│   │       ├── functions.php
│   │       └── src
│   │           ├── Analyzer.php
│   │           ├── ClosureContext.php
│   │           ├── ClosureScope.php
│   │           ├── ClosureStream.php
│   │           ├── ISecurityProvider.php
│   │           ├── ReflectionClosure.php
│   │           ├── SecurityException.php
│   │           ├── SecurityProvider.php
│   │           ├── SelfReference.php
│   │           └── SerializableClosure.php
│   ├── phpoption
│   │   └── phpoption
│   │       ├── LICENSE
│   │       ├── Makefile
│   │       ├── composer.json
│   │       └── src
│   │           └── PhpOption
│   │               ├── LazyOption.php
│   │               ├── None.php
│   │               ├── Option.php
│   │               └── Some.php
│   ├── psr
│   │   ├── container
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── composer.json
│   │   │   └── src
│   │   │       ├── ContainerExceptionInterface.php
│   │   │       ├── ContainerInterface.php
│   │   │       └── NotFoundExceptionInterface.php
│   │   ├── event-dispatcher
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── composer.json
│   │   │   └── src
│   │   │       ├── EventDispatcherInterface.php
│   │   │       ├── ListenerProviderInterface.php
│   │   │       └── StoppableEventInterface.php
│   │   ├── log
│   │   │   ├── LICENSE
│   │   │   ├── Psr
│   │   │   │   └── Log
│   │   │   │       ├── AbstractLogger.php
│   │   │   │       ├── InvalidArgumentException.php
│   │   │   │       ├── LogLevel.php
│   │   │   │       ├── LoggerAwareInterface.php
│   │   │   │       ├── LoggerAwareTrait.php
│   │   │   │       ├── LoggerInterface.php
│   │   │   │       ├── LoggerTrait.php
│   │   │   │       ├── NullLogger.php
│   │   │   │       └── Test
│   │   │   │           ├── DummyTest.php
│   │   │   │           ├── LoggerInterfaceTest.php
│   │   │   │           └── TestLogger.php
│   │   │   ├── README.md
│   │   │   └── composer.json
│   │   └── simple-cache
│   │       ├── LICENSE.md
│   │       ├── README.md
│   │       ├── composer.json
│   │       └── src
│   │           ├── CacheException.php
│   │           ├── CacheInterface.php
│   │           └── InvalidArgumentException.php
│   ├── ramsey
│   │   ├── collection
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── SECURITY.md
│   │   │   ├── composer.json
│   │   │   └── src
│   │   │       ├── AbstractArray.php
│   │   │       ├── AbstractCollection.php
│   │   │       ├── AbstractSet.php
│   │   │       ├── ArrayInterface.php
│   │   │       ├── Collection.php
│   │   │       ├── CollectionInterface.php
│   │   │       ├── DoubleEndedQueue.php
│   │   │       ├── DoubleEndedQueueInterface.php
│   │   │       ├── Exception
│   │   │       │   ├── CollectionMismatchException.php
│   │   │       │   ├── InvalidArgumentException.php
│   │   │       │   ├── InvalidSortOrderException.php
│   │   │       │   ├── NoSuchElementException.php
│   │   │       │   ├── OutOfBoundsException.php
│   │   │       │   ├── UnsupportedOperationException.php
│   │   │       │   └── ValueExtractionException.php
│   │   │       ├── GenericArray.php
│   │   │       ├── Map
│   │   │       │   ├── AbstractMap.php
│   │   │       │   ├── AbstractTypedMap.php
│   │   │       │   ├── AssociativeArrayMap.php
│   │   │       │   ├── MapInterface.php
│   │   │       │   ├── NamedParameterMap.php
│   │   │       │   ├── TypedMap.php
│   │   │       │   └── TypedMapInterface.php
│   │   │       ├── Queue.php
│   │   │       ├── QueueInterface.php
│   │   │       ├── Set.php
│   │   │       └── Tool
│   │   │           ├── TypeTrait.php
│   │   │           ├── ValueExtractorTrait.php
│   │   │           └── ValueToStringTrait.php
│   │   └── uuid
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── composer.json
│   │       └── src
│   │           ├── BinaryUtils.php
│   │           ├── Builder
│   │           │   ├── BuilderCollection.php
│   │           │   ├── DefaultUuidBuilder.php
│   │           │   ├── DegradedUuidBuilder.php
│   │           │   ├── FallbackBuilder.php
│   │           │   └── UuidBuilderInterface.php
│   │           ├── Codec
│   │           │   ├── CodecInterface.php
│   │           │   ├── GuidStringCodec.php
│   │           │   ├── OrderedTimeCodec.php
│   │           │   ├── StringCodec.php
│   │           │   ├── TimestampFirstCombCodec.php
│   │           │   └── TimestampLastCombCodec.php
│   │           ├── Converter
│   │           │   ├── Number
│   │           │   │   ├── BigNumberConverter.php
│   │           │   │   ├── DegradedNumberConverter.php
│   │           │   │   └── GenericNumberConverter.php
│   │           │   ├── NumberConverterInterface.php
│   │           │   ├── Time
│   │           │   │   ├── BigNumberTimeConverter.php
│   │           │   │   ├── DegradedTimeConverter.php
│   │           │   │   ├── GenericTimeConverter.php
│   │           │   │   └── PhpTimeConverter.php
│   │           │   └── TimeConverterInterface.php
│   │           ├── DegradedUuid.php
│   │           ├── DeprecatedUuidInterface.php
│   │           ├── DeprecatedUuidMethodsTrait.php
│   │           ├── Exception
│   │           │   ├── BuilderNotFoundException.php
│   │           │   ├── DateTimeException.php
│   │           │   ├── DceSecurityException.php
│   │           │   ├── InvalidArgumentException.php
│   │           │   ├── InvalidBytesException.php
│   │           │   ├── InvalidUuidStringException.php
│   │           │   ├── NameException.php
│   │           │   ├── NodeException.php
│   │           │   ├── RandomSourceException.php
│   │           │   ├── TimeSourceException.php
│   │           │   ├── UnableToBuildUuidException.php
│   │           │   └── UnsupportedOperationException.php
│   │           ├── FeatureSet.php
│   │           ├── Fields
│   │           │   ├── FieldsInterface.php
│   │           │   └── SerializableFieldsTrait.php
│   │           ├── Generator
│   │           │   ├── CombGenerator.php
│   │           │   ├── DceSecurityGenerator.php
│   │           │   ├── DceSecurityGeneratorInterface.php
│   │           │   ├── DefaultNameGenerator.php
│   │           │   ├── DefaultTimeGenerator.php
│   │           │   ├── NameGeneratorFactory.php
│   │           │   ├── NameGeneratorInterface.php
│   │           │   ├── PeclUuidNameGenerator.php
│   │           │   ├── PeclUuidRandomGenerator.php
│   │           │   ├── PeclUuidTimeGenerator.php
│   │           │   ├── RandomBytesGenerator.php
│   │           │   ├── RandomGeneratorFactory.php
│   │           │   ├── RandomGeneratorInterface.php
│   │           │   ├── RandomLibAdapter.php
│   │           │   ├── TimeGeneratorFactory.php
│   │           │   └── TimeGeneratorInterface.php
│   │           ├── Guid
│   │           │   ├── Fields.php
│   │           │   ├── Guid.php
│   │           │   └── GuidBuilder.php
│   │           ├── Lazy
│   │           │   └── LazyUuidFromString.php
│   │           ├── Math
│   │           │   ├── BrickMathCalculator.php
│   │           │   ├── CalculatorInterface.php
│   │           │   └── RoundingMode.php
│   │           ├── Nonstandard
│   │           │   ├── Fields.php
│   │           │   ├── Uuid.php
│   │           │   ├── UuidBuilder.php
│   │           │   └── UuidV6.php
│   │           ├── Provider
│   │           │   ├── Dce
│   │           │   │   └── SystemDceSecurityProvider.php
│   │           │   ├── DceSecurityProviderInterface.php
│   │           │   ├── Node
│   │           │   │   ├── FallbackNodeProvider.php
│   │           │   │   ├── NodeProviderCollection.php
│   │           │   │   ├── RandomNodeProvider.php
│   │           │   │   ├── StaticNodeProvider.php
│   │           │   │   └── SystemNodeProvider.php
│   │           │   ├── NodeProviderInterface.php
│   │           │   ├── Time
│   │           │   │   ├── FixedTimeProvider.php
│   │           │   │   └── SystemTimeProvider.php
│   │           │   └── TimeProviderInterface.php
│   │           ├── Rfc4122
│   │           │   ├── Fields.php
│   │           │   ├── FieldsInterface.php
│   │           │   ├── NilTrait.php
│   │           │   ├── NilUuid.php
│   │           │   ├── UuidBuilder.php
│   │           │   ├── UuidInterface.php
│   │           │   ├── UuidV1.php
│   │           │   ├── UuidV2.php
│   │           │   ├── UuidV3.php
│   │           │   ├── UuidV4.php
│   │           │   ├── UuidV5.php
│   │           │   ├── Validator.php
│   │           │   ├── VariantTrait.php
│   │           │   └── VersionTrait.php
│   │           ├── Type
│   │           │   ├── Decimal.php
│   │           │   ├── Hexadecimal.php
│   │           │   ├── Integer.php
│   │           │   ├── NumberInterface.php
│   │           │   ├── Time.php
│   │           │   └── TypeInterface.php
│   │           ├── Uuid.php
│   │           ├── UuidFactory.php
│   │           ├── UuidFactoryInterface.php
│   │           ├── UuidInterface.php
│   │           ├── Validator
│   │           │   ├── GenericValidator.php
│   │           │   └── ValidatorInterface.php
│   │           └── functions.php
│   ├── santigarcor
│   │   └── laratrust
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── VERSION
│   │       ├── composer.json
│   │       ├── config
│   │       │   ├── laratrust.php
│   │       │   └── laratrust_seeder.php
│   │       ├── package-lock.json
│   │       ├── package.json
│   │       ├── public
│   │       │   ├── img
│   │       │   │   └── logo.png
│   │       │   ├── laratrust.css
│   │       │   └── mix-manifest.json
│   │       ├── resources
│   │       │   ├── css
│   │       │   │   └── styles.css
│   │       │   └── views
│   │       │       ├── migration.blade.php
│   │       │       ├── panel
│   │       │       │   ├── edit.blade.php
│   │       │       │   ├── layout.blade.php
│   │       │       │   ├── pagination.blade.php
│   │       │       │   ├── permissions
│   │       │       │   │   └── index.blade.php
│   │       │       │   ├── roles
│   │       │       │   │   ├── index.blade.php
│   │       │       │   │   └── show.blade.php
│   │       │       │   └── roles-assignment
│   │       │       │       ├── edit.blade.php
│   │       │       │       └── index.blade.php
│   │       │       ├── setup-teams.blade.php
│   │       │       └── upgrade-migration.blade.php
│   │       ├── routes
│   │       │   └── web.php
│   │       ├── src
│   │       │   ├── Checkers
│   │       │   │   ├── LaratrustCheckerManager.php
│   │       │   │   ├── Role
│   │       │   │   │   ├── LaratrustRoleChecker.php
│   │       │   │   │   ├── LaratrustRoleDefaultChecker.php
│   │       │   │   │   └── LaratrustRoleQueryChecker.php
│   │       │   │   └── User
│   │       │   │       ├── LaratrustUserChecker.php
│   │       │   │       ├── LaratrustUserDefaultChecker.php
│   │       │   │       └── LaratrustUserQueryChecker.php
│   │       │   ├── Console
│   │       │   │   ├── AddLaratrustUserTraitUseCommand.php
│   │       │   │   ├── MakePermissionCommand.php
│   │       │   │   ├── MakeRoleCommand.php
│   │       │   │   ├── MakeSeederCommand.php
│   │       │   │   ├── MakeTeamCommand.php
│   │       │   │   ├── MigrationCommand.php
│   │       │   │   ├── SetupCommand.php
│   │       │   │   ├── SetupTeamsCommand.php
│   │       │   │   └── UpgradeCommand.php
│   │       │   ├── Contracts
│   │       │   │   ├── LaratrustPermissionInterface.php
│   │       │   │   ├── LaratrustRoleInterface.php
│   │       │   │   ├── LaratrustTeamInterface.php
│   │       │   │   ├── LaratrustUserInterface.php
│   │       │   │   └── Ownable.php
│   │       │   ├── Helper.php
│   │       │   ├── Http
│   │       │   │   └── Controllers
│   │       │   │       ├── PermissionsController.php
│   │       │   │       ├── RolesAssignmentController.php
│   │       │   │       └── RolesController.php
│   │       │   ├── Laratrust.php
│   │       │   ├── LaratrustFacade.php
│   │       │   ├── LaratrustRegistersBladeDirectives.php
│   │       │   ├── LaratrustServiceProvider.php
│   │       │   ├── Middleware
│   │       │   │   ├── LaratrustAbility.php
│   │       │   │   ├── LaratrustMiddleware.php
│   │       │   │   ├── LaratrustPermission.php
│   │       │   │   └── LaratrustRole.php
│   │       │   ├── Models
│   │       │   │   ├── LaratrustPermission.php
│   │       │   │   ├── LaratrustRole.php
│   │       │   │   └── LaratrustTeam.php
│   │       │   └── Traits
│   │       │       ├── LaratrustDynamicUserRelationsCalls.php
│   │       │       ├── LaratrustHasEvents.php
│   │       │       ├── LaratrustHasScopes.php
│   │       │       ├── LaratrustPermissionTrait.php
│   │       │       ├── LaratrustRoleTrait.php
│   │       │       ├── LaratrustTeamTrait.php
│   │       │       └── LaratrustUserTrait.php
│   │       ├── stubs
│   │       │   ├── permission.stub
│   │       │   ├── role.stub
│   │       │   ├── seeder.stub
│   │       │   └── team.stub
│   │       ├── tailwind.config.js
│   │       └── webpack.mix.js
│   ├── swiftmailer
│   │   └── swiftmailer
│   │       ├── CHANGES
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── composer.json
│   │       ├── doc
│   │       │   ├── headers.rst
│   │       │   ├── index.rst
│   │       │   ├── introduction.rst
│   │       │   ├── japanese.rst
│   │       │   ├── messages.rst
│   │       │   ├── plugins.rst
│   │       │   └── sending.rst
│   │       └── lib
│   │           ├── classes
│   │           │   ├── Swift
│   │           │   │   ├── AddressEncoder
│   │           │   │   │   ├── IdnAddressEncoder.php
│   │           │   │   │   └── Utf8AddressEncoder.php
│   │           │   │   ├── AddressEncoder.php
│   │           │   │   ├── AddressEncoderException.php
│   │           │   │   ├── Attachment.php
│   │           │   │   ├── ByteStream
│   │           │   │   │   ├── AbstractFilterableInputStream.php
│   │           │   │   │   ├── ArrayByteStream.php
│   │           │   │   │   ├── FileByteStream.php
│   │           │   │   │   └── TemporaryFileByteStream.php
│   │           │   │   ├── CharacterReader
│   │           │   │   │   ├── GenericFixedWidthReader.php
│   │           │   │   │   ├── UsAsciiReader.php
│   │           │   │   │   └── Utf8Reader.php
│   │           │   │   ├── CharacterReader.php
│   │           │   │   ├── CharacterReaderFactory
│   │           │   │   │   └── SimpleCharacterReaderFactory.php
│   │           │   │   ├── CharacterReaderFactory.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
│   │           │   │   ├── Events
│   │           │   │   │   ├── CommandEvent.php
│   │           │   │   │   ├── CommandListener.php
│   │           │   │   │   ├── Event.php
│   │           │   │   │   ├── EventDispatcher.php
│   │           │   │   │   ├── EventListener.php
│   │           │   │   │   ├── EventObject.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
│   │           │   │   ├── IdGenerator.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
│   │           │   │   ├── MemorySpool.php
│   │           │   │   ├── Message.php
│   │           │   │   ├── Mime
│   │           │   │   │   ├── Attachment.php
│   │           │   │   │   ├── CharsetObserver.php
│   │           │   │   │   ├── ContentEncoder
│   │           │   │   │   │   ├── Base64ContentEncoder.php
│   │           │   │   │   │   ├── NativeQpContentEncoder.php
│   │           │   │   │   │   ├── NullContentEncoder.php
│   │           │   │   │   │   ├── PlainContentEncoder.php
│   │           │   │   │   │   ├── QpContentEncoder.php
│   │           │   │   │   │   ├── QpContentEncoderProxy.php
│   │           │   │   │   │   └── RawContentEncoder.php
│   │           │   │   │   ├── ContentEncoder.php
│   │           │   │   │   ├── EmbeddedFile.php
│   │           │   │   │   ├── EncodingObserver.php
│   │           │   │   │   ├── Header.php
│   │           │   │   │   ├── HeaderEncoder
│   │           │   │   │   │   ├── Base64HeaderEncoder.php
│   │           │   │   │   │   └── QpHeaderEncoder.php
│   │           │   │   │   ├── HeaderEncoder.php
│   │           │   │   │   ├── Headers
│   │           │   │   │   │   ├── AbstractHeader.php
│   │           │   │   │   │   ├── DateHeader.php
│   │           │   │   │   │   ├── IdentificationHeader.php
│   │           │   │   │   │   ├── MailboxHeader.php
│   │           │   │   │   │   ├── OpenDKIMHeader.php
│   │           │   │   │   │   ├── ParameterizedHeader.php
│   │           │   │   │   │   ├── PathHeader.php
│   │           │   │   │   │   └── UnstructuredHeader.php
│   │           │   │   │   ├── IdGenerator.php
│   │           │   │   │   ├── MimePart.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
│   │           │   │   ├── 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
│   │           │   │   │   ├── StringReplacementFilter.php
│   │           │   │   │   └── StringReplacementFilterFactory.php
│   │           │   │   ├── SwiftException.php
│   │           │   │   ├── Transport
│   │           │   │   │   ├── AbstractSmtpTransport.php
│   │           │   │   │   ├── Esmtp
│   │           │   │   │   │   ├── Auth
│   │           │   │   │   │   │   ├── CramMd5Authenticator.php
│   │           │   │   │   │   │   ├── LoginAuthenticator.php
│   │           │   │   │   │   │   ├── NTLMAuthenticator.php
│   │           │   │   │   │   │   ├── PlainAuthenticator.php
│   │           │   │   │   │   │   └── XOAuth2Authenticator.php
│   │           │   │   │   │   ├── AuthHandler.php
│   │           │   │   │   │   ├── Authenticator.php
│   │           │   │   │   │   ├── EightBitMimeHandler.php
│   │           │   │   │   │   └── SmtpUtf8Handler.php
│   │           │   │   │   ├── EsmtpHandler.php
│   │           │   │   │   ├── EsmtpTransport.php
│   │           │   │   │   ├── FailoverTransport.php
│   │           │   │   │   ├── IoBuffer.php
│   │           │   │   │   ├── LoadBalancedTransport.php
│   │           │   │   │   ├── NullTransport.php
│   │           │   │   │   ├── SendmailTransport.php
│   │           │   │   │   ├── SmtpAgent.php
│   │           │   │   │   ├── SpoolTransport.php
│   │           │   │   │   └── StreamBuffer.php
│   │           │   │   ├── Transport.php
│   │           │   │   └── TransportException.php
│   │           │   └── Swift.php
│   │           ├── dependency_maps
│   │           │   ├── cache_deps.php
│   │           │   ├── message_deps.php
│   │           │   ├── mime_deps.php
│   │           │   └── transport_deps.php
│   │           ├── mime_types.php
│   │           ├── preferences.php
│   │           ├── swift_required.php
│   │           └── swiftmailer_generate_mimes_config.php
│   ├── symfony
│   │   ├── console
│   │   │   ├── Application.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Color.php
│   │   │   ├── Command
│   │   │   │   ├── Command.php
│   │   │   │   ├── HelpCommand.php
│   │   │   │   ├── ListCommand.php
│   │   │   │   ├── LockableTrait.php
│   │   │   │   └── SignalableCommandInterface.php
│   │   │   ├── CommandLoader
│   │   │   │   ├── CommandLoaderInterface.php
│   │   │   │   ├── ContainerCommandLoader.php
│   │   │   │   └── FactoryCommandLoader.php
│   │   │   ├── ConsoleEvents.php
│   │   │   ├── Cursor.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── AddConsoleCommandPass.php
│   │   │   ├── Descriptor
│   │   │   │   ├── ApplicationDescription.php
│   │   │   │   ├── Descriptor.php
│   │   │   │   ├── DescriptorInterface.php
│   │   │   │   ├── JsonDescriptor.php
│   │   │   │   ├── MarkdownDescriptor.php
│   │   │   │   ├── TextDescriptor.php
│   │   │   │   └── XmlDescriptor.php
│   │   │   ├── Event
│   │   │   │   ├── ConsoleCommandEvent.php
│   │   │   │   ├── ConsoleErrorEvent.php
│   │   │   │   ├── ConsoleEvent.php
│   │   │   │   ├── ConsoleSignalEvent.php
│   │   │   │   └── ConsoleTerminateEvent.php
│   │   │   ├── EventListener
│   │   │   │   └── ErrorListener.php
│   │   │   ├── Exception
│   │   │   │   ├── CommandNotFoundException.php
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── InvalidOptionException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── MissingInputException.php
│   │   │   │   ├── NamespaceNotFoundException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Formatter
│   │   │   │   ├── NullOutputFormatter.php
│   │   │   │   ├── NullOutputFormatterStyle.php
│   │   │   │   ├── OutputFormatter.php
│   │   │   │   ├── OutputFormatterInterface.php
│   │   │   │   ├── OutputFormatterStyle.php
│   │   │   │   ├── OutputFormatterStyleInterface.php
│   │   │   │   ├── OutputFormatterStyleStack.php
│   │   │   │   └── WrappableOutputFormatterInterface.php
│   │   │   ├── Helper
│   │   │   │   ├── DebugFormatterHelper.php
│   │   │   │   ├── DescriptorHelper.php
│   │   │   │   ├── Dumper.php
│   │   │   │   ├── FormatterHelper.php
│   │   │   │   ├── Helper.php
│   │   │   │   ├── HelperInterface.php
│   │   │   │   ├── HelperSet.php
│   │   │   │   ├── InputAwareHelper.php
│   │   │   │   ├── ProcessHelper.php
│   │   │   │   ├── ProgressBar.php
│   │   │   │   ├── ProgressIndicator.php
│   │   │   │   ├── QuestionHelper.php
│   │   │   │   ├── SymfonyQuestionHelper.php
│   │   │   │   ├── Table.php
│   │   │   │   ├── TableCell.php
│   │   │   │   ├── TableCellStyle.php
│   │   │   │   ├── TableRows.php
│   │   │   │   ├── TableSeparator.php
│   │   │   │   └── TableStyle.php
│   │   │   ├── Input
│   │   │   │   ├── ArgvInput.php
│   │   │   │   ├── ArrayInput.php
│   │   │   │   ├── Input.php
│   │   │   │   ├── InputArgument.php
│   │   │   │   ├── InputAwareInterface.php
│   │   │   │   ├── InputDefinition.php
│   │   │   │   ├── InputInterface.php
│   │   │   │   ├── InputOption.php
│   │   │   │   ├── StreamableInputInterface.php
│   │   │   │   └── StringInput.php
│   │   │   ├── LICENSE
│   │   │   ├── Logger
│   │   │   │   └── ConsoleLogger.php
│   │   │   ├── Output
│   │   │   │   ├── BufferedOutput.php
│   │   │   │   ├── ConsoleOutput.php
│   │   │   │   ├── ConsoleOutputInterface.php
│   │   │   │   ├── ConsoleSectionOutput.php
│   │   │   │   ├── NullOutput.php
│   │   │   │   ├── Output.php
│   │   │   │   ├── OutputInterface.php
│   │   │   │   ├── StreamOutput.php
│   │   │   │   └── TrimmedBufferOutput.php
│   │   │   ├── Question
│   │   │   │   ├── ChoiceQuestion.php
│   │   │   │   ├── ConfirmationQuestion.php
│   │   │   │   └── Question.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── bin
│   │   │   │       └── hiddeninput.exe
│   │   │   ├── SignalRegistry
│   │   │   │   └── SignalRegistry.php
│   │   │   ├── SingleCommandApplication.php
│   │   │   ├── Style
│   │   │   │   ├── OutputStyle.php
│   │   │   │   ├── StyleInterface.php
│   │   │   │   └── SymfonyStyle.php
│   │   │   ├── Terminal.php
│   │   │   ├── Tester
│   │   │   │   ├── ApplicationTester.php
│   │   │   │   ├── CommandTester.php
│   │   │   │   └── TesterTrait.php
│   │   │   └── composer.json
│   │   ├── css-selector
│   │   │   ├── CHANGELOG.md
│   │   │   ├── 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
│   │   │   │   ├── Parser.php
│   │   │   │   ├── ParserInterface.php
│   │   │   │   ├── Reader.php
│   │   │   │   ├── Shortcut
│   │   │   │   │   ├── ClassParser.php
│   │   │   │   │   ├── ElementParser.php
│   │   │   │   │   ├── EmptyStringParser.php
│   │   │   │   │   └── HashParser.php
│   │   │   │   ├── Token.php
│   │   │   │   ├── TokenStream.php
│   │   │   │   └── Tokenizer
│   │   │   │       ├── Tokenizer.php
│   │   │   │       ├── TokenizerEscaping.php
│   │   │   │       └── TokenizerPatterns.php
│   │   │   ├── README.md
│   │   │   ├── XPath
│   │   │   │   ├── Extension
│   │   │   │   │   ├── AbstractExtension.php
│   │   │   │   │   ├── AttributeMatchingExtension.php
│   │   │   │   │   ├── CombinationExtension.php
│   │   │   │   │   ├── ExtensionInterface.php
│   │   │   │   │   ├── FunctionExtension.php
│   │   │   │   │   ├── HtmlExtension.php
│   │   │   │   │   ├── NodeExtension.php
│   │   │   │   │   └── PseudoClassExtension.php
│   │   │   │   ├── Translator.php
│   │   │   │   ├── TranslatorInterface.php
│   │   │   │   └── XPathExpr.php
│   │   │   └── composer.json
│   │   ├── deprecation-contracts
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── composer.json
│   │   │   └── function.php
│   │   ├── error-handler
│   │   │   ├── BufferingLogger.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Debug.php
│   │   │   ├── DebugClassLoader.php
│   │   │   ├── Error
│   │   │   │   ├── ClassNotFoundError.php
│   │   │   │   ├── FatalError.php
│   │   │   │   ├── OutOfMemoryError.php
│   │   │   │   ├── UndefinedFunctionError.php
│   │   │   │   └── UndefinedMethodError.php
│   │   │   ├── ErrorEnhancer
│   │   │   │   ├── ClassNotFoundErrorEnhancer.php
│   │   │   │   ├── ErrorEnhancerInterface.php
│   │   │   │   ├── UndefinedFunctionErrorEnhancer.php
│   │   │   │   └── UndefinedMethodErrorEnhancer.php
│   │   │   ├── ErrorHandler.php
│   │   │   ├── ErrorRenderer
│   │   │   │   ├── CliErrorRenderer.php
│   │   │   │   ├── ErrorRendererInterface.php
│   │   │   │   ├── HtmlErrorRenderer.php
│   │   │   │   └── SerializerErrorRenderer.php
│   │   │   ├── Exception
│   │   │   │   ├── FlattenException.php
│   │   │   │   └── SilencedErrorContext.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   ├── assets
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── error.css
│   │   │   │   │   │   ├── exception.css
│   │   │   │   │   │   └── exception_full.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── chevron-right.svg
│   │   │   │   │   │   ├── favicon.png.base64
│   │   │   │   │   │   ├── icon-book.svg
│   │   │   │   │   │   ├── icon-minus-square-o.svg
│   │   │   │   │   │   ├── icon-minus-square.svg
│   │   │   │   │   │   ├── icon-plus-square-o.svg
│   │   │   │   │   │   ├── icon-plus-square.svg
│   │   │   │   │   │   ├── icon-support.svg
│   │   │   │   │   │   ├── symfony-ghost.svg.php
│   │   │   │   │   │   └── symfony-logo.svg
│   │   │   │   │   └── js
│   │   │   │   │       └── exception.js
│   │   │   │   └── views
│   │   │   │       ├── error.html.php
│   │   │   │       ├── exception.html.php
│   │   │   │       ├── exception_full.html.php
│   │   │   │       ├── logs.html.php
│   │   │   │       ├── trace.html.php
│   │   │   │       ├── traces.html.php
│   │   │   │       └── traces_text.html.php
│   │   │   ├── ThrowableUtils.php
│   │   │   └── composer.json
│   │   ├── event-dispatcher
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Debug
│   │   │   │   ├── TraceableEventDispatcher.php
│   │   │   │   └── WrappedListener.php
│   │   │   ├── DependencyInjection
│   │   │   │   ├── AddEventAliasesPass.php
│   │   │   │   └── RegisterListenersPass.php
│   │   │   ├── EventDispatcher.php
│   │   │   ├── EventDispatcherInterface.php
│   │   │   ├── EventSubscriberInterface.php
│   │   │   ├── GenericEvent.php
│   │   │   ├── ImmutableEventDispatcher.php
│   │   │   ├── LICENSE
│   │   │   ├── LegacyEventDispatcherProxy.php
│   │   │   ├── README.md
│   │   │   └── composer.json
│   │   ├── event-dispatcher-contracts
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Event.php
│   │   │   ├── EventDispatcherInterface.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   └── composer.json
│   │   ├── finder
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Comparator
│   │   │   │   ├── Comparator.php
│   │   │   │   ├── DateComparator.php
│   │   │   │   └── NumberComparator.php
│   │   │   ├── Exception
│   │   │   │   ├── AccessDeniedException.php
│   │   │   │   └── DirectoryNotFoundException.php
│   │   │   ├── Finder.php
│   │   │   ├── Gitignore.php
│   │   │   ├── Glob.php
│   │   │   ├── Iterator
│   │   │   │   ├── CustomFilterIterator.php
│   │   │   │   ├── DateRangeFilterIterator.php
│   │   │   │   ├── DepthRangeFilterIterator.php
│   │   │   │   ├── ExcludeDirectoryFilterIterator.php
│   │   │   │   ├── FileTypeFilterIterator.php
│   │   │   │   ├── FilecontentFilterIterator.php
│   │   │   │   ├── FilenameFilterIterator.php
│   │   │   │   ├── MultiplePcreFilterIterator.php
│   │   │   │   ├── PathFilterIterator.php
│   │   │   │   ├── RecursiveDirectoryIterator.php
│   │   │   │   ├── SizeRangeFilterIterator.php
│   │   │   │   └── SortableIterator.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── SplFileInfo.php
│   │   │   └── composer.json
│   │   ├── http-client-contracts
│   │   │   ├── CHANGELOG.md
│   │   │   ├── ChunkInterface.php
│   │   │   ├── Exception
│   │   │   │   ├── ClientExceptionInterface.php
│   │   │   │   ├── DecodingExceptionInterface.php
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── HttpExceptionInterface.php
│   │   │   │   ├── RedirectionExceptionInterface.php
│   │   │   │   ├── ServerExceptionInterface.php
│   │   │   │   ├── TimeoutExceptionInterface.php
│   │   │   │   └── TransportExceptionInterface.php
│   │   │   ├── HttpClientInterface.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── ResponseInterface.php
│   │   │   ├── ResponseStreamInterface.php
│   │   │   ├── Test
│   │   │   │   ├── Fixtures
│   │   │   │   │   └── web
│   │   │   │   │       └── index.php
│   │   │   │   ├── HttpClientTestCase.php
│   │   │   │   └── TestHttpServer.php
│   │   │   └── composer.json
│   │   ├── http-foundation
│   │   │   ├── AcceptHeader.php
│   │   │   ├── AcceptHeaderItem.php
│   │   │   ├── BinaryFileResponse.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Cookie.php
│   │   │   ├── Exception
│   │   │   │   ├── BadRequestException.php
│   │   │   │   ├── ConflictingHeadersException.php
│   │   │   │   ├── JsonException.php
│   │   │   │   ├── RequestExceptionInterface.php
│   │   │   │   └── SuspiciousOperationException.php
│   │   │   ├── ExpressionRequestMatcher.php
│   │   │   ├── File
│   │   │   │   ├── Exception
│   │   │   │   │   ├── AccessDeniedException.php
│   │   │   │   │   ├── CannotWriteFileException.php
│   │   │   │   │   ├── ExtensionFileException.php
│   │   │   │   │   ├── FileException.php
│   │   │   │   │   ├── FileNotFoundException.php
│   │   │   │   │   ├── FormSizeFileException.php
│   │   │   │   │   ├── IniSizeFileException.php
│   │   │   │   │   ├── NoFileException.php
│   │   │   │   │   ├── NoTmpDirFileException.php
│   │   │   │   │   ├── PartialFileException.php
│   │   │   │   │   ├── UnexpectedTypeException.php
│   │   │   │   │   └── UploadException.php
│   │   │   │   ├── File.php
│   │   │   │   ├── Stream.php
│   │   │   │   └── UploadedFile.php
│   │   │   ├── FileBag.php
│   │   │   ├── HeaderBag.php
│   │   │   ├── HeaderUtils.php
│   │   │   ├── InputBag.php
│   │   │   ├── IpUtils.php
│   │   │   ├── JsonResponse.php
│   │   │   ├── LICENSE
│   │   │   ├── ParameterBag.php
│   │   │   ├── README.md
│   │   │   ├── RateLimiter
│   │   │   │   ├── AbstractRequestRateLimiter.php
│   │   │   │   └── RequestRateLimiterInterface.php
│   │   │   ├── RedirectResponse.php
│   │   │   ├── Request.php
│   │   │   ├── RequestMatcher.php
│   │   │   ├── RequestMatcherInterface.php
│   │   │   ├── RequestStack.php
│   │   │   ├── Response.php
│   │   │   ├── ResponseHeaderBag.php
│   │   │   ├── ServerBag.php
│   │   │   ├── Session
│   │   │   │   ├── Attribute
│   │   │   │   │   ├── AttributeBag.php
│   │   │   │   │   ├── AttributeBagInterface.php
│   │   │   │   │   └── NamespacedAttributeBag.php
│   │   │   │   ├── Flash
│   │   │   │   │   ├── AutoExpireFlashBag.php
│   │   │   │   │   ├── FlashBag.php
│   │   │   │   │   └── FlashBagInterface.php
│   │   │   │   ├── Session.php
│   │   │   │   ├── SessionBagInterface.php
│   │   │   │   ├── SessionBagProxy.php
│   │   │   │   ├── SessionInterface.php
│   │   │   │   ├── SessionUtils.php
│   │   │   │   └── Storage
│   │   │   │       ├── Handler
│   │   │   │       │   ├── AbstractSessionHandler.php
│   │   │   │       │   ├── IdentityMarshaller.php
│   │   │   │       │   ├── MarshallingSessionHandler.php
│   │   │   │       │   ├── MemcachedSessionHandler.php
│   │   │   │       │   ├── MigratingSessionHandler.php
│   │   │   │       │   ├── MongoDbSessionHandler.php
│   │   │   │       │   ├── NativeFileSessionHandler.php
│   │   │   │       │   ├── NullSessionHandler.php
│   │   │   │       │   ├── PdoSessionHandler.php
│   │   │   │       │   ├── RedisSessionHandler.php
│   │   │   │       │   ├── SessionHandlerFactory.php
│   │   │   │       │   └── StrictSessionHandler.php
│   │   │   │       ├── MetadataBag.php
│   │   │   │       ├── MockArraySessionStorage.php
│   │   │   │       ├── MockFileSessionStorage.php
│   │   │   │       ├── NativeSessionStorage.php
│   │   │   │       ├── PhpBridgeSessionStorage.php
│   │   │   │       ├── Proxy
│   │   │   │       │   ├── AbstractProxy.php
│   │   │   │       │   └── SessionHandlerProxy.php
│   │   │   │       └── SessionStorageInterface.php
│   │   │   ├── StreamedResponse.php
│   │   │   ├── Test
│   │   │   │   └── Constraint
│   │   │   │       ├── RequestAttributeValueSame.php
│   │   │   │       ├── ResponseCookieValueSame.php
│   │   │   │       ├── ResponseHasCookie.php
│   │   │   │       ├── ResponseHasHeader.php
│   │   │   │       ├── ResponseHeaderSame.php
│   │   │   │       ├── ResponseIsRedirected.php
│   │   │   │       ├── ResponseIsSuccessful.php
│   │   │   │       └── ResponseStatusCodeSame.php
│   │   │   ├── UrlHelper.php
│   │   │   └── composer.json
│   │   ├── http-kernel
│   │   │   ├── Attribute
│   │   │   │   └── ArgumentInterface.php
│   │   │   ├── Bundle
│   │   │   │   ├── Bundle.php
│   │   │   │   └── BundleInterface.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── CacheClearer
│   │   │   │   ├── CacheClearerInterface.php
│   │   │   │   ├── ChainCacheClearer.php
│   │   │   │   └── Psr6CacheClearer.php
│   │   │   ├── CacheWarmer
│   │   │   │   ├── CacheWarmer.php
│   │   │   │   ├── CacheWarmerAggregate.php
│   │   │   │   ├── CacheWarmerInterface.php
│   │   │   │   └── WarmableInterface.php
│   │   │   ├── Config
│   │   │   │   └── FileLocator.php
│   │   │   ├── Controller
│   │   │   │   ├── ArgumentResolver
│   │   │   │   │   ├── DefaultValueResolver.php
│   │   │   │   │   ├── NotTaggedControllerValueResolver.php
│   │   │   │   │   ├── RequestAttributeValueResolver.php
│   │   │   │   │   ├── RequestValueResolver.php
│   │   │   │   │   ├── ServiceValueResolver.php
│   │   │   │   │   ├── SessionValueResolver.php
│   │   │   │   │   ├── TraceableValueResolver.php
│   │   │   │   │   └── VariadicValueResolver.php
│   │   │   │   ├── ArgumentResolver.php
│   │   │   │   ├── ArgumentResolverInterface.php
│   │   │   │   ├── ArgumentValueResolverInterface.php
│   │   │   │   ├── ContainerControllerResolver.php
│   │   │   │   ├── ControllerReference.php
│   │   │   │   ├── ControllerResolver.php
│   │   │   │   ├── ControllerResolverInterface.php
│   │   │   │   ├── ErrorController.php
│   │   │   │   ├── TraceableArgumentResolver.php
│   │   │   │   └── TraceableControllerResolver.php
│   │   │   ├── ControllerMetadata
│   │   │   │   ├── ArgumentMetadata.php
│   │   │   │   ├── ArgumentMetadataFactory.php
│   │   │   │   └── ArgumentMetadataFactoryInterface.php
│   │   │   ├── DataCollector
│   │   │   │   ├── AjaxDataCollector.php
│   │   │   │   ├── ConfigDataCollector.php
│   │   │   │   ├── DataCollector.php
│   │   │   │   ├── DataCollectorInterface.php
│   │   │   │   ├── DumpDataCollector.php
│   │   │   │   ├── EventDataCollector.php
│   │   │   │   ├── ExceptionDataCollector.php
│   │   │   │   ├── LateDataCollectorInterface.php
│   │   │   │   ├── LoggerDataCollector.php
│   │   │   │   ├── MemoryDataCollector.php
│   │   │   │   ├── RequestDataCollector.php
│   │   │   │   ├── RouterDataCollector.php
│   │   │   │   └── TimeDataCollector.php
│   │   │   ├── Debug
│   │   │   │   ├── FileLinkFormatter.php
│   │   │   │   └── TraceableEventDispatcher.php
│   │   │   ├── DependencyInjection
│   │   │   │   ├── AddAnnotatedClassesToCachePass.php
│   │   │   │   ├── ConfigurableExtension.php
│   │   │   │   ├── ControllerArgumentValueResolverPass.php
│   │   │   │   ├── Extension.php
│   │   │   │   ├── FragmentRendererPass.php
│   │   │   │   ├── LazyLoadingFragmentHandler.php
│   │   │   │   ├── LoggerPass.php
│   │   │   │   ├── MergeExtensionConfigurationPass.php
│   │   │   │   ├── RegisterControllerArgumentLocatorsPass.php
│   │   │   │   ├── RegisterLocaleAwareServicesPass.php
│   │   │   │   ├── RemoveEmptyControllerArgumentLocatorsPass.php
│   │   │   │   ├── ResettableServicePass.php
│   │   │   │   └── ServicesResetter.php
│   │   │   ├── Event
│   │   │   │   ├── ControllerArgumentsEvent.php
│   │   │   │   ├── ControllerEvent.php
│   │   │   │   ├── ExceptionEvent.php
│   │   │   │   ├── FinishRequestEvent.php
│   │   │   │   ├── KernelEvent.php
│   │   │   │   ├── RequestEvent.php
│   │   │   │   ├── ResponseEvent.php
│   │   │   │   ├── TerminateEvent.php
│   │   │   │   └── ViewEvent.php
│   │   │   ├── EventListener
│   │   │   │   ├── AbstractSessionListener.php
│   │   │   │   ├── AbstractTestSessionListener.php
│   │   │   │   ├── AddRequestFormatsListener.php
│   │   │   │   ├── DebugHandlersListener.php
│   │   │   │   ├── DisallowRobotsIndexingListener.php
│   │   │   │   ├── DumpListener.php
│   │   │   │   ├── ErrorListener.php
│   │   │   │   ├── FragmentListener.php
│   │   │   │   ├── LocaleAwareListener.php
│   │   │   │   ├── LocaleListener.php
│   │   │   │   ├── ProfilerListener.php
│   │   │   │   ├── ResponseListener.php
│   │   │   │   ├── RouterListener.php
│   │   │   │   ├── SessionListener.php
│   │   │   │   ├── StreamedResponseListener.php
│   │   │   │   ├── SurrogateListener.php
│   │   │   │   ├── TestSessionListener.php
│   │   │   │   └── ValidateRequestListener.php
│   │   │   ├── Exception
│   │   │   │   ├── AccessDeniedHttpException.php
│   │   │   │   ├── BadRequestHttpException.php
│   │   │   │   ├── ConflictHttpException.php
│   │   │   │   ├── ControllerDoesNotReturnResponseException.php
│   │   │   │   ├── GoneHttpException.php
│   │   │   │   ├── HttpException.php
│   │   │   │   ├── HttpExceptionInterface.php
│   │   │   │   ├── InvalidMetadataException.php
│   │   │   │   ├── LengthRequiredHttpException.php
│   │   │   │   ├── MethodNotAllowedHttpException.php
│   │   │   │   ├── NotAcceptableHttpException.php
│   │   │   │   ├── NotFoundHttpException.php
│   │   │   │   ├── PreconditionFailedHttpException.php
│   │   │   │   ├── PreconditionRequiredHttpException.php
│   │   │   │   ├── ServiceUnavailableHttpException.php
│   │   │   │   ├── TooManyRequestsHttpException.php
│   │   │   │   ├── UnauthorizedHttpException.php
│   │   │   │   ├── UnexpectedSessionUsageException.php
│   │   │   │   ├── UnprocessableEntityHttpException.php
│   │   │   │   └── UnsupportedMediaTypeHttpException.php
│   │   │   ├── Fragment
│   │   │   │   ├── AbstractSurrogateFragmentRenderer.php
│   │   │   │   ├── EsiFragmentRenderer.php
│   │   │   │   ├── FragmentHandler.php
│   │   │   │   ├── FragmentRendererInterface.php
│   │   │   │   ├── HIncludeFragmentRenderer.php
│   │   │   │   ├── InlineFragmentRenderer.php
│   │   │   │   ├── RoutableFragmentRenderer.php
│   │   │   │   └── SsiFragmentRenderer.php
│   │   │   ├── HttpCache
│   │   │   │   ├── AbstractSurrogate.php
│   │   │   │   ├── Esi.php
│   │   │   │   ├── HttpCache.php
│   │   │   │   ├── ResponseCacheStrategy.php
│   │   │   │   ├── ResponseCacheStrategyInterface.php
│   │   │   │   ├── Ssi.php
│   │   │   │   ├── Store.php
│   │   │   │   ├── StoreInterface.php
│   │   │   │   ├── SubRequestHandler.php
│   │   │   │   └── SurrogateInterface.php
│   │   │   ├── HttpClientKernel.php
│   │   │   ├── HttpKernel.php
│   │   │   ├── HttpKernelBrowser.php
│   │   │   ├── HttpKernelInterface.php
│   │   │   ├── Kernel.php
│   │   │   ├── KernelEvents.php
│   │   │   ├── KernelInterface.php
│   │   │   ├── LICENSE
│   │   │   ├── Log
│   │   │   │   ├── DebugLoggerInterface.php
│   │   │   │   └── Logger.php
│   │   │   ├── Profiler
│   │   │   │   ├── FileProfilerStorage.php
│   │   │   │   ├── Profile.php
│   │   │   │   ├── Profiler.php
│   │   │   │   └── ProfilerStorageInterface.php
│   │   │   ├── README.md
│   │   │   ├── RebootableInterface.php
│   │   │   ├── Resources
│   │   │   │   └── welcome.html.php
│   │   │   ├── TerminableInterface.php
│   │   │   ├── UriSigner.php
│   │   │   └── composer.json
│   │   ├── mime
│   │   │   ├── Address.php
│   │   │   ├── BodyRendererInterface.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── CharacterStream.php
│   │   │   ├── Crypto
│   │   │   │   ├── DkimOptions.php
│   │   │   │   ├── DkimSigner.php
│   │   │   │   ├── SMime.php
│   │   │   │   ├── SMimeEncrypter.php
│   │   │   │   └── SMimeSigner.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── AddMimeTypeGuesserPass.php
│   │   │   ├── Email.php
│   │   │   ├── Encoder
│   │   │   │   ├── AddressEncoderInterface.php
│   │   │   │   ├── Base64ContentEncoder.php
│   │   │   │   ├── Base64Encoder.php
│   │   │   │   ├── Base64MimeHeaderEncoder.php
│   │   │   │   ├── ContentEncoderInterface.php
│   │   │   │   ├── EightBitContentEncoder.php
│   │   │   │   ├── EncoderInterface.php
│   │   │   │   ├── IdnAddressEncoder.php
│   │   │   │   ├── MimeHeaderEncoderInterface.php
│   │   │   │   ├── QpContentEncoder.php
│   │   │   │   ├── QpEncoder.php
│   │   │   │   ├── QpMimeHeaderEncoder.php
│   │   │   │   └── Rfc2231Encoder.php
│   │   │   ├── Exception
│   │   │   │   ├── AddressEncoderException.php
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── RfcComplianceException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── FileBinaryMimeTypeGuesser.php
│   │   │   ├── FileinfoMimeTypeGuesser.php
│   │   │   ├── Header
│   │   │   │   ├── AbstractHeader.php
│   │   │   │   ├── DateHeader.php
│   │   │   │   ├── HeaderInterface.php
│   │   │   │   ├── Headers.php
│   │   │   │   ├── IdentificationHeader.php
│   │   │   │   ├── MailboxHeader.php
│   │   │   │   ├── MailboxListHeader.php
│   │   │   │   ├── ParameterizedHeader.php
│   │   │   │   ├── PathHeader.php
│   │   │   │   └── UnstructuredHeader.php
│   │   │   ├── LICENSE
│   │   │   ├── Message.php
│   │   │   ├── MessageConverter.php
│   │   │   ├── MimeTypeGuesserInterface.php
│   │   │   ├── MimeTypes.php
│   │   │   ├── MimeTypesInterface.php
│   │   │   ├── Part
│   │   │   │   ├── AbstractMultipartPart.php
│   │   │   │   ├── AbstractPart.php
│   │   │   │   ├── DataPart.php
│   │   │   │   ├── MessagePart.php
│   │   │   │   ├── Multipart
│   │   │   │   │   ├── AlternativePart.php
│   │   │   │   │   ├── DigestPart.php
│   │   │   │   │   ├── FormDataPart.php
│   │   │   │   │   ├── MixedPart.php
│   │   │   │   │   └── RelatedPart.php
│   │   │   │   ├── SMimePart.php
│   │   │   │   └── TextPart.php
│   │   │   ├── README.md
│   │   │   ├── RawMessage.php
│   │   │   ├── Resources
│   │   │   │   └── bin
│   │   │   │       └── update_mime_types.php
│   │   │   ├── Test
│   │   │   │   └── Constraint
│   │   │   │       ├── EmailAddressContains.php
│   │   │   │       ├── EmailAttachmentCount.php
│   │   │   │       ├── EmailHasHeader.php
│   │   │   │       ├── EmailHeaderSame.php
│   │   │   │       ├── EmailHtmlBodyContains.php
│   │   │   │       └── EmailTextBodyContains.php
│   │   │   └── composer.json
│   │   ├── polyfill-ctype
│   │   │   ├── Ctype.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── bootstrap.php
│   │   │   ├── bootstrap80.php
│   │   │   └── composer.json
│   │   ├── polyfill-iconv
│   │   │   ├── Iconv.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── charset
│   │   │   │       ├── from.big5.php
│   │   │   │       ├── from.cp037.php
│   │   │   │       ├── from.cp1006.php
│   │   │   │       ├── from.cp1026.php
│   │   │   │       ├── from.cp424.php
│   │   │   │       ├── from.cp437.php
│   │   │   │       ├── from.cp500.php
│   │   │   │       ├── from.cp737.php
│   │   │   │       ├── from.cp775.php
│   │   │   │       ├── from.cp850.php
│   │   │   │       ├── from.cp852.php
│   │   │   │       ├── from.cp855.php
│   │   │   │       ├── from.cp856.php
│   │   │   │       ├── from.cp857.php
│   │   │   │       ├── from.cp860.php
│   │   │   │       ├── from.cp861.php
│   │   │   │       ├── from.cp862.php
│   │   │   │       ├── from.cp863.php
│   │   │   │       ├── from.cp864.php
│   │   │   │       ├── from.cp865.php
│   │   │   │       ├── from.cp866.php
│   │   │   │       ├── from.cp869.php
│   │   │   │       ├── from.cp874.php
│   │   │   │       ├── from.cp875.php
│   │   │   │       ├── from.cp932.php
│   │   │   │       ├── from.cp936.php
│   │   │   │       ├── from.cp949.php
│   │   │   │       ├── from.cp950.php
│   │   │   │       ├── from.iso-8859-1.php
│   │   │   │       ├── from.iso-8859-10.php
│   │   │   │       ├── from.iso-8859-11.php
│   │   │   │       ├── from.iso-8859-13.php
│   │   │   │       ├── from.iso-8859-14.php
│   │   │   │       ├── from.iso-8859-15.php
│   │   │   │       ├── from.iso-8859-16.php
│   │   │   │       ├── from.iso-8859-2.php
│   │   │   │       ├── from.iso-8859-3.php
│   │   │   │       ├── from.iso-8859-4.php
│   │   │   │       ├── from.iso-8859-5.php
│   │   │   │       ├── from.iso-8859-6.php
│   │   │   │       ├── from.iso-8859-7.php
│   │   │   │       ├── from.iso-8859-8.php
│   │   │   │       ├── from.iso-8859-9.php
│   │   │   │       ├── from.koi8-r.php
│   │   │   │       ├── from.koi8-u.php
│   │   │   │       ├── from.us-ascii.php
│   │   │   │       ├── from.windows-1250.php
│   │   │   │       ├── from.windows-1251.php
│   │   │   │       ├── from.windows-1252.php
│   │   │   │       ├── from.windows-1253.php
│   │   │   │       ├── from.windows-1254.php
│   │   │   │       ├── from.windows-1255.php
│   │   │   │       ├── from.windows-1256.php
│   │   │   │       ├── from.windows-1257.php
│   │   │   │       ├── from.windows-1258.php
│   │   │   │       └── translit.php
│   │   │   ├── bootstrap.php
│   │   │   ├── bootstrap80.php
│   │   │   └── composer.json
│   │   ├── polyfill-intl-grapheme
│   │   │   ├── Grapheme.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── bootstrap.php
│   │   │   ├── bootstrap80.php
│   │   │   └── composer.json
│   │   ├── polyfill-intl-idn
│   │   │   ├── Idn.php
│   │   │   ├── Info.php
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── unidata
│   │   │   │       ├── DisallowedRanges.php
│   │   │   │       ├── Regex.php
│   │   │   │       ├── deviation.php
│   │   │   │       ├── disallowed.php
│   │   │   │       ├── disallowed_STD3_mapped.php
│   │   │   │       ├── disallowed_STD3_valid.php
│   │   │   │       ├── ignored.php
│   │   │   │       ├── mapped.php
│   │   │   │       └── virama.php
│   │   │   ├── bootstrap.php
│   │   │   ├── bootstrap80.php
│   │   │   └── composer.json
│   │   ├── polyfill-intl-normalizer
│   │   │   ├── LICENSE
│   │   │   ├── Normalizer.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   ├── stubs
│   │   │   │   │   └── Normalizer.php
│   │   │   │   └── unidata
│   │   │   │       ├── canonicalComposition.php
│   │   │   │       ├── canonicalDecomposition.php
│   │   │   │       ├── combiningClass.php
│   │   │   │       └── compatibilityDecomposition.php
│   │   │   ├── bootstrap.php
│   │   │   ├── bootstrap80.php
│   │   │   └── composer.json
│   │   ├── polyfill-mbstring
│   │   │   ├── LICENSE
│   │   │   ├── Mbstring.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── unidata
│   │   │   │       ├── lowerCase.php
│   │   │   │       ├── titleCaseRegexp.php
│   │   │   │       └── upperCase.php
│   │   │   ├── bootstrap.php
│   │   │   ├── bootstrap80.php
│   │   │   └── composer.json
│   │   ├── polyfill-php72
│   │   │   ├── LICENSE
│   │   │   ├── Php72.php
│   │   │   ├── README.md
│   │   │   ├── bootstrap.php
│   │   │   └── composer.json
│   │   ├── polyfill-php73
│   │   │   ├── LICENSE
│   │   │   ├── Php73.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── stubs
│   │   │   │       └── JsonException.php
│   │   │   ├── bootstrap.php
│   │   │   └── composer.json
│   │   ├── polyfill-php80
│   │   │   ├── LICENSE
│   │   │   ├── Php80.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   └── stubs
│   │   │   │       ├── Attribute.php
│   │   │   │       ├── Stringable.php
│   │   │   │       ├── UnhandledMatchError.php
│   │   │   │       └── ValueError.php
│   │   │   ├── bootstrap.php
│   │   │   └── composer.json
│   │   ├── process
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── ProcessFailedException.php
│   │   │   │   ├── ProcessSignaledException.php
│   │   │   │   ├── ProcessTimedOutException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── ExecutableFinder.php
│   │   │   ├── InputStream.php
│   │   │   ├── LICENSE
│   │   │   ├── PhpExecutableFinder.php
│   │   │   ├── PhpProcess.php
│   │   │   ├── Pipes
│   │   │   │   ├── AbstractPipes.php
│   │   │   │   ├── PipesInterface.php
│   │   │   │   ├── UnixPipes.php
│   │   │   │   └── WindowsPipes.php
│   │   │   ├── Process.php
│   │   │   ├── ProcessUtils.php
│   │   │   ├── README.md
│   │   │   └── composer.json
│   │   ├── routing
│   │   │   ├── Annotation
│   │   │   │   └── Route.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── CompiledRoute.php
│   │   │   ├── DependencyInjection
│   │   │   │   └── RoutingResolverPass.php
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidParameterException.php
│   │   │   │   ├── MethodNotAllowedException.php
│   │   │   │   ├── MissingMandatoryParametersException.php
│   │   │   │   ├── NoConfigurationException.php
│   │   │   │   ├── ResourceNotFoundException.php
│   │   │   │   └── RouteNotFoundException.php
│   │   │   ├── Generator
│   │   │   │   ├── CompiledUrlGenerator.php
│   │   │   │   ├── ConfigurableRequirementsInterface.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── CompiledUrlGeneratorDumper.php
│   │   │   │   │   ├── GeneratorDumper.php
│   │   │   │   │   └── GeneratorDumperInterface.php
│   │   │   │   ├── UrlGenerator.php
│   │   │   │   └── UrlGeneratorInterface.php
│   │   │   ├── LICENSE
│   │   │   ├── Loader
│   │   │   │   ├── AnnotationClassLoader.php
│   │   │   │   ├── AnnotationDirectoryLoader.php
│   │   │   │   ├── AnnotationFileLoader.php
│   │   │   │   ├── ClosureLoader.php
│   │   │   │   ├── Configurator
│   │   │   │   │   ├── CollectionConfigurator.php
│   │   │   │   │   ├── ImportConfigurator.php
│   │   │   │   │   ├── RouteConfigurator.php
│   │   │   │   │   ├── RoutingConfigurator.php
│   │   │   │   │   └── Traits
│   │   │   │   │       ├── AddTrait.php
│   │   │   │   │       ├── HostTrait.php
│   │   │   │   │       ├── LocalizedRouteTrait.php
│   │   │   │   │       ├── PrefixTrait.php
│   │   │   │   │       └── RouteTrait.php
│   │   │   │   ├── ContainerLoader.php
│   │   │   │   ├── DirectoryLoader.php
│   │   │   │   ├── GlobFileLoader.php
│   │   │   │   ├── ObjectLoader.php
│   │   │   │   ├── PhpFileLoader.php
│   │   │   │   ├── XmlFileLoader.php
│   │   │   │   ├── YamlFileLoader.php
│   │   │   │   └── schema
│   │   │   │       └── routing
│   │   │   │           └── routing-1.0.xsd
│   │   │   ├── Matcher
│   │   │   │   ├── CompiledUrlMatcher.php
│   │   │   │   ├── Dumper
│   │   │   │   │   ├── CompiledUrlMatcherDumper.php
│   │   │   │   │   ├── CompiledUrlMatcherTrait.php
│   │   │   │   │   ├── MatcherDumper.php
│   │   │   │   │   ├── MatcherDumperInterface.php
│   │   │   │   │   └── StaticPrefixCollection.php
│   │   │   │   ├── ExpressionLanguageProvider.php
│   │   │   │   ├── RedirectableUrlMatcher.php
│   │   │   │   ├── RedirectableUrlMatcherInterface.php
│   │   │   │   ├── RequestMatcherInterface.php
│   │   │   │   ├── TraceableUrlMatcher.php
│   │   │   │   ├── UrlMatcher.php
│   │   │   │   └── UrlMatcherInterface.php
│   │   │   ├── README.md
│   │   │   ├── RequestContext.php
│   │   │   ├── RequestContextAwareInterface.php
│   │   │   ├── Route.php
│   │   │   ├── RouteCollection.php
│   │   │   ├── RouteCollectionBuilder.php
│   │   │   ├── RouteCompiler.php
│   │   │   ├── RouteCompilerInterface.php
│   │   │   ├── Router.php
│   │   │   ├── RouterInterface.php
│   │   │   └── composer.json
│   │   ├── service-contracts
│   │   │   ├── Attribute
│   │   │   │   └── Required.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── ResetInterface.php
│   │   │   ├── ServiceLocatorTrait.php
│   │   │   ├── ServiceProviderInterface.php
│   │   │   ├── ServiceSubscriberInterface.php
│   │   │   ├── ServiceSubscriberTrait.php
│   │   │   ├── Test
│   │   │   │   └── ServiceLocatorTest.php
│   │   │   └── composer.json
│   │   ├── string
│   │   │   ├── AbstractString.php
│   │   │   ├── AbstractUnicodeString.php
│   │   │   ├── ByteString.php
│   │   │   ├── CHANGELOG.md
│   │   │   ├── CodePointString.php
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Inflector
│   │   │   │   ├── EnglishInflector.php
│   │   │   │   ├── FrenchInflector.php
│   │   │   │   └── InflectorInterface.php
│   │   │   ├── LICENSE
│   │   │   ├── LazyString.php
│   │   │   ├── README.md
│   │   │   ├── Resources
│   │   │   │   ├── data
│   │   │   │   │   ├── wcswidth_table_wide.php
│   │   │   │   │   └── wcswidth_table_zero.php
│   │   │   │   └── functions.php
│   │   │   ├── Slugger
│   │   │   │   ├── AsciiSlugger.php
│   │   │   │   └── SluggerInterface.php
│   │   │   ├── UnicodeString.php
│   │   │   └── composer.json
│   │   ├── translation
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Catalogue
│   │   │   │   ├── AbstractOperation.php
│   │   │   │   ├── MergeOperation.php
│   │   │   │   ├── OperationInterface.php
│   │   │   │   └── TargetOperation.php
│   │   │   ├── Command
│   │   │   │   └── XliffLintCommand.php
│   │   │   ├── DataCollector
│   │   │   │   └── TranslationDataCollector.php
│   │   │   ├── DataCollectorTranslator.php
│   │   │   ├── DependencyInjection
│   │   │   │   ├── TranslationDumperPass.php
│   │   │   │   ├── TranslationExtractorPass.php
│   │   │   │   ├── TranslatorPass.php
│   │   │   │   └── TranslatorPathsPass.php
│   │   │   ├── Dumper
│   │   │   │   ├── CsvFileDumper.php
│   │   │   │   ├── DumperInterface.php
│   │   │   │   ├── FileDumper.php
│   │   │   │   ├── IcuResFileDumper.php
│   │   │   │   ├── IniFileDumper.php
│   │   │   │   ├── JsonFileDumper.php
│   │   │   │   ├── MoFileDumper.php
│   │   │   │   ├── PhpFileDumper.php
│   │   │   │   ├── PoFileDumper.php
│   │   │   │   ├── QtFileDumper.php
│   │   │   │   ├── XliffFileDumper.php
│   │   │   │   └── YamlFileDumper.php
│   │   │   ├── Exception
│   │   │   │   ├── ExceptionInterface.php
│   │   │   │   ├── InvalidArgumentException.php
│   │   │   │   ├── InvalidResourceException.php
│   │   │   │   ├── LogicException.php
│   │   │   │   ├── NotFoundResourceException.php
│   │   │   │   └── RuntimeException.php
│   │   │   ├── Extractor
│   │   │   │   ├── AbstractFileExtractor.php
│   │   │   │   ├── ChainExtractor.php
│   │   │   │   ├── ExtractorInterface.php
│   │   │   │   ├── PhpExtractor.php
│   │   │   │   └── PhpStringTokenParser.php
│   │   │   ├── Formatter
│   │   │   │   ├── IntlFormatter.php
│   │   │   │   ├── IntlFormatterInterface.php
│   │   │   │   ├── MessageFormatter.php
│   │   │   │   └── MessageFormatterInterface.php
│   │   │   ├── IdentityTranslator.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
│   │   │   │   ├── XliffFileLoader.php
│   │   │   │   └── YamlFileLoader.php
│   │   │   ├── LoggingTranslator.php
│   │   │   ├── MessageCatalogue.php
│   │   │   ├── MessageCatalogueInterface.php
│   │   │   ├── MetadataAwareInterface.php
│   │   │   ├── PluralizationRules.php
│   │   │   ├── PseudoLocalizationTranslator.php
│   │   │   ├── README.md
│   │   │   ├── Reader
│   │   │   │   ├── TranslationReader.php
│   │   │   │   └── TranslationReaderInterface.php
│   │   │   ├── Resources
│   │   │   │   ├── bin
│   │   │   │   │   └── translation-status.php
│   │   │   │   ├── data
│   │   │   │   │   └── parents.json
│   │   │   │   ├── functions.php
│   │   │   │   └── schemas
│   │   │   │       ├── xliff-core-1.2-strict.xsd
│   │   │   │       ├── xliff-core-2.0.xsd
│   │   │   │       └── xml.xsd
│   │   │   ├── TranslatableMessage.php
│   │   │   ├── Translator.php
│   │   │   ├── TranslatorBagInterface.php
│   │   │   ├── Util
│   │   │   │   ├── ArrayConverter.php
│   │   │   │   └── XliffUtils.php
│   │   │   ├── Writer
│   │   │   │   ├── TranslationWriter.php
│   │   │   │   └── TranslationWriterInterface.php
│   │   │   └── composer.json
│   │   ├── translation-contracts
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── LocaleAwareInterface.php
│   │   │   ├── README.md
│   │   │   ├── Test
│   │   │   │   └── TranslatorTest.php
│   │   │   ├── TranslatableInterface.php
│   │   │   ├── TranslatorInterface.php
│   │   │   ├── TranslatorTrait.php
│   │   │   └── composer.json
│   │   └── var-dumper
│   │       ├── CHANGELOG.md
│   │       ├── Caster
│   │       │   ├── AmqpCaster.php
│   │       │   ├── ArgsStub.php
│   │       │   ├── Caster.php
│   │       │   ├── ClassStub.php
│   │       │   ├── ConstStub.php
│   │       │   ├── CutArrayStub.php
│   │       │   ├── CutStub.php
│   │       │   ├── DOMCaster.php
│   │       │   ├── DateCaster.php
│   │       │   ├── DoctrineCaster.php
│   │       │   ├── DsCaster.php
│   │       │   ├── DsPairStub.php
│   │       │   ├── EnumStub.php
│   │       │   ├── ExceptionCaster.php
│   │       │   ├── FrameStub.php
│   │       │   ├── GmpCaster.php
│   │       │   ├── ImagineCaster.php
│   │       │   ├── ImgStub.php
│   │       │   ├── IntlCaster.php
│   │       │   ├── LinkStub.php
│   │       │   ├── MemcachedCaster.php
│   │       │   ├── PdoCaster.php
│   │       │   ├── PgSqlCaster.php
│   │       │   ├── ProxyManagerCaster.php
│   │       │   ├── RdKafkaCaster.php
│   │       │   ├── RedisCaster.php
│   │       │   ├── ReflectionCaster.php
│   │       │   ├── ResourceCaster.php
│   │       │   ├── SplCaster.php
│   │       │   ├── StubCaster.php
│   │       │   ├── SymfonyCaster.php
│   │       │   ├── TraceStub.php
│   │       │   ├── UuidCaster.php
│   │       │   ├── XmlReaderCaster.php
│   │       │   └── XmlResourceCaster.php
│   │       ├── Cloner
│   │       │   ├── AbstractCloner.php
│   │       │   ├── ClonerInterface.php
│   │       │   ├── Cursor.php
│   │       │   ├── Data.php
│   │       │   ├── DumperInterface.php
│   │       │   ├── Stub.php
│   │       │   └── VarCloner.php
│   │       ├── Command
│   │       │   ├── Descriptor
│   │       │   │   ├── CliDescriptor.php
│   │       │   │   ├── DumpDescriptorInterface.php
│   │       │   │   └── HtmlDescriptor.php
│   │       │   └── ServerDumpCommand.php
│   │       ├── Dumper
│   │       │   ├── AbstractDumper.php
│   │       │   ├── CliDumper.php
│   │       │   ├── ContextProvider
│   │       │   │   ├── CliContextProvider.php
│   │       │   │   ├── ContextProviderInterface.php
│   │       │   │   ├── RequestContextProvider.php
│   │       │   │   └── SourceContextProvider.php
│   │       │   ├── ContextualizedDumper.php
│   │       │   ├── DataDumperInterface.php
│   │       │   ├── HtmlDumper.php
│   │       │   └── ServerDumper.php
│   │       ├── Exception
│   │       │   └── ThrowingCasterException.php
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── Resources
│   │       │   ├── bin
│   │       │   │   └── var-dump-server
│   │       │   ├── css
│   │       │   │   └── htmlDescriptor.css
│   │       │   ├── functions
│   │       │   │   └── dump.php
│   │       │   └── js
│   │       │       └── htmlDescriptor.js
│   │       ├── Server
│   │       │   ├── Connection.php
│   │       │   └── DumpServer.php
│   │       ├── Test
│   │       │   └── VarDumperTestTrait.php
│   │       ├── VarDumper.php
│   │       └── composer.json
│   ├── tijsverkoyen
│   │   └── css-to-inline-styles
│   │       ├── LICENSE.md
│   │       ├── composer.json
│   │       └── src
│   │           ├── Css
│   │           │   ├── Processor.php
│   │           │   ├── Property
│   │           │   │   ├── Processor.php
│   │           │   │   └── Property.php
│   │           │   └── Rule
│   │           │       ├── Processor.php
│   │           │       └── Rule.php
│   │           └── CssToInlineStyles.php
│   ├── vlucas
│   │   └── phpdotenv
│   │       ├── LICENSE
│   │       ├── composer.json
│   │       └── src
│   │           ├── Dotenv.php
│   │           ├── Exception
│   │           │   ├── ExceptionInterface.php
│   │           │   ├── InvalidFileException.php
│   │           │   ├── InvalidPathException.php
│   │           │   └── ValidationException.php
│   │           ├── Loader
│   │           │   ├── Lines.php
│   │           │   ├── Loader.php
│   │           │   ├── LoaderInterface.php
│   │           │   ├── Parser.php
│   │           │   └── Value.php
│   │           ├── Regex
│   │           │   └── Regex.php
│   │           ├── Repository
│   │           │   ├── AbstractRepository.php
│   │           │   ├── Adapter
│   │           │   │   ├── ApacheAdapter.php
│   │           │   │   ├── ArrayAdapter.php
│   │           │   │   ├── AvailabilityInterface.php
│   │           │   │   ├── EnvConstAdapter.php
│   │           │   │   ├── PutenvAdapter.php
│   │           │   │   ├── ReaderInterface.php
│   │           │   │   ├── ServerConstAdapter.php
│   │           │   │   └── WriterInterface.php
│   │           │   ├── AdapterRepository.php
│   │           │   ├── RepositoryBuilder.php
│   │           │   └── RepositoryInterface.php
│   │           ├── Result
│   │           │   ├── Error.php
│   │           │   ├── Result.php
│   │           │   └── Success.php
│   │           ├── Store
│   │           │   ├── File
│   │           │   │   ├── Paths.php
│   │           │   │   └── Reader.php
│   │           │   ├── FileStore.php
│   │           │   ├── StoreBuilder.php
│   │           │   ├── StoreInterface.php
│   │           │   └── StringStore.php
│   │           └── Validator.php
│   └── voku
│       └── portable-ascii
│           ├── CHANGELOG.md
│           ├── LICENSE.txt
│           ├── README.md
│           ├── build
│           │   ├── composer.json
│           │   ├── docs
│           │   │   └── base.md
│           │   ├── generate_docs.php
│           │   └── generate_max_key_length.php
│           ├── composer.json
│           └── src
│               └── voku
│                   └── helper
│                       ├── ASCII.php
│                       └── data
│                           ├── ascii_by_languages.php
│                           ├── ascii_extras_by_languages.php
│                           ├── ascii_language_max_key.php
│                           ├── ascii_ord.php
│                           ├── x000.php
│                           ├── x001.php
│                           ├── x002.php
│                           ├── x003.php
│                           ├── x004.php
│                           ├── x005.php
│                           ├── x006.php
│                           ├── x007.php
│                           ├── x009.php
│                           ├── x00a.php
│                           ├── x00b.php
│                           ├── x00c.php
│                           ├── x00d.php
│                           ├── x00e.php
│                           ├── x00f.php
│                           ├── x010.php
│                           ├── x011.php
│                           ├── x012.php
│                           ├── x013.php
│                           ├── x014.php
│                           ├── x015.php
│                           ├── x016.php
│                           ├── x017.php
│                           ├── x018.php
│                           ├── x01d.php
│                           ├── x01e.php
│                           ├── x01f.php
│                           ├── x020.php
│                           ├── x021.php
│                           ├── x022.php
│                           ├── x023.php
│                           ├── x024.php
│                           ├── x025.php
│                           ├── x026.php
│                           ├── x027.php
│                           ├── x028.php
│                           ├── x029.php
│                           ├── x02a.php
│                           ├── x02c.php
│                           ├── x02e.php
│                           ├── x02f.php
│                           ├── x030.php
│                           ├── x031.php
│                           ├── x032.php
│                           ├── x033.php
│                           ├── x04d.php
│                           ├── x04e.php
│                           ├── x04f.php
│                           ├── x050.php
│                           ├── x051.php
│                           ├── x052.php
│                           ├── x053.php
│                           ├── x054.php
│                           ├── x055.php
│                           ├── x056.php
│                           ├── x057.php
│                           ├── x058.php
│                           ├── x059.php
│                           ├── x05a.php
│                           ├── x05b.php
│                           ├── x05c.php
│                           ├── x05d.php
│                           ├── x05e.php
│                           ├── x05f.php
│                           ├── x060.php
│                           ├── x061.php
│                           ├── x062.php
│                           ├── x063.php
│                           ├── x064.php
│                           ├── x065.php
│                           ├── x066.php
│                           ├── x067.php
│                           ├── x068.php
│                           ├── x069.php
│                           ├── x06a.php
│                           ├── x06b.php
│                           ├── x06c.php
│                           ├── x06d.php
│                           ├── x06e.php
│                           ├── x06f.php
│                           ├── x070.php
│                           ├── x071.php
│                           ├── x072.php
│                           ├── x073.php
│                           ├── x074.php
│                           ├── x075.php
│                           ├── x076.php
│                           ├── x077.php
│                           ├── x078.php
│                           ├── x079.php
│                           ├── x07a.php
│                           ├── x07b.php
│                           ├── x07c.php
│                           ├── x07d.php
│                           ├── x07e.php
│                           ├── x07f.php
│                           ├── x080.php
│                           ├── x081.php
│                           ├── x082.php
│                           ├── x083.php
│                           ├── x084.php
│                           ├── x085.php
│                           ├── x086.php
│                           ├── x087.php
│                           ├── x088.php
│                           ├── x089.php
│                           ├── x08a.php
│                           ├── x08b.php
│                           ├── x08c.php
│                           ├── x08d.php
│                           ├── x08e.php
│                           ├── x08f.php
│                           ├── x090.php
│                           ├── x091.php
│                           ├── x092.php
│                           ├── x093.php
│                           ├── x094.php
│                           ├── x095.php
│                           ├── x096.php
│                           ├── x097.php
│                           ├── x098.php
│                           ├── x099.php
│                           ├── x09a.php
│                           ├── x09b.php
│                           ├── x09c.php
│                           ├── x09d.php
│                           ├── x09e.php
│                           ├── x09f.php
│                           ├── x0a0.php
│                           ├── x0a1.php
│                           ├── x0a2.php
│                           ├── x0a3.php
│                           ├── x0a4.php
│                           ├── x0ac.php
│                           ├── x0ad.php
│                           ├── x0ae.php
│                           ├── x0af.php
│                           ├── x0b0.php
│                           ├── x0b1.php
│                           ├── x0b2.php
│                           ├── x0b3.php
│                           ├── x0b4.php
│                           ├── x0b5.php
│                           ├── x0b6.php
│                           ├── x0b7.php
│                           ├── x0b8.php
│                           ├── x0b9.php
│                           ├── x0ba.php
│                           ├── x0bb.php
│                           ├── x0bc.php
│                           ├── x0bd.php
│                           ├── x0be.php
│                           ├── x0bf.php
│                           ├── x0c0.php
│                           ├── x0c1.php
│                           ├── x0c2.php
│                           ├── x0c3.php
│                           ├── x0c4.php
│                           ├── x0c5.php
│                           ├── x0c6.php
│                           ├── x0c7.php
│                           ├── x0c8.php
│                           ├── x0c9.php
│                           ├── x0ca.php
│                           ├── x0cb.php
│                           ├── x0cc.php
│                           ├── x0cd.php
│                           ├── x0ce.php
│                           ├── x0cf.php
│                           ├── x0d0.php
│                           ├── x0d1.php
│                           ├── x0d2.php
│                           ├── x0d3.php
│                           ├── x0d4.php
│                           ├── x0d5.php
│                           ├── x0d6.php
│                           ├── x0d7.php
│                           ├── x0f9.php
│                           ├── x0fa.php
│                           ├── x0fb.php
│                           ├── x0fc.php
│                           ├── x0fd.php
│                           ├── x0fe.php
│                           ├── x0ff.php
│                           ├── x1d4.php
│                           ├── x1d5.php
│                           ├── x1d6.php
│                           ├── x1d7.php
│                           └── x1f1.php
└── webappdir.txt

1966 directories, 15941 files
