﻿
Folder PATH listing for volume Windows
Volume serial number is 1E84-4A5B
C:.
│   .editorconfig
│   .env
│   .env.example
│   .gitattributes
│   .gitignore
│   .styleci.yml
│   artisan
│   composer.json
│   composer.lock
│   package.json
│   phpunit.xml
│   README.md
│   sendEmailVerificationNotification()
│   server.php
│   structure.txt
│   webpack.mix.js
│
├───.idea
│       .gitignore
│       API.iml
│       modules.xml
│       php.xml
│       phpunit.xml
│       workspace.xml
│
├───.vscode
│       sftp.json
│
├───app
│   ├───Console
│   │       Kernel.php
│   │
│   ├───Exceptions
│   │       Handler.php
│   │
│   ├───Http
│   │   │   Kernel.php
│   │   │
│   │   ├───Controllers
│   │   │   │   AuthController.php
│   │   │   │   BalanceChartController.php
│   │   │   │   BalanceController.php
│   │   │   │   ClientController.php
│   │   │   │   Controller.php
│   │   │   │   FactorController.php
│   │   │   │   FactorlistController.php
│   │   │   │   ListController.php
│   │   │   │   MainStoreController.php
│   │   │   │   ProductStoreController.php
│   │   │   │   ReserveStoreController.php
│   │   │   │   StorelistController.php
│   │   │   │   SupplierController.php
│   │   │   │
│   │   │   └───Auth
│   │   │           ConfirmPasswordController.php
│   │   │           ForgotPasswordController.php
│   │   │           LoginController.php
│   │   │           LogoutController.php
│   │   │           RegisterController.php
│   │   │           ResetPasswordController.php
│   │   │           VerificationController.php
│   │   │
│   │   └───Middleware
│   │           Authenticate.php
│   │           EncryptCookies.php
│   │           PreventRequestsDuringMaintenance.php
│   │           RedirectIfAuthenticated.php
│   │           TrimStrings.php
│   │           TrustHosts.php
│   │           TrustProxies.php
│   │           VerifyCsrfToken.php
│   │           VerifyEmail.php
│   │
│   ├───Models
│   │       client.php
│   │       factor.php
│   │       factorlist.php
│   │       main_store.php
│   │       product_store.php
│   │       reserve_store.php
│   │       storelist.php
│   │       supplier.php
│   │       User.php
│   │
│   ├───Providers
│   │       AppServiceProvider.php
│   │       AuthServiceProvider.php
│   │       BroadcastServiceProvider.php
│   │       EventServiceProvider.php
│   │       RouteServiceProvider.php
│   │
│   └───View
│       └───Components
│           └───Ui
│                   Navbar.php
│
├───bootstrap
│   │   app.php
│   │
│   └───cache
│           .gitignore
│           packages.php
│           services.php
│
├───config
│   │   app.php
│   │   auth.php
│   │   broadcasting.php
│   │   cache.php
│   │   cors.php
│   │   database.php
│   │   filesystems.php
│   │   hashing.php
│   │   jwt.php
│   │   logging.php
│   │   mail.php
│   │   queue.php
│   │   sanctum.php
│   │   services.php
│   │   session.php
│   │   view.php
│   │
│   └───web
│           auth.php
│           layout.php
│
├───database
│   │   .gitignore
│   │
│   ├───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
│   │       2019_12_14_000001_create_personal_access_tokens_table.php
│   │       2023_06_04_133709_create_user_verifications_table.php
│   │       2026_03_16_085247_create_sessions_table.php
│   │       2026_03_16_090515_create_cache_table.php
│   │       2026_03_16_090527_create_jobs_table.php
│   │
│   └───seeders
│           DatabaseSeeder.php
│
├───public
│   │   .htaccess
│   │   favicon.ico
│   │   index.php
│   │   robots.txt
│   │
│   ├───css
│   │       app.css
│   │       bootstrap-grid.css
│   │       bootstrap-grid.css.map
│   │       bootstrap-grid.min.css
│   │       bootstrap-grid.min.css.map
│   │       bootstrap-grid.rtl.css
│   │       bootstrap-grid.rtl.css.map
│   │       bootstrap-grid.rtl.min.css
│   │       bootstrap-grid.rtl.min.css.map
│   │       bootstrap-reboot.css
│   │       bootstrap-reboot.css.map
│   │       bootstrap-reboot.min.css
│   │       bootstrap-reboot.min.css.map
│   │       bootstrap-reboot.rtl.css
│   │       bootstrap-reboot.rtl.css.map
│   │       bootstrap-reboot.rtl.min.css
│   │       bootstrap-reboot.rtl.min.css.map
│   │       bootstrap-utilities.css
│   │       bootstrap-utilities.css.map
│   │       bootstrap-utilities.min.css
│   │       bootstrap-utilities.min.css.map
│   │       bootstrap-utilities.rtl.css
│   │       bootstrap-utilities.rtl.css.map
│   │       bootstrap-utilities.rtl.min.css
│   │       bootstrap-utilities.rtl.min.css.map
│   │       bootstrap.css
│   │       bootstrap.css.map
│   │       bootstrap.min.css
│   │       bootstrap.min.css.map
│   │       bootstrap.rtl.css
│   │       bootstrap.rtl.css.map
│   │       bootstrap.rtl.min.css
│   │       bootstrap.rtl.min.css.map
│   │       styles.css
│   │
│   └───js
│       │   app.js
│       │   bootstrap.js
│       │
│       ├───auth
│       │       login.js
│       │       logout.js
│       │
│       ├───bootstrap
│       │       bootstrap.bundle.js
│       │       bootstrap.bundle.js.map
│       │       bootstrap.bundle.min.js
│       │       bootstrap.bundle.min.js.map
│       │       bootstrap.esm.js
│       │       bootstrap.esm.js.map
│       │       bootstrap.esm.min.js
│       │       bootstrap.esm.min.js.map
│       │       bootstrap.js
│       │       bootstrap.js.map
│       │       bootstrap.min.js
│       │       bootstrap.min.js.map
│       │
│       ├───ui
│       │       modal.js
│       │       navbar.js
│       │
│       └───utils
│               fetchData.js
│
├───resources
│   ├───css
│   │       app.css
│   │       styles.css
│   │
│   ├───icons
│   │   │   0-circle-fill.svg
│   │   │   0-circle.svg
│   │   │   0-square-fill.svg
│   │   │   0-square.svg
│   │   │   1-circle-fill.svg
│   │   │   1-circle.svg
│   │   │   1-square-fill.svg
│   │   │   1-square.svg
│   │   │   123.svg
│   │   │   2-circle-fill.svg
│   │   │   2-circle.svg
│   │   │   2-square-fill.svg
│   │   │   2-square.svg
│   │   │   3-circle-fill.svg
│   │   │   3-circle.svg
│   │   │   3-square-fill.svg
│   │   │   3-square.svg
│   │   │   4-circle-fill.svg
│   │   │   4-circle.svg
│   │   │   4-square-fill.svg
│   │   │   4-square.svg
│   │   │   5-circle-fill.svg
│   │   │   5-circle.svg
│   │   │   5-square-fill.svg
│   │   │   5-square.svg
│   │   │   6-circle-fill.svg
│   │   │   6-circle.svg
│   │   │   6-square-fill.svg
│   │   │   6-square.svg
│   │   │   7-circle-fill.svg
│   │   │   7-circle.svg
│   │   │   7-square-fill.svg
│   │   │   7-square.svg
│   │   │   8-circle-fill.svg
│   │   │   8-circle.svg
│   │   │   8-square-fill.svg
│   │   │   8-square.svg
│   │   │   9-circle-fill.svg
│   │   │   9-circle.svg
│   │   │   9-square-fill.svg
│   │   │   9-square.svg
│   │   │   activity.svg
│   │   │   airplane-engines-fill.svg
│   │   │   airplane-engines.svg
│   │   │   airplane-fill.svg
│   │   │   airplane.svg
│   │   │   alarm-fill.svg
│   │   │   alarm.svg
│   │   │   alexa.svg
│   │   │   align-bottom.svg
│   │   │   align-center.svg
│   │   │   align-end.svg
│   │   │   align-middle.svg
│   │   │   align-start.svg
│   │   │   align-top.svg
│   │   │   alipay.svg
│   │   │   alphabet-uppercase.svg
│   │   │   alphabet.svg
│   │   │   alt.svg
│   │   │   amazon.svg
│   │   │   amd.svg
│   │   │   android.svg
│   │   │   android2.svg
│   │   │   anthropic.svg
│   │   │   app-indicator.svg
│   │   │   app.svg
│   │   │   apple-music.svg
│   │   │   apple.svg
│   │   │   archive-fill.svg
│   │   │   archive.svg
│   │   │   arrow-90deg-down.svg
│   │   │   arrow-90deg-left.svg
│   │   │   arrow-90deg-right.svg
│   │   │   arrow-90deg-up.svg
│   │   │   arrow-bar-down.svg
│   │   │   arrow-bar-left.svg
│   │   │   arrow-bar-right.svg
│   │   │   arrow-bar-up.svg
│   │   │   arrow-clockwise.svg
│   │   │   arrow-counterclockwise.svg
│   │   │   arrow-down-circle-fill.svg
│   │   │   arrow-down-circle.svg
│   │   │   arrow-down-left-circle-fill.svg
│   │   │   arrow-down-left-circle.svg
│   │   │   arrow-down-left-square-fill.svg
│   │   │   arrow-down-left-square.svg
│   │   │   arrow-down-left.svg
│   │   │   arrow-down-right-circle-fill.svg
│   │   │   arrow-down-right-circle.svg
│   │   │   arrow-down-right-square-fill.svg
│   │   │   arrow-down-right-square.svg
│   │   │   arrow-down-right.svg
│   │   │   arrow-down-short.svg
│   │   │   arrow-down-square-fill.svg
│   │   │   arrow-down-square.svg
│   │   │   arrow-down-up.svg
│   │   │   arrow-down.svg
│   │   │   arrow-left-circle-fill.svg
│   │   │   arrow-left-circle.svg
│   │   │   arrow-left-right.svg
│   │   │   arrow-left-short.svg
│   │   │   arrow-left-square-fill.svg
│   │   │   arrow-left-square.svg
│   │   │   arrow-left.svg
│   │   │   arrow-repeat.svg
│   │   │   arrow-return-left.svg
│   │   │   arrow-return-right.svg
│   │   │   arrow-right-circle-fill.svg
│   │   │   arrow-right-circle.svg
│   │   │   arrow-right-short.svg
│   │   │   arrow-right-square-fill.svg
│   │   │   arrow-right-square.svg
│   │   │   arrow-right.svg
│   │   │   arrow-through-heart-fill.svg
│   │   │   arrow-through-heart.svg
│   │   │   arrow-up-circle-fill.svg
│   │   │   arrow-up-circle.svg
│   │   │   arrow-up-left-circle-fill.svg
│   │   │   arrow-up-left-circle.svg
│   │   │   arrow-up-left-square-fill.svg
│   │   │   arrow-up-left-square.svg
│   │   │   arrow-up-left.svg
│   │   │   arrow-up-right-circle-fill.svg
│   │   │   arrow-up-right-circle.svg
│   │   │   arrow-up-right-square-fill.svg
│   │   │   arrow-up-right-square.svg
│   │   │   arrow-up-right.svg
│   │   │   arrow-up-short.svg
│   │   │   arrow-up-square-fill.svg
│   │   │   arrow-up-square.svg
│   │   │   arrow-up.svg
│   │   │   arrows-angle-contract.svg
│   │   │   arrows-angle-expand.svg
│   │   │   arrows-collapse-vertical.svg
│   │   │   arrows-collapse.svg
│   │   │   arrows-expand-vertical.svg
│   │   │   arrows-expand.svg
│   │   │   arrows-fullscreen.svg
│   │   │   arrows-move.svg
│   │   │   arrows-vertical.svg
│   │   │   arrows.svg
│   │   │   aspect-ratio-fill.svg
│   │   │   aspect-ratio.svg
│   │   │   asterisk.svg
│   │   │   at.svg
│   │   │   award-fill.svg
│   │   │   award.svg
│   │   │   back.svg
│   │   │   backpack-fill.svg
│   │   │   backpack.svg
│   │   │   backpack2-fill.svg
│   │   │   backpack2.svg
│   │   │   backpack3-fill.svg
│   │   │   backpack3.svg
│   │   │   backpack4-fill.svg
│   │   │   backpack4.svg
│   │   │   backspace-fill.svg
│   │   │   backspace-reverse-fill.svg
│   │   │   backspace-reverse.svg
│   │   │   backspace.svg
│   │   │   badge-3d-fill.svg
│   │   │   badge-3d.svg
│   │   │   badge-4k-fill.svg
│   │   │   badge-4k.svg
│   │   │   badge-8k-fill.svg
│   │   │   badge-8k.svg
│   │   │   badge-ad-fill.svg
│   │   │   badge-ad.svg
│   │   │   badge-ar-fill.svg
│   │   │   badge-ar.svg
│   │   │   badge-cc-fill.svg
│   │   │   badge-cc.svg
│   │   │   badge-hd-fill.svg
│   │   │   badge-hd.svg
│   │   │   badge-sd-fill.svg
│   │   │   badge-sd.svg
│   │   │   badge-tm-fill.svg
│   │   │   badge-tm.svg
│   │   │   badge-vo-fill.svg
│   │   │   badge-vo.svg
│   │   │   badge-vr-fill.svg
│   │   │   badge-vr.svg
│   │   │   badge-wc-fill.svg
│   │   │   badge-wc.svg
│   │   │   bag-check-fill.svg
│   │   │   bag-check.svg
│   │   │   bag-dash-fill.svg
│   │   │   bag-dash.svg
│   │   │   bag-fill.svg
│   │   │   bag-heart-fill.svg
│   │   │   bag-heart.svg
│   │   │   bag-plus-fill.svg
│   │   │   bag-plus.svg
│   │   │   bag-x-fill.svg
│   │   │   bag-x.svg
│   │   │   bag.svg
│   │   │   balloon-fill.svg
│   │   │   balloon-heart-fill.svg
│   │   │   balloon-heart.svg
│   │   │   balloon.svg
│   │   │   ban-fill.svg
│   │   │   ban.svg
│   │   │   bandaid-fill.svg
│   │   │   bandaid.svg
│   │   │   bank.svg
│   │   │   bank2.svg
│   │   │   bar-chart-fill.svg
│   │   │   bar-chart-line-fill.svg
│   │   │   bar-chart-line.svg
│   │   │   bar-chart-steps.svg
│   │   │   bar-chart.svg
│   │   │   basket-fill.svg
│   │   │   basket.svg
│   │   │   basket2-fill.svg
│   │   │   basket2.svg
│   │   │   basket3-fill.svg
│   │   │   basket3.svg
│   │   │   battery-charging.svg
│   │   │   battery-full.svg
│   │   │   battery-half.svg
│   │   │   battery-low.svg
│   │   │   battery.svg
│   │   │   beaker-fill.svg
│   │   │   beaker.svg
│   │   │   behance.svg
│   │   │   bell-fill.svg
│   │   │   bell-slash-fill.svg
│   │   │   bell-slash.svg
│   │   │   bell.svg
│   │   │   bezier.svg
│   │   │   bezier2.svg
│   │   │   bicycle.svg
│   │   │   bing.svg
│   │   │   binoculars-fill.svg
│   │   │   binoculars.svg
│   │   │   blockquote-left.svg
│   │   │   blockquote-right.svg
│   │   │   bluesky.svg
│   │   │   bluetooth.svg
│   │   │   body-text.svg
│   │   │   book-fill.svg
│   │   │   book-half.svg
│   │   │   book.svg
│   │   │   bookmark-check-fill.svg
│   │   │   bookmark-check.svg
│   │   │   bookmark-dash-fill.svg
│   │   │   bookmark-dash.svg
│   │   │   bookmark-fill.svg
│   │   │   bookmark-heart-fill.svg
│   │   │   bookmark-heart.svg
│   │   │   bookmark-plus-fill.svg
│   │   │   bookmark-plus.svg
│   │   │   bookmark-star-fill.svg
│   │   │   bookmark-star.svg
│   │   │   bookmark-x-fill.svg
│   │   │   bookmark-x.svg
│   │   │   bookmark.svg
│   │   │   bookmarks-fill.svg
│   │   │   bookmarks.svg
│   │   │   bookshelf.svg
│   │   │   boombox-fill.svg
│   │   │   boombox.svg
│   │   │   bootstrap-fill.svg
│   │   │   bootstrap-icons.css
│   │   │   bootstrap-icons.json
│   │   │   bootstrap-icons.min.css
│   │   │   bootstrap-icons.scss
│   │   │   bootstrap-icons.svg
│   │   │   bootstrap-reboot.svg
│   │   │   bootstrap.svg
│   │   │   border-all.svg
│   │   │   border-bottom.svg
│   │   │   border-center.svg
│   │   │   border-inner.svg
│   │   │   border-left.svg
│   │   │   border-middle.svg
│   │   │   border-outer.svg
│   │   │   border-right.svg
│   │   │   border-style.svg
│   │   │   border-top.svg
│   │   │   border-width.svg
│   │   │   border.svg
│   │   │   bounding-box-circles.svg
│   │   │   bounding-box.svg
│   │   │   box-arrow-down-left.svg
│   │   │   box-arrow-down-right.svg
│   │   │   box-arrow-down.svg
│   │   │   box-arrow-in-down-left.svg
│   │   │   box-arrow-in-down-right.svg
│   │   │   box-arrow-in-down.svg
│   │   │   box-arrow-in-left.svg
│   │   │   box-arrow-in-right.svg
│   │   │   box-arrow-in-up-left.svg
│   │   │   box-arrow-in-up-right.svg
│   │   │   box-arrow-in-up.svg
│   │   │   box-arrow-left.svg
│   │   │   box-arrow-right.svg
│   │   │   box-arrow-up-left.svg
│   │   │   box-arrow-up-right.svg
│   │   │   box-arrow-up.svg
│   │   │   box-fill.svg
│   │   │   box-seam-fill.svg
│   │   │   box-seam.svg
│   │   │   box.svg
│   │   │   box2-fill.svg
│   │   │   box2-heart-fill.svg
│   │   │   box2-heart.svg
│   │   │   box2.svg
│   │   │   boxes.svg
│   │   │   braces-asterisk.svg
│   │   │   braces.svg
│   │   │   bricks.svg
│   │   │   briefcase-fill.svg
│   │   │   briefcase.svg
│   │   │   brightness-alt-high-fill.svg
│   │   │   brightness-alt-high.svg
│   │   │   brightness-alt-low-fill.svg
│   │   │   brightness-alt-low.svg
│   │   │   brightness-high-fill.svg
│   │   │   brightness-high.svg
│   │   │   brightness-low-fill.svg
│   │   │   brightness-low.svg
│   │   │   brilliance.svg
│   │   │   broadcast-pin.svg
│   │   │   broadcast.svg
│   │   │   browser-chrome.svg
│   │   │   browser-edge.svg
│   │   │   browser-firefox.svg
│   │   │   browser-safari.svg
│   │   │   brush-fill.svg
│   │   │   brush.svg
│   │   │   bucket-fill.svg
│   │   │   bucket.svg
│   │   │   bug-fill.svg
│   │   │   bug.svg
│   │   │   building-add.svg
│   │   │   building-check.svg
│   │   │   building-dash.svg
│   │   │   building-down.svg
│   │   │   building-exclamation.svg
│   │   │   building-fill-add.svg
│   │   │   building-fill-check.svg
│   │   │   building-fill-dash.svg
│   │   │   building-fill-down.svg
│   │   │   building-fill-exclamation.svg
│   │   │   building-fill-gear.svg
│   │   │   building-fill-lock.svg
│   │   │   building-fill-slash.svg
│   │   │   building-fill-up.svg
│   │   │   building-fill-x.svg
│   │   │   building-fill.svg
│   │   │   building-gear.svg
│   │   │   building-lock.svg
│   │   │   building-slash.svg
│   │   │   building-up.svg
│   │   │   building-x.svg
│   │   │   building.svg
│   │   │   buildings-fill.svg
│   │   │   buildings.svg
│   │   │   bullseye.svg
│   │   │   bus-front-fill.svg
│   │   │   bus-front.svg
│   │   │   c-circle-fill.svg
│   │   │   c-circle.svg
│   │   │   c-square-fill.svg
│   │   │   c-square.svg
│   │   │   cake-fill.svg
│   │   │   cake.svg
│   │   │   cake2-fill.svg
│   │   │   cake2.svg
│   │   │   calculator-fill.svg
│   │   │   calculator.svg
│   │   │   calendar-check-fill.svg
│   │   │   calendar-check.svg
│   │   │   calendar-date-fill.svg
│   │   │   calendar-date.svg
│   │   │   calendar-day-fill.svg
│   │   │   calendar-day.svg
│   │   │   calendar-event-fill.svg
│   │   │   calendar-event.svg
│   │   │   calendar-fill.svg
│   │   │   calendar-heart-fill.svg
│   │   │   calendar-heart.svg
│   │   │   calendar-minus-fill.svg
│   │   │   calendar-minus.svg
│   │   │   calendar-month-fill.svg
│   │   │   calendar-month.svg
│   │   │   calendar-plus-fill.svg
│   │   │   calendar-plus.svg
│   │   │   calendar-range-fill.svg
│   │   │   calendar-range.svg
│   │   │   calendar-week-fill.svg
│   │   │   calendar-week.svg
│   │   │   calendar-x-fill.svg
│   │   │   calendar-x.svg
│   │   │   calendar.svg
│   │   │   calendar2-check-fill.svg
│   │   │   calendar2-check.svg
│   │   │   calendar2-date-fill.svg
│   │   │   calendar2-date.svg
│   │   │   calendar2-day-fill.svg
│   │   │   calendar2-day.svg
│   │   │   calendar2-event-fill.svg
│   │   │   calendar2-event.svg
│   │   │   calendar2-fill.svg
│   │   │   calendar2-heart-fill.svg
│   │   │   calendar2-heart.svg
│   │   │   calendar2-minus-fill.svg
│   │   │   calendar2-minus.svg
│   │   │   calendar2-month-fill.svg
│   │   │   calendar2-month.svg
│   │   │   calendar2-plus-fill.svg
│   │   │   calendar2-plus.svg
│   │   │   calendar2-range-fill.svg
│   │   │   calendar2-range.svg
│   │   │   calendar2-week-fill.svg
│   │   │   calendar2-week.svg
│   │   │   calendar2-x-fill.svg
│   │   │   calendar2-x.svg
│   │   │   calendar2.svg
│   │   │   calendar3-event-fill.svg
│   │   │   calendar3-event.svg
│   │   │   calendar3-fill.svg
│   │   │   calendar3-range-fill.svg
│   │   │   calendar3-range.svg
│   │   │   calendar3-week-fill.svg
│   │   │   calendar3-week.svg
│   │   │   calendar3.svg
│   │   │   calendar4-event.svg
│   │   │   calendar4-range.svg
│   │   │   calendar4-week.svg
│   │   │   calendar4.svg
│   │   │   camera-fill.svg
│   │   │   camera-reels-fill.svg
│   │   │   camera-reels.svg
│   │   │   camera-video-fill.svg
│   │   │   camera-video-off-fill.svg
│   │   │   camera-video-off.svg
│   │   │   camera-video.svg
│   │   │   camera.svg
│   │   │   camera2.svg
│   │   │   capslock-fill.svg
│   │   │   capslock.svg
│   │   │   capsule-pill.svg
│   │   │   capsule.svg
│   │   │   car-front-fill.svg
│   │   │   car-front.svg
│   │   │   card-checklist.svg
│   │   │   card-heading.svg
│   │   │   card-image.svg
│   │   │   card-list.svg
│   │   │   card-text.svg
│   │   │   caret-down-fill.svg
│   │   │   caret-down-square-fill.svg
│   │   │   caret-down-square.svg
│   │   │   caret-down.svg
│   │   │   caret-left-fill.svg
│   │   │   caret-left-square-fill.svg
│   │   │   caret-left-square.svg
│   │   │   caret-left.svg
│   │   │   caret-right-fill.svg
│   │   │   caret-right-square-fill.svg
│   │   │   caret-right-square.svg
│   │   │   caret-right.svg
│   │   │   caret-up-fill.svg
│   │   │   caret-up-square-fill.svg
│   │   │   caret-up-square.svg
│   │   │   caret-up.svg
│   │   │   cart-check-fill.svg
│   │   │   cart-check.svg
│   │   │   cart-dash-fill.svg
│   │   │   cart-dash.svg
│   │   │   cart-fill.svg
│   │   │   cart-plus-fill.svg
│   │   │   cart-plus.svg
│   │   │   cart-x-fill.svg
│   │   │   cart-x.svg
│   │   │   cart.svg
│   │   │   cart2.svg
│   │   │   cart3.svg
│   │   │   cart4.svg
│   │   │   cash-coin.svg
│   │   │   cash-stack.svg
│   │   │   cash.svg
│   │   │   cassette-fill.svg
│   │   │   cassette.svg
│   │   │   cast.svg
│   │   │   cc-circle-fill.svg
│   │   │   cc-circle.svg
│   │   │   cc-square-fill.svg
│   │   │   cc-square.svg
│   │   │   chat-dots-fill.svg
│   │   │   chat-dots.svg
│   │   │   chat-fill.svg
│   │   │   chat-heart-fill.svg
│   │   │   chat-heart.svg
│   │   │   chat-left-dots-fill.svg
│   │   │   chat-left-dots.svg
│   │   │   chat-left-fill.svg
│   │   │   chat-left-heart-fill.svg
│   │   │   chat-left-heart.svg
│   │   │   chat-left-quote-fill.svg
│   │   │   chat-left-quote.svg
│   │   │   chat-left-text-fill.svg
│   │   │   chat-left-text.svg
│   │   │   chat-left.svg
│   │   │   chat-quote-fill.svg
│   │   │   chat-quote.svg
│   │   │   chat-right-dots-fill.svg
│   │   │   chat-right-dots.svg
│   │   │   chat-right-fill.svg
│   │   │   chat-right-heart-fill.svg
│   │   │   chat-right-heart.svg
│   │   │   chat-right-quote-fill.svg
│   │   │   chat-right-quote.svg
│   │   │   chat-right-text-fill.svg
│   │   │   chat-right-text.svg
│   │   │   chat-right.svg
│   │   │   chat-square-dots-fill.svg
│   │   │   chat-square-dots.svg
│   │   │   chat-square-fill.svg
│   │   │   chat-square-heart-fill.svg
│   │   │   chat-square-heart.svg
│   │   │   chat-square-quote-fill.svg
│   │   │   chat-square-quote.svg
│   │   │   chat-square-text-fill.svg
│   │   │   chat-square-text.svg
│   │   │   chat-square.svg
│   │   │   chat-text-fill.svg
│   │   │   chat-text.svg
│   │   │   chat.svg
│   │   │   check-all.svg
│   │   │   check-circle-fill.svg
│   │   │   check-circle.svg
│   │   │   check-lg.svg
│   │   │   check-square-fill.svg
│   │   │   check-square.svg
│   │   │   check.svg
│   │   │   check2-all.svg
│   │   │   check2-circle.svg
│   │   │   check2-square.svg
│   │   │   check2.svg
│   │   │   chevron-bar-contract.svg
│   │   │   chevron-bar-down.svg
│   │   │   chevron-bar-expand.svg
│   │   │   chevron-bar-left.svg
│   │   │   chevron-bar-right.svg
│   │   │   chevron-bar-up.svg
│   │   │   chevron-compact-down.svg
│   │   │   chevron-compact-left.svg
│   │   │   chevron-compact-right.svg
│   │   │   chevron-compact-up.svg
│   │   │   chevron-contract.svg
│   │   │   chevron-double-down.svg
│   │   │   chevron-double-left.svg
│   │   │   chevron-double-right.svg
│   │   │   chevron-double-up.svg
│   │   │   chevron-down.svg
│   │   │   chevron-expand.svg
│   │   │   chevron-left.svg
│   │   │   chevron-right.svg
│   │   │   chevron-up.svg
│   │   │   circle-fill.svg
│   │   │   circle-half.svg
│   │   │   circle-square.svg
│   │   │   circle.svg
│   │   │   claude.svg
│   │   │   clipboard-check-fill.svg
│   │   │   clipboard-check.svg
│   │   │   clipboard-data-fill.svg
│   │   │   clipboard-data.svg
│   │   │   clipboard-fill.svg
│   │   │   clipboard-heart-fill.svg
│   │   │   clipboard-heart.svg
│   │   │   clipboard-minus-fill.svg
│   │   │   clipboard-minus.svg
│   │   │   clipboard-plus-fill.svg
│   │   │   clipboard-plus.svg
│   │   │   clipboard-pulse.svg
│   │   │   clipboard-x-fill.svg
│   │   │   clipboard-x.svg
│   │   │   clipboard.svg
│   │   │   clipboard2-check-fill.svg
│   │   │   clipboard2-check.svg
│   │   │   clipboard2-data-fill.svg
│   │   │   clipboard2-data.svg
│   │   │   clipboard2-fill.svg
│   │   │   clipboard2-heart-fill.svg
│   │   │   clipboard2-heart.svg
│   │   │   clipboard2-minus-fill.svg
│   │   │   clipboard2-minus.svg
│   │   │   clipboard2-plus-fill.svg
│   │   │   clipboard2-plus.svg
│   │   │   clipboard2-pulse-fill.svg
│   │   │   clipboard2-pulse.svg
│   │   │   clipboard2-x-fill.svg
│   │   │   clipboard2-x.svg
│   │   │   clipboard2.svg
│   │   │   clock-fill.svg
│   │   │   clock-history.svg
│   │   │   clock.svg
│   │   │   cloud-arrow-down-fill.svg
│   │   │   cloud-arrow-down.svg
│   │   │   cloud-arrow-up-fill.svg
│   │   │   cloud-arrow-up.svg
│   │   │   cloud-check-fill.svg
│   │   │   cloud-check.svg
│   │   │   cloud-download-fill.svg
│   │   │   cloud-download.svg
│   │   │   cloud-drizzle-fill.svg
│   │   │   cloud-drizzle.svg
│   │   │   cloud-fill.svg
│   │   │   cloud-fog-fill.svg
│   │   │   cloud-fog.svg
│   │   │   cloud-fog2-fill.svg
│   │   │   cloud-fog2.svg
│   │   │   cloud-hail-fill.svg
│   │   │   cloud-hail.svg
│   │   │   cloud-haze-fill.svg
│   │   │   cloud-haze.svg
│   │   │   cloud-haze2-fill.svg
│   │   │   cloud-haze2.svg
│   │   │   cloud-lightning-fill.svg
│   │   │   cloud-lightning-rain-fill.svg
│   │   │   cloud-lightning-rain.svg
│   │   │   cloud-lightning.svg
│   │   │   cloud-minus-fill.svg
│   │   │   cloud-minus.svg
│   │   │   cloud-moon-fill.svg
│   │   │   cloud-moon.svg
│   │   │   cloud-plus-fill.svg
│   │   │   cloud-plus.svg
│   │   │   cloud-rain-fill.svg
│   │   │   cloud-rain-heavy-fill.svg
│   │   │   cloud-rain-heavy.svg
│   │   │   cloud-rain.svg
│   │   │   cloud-slash-fill.svg
│   │   │   cloud-slash.svg
│   │   │   cloud-sleet-fill.svg
│   │   │   cloud-sleet.svg
│   │   │   cloud-snow-fill.svg
│   │   │   cloud-snow.svg
│   │   │   cloud-sun-fill.svg
│   │   │   cloud-sun.svg
│   │   │   cloud-upload-fill.svg
│   │   │   cloud-upload.svg
│   │   │   cloud.svg
│   │   │   clouds-fill.svg
│   │   │   clouds.svg
│   │   │   cloudy-fill.svg
│   │   │   cloudy.svg
│   │   │   code-slash.svg
│   │   │   code-square.svg
│   │   │   code.svg
│   │   │   coin.svg
│   │   │   collection-fill.svg
│   │   │   collection-play-fill.svg
│   │   │   collection-play.svg
│   │   │   collection.svg
│   │   │   columns-gap.svg
│   │   │   columns.svg
│   │   │   command.svg
│   │   │   compass-fill.svg
│   │   │   compass.svg
│   │   │   cone-striped.svg
│   │   │   cone.svg
│   │   │   controller.svg
│   │   │   cookie.svg
│   │   │   copy.svg
│   │   │   cpu-fill.svg
│   │   │   cpu.svg
│   │   │   credit-card-2-back-fill.svg
│   │   │   credit-card-2-back.svg
│   │   │   credit-card-2-front-fill.svg
│   │   │   credit-card-2-front.svg
│   │   │   credit-card-fill.svg
│   │   │   credit-card.svg
│   │   │   crop.svg
│   │   │   crosshair.svg
│   │   │   crosshair2.svg
│   │   │   css.svg
│   │   │   cup-fill.svg
│   │   │   cup-hot-fill.svg
│   │   │   cup-hot.svg
│   │   │   cup-straw.svg
│   │   │   cup.svg
│   │   │   currency-bitcoin.svg
│   │   │   currency-dollar.svg
│   │   │   currency-euro.svg
│   │   │   currency-exchange.svg
│   │   │   currency-pound.svg
│   │   │   currency-rupee.svg
│   │   │   currency-yen.svg
│   │   │   cursor-fill.svg
│   │   │   cursor-text.svg
│   │   │   cursor.svg
│   │   │   dash-circle-dotted.svg
│   │   │   dash-circle-fill.svg
│   │   │   dash-circle.svg
│   │   │   dash-lg.svg
│   │   │   dash-square-dotted.svg
│   │   │   dash-square-fill.svg
│   │   │   dash-square.svg
│   │   │   dash.svg
│   │   │   database-add.svg
│   │   │   database-check.svg
│   │   │   database-dash.svg
│   │   │   database-down.svg
│   │   │   database-exclamation.svg
│   │   │   database-fill-add.svg
│   │   │   database-fill-check.svg
│   │   │   database-fill-dash.svg
│   │   │   database-fill-down.svg
│   │   │   database-fill-exclamation.svg
│   │   │   database-fill-gear.svg
│   │   │   database-fill-lock.svg
│   │   │   database-fill-slash.svg
│   │   │   database-fill-up.svg
│   │   │   database-fill-x.svg
│   │   │   database-fill.svg
│   │   │   database-gear.svg
│   │   │   database-lock.svg
│   │   │   database-slash.svg
│   │   │   database-up.svg
│   │   │   database-x.svg
│   │   │   database.svg
│   │   │   device-hdd-fill.svg
│   │   │   device-hdd.svg
│   │   │   device-ssd-fill.svg
│   │   │   device-ssd.svg
│   │   │   diagram-2-fill.svg
│   │   │   diagram-2.svg
│   │   │   diagram-3-fill.svg
│   │   │   diagram-3.svg
│   │   │   diamond-fill.svg
│   │   │   diamond-half.svg
│   │   │   diamond.svg
│   │   │   dice-1-fill.svg
│   │   │   dice-1.svg
│   │   │   dice-2-fill.svg
│   │   │   dice-2.svg
│   │   │   dice-3-fill.svg
│   │   │   dice-3.svg
│   │   │   dice-4-fill.svg
│   │   │   dice-4.svg
│   │   │   dice-5-fill.svg
│   │   │   dice-5.svg
│   │   │   dice-6-fill.svg
│   │   │   dice-6.svg
│   │   │   disc-fill.svg
│   │   │   disc.svg
│   │   │   discord.svg
│   │   │   display-fill.svg
│   │   │   display.svg
│   │   │   displayport-fill.svg
│   │   │   displayport.svg
│   │   │   distribute-horizontal.svg
│   │   │   distribute-vertical.svg
│   │   │   door-closed-fill.svg
│   │   │   door-closed.svg
│   │   │   door-open-fill.svg
│   │   │   door-open.svg
│   │   │   dot.svg
│   │   │   download.svg
│   │   │   dpad-fill.svg
│   │   │   dpad.svg
│   │   │   dribbble.svg
│   │   │   dropbox.svg
│   │   │   droplet-fill.svg
│   │   │   droplet-half.svg
│   │   │   droplet.svg
│   │   │   duffle-fill.svg
│   │   │   duffle.svg
│   │   │   ear-fill.svg
│   │   │   ear.svg
│   │   │   earbuds.svg
│   │   │   easel-fill.svg
│   │   │   easel.svg
│   │   │   easel2-fill.svg
│   │   │   easel2.svg
│   │   │   easel3-fill.svg
│   │   │   easel3.svg
│   │   │   egg-fill.svg
│   │   │   egg-fried.svg
│   │   │   egg.svg
│   │   │   eject-fill.svg
│   │   │   eject.svg
│   │   │   emoji-angry-fill.svg
│   │   │   emoji-angry.svg
│   │   │   emoji-astonished-fill.svg
│   │   │   emoji-astonished.svg
│   │   │   emoji-dizzy-fill.svg
│   │   │   emoji-dizzy.svg
│   │   │   emoji-expressionless-fill.svg
│   │   │   emoji-expressionless.svg
│   │   │   emoji-frown-fill.svg
│   │   │   emoji-frown.svg
│   │   │   emoji-grimace-fill.svg
│   │   │   emoji-grimace.svg
│   │   │   emoji-grin-fill.svg
│   │   │   emoji-grin.svg
│   │   │   emoji-heart-eyes-fill.svg
│   │   │   emoji-heart-eyes.svg
│   │   │   emoji-kiss-fill.svg
│   │   │   emoji-kiss.svg
│   │   │   emoji-laughing-fill.svg
│   │   │   emoji-laughing.svg
│   │   │   emoji-neutral-fill.svg
│   │   │   emoji-neutral.svg
│   │   │   emoji-smile-fill.svg
│   │   │   emoji-smile-upside-down-fill.svg
│   │   │   emoji-smile-upside-down.svg
│   │   │   emoji-smile.svg
│   │   │   emoji-sunglasses-fill.svg
│   │   │   emoji-sunglasses.svg
│   │   │   emoji-surprise-fill.svg
│   │   │   emoji-surprise.svg
│   │   │   emoji-tear-fill.svg
│   │   │   emoji-tear.svg
│   │   │   emoji-wink-fill.svg
│   │   │   emoji-wink.svg
│   │   │   envelope-arrow-down-fill.svg
│   │   │   envelope-arrow-down.svg
│   │   │   envelope-arrow-up-fill.svg
│   │   │   envelope-arrow-up.svg
│   │   │   envelope-at-fill.svg
│   │   │   envelope-at.svg
│   │   │   envelope-check-fill.svg
│   │   │   envelope-check.svg
│   │   │   envelope-dash-fill.svg
│   │   │   envelope-dash.svg
│   │   │   envelope-exclamation-fill.svg
│   │   │   envelope-exclamation.svg
│   │   │   envelope-fill.svg
│   │   │   envelope-heart-fill.svg
│   │   │   envelope-heart.svg
│   │   │   envelope-open-fill.svg
│   │   │   envelope-open-heart-fill.svg
│   │   │   envelope-open-heart.svg
│   │   │   envelope-open.svg
│   │   │   envelope-paper-fill.svg
│   │   │   envelope-paper-heart-fill.svg
│   │   │   envelope-paper-heart.svg
│   │   │   envelope-paper.svg
│   │   │   envelope-plus-fill.svg
│   │   │   envelope-plus.svg
│   │   │   envelope-slash-fill.svg
│   │   │   envelope-slash.svg
│   │   │   envelope-x-fill.svg
│   │   │   envelope-x.svg
│   │   │   envelope.svg
│   │   │   eraser-fill.svg
│   │   │   eraser.svg
│   │   │   escape.svg
│   │   │   ethernet.svg
│   │   │   ev-front-fill.svg
│   │   │   ev-front.svg
│   │   │   ev-station-fill.svg
│   │   │   ev-station.svg
│   │   │   exclamation-circle-fill.svg
│   │   │   exclamation-circle.svg
│   │   │   exclamation-diamond-fill.svg
│   │   │   exclamation-diamond.svg
│   │   │   exclamation-lg.svg
│   │   │   exclamation-octagon-fill.svg
│   │   │   exclamation-octagon.svg
│   │   │   exclamation-square-fill.svg
│   │   │   exclamation-square.svg
│   │   │   exclamation-triangle-fill.svg
│   │   │   exclamation-triangle.svg
│   │   │   exclamation.svg
│   │   │   exclude.svg
│   │   │   explicit-fill.svg
│   │   │   explicit.svg
│   │   │   exposure.svg
│   │   │   eye-fill.svg
│   │   │   eye-slash-fill.svg
│   │   │   eye-slash.svg
│   │   │   eye.svg
│   │   │   eyedropper.svg
│   │   │   eyeglasses.svg
│   │   │   facebook.svg
│   │   │   fan.svg
│   │   │   fast-forward-btn-fill.svg
│   │   │   fast-forward-btn.svg
│   │   │   fast-forward-circle-fill.svg
│   │   │   fast-forward-circle.svg
│   │   │   fast-forward-fill.svg
│   │   │   fast-forward.svg
│   │   │   feather.svg
│   │   │   feather2.svg
│   │   │   file-arrow-down-fill.svg
│   │   │   file-arrow-down.svg
│   │   │   file-arrow-up-fill.svg
│   │   │   file-arrow-up.svg
│   │   │   file-bar-graph-fill.svg
│   │   │   file-bar-graph.svg
│   │   │   file-binary-fill.svg
│   │   │   file-binary.svg
│   │   │   file-break-fill.svg
│   │   │   file-break.svg
│   │   │   file-check-fill.svg
│   │   │   file-check.svg
│   │   │   file-code-fill.svg
│   │   │   file-code.svg
│   │   │   file-diff-fill.svg
│   │   │   file-diff.svg
│   │   │   file-earmark-arrow-down-fill.svg
│   │   │   file-earmark-arrow-down.svg
│   │   │   file-earmark-arrow-up-fill.svg
│   │   │   file-earmark-arrow-up.svg
│   │   │   file-earmark-bar-graph-fill.svg
│   │   │   file-earmark-bar-graph.svg
│   │   │   file-earmark-binary-fill.svg
│   │   │   file-earmark-binary.svg
│   │   │   file-earmark-break-fill.svg
│   │   │   file-earmark-break.svg
│   │   │   file-earmark-check-fill.svg
│   │   │   file-earmark-check.svg
│   │   │   file-earmark-code-fill.svg
│   │   │   file-earmark-code.svg
│   │   │   file-earmark-diff-fill.svg
│   │   │   file-earmark-diff.svg
│   │   │   file-earmark-easel-fill.svg
│   │   │   file-earmark-easel.svg
│   │   │   file-earmark-excel-fill.svg
│   │   │   file-earmark-excel.svg
│   │   │   file-earmark-fill.svg
│   │   │   file-earmark-font-fill.svg
│   │   │   file-earmark-font.svg
│   │   │   file-earmark-image-fill.svg
│   │   │   file-earmark-image.svg
│   │   │   file-earmark-lock-fill.svg
│   │   │   file-earmark-lock.svg
│   │   │   file-earmark-lock2-fill.svg
│   │   │   file-earmark-lock2.svg
│   │   │   file-earmark-medical-fill.svg
│   │   │   file-earmark-medical.svg
│   │   │   file-earmark-minus-fill.svg
│   │   │   file-earmark-minus.svg
│   │   │   file-earmark-music-fill.svg
│   │   │   file-earmark-music.svg
│   │   │   file-earmark-pdf-fill.svg
│   │   │   file-earmark-pdf.svg
│   │   │   file-earmark-person-fill.svg
│   │   │   file-earmark-person.svg
│   │   │   file-earmark-play-fill.svg
│   │   │   file-earmark-play.svg
│   │   │   file-earmark-plus-fill.svg
│   │   │   file-earmark-plus.svg
│   │   │   file-earmark-post-fill.svg
│   │   │   file-earmark-post.svg
│   │   │   file-earmark-ppt-fill.svg
│   │   │   file-earmark-ppt.svg
│   │   │   file-earmark-richtext-fill.svg
│   │   │   file-earmark-richtext.svg
│   │   │   file-earmark-ruled-fill.svg
│   │   │   file-earmark-ruled.svg
│   │   │   file-earmark-slides-fill.svg
│   │   │   file-earmark-slides.svg
│   │   │   file-earmark-spreadsheet-fill.svg
│   │   │   file-earmark-spreadsheet.svg
│   │   │   file-earmark-text-fill.svg
│   │   │   file-earmark-text.svg
│   │   │   file-earmark-word-fill.svg
│   │   │   file-earmark-word.svg
│   │   │   file-earmark-x-fill.svg
│   │   │   file-earmark-x.svg
│   │   │   file-earmark-zip-fill.svg
│   │   │   file-earmark-zip.svg
│   │   │   file-earmark.svg
│   │   │   file-easel-fill.svg
│   │   │   file-easel.svg
│   │   │   file-excel-fill.svg
│   │   │   file-excel.svg
│   │   │   file-fill.svg
│   │   │   file-font-fill.svg
│   │   │   file-font.svg
│   │   │   file-image-fill.svg
│   │   │   file-image.svg
│   │   │   file-lock-fill.svg
│   │   │   file-lock.svg
│   │   │   file-lock2-fill.svg
│   │   │   file-lock2.svg
│   │   │   file-medical-fill.svg
│   │   │   file-medical.svg
│   │   │   file-minus-fill.svg
│   │   │   file-minus.svg
│   │   │   file-music-fill.svg
│   │   │   file-music.svg
│   │   │   file-pdf-fill.svg
│   │   │   file-pdf.svg
│   │   │   file-person-fill.svg
│   │   │   file-person.svg
│   │   │   file-play-fill.svg
│   │   │   file-play.svg
│   │   │   file-plus-fill.svg
│   │   │   file-plus.svg
│   │   │   file-post-fill.svg
│   │   │   file-post.svg
│   │   │   file-ppt-fill.svg
│   │   │   file-ppt.svg
│   │   │   file-richtext-fill.svg
│   │   │   file-richtext.svg
│   │   │   file-ruled-fill.svg
│   │   │   file-ruled.svg
│   │   │   file-slides-fill.svg
│   │   │   file-slides.svg
│   │   │   file-spreadsheet-fill.svg
│   │   │   file-spreadsheet.svg
│   │   │   file-text-fill.svg
│   │   │   file-text.svg
│   │   │   file-word-fill.svg
│   │   │   file-word.svg
│   │   │   file-x-fill.svg
│   │   │   file-x.svg
│   │   │   file-zip-fill.svg
│   │   │   file-zip.svg
│   │   │   file.svg
│   │   │   files-alt.svg
│   │   │   files.svg
│   │   │   filetype-aac.svg
│   │   │   filetype-ai.svg
│   │   │   filetype-bmp.svg
│   │   │   filetype-cs.svg
│   │   │   filetype-css.svg
│   │   │   filetype-csv.svg
│   │   │   filetype-doc.svg
│   │   │   filetype-docx.svg
│   │   │   filetype-exe.svg
│   │   │   filetype-gif.svg
│   │   │   filetype-heic.svg
│   │   │   filetype-html.svg
│   │   │   filetype-java.svg
│   │   │   filetype-jpg.svg
│   │   │   filetype-js.svg
│   │   │   filetype-json.svg
│   │   │   filetype-jsx.svg
│   │   │   filetype-key.svg
│   │   │   filetype-m4p.svg
│   │   │   filetype-md.svg
│   │   │   filetype-mdx.svg
│   │   │   filetype-mov.svg
│   │   │   filetype-mp3.svg
│   │   │   filetype-mp4.svg
│   │   │   filetype-otf.svg
│   │   │   filetype-pdf.svg
│   │   │   filetype-php.svg
│   │   │   filetype-png.svg
│   │   │   filetype-ppt.svg
│   │   │   filetype-pptx.svg
│   │   │   filetype-psd.svg
│   │   │   filetype-py.svg
│   │   │   filetype-raw.svg
│   │   │   filetype-rb.svg
│   │   │   filetype-sass.svg
│   │   │   filetype-scss.svg
│   │   │   filetype-sh.svg
│   │   │   filetype-sql.svg
│   │   │   filetype-svg.svg
│   │   │   filetype-tiff.svg
│   │   │   filetype-tsx.svg
│   │   │   filetype-ttf.svg
│   │   │   filetype-txt.svg
│   │   │   filetype-wav.svg
│   │   │   filetype-woff.svg
│   │   │   filetype-xls.svg
│   │   │   filetype-xlsx.svg
│   │   │   filetype-xml.svg
│   │   │   filetype-yml.svg
│   │   │   film.svg
│   │   │   filter-circle-fill.svg
│   │   │   filter-circle.svg
│   │   │   filter-left.svg
│   │   │   filter-right.svg
│   │   │   filter-square-fill.svg
│   │   │   filter-square.svg
│   │   │   filter.svg
│   │   │   fingerprint.svg
│   │   │   fire.svg
│   │   │   flag-fill.svg
│   │   │   flag.svg
│   │   │   flask-fill.svg
│   │   │   flask-florence-fill.svg
│   │   │   flask-florence.svg
│   │   │   flask.svg
│   │   │   floppy-fill.svg
│   │   │   floppy.svg
│   │   │   floppy2-fill.svg
│   │   │   floppy2.svg
│   │   │   flower1.svg
│   │   │   flower2.svg
│   │   │   flower3.svg
│   │   │   folder-check.svg
│   │   │   folder-fill.svg
│   │   │   folder-minus.svg
│   │   │   folder-plus.svg
│   │   │   folder-symlink-fill.svg
│   │   │   folder-symlink.svg
│   │   │   folder-x.svg
│   │   │   folder.svg
│   │   │   folder2-open.svg
│   │   │   folder2.svg
│   │   │   fonts.svg
│   │   │   fork-knife.svg
│   │   │   forward-fill.svg
│   │   │   forward.svg
│   │   │   front.svg
│   │   │   fuel-pump-diesel-fill.svg
│   │   │   fuel-pump-diesel.svg
│   │   │   fuel-pump-fill.svg
│   │   │   fuel-pump.svg
│   │   │   fullscreen-exit.svg
│   │   │   fullscreen.svg
│   │   │   funnel-fill.svg
│   │   │   funnel.svg
│   │   │   gear-fill.svg
│   │   │   gear-wide-connected.svg
│   │   │   gear-wide.svg
│   │   │   gear.svg
│   │   │   gem.svg
│   │   │   gender-ambiguous.svg
│   │   │   gender-female.svg
│   │   │   gender-male.svg
│   │   │   gender-neuter.svg
│   │   │   gender-trans.svg
│   │   │   geo-alt-fill.svg
│   │   │   geo-alt.svg
│   │   │   geo-fill.svg
│   │   │   geo.svg
│   │   │   gift-fill.svg
│   │   │   gift.svg
│   │   │   git.svg
│   │   │   github.svg
│   │   │   gitlab.svg
│   │   │   globe-americas-fill.svg
│   │   │   globe-americas.svg
│   │   │   globe-asia-australia-fill.svg
│   │   │   globe-asia-australia.svg
│   │   │   globe-central-south-asia-fill.svg
│   │   │   globe-central-south-asia.svg
│   │   │   globe-europe-africa-fill.svg
│   │   │   globe-europe-africa.svg
│   │   │   globe.svg
│   │   │   globe2.svg
│   │   │   google-play.svg
│   │   │   google.svg
│   │   │   gpu-card.svg
│   │   │   graph-down-arrow.svg
│   │   │   graph-down.svg
│   │   │   graph-up-arrow.svg
│   │   │   graph-up.svg
│   │   │   grid-1x2-fill.svg
│   │   │   grid-1x2.svg
│   │   │   grid-3x2-gap-fill.svg
│   │   │   grid-3x2-gap.svg
│   │   │   grid-3x2.svg
│   │   │   grid-3x3-gap-fill.svg
│   │   │   grid-3x3-gap.svg
│   │   │   grid-3x3.svg
│   │   │   grid-fill.svg
│   │   │   grid.svg
│   │   │   grip-horizontal.svg
│   │   │   grip-vertical.svg
│   │   │   h-circle-fill.svg
│   │   │   h-circle.svg
│   │   │   h-square-fill.svg
│   │   │   h-square.svg
│   │   │   hammer.svg
│   │   │   hand-index-fill.svg
│   │   │   hand-index-thumb-fill.svg
│   │   │   hand-index-thumb.svg
│   │   │   hand-index.svg
│   │   │   hand-thumbs-down-fill.svg
│   │   │   hand-thumbs-down.svg
│   │   │   hand-thumbs-up-fill.svg
│   │   │   hand-thumbs-up.svg
│   │   │   handbag-fill.svg
│   │   │   handbag.svg
│   │   │   hash.svg
│   │   │   hdd-fill.svg
│   │   │   hdd-network-fill.svg
│   │   │   hdd-network.svg
│   │   │   hdd-rack-fill.svg
│   │   │   hdd-rack.svg
│   │   │   hdd-stack-fill.svg
│   │   │   hdd-stack.svg
│   │   │   hdd.svg
│   │   │   hdmi-fill.svg
│   │   │   hdmi.svg
│   │   │   headphones.svg
│   │   │   headset-vr.svg
│   │   │   headset.svg
│   │   │   heart-arrow.svg
│   │   │   heart-fill.svg
│   │   │   heart-half.svg
│   │   │   heart-pulse-fill.svg
│   │   │   heart-pulse.svg
│   │   │   heart.svg
│   │   │   heartbreak-fill.svg
│   │   │   heartbreak.svg
│   │   │   hearts.svg
│   │   │   heptagon-fill.svg
│   │   │   heptagon-half.svg
│   │   │   heptagon.svg
│   │   │   hexagon-fill.svg
│   │   │   hexagon-half.svg
│   │   │   hexagon.svg
│   │   │   highlighter.svg
│   │   │   highlights.svg
│   │   │   hospital-fill.svg
│   │   │   hospital.svg
│   │   │   hourglass-bottom.svg
│   │   │   hourglass-split.svg
│   │   │   hourglass-top.svg
│   │   │   hourglass.svg
│   │   │   house-add-fill.svg
│   │   │   house-add.svg
│   │   │   house-check-fill.svg
│   │   │   house-check.svg
│   │   │   house-dash-fill.svg
│   │   │   house-dash.svg
│   │   │   house-door-fill.svg
│   │   │   house-door.svg
│   │   │   house-down-fill.svg
│   │   │   house-down.svg
│   │   │   house-exclamation-fill.svg
│   │   │   house-exclamation.svg
│   │   │   house-fill.svg
│   │   │   house-gear-fill.svg
│   │   │   house-gear.svg
│   │   │   house-heart-fill.svg
│   │   │   house-heart.svg
│   │   │   house-lock-fill.svg
│   │   │   house-lock.svg
│   │   │   house-slash-fill.svg
│   │   │   house-slash.svg
│   │   │   house-up-fill.svg
│   │   │   house-up.svg
│   │   │   house-x-fill.svg
│   │   │   house-x.svg
│   │   │   house.svg
│   │   │   houses-fill.svg
│   │   │   houses.svg
│   │   │   hr.svg
│   │   │   hurricane.svg
│   │   │   hypnotize.svg
│   │   │   image-alt.svg
│   │   │   image-fill.svg
│   │   │   image.svg
│   │   │   images.svg
│   │   │   inbox-fill.svg
│   │   │   inbox.svg
│   │   │   inboxes-fill.svg
│   │   │   inboxes.svg
│   │   │   incognito.svg
│   │   │   indent.svg
│   │   │   infinity.svg
│   │   │   info-circle-fill.svg
│   │   │   info-circle.svg
│   │   │   info-lg.svg
│   │   │   info-square-fill.svg
│   │   │   info-square.svg
│   │   │   info.svg
│   │   │   input-cursor-text.svg
│   │   │   input-cursor.svg
│   │   │   instagram.svg
│   │   │   intersect.svg
│   │   │   javascript.svg
│   │   │   journal-album.svg
│   │   │   journal-arrow-down.svg
│   │   │   journal-arrow-up.svg
│   │   │   journal-bookmark-fill.svg
│   │   │   journal-bookmark.svg
│   │   │   journal-check.svg
│   │   │   journal-code.svg
│   │   │   journal-medical.svg
│   │   │   journal-minus.svg
│   │   │   journal-plus.svg
│   │   │   journal-richtext.svg
│   │   │   journal-text.svg
│   │   │   journal-x.svg
│   │   │   journal.svg
│   │   │   journals.svg
│   │   │   joystick.svg
│   │   │   justify-left.svg
│   │   │   justify-right.svg
│   │   │   justify.svg
│   │   │   kanban-fill.svg
│   │   │   kanban.svg
│   │   │   key-fill.svg
│   │   │   key.svg
│   │   │   keyboard-fill.svg
│   │   │   keyboard.svg
│   │   │   ladder.svg
│   │   │   lamp-fill.svg
│   │   │   lamp.svg
│   │   │   laptop-fill.svg
│   │   │   laptop.svg
│   │   │   layer-backward.svg
│   │   │   layer-forward.svg
│   │   │   layers-fill.svg
│   │   │   layers-half.svg
│   │   │   layers.svg
│   │   │   layout-sidebar-inset-reverse.svg
│   │   │   layout-sidebar-inset.svg
│   │   │   layout-sidebar-reverse.svg
│   │   │   layout-sidebar.svg
│   │   │   layout-split.svg
│   │   │   layout-text-sidebar-reverse.svg
│   │   │   layout-text-sidebar.svg
│   │   │   layout-text-window-reverse.svg
│   │   │   layout-text-window.svg
│   │   │   layout-three-columns.svg
│   │   │   layout-wtf.svg
│   │   │   leaf-fill.svg
│   │   │   leaf.svg
│   │   │   life-preserver.svg
│   │   │   lightbulb-fill.svg
│   │   │   lightbulb-off-fill.svg
│   │   │   lightbulb-off.svg
│   │   │   lightbulb.svg
│   │   │   lightning-charge-fill.svg
│   │   │   lightning-charge.svg
│   │   │   lightning-fill.svg
│   │   │   lightning.svg
│   │   │   line.svg
│   │   │   link-45deg.svg
│   │   │   link.svg
│   │   │   linkedin.svg
│   │   │   list-check.svg
│   │   │   list-columns-reverse.svg
│   │   │   list-columns.svg
│   │   │   list-nested.svg
│   │   │   list-ol.svg
│   │   │   list-stars.svg
│   │   │   list-task.svg
│   │   │   list-ul.svg
│   │   │   list.svg
│   │   │   lock-fill.svg
│   │   │   lock.svg
│   │   │   luggage-fill.svg
│   │   │   luggage.svg
│   │   │   lungs-fill.svg
│   │   │   lungs.svg
│   │   │   magic.svg
│   │   │   magnet-fill.svg
│   │   │   magnet.svg
│   │   │   mailbox-flag.svg
│   │   │   mailbox.svg
│   │   │   mailbox2-flag.svg
│   │   │   mailbox2.svg
│   │   │   map-fill.svg
│   │   │   map.svg
│   │   │   markdown-fill.svg
│   │   │   markdown.svg
│   │   │   marker-tip.svg
│   │   │   mask.svg
│   │   │   mastodon.svg
│   │   │   measuring-cup-fill.svg
│   │   │   measuring-cup.svg
│   │   │   medium.svg
│   │   │   megaphone-fill.svg
│   │   │   megaphone.svg
│   │   │   memory.svg
│   │   │   menu-app-fill.svg
│   │   │   menu-app.svg
│   │   │   menu-button-fill.svg
│   │   │   menu-button-wide-fill.svg
│   │   │   menu-button-wide.svg
│   │   │   menu-button.svg
│   │   │   menu-down.svg
│   │   │   menu-up.svg
│   │   │   messenger.svg
│   │   │   meta.svg
│   │   │   mic-fill.svg
│   │   │   mic-mute-fill.svg
│   │   │   mic-mute.svg
│   │   │   mic.svg
│   │   │   microsoft-teams.svg
│   │   │   microsoft.svg
│   │   │   minecart-loaded.svg
│   │   │   minecart.svg
│   │   │   modem-fill.svg
│   │   │   modem.svg
│   │   │   moisture.svg
│   │   │   moon-fill.svg
│   │   │   moon-stars-fill.svg
│   │   │   moon-stars.svg
│   │   │   moon.svg
│   │   │   mortarboard-fill.svg
│   │   │   mortarboard.svg
│   │   │   motherboard-fill.svg
│   │   │   motherboard.svg
│   │   │   mouse-fill.svg
│   │   │   mouse.svg
│   │   │   mouse2-fill.svg
│   │   │   mouse2.svg
│   │   │   mouse3-fill.svg
│   │   │   mouse3.svg
│   │   │   music-note-beamed.svg
│   │   │   music-note-list.svg
│   │   │   music-note.svg
│   │   │   music-player-fill.svg
│   │   │   music-player.svg
│   │   │   newspaper.svg
│   │   │   nintendo-switch.svg
│   │   │   node-minus-fill.svg
│   │   │   node-minus.svg
│   │   │   node-plus-fill.svg
│   │   │   node-plus.svg
│   │   │   noise-reduction.svg
│   │   │   nut-fill.svg
│   │   │   nut.svg
│   │   │   nvidia.svg
│   │   │   nvme-fill.svg
│   │   │   nvme.svg
│   │   │   octagon-fill.svg
│   │   │   octagon-half.svg
│   │   │   octagon.svg
│   │   │   openai.svg
│   │   │   opencollective.svg
│   │   │   optical-audio-fill.svg
│   │   │   optical-audio.svg
│   │   │   option.svg
│   │   │   outlet.svg
│   │   │   p-circle-fill.svg
│   │   │   p-circle.svg
│   │   │   p-square-fill.svg
│   │   │   p-square.svg
│   │   │   paint-bucket.svg
│   │   │   palette-fill.svg
│   │   │   palette.svg
│   │   │   palette2.svg
│   │   │   paperclip.svg
│   │   │   paragraph.svg
│   │   │   pass-fill.svg
│   │   │   pass.svg
│   │   │   passport-fill.svg
│   │   │   passport.svg
│   │   │   patch-check-fill.svg
│   │   │   patch-check.svg
│   │   │   patch-exclamation-fill.svg
│   │   │   patch-exclamation.svg
│   │   │   patch-minus-fill.svg
│   │   │   patch-minus.svg
│   │   │   patch-plus-fill.svg
│   │   │   patch-plus.svg
│   │   │   patch-question-fill.svg
│   │   │   patch-question.svg
│   │   │   pause-btn-fill.svg
│   │   │   pause-btn.svg
│   │   │   pause-circle-fill.svg
│   │   │   pause-circle.svg
│   │   │   pause-fill.svg
│   │   │   pause.svg
│   │   │   paypal.svg
│   │   │   pc-display-horizontal.svg
│   │   │   pc-display.svg
│   │   │   pc-horizontal.svg
│   │   │   pc.svg
│   │   │   pci-card-network.svg
│   │   │   pci-card-sound.svg
│   │   │   pci-card.svg
│   │   │   peace-fill.svg
│   │   │   peace.svg
│   │   │   pen-fill.svg
│   │   │   pen.svg
│   │   │   pencil-fill.svg
│   │   │   pencil-square.svg
│   │   │   pencil.svg
│   │   │   pentagon-fill.svg
│   │   │   pentagon-half.svg
│   │   │   pentagon.svg
│   │   │   people-fill.svg
│   │   │   people.svg
│   │   │   percent.svg
│   │   │   perplexity.svg
│   │   │   person-add.svg
│   │   │   person-arms-up.svg
│   │   │   person-badge-fill.svg
│   │   │   person-badge.svg
│   │   │   person-bounding-box.svg
│   │   │   person-check-fill.svg
│   │   │   person-check.svg
│   │   │   person-circle.svg
│   │   │   person-dash-fill.svg
│   │   │   person-dash.svg
│   │   │   person-down.svg
│   │   │   person-exclamation.svg
│   │   │   person-fill-add.svg
│   │   │   person-fill-check.svg
│   │   │   person-fill-dash.svg
│   │   │   person-fill-down.svg
│   │   │   person-fill-exclamation.svg
│   │   │   person-fill-gear.svg
│   │   │   person-fill-lock.svg
│   │   │   person-fill-slash.svg
│   │   │   person-fill-up.svg
│   │   │   person-fill-x.svg
│   │   │   person-fill.svg
│   │   │   person-gear.svg
│   │   │   person-heart.svg
│   │   │   person-hearts.svg
│   │   │   person-lines-fill.svg
│   │   │   person-lock.svg
│   │   │   person-plus-fill.svg
│   │   │   person-plus.svg
│   │   │   person-raised-hand.svg
│   │   │   person-rolodex.svg
│   │   │   person-slash.svg
│   │   │   person-square.svg
│   │   │   person-standing-dress.svg
│   │   │   person-standing.svg
│   │   │   person-up.svg
│   │   │   person-vcard-fill.svg
│   │   │   person-vcard.svg
│   │   │   person-video.svg
│   │   │   person-video2.svg
│   │   │   person-video3.svg
│   │   │   person-walking.svg
│   │   │   person-wheelchair.svg
│   │   │   person-workspace.svg
│   │   │   person-x-fill.svg
│   │   │   person-x.svg
│   │   │   person.svg
│   │   │   phone-fill.svg
│   │   │   phone-flip.svg
│   │   │   phone-landscape-fill.svg
│   │   │   phone-landscape.svg
│   │   │   phone-vibrate-fill.svg
│   │   │   phone-vibrate.svg
│   │   │   phone.svg
│   │   │   pie-chart-fill.svg
│   │   │   pie-chart.svg
│   │   │   piggy-bank-fill.svg
│   │   │   piggy-bank.svg
│   │   │   pin-angle-fill.svg
│   │   │   pin-angle.svg
│   │   │   pin-fill.svg
│   │   │   pin-map-fill.svg
│   │   │   pin-map.svg
│   │   │   pin.svg
│   │   │   pinterest.svg
│   │   │   pip-fill.svg
│   │   │   pip.svg
│   │   │   play-btn-fill.svg
│   │   │   play-btn.svg
│   │   │   play-circle-fill.svg
│   │   │   play-circle.svg
│   │   │   play-fill.svg
│   │   │   play.svg
│   │   │   playstation.svg
│   │   │   plug-fill.svg
│   │   │   plug.svg
│   │   │   plugin.svg
│   │   │   plus-circle-dotted.svg
│   │   │   plus-circle-fill.svg
│   │   │   plus-circle.svg
│   │   │   plus-lg.svg
│   │   │   plus-slash-minus.svg
│   │   │   plus-square-dotted.svg
│   │   │   plus-square-fill.svg
│   │   │   plus-square.svg
│   │   │   plus.svg
│   │   │   postage-fill.svg
│   │   │   postage-heart-fill.svg
│   │   │   postage-heart.svg
│   │   │   postage.svg
│   │   │   postcard-fill.svg
│   │   │   postcard-heart-fill.svg
│   │   │   postcard-heart.svg
│   │   │   postcard.svg
│   │   │   power.svg
│   │   │   prescription.svg
│   │   │   prescription2.svg
│   │   │   printer-fill.svg
│   │   │   printer.svg
│   │   │   projector-fill.svg
│   │   │   projector.svg
│   │   │   puzzle-fill.svg
│   │   │   puzzle.svg
│   │   │   qr-code-scan.svg
│   │   │   qr-code.svg
│   │   │   question-circle-fill.svg
│   │   │   question-circle.svg
│   │   │   question-diamond-fill.svg
│   │   │   question-diamond.svg
│   │   │   question-lg.svg
│   │   │   question-octagon-fill.svg
│   │   │   question-octagon.svg
│   │   │   question-square-fill.svg
│   │   │   question-square.svg
│   │   │   question.svg
│   │   │   quora.svg
│   │   │   quote.svg
│   │   │   r-circle-fill.svg
│   │   │   r-circle.svg
│   │   │   r-square-fill.svg
│   │   │   r-square.svg
│   │   │   radar.svg
│   │   │   radioactive.svg
│   │   │   rainbow.svg
│   │   │   receipt-cutoff.svg
│   │   │   receipt.svg
│   │   │   reception-0.svg
│   │   │   reception-1.svg
│   │   │   reception-2.svg
│   │   │   reception-3.svg
│   │   │   reception-4.svg
│   │   │   record-btn-fill.svg
│   │   │   record-btn.svg
│   │   │   record-circle-fill.svg
│   │   │   record-circle.svg
│   │   │   record-fill.svg
│   │   │   record.svg
│   │   │   record2-fill.svg
│   │   │   record2.svg
│   │   │   recycle.svg
│   │   │   reddit.svg
│   │   │   regex.svg
│   │   │   repeat-1.svg
│   │   │   repeat.svg
│   │   │   reply-all-fill.svg
│   │   │   reply-all.svg
│   │   │   reply-fill.svg
│   │   │   reply.svg
│   │   │   rewind-btn-fill.svg
│   │   │   rewind-btn.svg
│   │   │   rewind-circle-fill.svg
│   │   │   rewind-circle.svg
│   │   │   rewind-fill.svg
│   │   │   rewind.svg
│   │   │   robot.svg
│   │   │   rocket-fill.svg
│   │   │   rocket-takeoff-fill.svg
│   │   │   rocket-takeoff.svg
│   │   │   rocket.svg
│   │   │   router-fill.svg
│   │   │   router.svg
│   │   │   rss-fill.svg
│   │   │   rss.svg
│   │   │   rulers.svg
│   │   │   safe-fill.svg
│   │   │   safe.svg
│   │   │   safe2-fill.svg
│   │   │   safe2.svg
│   │   │   save-fill.svg
│   │   │   save.svg
│   │   │   save2-fill.svg
│   │   │   save2.svg
│   │   │   scissors.svg
│   │   │   scooter.svg
│   │   │   screwdriver.svg
│   │   │   sd-card-fill.svg
│   │   │   sd-card.svg
│   │   │   search-heart-fill.svg
│   │   │   search-heart.svg
│   │   │   search.svg
│   │   │   segmented-nav.svg
│   │   │   send-arrow-down-fill.svg
│   │   │   send-arrow-down.svg
│   │   │   send-arrow-up-fill.svg
│   │   │   send-arrow-up.svg
│   │   │   send-check-fill.svg
│   │   │   send-check.svg
│   │   │   send-dash-fill.svg
│   │   │   send-dash.svg
│   │   │   send-exclamation-fill.svg
│   │   │   send-exclamation.svg
│   │   │   send-fill.svg
│   │   │   send-plus-fill.svg
│   │   │   send-plus.svg
│   │   │   send-slash-fill.svg
│   │   │   send-slash.svg
│   │   │   send-x-fill.svg
│   │   │   send-x.svg
│   │   │   send.svg
│   │   │   server.svg
│   │   │   shadows.svg
│   │   │   share-fill.svg
│   │   │   share.svg
│   │   │   shield-check.svg
│   │   │   shield-exclamation.svg
│   │   │   shield-fill-check.svg
│   │   │   shield-fill-exclamation.svg
│   │   │   shield-fill-minus.svg
│   │   │   shield-fill-plus.svg
│   │   │   shield-fill-x.svg
│   │   │   shield-fill.svg
│   │   │   shield-lock-fill.svg
│   │   │   shield-lock.svg
│   │   │   shield-minus.svg
│   │   │   shield-plus.svg
│   │   │   shield-shaded.svg
│   │   │   shield-slash-fill.svg
│   │   │   shield-slash.svg
│   │   │   shield-x.svg
│   │   │   shield.svg
│   │   │   shift-fill.svg
│   │   │   shift.svg
│   │   │   shop-window.svg
│   │   │   shop.svg
│   │   │   shuffle.svg
│   │   │   sign-dead-end-fill.svg
│   │   │   sign-dead-end.svg
│   │   │   sign-do-not-enter-fill.svg
│   │   │   sign-do-not-enter.svg
│   │   │   sign-intersection-fill.svg
│   │   │   sign-intersection-side-fill.svg
│   │   │   sign-intersection-side.svg
│   │   │   sign-intersection-t-fill.svg
│   │   │   sign-intersection-t.svg
│   │   │   sign-intersection-y-fill.svg
│   │   │   sign-intersection-y.svg
│   │   │   sign-intersection.svg
│   │   │   sign-merge-left-fill.svg
│   │   │   sign-merge-left.svg
│   │   │   sign-merge-right-fill.svg
│   │   │   sign-merge-right.svg
│   │   │   sign-no-left-turn-fill.svg
│   │   │   sign-no-left-turn.svg
│   │   │   sign-no-parking-fill.svg
│   │   │   sign-no-parking.svg
│   │   │   sign-no-right-turn-fill.svg
│   │   │   sign-no-right-turn.svg
│   │   │   sign-railroad-fill.svg
│   │   │   sign-railroad.svg
│   │   │   sign-stop-fill.svg
│   │   │   sign-stop-lights-fill.svg
│   │   │   sign-stop-lights.svg
│   │   │   sign-stop.svg
│   │   │   sign-turn-left-fill.svg
│   │   │   sign-turn-left.svg
│   │   │   sign-turn-right-fill.svg
│   │   │   sign-turn-right.svg
│   │   │   sign-turn-slight-left-fill.svg
│   │   │   sign-turn-slight-left.svg
│   │   │   sign-turn-slight-right-fill.svg
│   │   │   sign-turn-slight-right.svg
│   │   │   sign-yield-fill.svg
│   │   │   sign-yield.svg
│   │   │   signal.svg
│   │   │   signpost-2-fill.svg
│   │   │   signpost-2.svg
│   │   │   signpost-fill.svg
│   │   │   signpost-split-fill.svg
│   │   │   signpost-split.svg
│   │   │   signpost.svg
│   │   │   sim-fill.svg
│   │   │   sim-slash-fill.svg
│   │   │   sim-slash.svg
│   │   │   sim.svg
│   │   │   sina-weibo.svg
│   │   │   skip-backward-btn-fill.svg
│   │   │   skip-backward-btn.svg
│   │   │   skip-backward-circle-fill.svg
│   │   │   skip-backward-circle.svg
│   │   │   skip-backward-fill.svg
│   │   │   skip-backward.svg
│   │   │   skip-end-btn-fill.svg
│   │   │   skip-end-btn.svg
│   │   │   skip-end-circle-fill.svg
│   │   │   skip-end-circle.svg
│   │   │   skip-end-fill.svg
│   │   │   skip-end.svg
│   │   │   skip-forward-btn-fill.svg
│   │   │   skip-forward-btn.svg
│   │   │   skip-forward-circle-fill.svg
│   │   │   skip-forward-circle.svg
│   │   │   skip-forward-fill.svg
│   │   │   skip-forward.svg
│   │   │   skip-start-btn-fill.svg
│   │   │   skip-start-btn.svg
│   │   │   skip-start-circle-fill.svg
│   │   │   skip-start-circle.svg
│   │   │   skip-start-fill.svg
│   │   │   skip-start.svg
│   │   │   skype.svg
│   │   │   slack.svg
│   │   │   slash-circle-fill.svg
│   │   │   slash-circle.svg
│   │   │   slash-lg.svg
│   │   │   slash-square-fill.svg
│   │   │   slash-square.svg
│   │   │   slash.svg
│   │   │   sliders.svg
│   │   │   sliders2-vertical.svg
│   │   │   sliders2.svg
│   │   │   smartwatch.svg
│   │   │   snapchat.svg
│   │   │   snow.svg
│   │   │   snow2.svg
│   │   │   snow3.svg
│   │   │   sort-alpha-down-alt.svg
│   │   │   sort-alpha-down.svg
│   │   │   sort-alpha-up-alt.svg
│   │   │   sort-alpha-up.svg
│   │   │   sort-down-alt.svg
│   │   │   sort-down.svg
│   │   │   sort-numeric-down-alt.svg
│   │   │   sort-numeric-down.svg
│   │   │   sort-numeric-up-alt.svg
│   │   │   sort-numeric-up.svg
│   │   │   sort-up-alt.svg
│   │   │   sort-up.svg
│   │   │   soundwave.svg
│   │   │   sourceforge.svg
│   │   │   speaker-fill.svg
│   │   │   speaker.svg
│   │   │   speedometer.svg
│   │   │   speedometer2.svg
│   │   │   spellcheck.svg
│   │   │   spotify.svg
│   │   │   square-fill.svg
│   │   │   square-half.svg
│   │   │   square.svg
│   │   │   stack-overflow.svg
│   │   │   stack.svg
│   │   │   star-fill.svg
│   │   │   star-half.svg
│   │   │   star.svg
│   │   │   stars.svg
│   │   │   steam.svg
│   │   │   stickies-fill.svg
│   │   │   stickies.svg
│   │   │   sticky-fill.svg
│   │   │   sticky.svg
│   │   │   stop-btn-fill.svg
│   │   │   stop-btn.svg
│   │   │   stop-circle-fill.svg
│   │   │   stop-circle.svg
│   │   │   stop-fill.svg
│   │   │   stop.svg
│   │   │   stoplights-fill.svg
│   │   │   stoplights.svg
│   │   │   stopwatch-fill.svg
│   │   │   stopwatch.svg
│   │   │   strava.svg
│   │   │   stripe.svg
│   │   │   subscript.svg
│   │   │   substack.svg
│   │   │   subtract.svg
│   │   │   suit-club-fill.svg
│   │   │   suit-club.svg
│   │   │   suit-diamond-fill.svg
│   │   │   suit-diamond.svg
│   │   │   suit-heart-fill.svg
│   │   │   suit-heart.svg
│   │   │   suit-spade-fill.svg
│   │   │   suit-spade.svg
│   │   │   suitcase-fill.svg
│   │   │   suitcase-lg-fill.svg
│   │   │   suitcase-lg.svg
│   │   │   suitcase.svg
│   │   │   suitcase2-fill.svg
│   │   │   suitcase2.svg
│   │   │   sun-fill.svg
│   │   │   sun.svg
│   │   │   sunglasses.svg
│   │   │   sunrise-fill.svg
│   │   │   sunrise.svg
│   │   │   sunset-fill.svg
│   │   │   sunset.svg
│   │   │   superscript.svg
│   │   │   symmetry-horizontal.svg
│   │   │   symmetry-vertical.svg
│   │   │   table.svg
│   │   │   tablet-fill.svg
│   │   │   tablet-landscape-fill.svg
│   │   │   tablet-landscape.svg
│   │   │   tablet.svg
│   │   │   tag-fill.svg
│   │   │   tag.svg
│   │   │   tags-fill.svg
│   │   │   tags.svg
│   │   │   taxi-front-fill.svg
│   │   │   taxi-front.svg
│   │   │   telegram.svg
│   │   │   telephone-fill.svg
│   │   │   telephone-forward-fill.svg
│   │   │   telephone-forward.svg
│   │   │   telephone-inbound-fill.svg
│   │   │   telephone-inbound.svg
│   │   │   telephone-minus-fill.svg
│   │   │   telephone-minus.svg
│   │   │   telephone-outbound-fill.svg
│   │   │   telephone-outbound.svg
│   │   │   telephone-plus-fill.svg
│   │   │   telephone-plus.svg
│   │   │   telephone-x-fill.svg
│   │   │   telephone-x.svg
│   │   │   telephone.svg
│   │   │   tencent-qq.svg
│   │   │   terminal-dash.svg
│   │   │   terminal-fill.svg
│   │   │   terminal-plus.svg
│   │   │   terminal-split.svg
│   │   │   terminal-x.svg
│   │   │   terminal.svg
│   │   │   text-center.svg
│   │   │   text-indent-left.svg
│   │   │   text-indent-right.svg
│   │   │   text-left.svg
│   │   │   text-paragraph.svg
│   │   │   text-right.svg
│   │   │   text-wrap.svg
│   │   │   textarea-resize.svg
│   │   │   textarea-t.svg
│   │   │   textarea.svg
│   │   │   thermometer-half.svg
│   │   │   thermometer-high.svg
│   │   │   thermometer-low.svg
│   │   │   thermometer-snow.svg
│   │   │   thermometer-sun.svg
│   │   │   thermometer.svg
│   │   │   threads-fill.svg
│   │   │   threads.svg
│   │   │   three-dots-vertical.svg
│   │   │   three-dots.svg
│   │   │   thunderbolt-fill.svg
│   │   │   thunderbolt.svg
│   │   │   ticket-detailed-fill.svg
│   │   │   ticket-detailed.svg
│   │   │   ticket-fill.svg
│   │   │   ticket-perforated-fill.svg
│   │   │   ticket-perforated.svg
│   │   │   ticket.svg
│   │   │   tiktok.svg
│   │   │   toggle-off.svg
│   │   │   toggle-on.svg
│   │   │   toggle2-off.svg
│   │   │   toggle2-on.svg
│   │   │   toggles.svg
│   │   │   toggles2.svg
│   │   │   tools.svg
│   │   │   tornado.svg
│   │   │   train-freight-front-fill.svg
│   │   │   train-freight-front.svg
│   │   │   train-front-fill.svg
│   │   │   train-front.svg
│   │   │   train-lightrail-front-fill.svg
│   │   │   train-lightrail-front.svg
│   │   │   translate.svg
│   │   │   transparency.svg
│   │   │   trash-fill.svg
│   │   │   trash.svg
│   │   │   trash2-fill.svg
│   │   │   trash2.svg
│   │   │   trash3-fill.svg
│   │   │   trash3.svg
│   │   │   tree-fill.svg
│   │   │   tree.svg
│   │   │   trello.svg
│   │   │   triangle-fill.svg
│   │   │   triangle-half.svg
│   │   │   triangle.svg
│   │   │   trophy-fill.svg
│   │   │   trophy.svg
│   │   │   tropical-storm.svg
│   │   │   truck-flatbed.svg
│   │   │   truck-front-fill.svg
│   │   │   truck-front.svg
│   │   │   truck.svg
│   │   │   tsunami.svg
│   │   │   tux.svg
│   │   │   tv-fill.svg
│   │   │   tv.svg
│   │   │   twitch.svg
│   │   │   twitter-x.svg
│   │   │   twitter.svg
│   │   │   type-bold.svg
│   │   │   type-h1.svg
│   │   │   type-h2.svg
│   │   │   type-h3.svg
│   │   │   type-h4.svg
│   │   │   type-h5.svg
│   │   │   type-h6.svg
│   │   │   type-italic.svg
│   │   │   type-strikethrough.svg
│   │   │   type-underline.svg
│   │   │   type.svg
│   │   │   typescript.svg
│   │   │   ubuntu.svg
│   │   │   ui-checks-grid.svg
│   │   │   ui-checks.svg
│   │   │   ui-radios-grid.svg
│   │   │   ui-radios.svg
│   │   │   umbrella-fill.svg
│   │   │   umbrella.svg
│   │   │   unindent.svg
│   │   │   union.svg
│   │   │   unity.svg
│   │   │   universal-access-circle.svg
│   │   │   universal-access.svg
│   │   │   unlock-fill.svg
│   │   │   unlock.svg
│   │   │   unlock2-fill.svg
│   │   │   unlock2.svg
│   │   │   upc-scan.svg
│   │   │   upc.svg
│   │   │   upload.svg
│   │   │   usb-c-fill.svg
│   │   │   usb-c.svg
│   │   │   usb-drive-fill.svg
│   │   │   usb-drive.svg
│   │   │   usb-fill.svg
│   │   │   usb-micro-fill.svg
│   │   │   usb-micro.svg
│   │   │   usb-mini-fill.svg
│   │   │   usb-mini.svg
│   │   │   usb-plug-fill.svg
│   │   │   usb-plug.svg
│   │   │   usb-symbol.svg
│   │   │   usb.svg
│   │   │   valentine.svg
│   │   │   valentine2.svg
│   │   │   vector-pen.svg
│   │   │   view-list.svg
│   │   │   view-stacked.svg
│   │   │   vignette.svg
│   │   │   vimeo.svg
│   │   │   vinyl-fill.svg
│   │   │   vinyl.svg
│   │   │   virus.svg
│   │   │   virus2.svg
│   │   │   voicemail.svg
│   │   │   volume-down-fill.svg
│   │   │   volume-down.svg
│   │   │   volume-mute-fill.svg
│   │   │   volume-mute.svg
│   │   │   volume-off-fill.svg
│   │   │   volume-off.svg
│   │   │   volume-up-fill.svg
│   │   │   volume-up.svg
│   │   │   vr.svg
│   │   │   wallet-fill.svg
│   │   │   wallet.svg
│   │   │   wallet2.svg
│   │   │   watch.svg
│   │   │   water.svg
│   │   │   webcam-fill.svg
│   │   │   webcam.svg
│   │   │   wechat.svg
│   │   │   whatsapp.svg
│   │   │   wifi-1.svg
│   │   │   wifi-2.svg
│   │   │   wifi-off.svg
│   │   │   wifi.svg
│   │   │   wikipedia.svg
│   │   │   wind.svg
│   │   │   window-dash.svg
│   │   │   window-desktop.svg
│   │   │   window-dock.svg
│   │   │   window-fullscreen.svg
│   │   │   window-plus.svg
│   │   │   window-sidebar.svg
│   │   │   window-split.svg
│   │   │   window-stack.svg
│   │   │   window-x.svg
│   │   │   window.svg
│   │   │   windows.svg
│   │   │   wordpress.svg
│   │   │   wrench-adjustable-circle-fill.svg
│   │   │   wrench-adjustable-circle.svg
│   │   │   wrench-adjustable.svg
│   │   │   wrench.svg
│   │   │   x-circle-fill.svg
│   │   │   x-circle.svg
│   │   │   x-diamond-fill.svg
│   │   │   x-diamond.svg
│   │   │   x-lg.svg
│   │   │   x-octagon-fill.svg
│   │   │   x-octagon.svg
│   │   │   x-square-fill.svg
│   │   │   x-square.svg
│   │   │   x.svg
│   │   │   xbox.svg
│   │   │   yelp.svg
│   │   │   yin-yang.svg
│   │   │   youtube.svg
│   │   │   zoom-in.svg
│   │   │   zoom-out.svg
│   │   │
│   │   └───fonts
│   │           bootstrap-icons.woff
│   │           bootstrap-icons.woff2
│   │
│   ├───js
│   │       app.js
│   │       bootstrap.js
│   │       test.js
│   │
│   ├───lang
│   │   └───en
│   │           auth.php
│   │           pagination.php
│   │           passwords.php
│   │           validation.php
│   │
│   ├───sass
│   │       app.scss
│   │       _variables.scss
│   │
│   └───views
│       │   home.blade.php
│       │   test.blade.php
│       │   welcome.blade.php
│       │
│       ├───auth
│       │   │   login.blade.php
│       │   │   register.blade.php
│       │   │   verify.blade.php
│       │   │
│       │   └───passwords
│       │           confirm.blade.php
│       │           email.blade.php
│       │           reset.blade.php
│       │
│       ├───components
│       │   ├───auth
│       │   │       login-modal.blade.php
│       │   │
│       │   └───ui
│       │       ├───navbar
│       │       │       brand.blade.php
│       │       │       item.blade.php
│       │       │       menu.blade.php
│       │       │       navbar.blade.php
│       │       │       user.blade.php
│       │       │
│       │       └───sidebar
│       │               sidebar.blade.php
│       │
│       ├───email
│       │       resetpassword.blade.php
│       │       verify.blade.php
│       │
│       └───layouts
│               app.blade.php
│               auth.blade.php
│
├───routes
│       api.php
│       channels.php
│       console.php
│       web.php
│
├───storage
│   ├───app
│   │   │   .gitignore
│   │   │
│   │   └───public
│   │           .gitignore
│   │
│   ├───framework
│   │   │   .gitignore
│   │   │
│   │   ├───cache
│   │   │   │   .gitignore
│   │   │   │
│   │   │   └───data
│   │   │       │   .gitignore
│   │   │       │
│   │   │       ├───03
│   │   │       │   └───bc
│   │   │       │           03bc23b61d4cf128f2bd79541d52e1b98f18c79d
│   │   │       │
│   │   │       ├───37
│   │   │       │   └───d0
│   │   │       │           37d0a0437440b46a8594240ab75f0e7bba582bed
│   │   │       │
│   │   │       ├───70
│   │   │       │   └───8e
│   │   │       │           708e1f5b8707dc464c1ef34d35a4620651a5aebb
│   │   │       │
│   │   │       ├───96
│   │   │       │   └───6f
│   │   │       │           966f5117ca55dccda759ca730e457b661a5cca44
│   │   │       │
│   │   │       ├───c0
│   │   │       │   └───71
│   │   │       │           c071422490d526a8aada046adf3a9c9fa0593468
│   │   │       │
│   │   │       ├───c4
│   │   │       │   └───77
│   │   │       │           c477ac4689302b5ad652ee7f0d455f376201f42d
│   │   │       │
│   │   │       ├───ec
│   │   │       │   └───c4
│   │   │       │           ecc49f49f4da6b940dcde13f0571e79c299871e6
│   │   │       │
│   │   │       └───f1
│   │   │           └───62
│   │   │                   f1621e8b3d51059c5efd75fd8808d390f5dba3d1
│   │   │
│   │   ├───sessions
│   │   │       .gitignore
│   │   │       0zUZ6vJqV8fCVSJSvCRDQBWmxesatdY5l5Shfvng
│   │   │       BKXJcTo1iQQKmr4FY711JiQpkYB6qjdy38zZh8lk
│   │   │       BRXzPoePQHlxdFCQozxWZLS7ze2TA2rgtTkdFQUN
│   │   │       JjxARsLy54YrHiU0cWc8xn1eTLuHERAjwJpkcPcD
│   │   │       k3F9Prks2zvkaZpG9c8wuNTdQRm7eGHJZ5Y5SJ6d
│   │   │       nM8GkZnFSJBKFhxzeorUPnGndyglqT1qlV7kpxRD
│   │   │       VLOsexmb1uPrF1963qk4Rd93ozp9gYlHOyJ0d5rU
│   │   │       x6PNFwZXz9HNjOZks3GBMDd6d9Ctzxs6XQlsxa5w
│   │   │
│   │   ├───testing
│   │   │       .gitignore
│   │   │
│   │   └───views
│   │           .gitignore
│   │           201e9add6e4e16fc90051bc7f7ee0e9db060ef76.php
│   │           25d7fe5b01747bf0c618e52e4979b3057c5420e6.php
│   │           3c7e609fa1ba28d17e5f6a240444ff8d21c8d9cb.php
│   │           567911db9407ca7e013a1284e2faaa8e22a5ecfa.php
│   │           63c02489d5e636481f84d59f9e78d0868efbe425.php
│   │           80bf9f3f8371296740e0057f4e2f2f473ae5e0b9.php
│   │           8dd1a16ba15f181e73f7e771130b2886043b051b.php
│   │           ada559d0aa0e79925d511d722cf6d1de98129ce6.php
│   │           d4584d0bdb0358430b3dbaf664ccc49166fa76da.php
│   │
│   └───logs
│           .gitignore
│           laravel.log
│
├───tests
│   │   CreatesApplication.php
│   │   TestCase.php
│   │
│   ├───Feature
│   │       ExampleTest.php
│   │
│   └───Unit
│           ExampleTest.php
│
    │   autoload.php
    │
    ├───asm89
    │   └───stack-cors
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       └───src
    │               Cors.php
    │               CorsService.php
    │
    ├───bin
    │       carbon
    │       carbon.bat
    │       commonmark
    │       commonmark.bat
    │       patch-type-declarations
    │       patch-type-declarations.bat
    │       php-parse
    │       php-parse.bat
    │       phpunit
    │       phpunit.bat
    │       psysh
    │       psysh.bat
    │       sail
    │       sail.bat
    │       var-dump-server
    │       var-dump-server.bat
    │
    ├───brick
    │   └───math
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   SECURITY.md
    │       │
    │       └───src
    │           │   BigDecimal.php
    │           │   BigInteger.php
    │           │   BigNumber.php
    │           │   BigRational.php
    │           │   RoundingMode.php
    │           │
    │           ├───Exception
    │           │       DivisionByZeroException.php
    │           │       IntegerOverflowException.php
    │           │       MathException.php
    │           │       NegativeNumberException.php
    │           │       NumberFormatException.php
    │           │       RoundingNecessaryException.php
    │           │
    │           └───Internal
    │               │   Calculator.php
    │               │
    │               └───Calculator
    │                       BcMathCalculator.php
    │                       GmpCalculator.php
    │                       NativeCalculator.php
    │
    ├───composer
    │       autoload_classmap.php
    │       autoload_files.php
    │       autoload_namespaces.php
    │       autoload_psr4.php
    │       autoload_real.php
    │       autoload_static.php
    │       ClassLoader.php
    │       installed.json
    │       installed.php
    │       InstalledVersions.php
    │       LICENSE
    │       platform_check.php
    │
    ├───doctrine
    │   ├───inflector
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───docs
    │   │   │   └───en
    │   │   │           index.rst
    │   │   │
    │   │   └───lib
    │   │       └───Doctrine
    │   │           └───Inflector
    │   │               │   CachedWordInflector.php
    │   │               │   GenericLanguageInflectorFactory.php
    │   │               │   Inflector.php
    │   │               │   InflectorFactory.php
    │   │               │   Language.php
    │   │               │   LanguageInflectorFactory.php
    │   │               │   NoopWordInflector.php
    │   │               │   RulesetInflector.php
    │   │               │   WordInflector.php
    │   │               │
    │   │               └───Rules
    │   │                   │   Pattern.php
    │   │                   │   Patterns.php
    │   │                   │   Ruleset.php
    │   │                   │   Substitution.php
    │   │                   │   Substitutions.php
    │   │                   │   Transformation.php
    │   │                   │   Transformations.php
    │   │                   │   Word.php
    │   │                   │
    │   │                   ├───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
    │   │                   │
    │   │                   ├───Portuguese
    │   │                   │       Inflectible.php
    │   │                   │       InflectorFactory.php
    │   │                   │       Rules.php
    │   │                   │       Uninflected.php
    │   │                   │
    │   │                   ├───Spanish
    │   │                   │       Inflectible.php
    │   │                   │       InflectorFactory.php
    │   │                   │       Rules.php
    │   │                   │       Uninflected.php
    │   │                   │
    │   │                   └───Turkish
    │   │                           Inflectible.php
    │   │                           InflectorFactory.php
    │   │                           Rules.php
    │   │                           Uninflected.php
    │   │
    │   ├───instantiator
    │   │   │   .doctrine-project.json
    │   │   │   composer.json
    │   │   │   CONTRIBUTING.md
    │   │   │   LICENSE
    │   │   │   psalm.xml
    │   │   │   README.md
    │   │   │
    │   │   ├───docs
    │   │   │   └───en
    │   │   │           index.rst
    │   │   │           sidebar.rst
    │   │   │
    │   │   └───src
    │   │       └───Doctrine
    │   │           └───Instantiator
    │   │               │   Instantiator.php
    │   │               │   InstantiatorInterface.php
    │   │               │
    │   │               └───Exception
    │   │                       ExceptionInterface.php
    │   │                       InvalidArgumentException.php
    │   │                       UnexpectedValueException.php
    │   │
    │   └───lexer
    │       │   composer.json
    │       │   LICENSE
    │       │   psalm.xml
    │       │   README.md
    │       │
    │       └───lib
    │           └───Doctrine
    │               └───Common
    │                   └───Lexer
    │                           AbstractLexer.php
    │
    ├───dragonmantank
    │   └───cron-expression
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   phpstan.neon
    │       │   README.md
    │       │
    │       └───src
    │           └───Cron
    │                   AbstractField.php
    │                   CronExpression.php
    │                   DayOfMonthField.php
    │                   DayOfWeekField.php
    │                   FieldFactory.php
    │                   FieldFactoryInterface.php
    │                   FieldInterface.php
    │                   HoursField.php
    │                   MinutesField.php
    │                   MonthField.php
    │
    ├───egulias
    │   └───email-validator
    │       │   composer.json
    │       │   LICENSE
    │       │
    │       └───src
    │           │   EmailLexer.php
    │           │   EmailParser.php
    │           │   EmailValidator.php
    │           │
    │           ├───Exception
    │           │       AtextAfterCFWS.php
    │           │       CharNotAllowed.php
    │           │       CommaInDomain.php
    │           │       ConsecutiveAt.php
    │           │       ConsecutiveDot.php
    │           │       CRLFAtTheEnd.php
    │           │       CRLFX2.php
    │           │       CRNoLF.php
    │           │       DomainAcceptsNoMail.php
    │           │       DomainHyphened.php
    │           │       DotAtEnd.php
    │           │       DotAtStart.php
    │           │       ExpectingAT.php
    │           │       ExpectingATEXT.php
    │           │       ExpectingCTEXT.php
    │           │       ExpectingDomainLiteralClose.php
    │           │       ExpectingDTEXT.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
    │           │   │   MultipleErrors.php
    │           │   │   MultipleValidationWithAnd.php
    │           │   │   NoRFCWarningsValidation.php
    │           │   │   RFCValidation.php
    │           │   │   SpoofCheckValidation.php
    │           │   │
    │           │   ├───Error
    │           │   │       RFCWarnings.php
    │           │   │       SpoofEmail.php
    │           │   │
    │           │   └───Exception
    │           │           EmptyValidationList.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
    │
    ├───facade
    │   ├───flare-client-php
    │   │   │   .php-cs-fixer.cache
    │   │   │   .php-cs-fixer.php
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE.md
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   Api.php
    │   │       │   Flare.php
    │   │       │   Frame.php
    │   │       │   helpers.php
    │   │       │   Report.php
    │   │       │   View.php
    │   │       │
    │   │       ├───Concerns
    │   │       │       HasContext.php
    │   │       │       UsesTime.php
    │   │       │
    │   │       ├───Context
    │   │       │       ConsoleContext.php
    │   │       │       ContextContextDetector.php
    │   │       │       ContextDetectorInterface.php
    │   │       │       ContextInterface.php
    │   │       │       RequestContext.php
    │   │       │
    │   │       ├───Contracts
    │   │       │       ProvidesFlareContext.php
    │   │       │
    │   │       ├───Enums
    │   │       │       GroupingTypes.php
    │   │       │       MessageLevels.php
    │   │       │
    │   │       ├───Glows
    │   │       │       Glow.php
    │   │       │       Recorder.php
    │   │       │
    │   │       ├───Http
    │   │       │   │   Client.php
    │   │       │   │   Response.php
    │   │       │   │
    │   │       │   └───Exceptions
    │   │       │           BadResponse.php
    │   │       │           BadResponseCode.php
    │   │       │           InvalidData.php
    │   │       │           MissingParameter.php
    │   │       │           NotFound.php
    │   │       │
    │   │       ├───Middleware
    │   │       │       AddGlows.php
    │   │       │       AnonymizeIp.php
    │   │       │       CensorRequestBodyFields.php
    │   │       │
    │   │       ├───Solutions
    │   │       │       ReportSolution.php
    │   │       │
    │   │       ├───Stacktrace
    │   │       │       Codesnippet.php
    │   │       │       File.php
    │   │       │       Frame.php
    │   │       │       Stacktrace.php
    │   │       │
    │   │       ├───Time
    │   │       │       SystemTime.php
    │   │       │       Time.php
    │   │       │
    │   │       └───Truncation
    │   │               AbstractTruncationStrategy.php
    │   │               ReportTrimmer.php
    │   │               TrimContextItemsStrategy.php
    │   │               TrimStringsStrategy.php
    │   │               TruncationStrategy.php
    │   │
    │   ├───ignition
    │   │   │   .php_cs.php
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE.md
    │   │   │   package.json
    │   │   │   psalm-baseline.xml
    │   │   │   psalm.xml
    │   │   │   README.md
    │   │   │   SECURITY.md
    │   │   │
    │   │   ├───config
    │   │   │       flare.php
    │   │   │       ignition.php
    │   │   │
    │   │   ├───resources
    │   │   │   │   .gitignore
    │   │   │   │
    │   │   │   ├───compiled
    │   │   │   │       ignition.js
    │   │   │   │       index.html
    │   │   │   │
    │   │   │   └───views
    │   │   │           errorPage.php
    │   │   │
    │   │   └───src
    │   │       │   helpers.php
    │   │       │   Ignition.php
    │   │       │   IgnitionConfig.php
    │   │       │   IgnitionServiceProvider.php
    │   │       │
    │   │       ├───Actions
    │   │       │       ShareReportAction.php
    │   │       │
    │   │       ├───Commands
    │   │       │   │   SolutionMakeCommand.php
    │   │       │   │   SolutionProviderMakeCommand.php
    │   │       │   │   TestCommand.php
    │   │       │   │
    │   │       │   └───stubs
    │   │       │           runnable-solution.stub
    │   │       │           solution-provider.stub
    │   │       │           solution.stub
    │   │       │
    │   │       ├───Context
    │   │       │       LaravelConsoleContext.php
    │   │       │       LaravelContextDetector.php
    │   │       │       LaravelRequestContext.php
    │   │       │       LivewireRequestContext.php
    │   │       │
    │   │       ├───DumpRecorder
    │   │       │       Dump.php
    │   │       │       DumpHandler.php
    │   │       │       DumpRecorder.php
    │   │       │       HtmlDumper.php
    │   │       │       MultiDumpHandler.php
    │   │       │
    │   │       ├───ErrorPage
    │   │       │       ErrorPageHandler.php
    │   │       │       ErrorPageViewModel.php
    │   │       │       IgnitionExceptionRenderer.php
    │   │       │       IgnitionWhoopsHandler.php
    │   │       │       Renderer.php
    │   │       │
    │   │       ├───Exceptions
    │   │       │       InvalidConfig.php
    │   │       │       UnableToShareErrorException.php
    │   │       │       ViewException.php
    │   │       │       ViewExceptionWithSolution.php
    │   │       │
    │   │       ├───Facades
    │   │       │       Flare.php
    │   │       │
    │   │       ├───Http
    │   │       │   ├───Controllers
    │   │       │   │       ExecuteSolutionController.php
    │   │       │   │       HealthCheckController.php
    │   │       │   │       ScriptController.php
    │   │       │   │       ShareReportController.php
    │   │       │   │       StyleController.php
    │   │       │   │
    │   │       │   ├───Middleware
    │   │       │   │       IgnitionConfigValueEnabled.php
    │   │       │   │       IgnitionEnabled.php
    │   │       │   │
    │   │       │   └───Requests
    │   │       │           ExecuteSolutionRequest.php
    │   │       │           ShareReportRequest.php
    │   │       │
    │   │       ├───JobRecorder
    │   │       │       JobRecorder.php
    │   │       │
    │   │       ├───Logger
    │   │       │       FlareHandler.php
    │   │       │
    │   │       ├───LogRecorder
    │   │       │       LogMessage.php
    │   │       │       LogRecorder.php
    │   │       │
    │   │       ├───Middleware
    │   │       │       AddDumps.php
    │   │       │       AddEnvironmentInformation.php
    │   │       │       AddExceptionInformation.php
    │   │       │       AddGitInformation.php
    │   │       │       AddJobInformation.php
    │   │       │       AddLogs.php
    │   │       │       AddQueries.php
    │   │       │       AddSolutions.php
    │   │       │       SetNotifierName.php
    │   │       │
    │   │       ├───QueryRecorder
    │   │       │       Query.php
    │   │       │       QueryRecorder.php
    │   │       │
    │   │       ├───SolutionProviders
    │   │       │       BadMethodCallSolutionProvider.php
    │   │       │       DefaultDbNameSolutionProvider.php
    │   │       │       IncorrectValetDbCredentialsSolutionProvider.php
    │   │       │       InvalidRouteActionSolutionProvider.php
    │   │       │       LazyLoadingViolationSolutionProvider.php
    │   │       │       MergeConflictSolutionProvider.php
    │   │       │       MissingAppKeySolutionProvider.php
    │   │       │       MissingColumnSolutionProvider.php
    │   │       │       MissingImportSolutionProvider.php
    │   │       │       MissingLivewireComponentSolutionProvider.php
    │   │       │       MissingMixManifestSolutionProvider.php
    │   │       │       MissingPackageSolutionProvider.php
    │   │       │       RouteNotDefinedSolutionProvider.php
    │   │       │       RunningLaravelDuskInProductionProvider.php
    │   │       │       SolutionProviderRepository.php
    │   │       │       TableNotFoundSolutionProvider.php
    │   │       │       UndefinedLivewireMethodSolutionProvider.php
    │   │       │       UndefinedLivewirePropertySolutionProvider.php
    │   │       │       UndefinedPropertySolutionProvider.php
    │   │       │       UndefinedVariableSolutionProvider.php
    │   │       │       UnknownValidationSolutionProvider.php
    │   │       │       ViewNotFoundSolutionProvider.php
    │   │       │
    │   │       ├───Solutions
    │   │       │       GenerateAppKeySolution.php
    │   │       │       LivewireDiscoverSolution.php
    │   │       │       MakeViewVariableOptionalSolution.php
    │   │       │       MissingPackageSolution.php
    │   │       │       RunMigrationsSolution.php
    │   │       │       SolutionTransformer.php
    │   │       │       SuggestCorrectVariableNameSolution.php
    │   │       │       SuggestImportSolution.php
    │   │       │       SuggestLivewireMethodNameSolution.php
    │   │       │       SuggestLivewirePropertyNameSolution.php
    │   │       │       SuggestUsingCorrectDbNameSolution.php
    │   │       │       UseDefaultValetDbCredentialsSolution.php
    │   │       │
    │   │       ├───Support
    │   │       │   │   ComposerClassMap.php
    │   │       │   │   FakeComposer.php
    │   │       │   │   LaravelVersion.php
    │   │       │   │   LivewireComponentParser.php
    │   │       │   │   SentReports.php
    │   │       │   │   StringComparator.php
    │   │       │   │
    │   │       │   └───Packagist
    │   │       │           Package.php
    │   │       │           Packagist.php
    │   │       │
    │   │       ├───Tabs
    │   │       │       Tab.php
    │   │       │
    │   │       └───Views
    │   │           ├───Compilers
    │   │           │       BladeSourceMapCompiler.php
    │   │           │
    │   │           ├───Concerns
    │   │           │       CollectsViewExceptions.php
    │   │           │
    │   │           └───Engines
    │   │                   CompilerEngine.php
    │   │                   PhpEngine.php
    │   │
    │   └───ignition-contracts
    │       │   .php_cs
    │       │   composer.json
    │       │   LICENSE.md
    │       │   psalm.xml
    │       │
    │       ├───.github
    │       │   └───workflows
    │       │           php-cs-fixer.yml
    │       │           psalm.yml
    │       │           run-tests.yml
    │       │
    │       └───src
    │               BaseSolution.php
    │               HasSolutionsForThrowable.php
    │               ProvidesSolution.php
    │               RunnableSolution.php
    │               Solution.php
    │               SolutionProviderRepository.php
    │
    ├───fakerphp
    │   └───faker
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   psalm.baseline.xml
    │       │   README.md
    │       │
    │       └───src
    │           │   autoload.php
    │           │
    │           └───Faker
    │               │   ChanceGenerator.php
    │               │   DefaultGenerator.php
    │               │   Documentor.php
    │               │   Factory.php
    │               │   Generator.php
    │               │   UniqueGenerator.php
    │               │   ValidGenerator.php
    │               │
    │               ├───Calculator
    │               │       Ean.php
    │               │       Iban.php
    │               │       Inn.php
    │               │       Isbn.php
    │               │       Luhn.php
    │               │       TCNo.php
    │               │
    │               ├───Container
    │               │       Container.php
    │               │       ContainerBuilder.php
    │               │       ContainerException.php
    │               │       ContainerInterface.php
    │               │       NotInContainerException.php
    │               │
    │               ├───Core
    │               │       Barcode.php
    │               │       Blood.php
    │               │       Color.php
    │               │       Coordinates.php
    │               │       DateTime.php
    │               │       File.php
    │               │       Number.php
    │               │       Uuid.php
    │               │       Version.php
    │               │
    │               ├───Extension
    │               │       AddressExtension.php
    │               │       BarcodeExtension.php
    │               │       BloodExtension.php
    │               │       ColorExtension.php
    │               │       CompanyExtension.php
    │               │       CountryExtension.php
    │               │       DateTimeExtension.php
    │               │       Extension.php
    │               │       ExtensionNotFound.php
    │               │       FileExtension.php
    │               │       GeneratorAwareExtension.php
    │               │       GeneratorAwareExtensionTrait.php
    │               │       Helper.php
    │               │       NumberExtension.php
    │               │       PersonExtension.php
    │               │       PhoneNumberExtension.php
    │               │       UuidExtension.php
    │               │       VersionExtension.php
    │               │
    │               ├───Guesser
    │               │       Name.php
    │               │
    │               ├───ORM
    │               │   ├───CakePHP
    │               │   │       ColumnTypeGuesser.php
    │               │   │       EntityPopulator.php
    │               │   │       Populator.php
    │               │   │
    │               │   ├───Doctrine
    │               │   │       backward-compatibility.php
    │               │   │       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
    │                   │   Medical.php
    │                   │   Miscellaneous.php
    │                   │   Payment.php
    │                   │   Person.php
    │                   │   PhoneNumber.php
    │                   │   Text.php
    │                   │   UserAgent.php
    │                   │   Uuid.php
    │                   │
    │                   ├───ar_EG
    │                   │       Address.php
    │                   │       Color.php
    │                   │       Company.php
    │                   │       Internet.php
    │                   │       Payment.php
    │                   │       Person.php
    │                   │       Text.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
    │                   │       Company.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
    │                   │       Person.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
    │                   │       Color.php
    │                   │       Company.php
    │                   │       Internet.php
    │                   │       Payment.php
    │                   │       Person.php
    │                   │       PhoneNumber.php
    │                   │
    │                   ├───fr_CA
    │                   │       Address.php
    │                   │       Color.php
    │                   │       Company.php
    │                   │       Person.php
    │                   │       Text.php
    │                   │
    │                   ├───fr_CH
    │                   │       Address.php
    │                   │       Color.php
    │                   │       Company.php
    │                   │       Internet.php
    │                   │       Payment.php
    │                   │       Person.php
    │                   │       PhoneNumber.php
    │                   │       Text.php
    │                   │
    │                   ├───fr_FR
    │                   │       Address.php
    │                   │       Color.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
    │                   │       Payment.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
    │                   │       LicensePlate.php
    │                   │       Payment.php
    │                   │       Person.php
    │                   │       PhoneNumber.php
    │                   │       Text.php
    │                   │
    │                   ├───pt_BR
    │                   │       Address.php
    │                   │       check_digit.php
    │                   │       Company.php
    │                   │       Internet.php
    │                   │       Payment.php
    │                   │       Person.php
    │                   │       PhoneNumber.php
    │                   │       Text.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
    │                   │       Municipality.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
    │
    ├───filp
    │   └───whoops
    │       │   .mailmap
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE.md
    │       │   SECURITY.md
    │       │
    │       └───src
    │           └───Whoops
    │               │   Run.php
    │               │   RunInterface.php
    │               │
    │               ├───Exception
    │               │       ErrorException.php
    │               │       Formatter.php
    │               │       Frame.php
    │               │       FrameCollection.php
    │               │       Inspector.php
    │               │
    │               ├───Handler
    │               │       CallbackHandler.php
    │               │       Handler.php
    │               │       HandlerInterface.php
    │               │       JsonResponseHandler.php
    │               │       PlainTextHandler.php
    │               │       PrettyPageHandler.php
    │               │       XmlResponseHandler.php
    │               │
    │               ├───Inspector
    │               │       InspectorFactory.php
    │               │       InspectorFactoryInterface.php
    │               │       InspectorInterface.php
    │               │
    │               ├───Resources
    │               │   ├───css
    │               │   │       prism.css
    │               │   │       whoops.base.css
    │               │   │
    │               │   ├───js
    │               │   │       clipboard.min.js
    │               │   │       prism.js
    │               │   │       whoops.base.js
    │               │   │       zepto.min.js
    │               │   │
    │               │   └───views
    │               │           env_details.html.php
    │               │           frames_container.html.php
    │               │           frames_description.html.php
    │               │           frame_code.html.php
    │               │           frame_list.html.php
    │               │           header.html.php
    │               │           header_outer.html.php
    │               │           layout.html.php
    │               │           panel_details.html.php
    │               │           panel_details_outer.html.php
    │               │           panel_left.html.php
    │               │           panel_left_outer.html.php
    │               │
    │               └───Util
    │                       HtmlDumperOutput.php
    │                       Misc.php
    │                       SystemFacade.php
    │                       TemplateHelper.php
    │
    ├───fruitcake
    │   └───laravel-cors
    │       │   .editorconfig
    │       │   changelog.md
    │       │   composer.json
    │       │   LICENSE
    │       │   readme.md
    │       │
    │       ├───config
    │       │       cors.php
    │       │
    │       └───src
    │               CorsServiceProvider.php
    │               HandleCors.php
    │
    ├───graham-campbell
    │   └───result-type
    │       │   composer.json
    │       │   LICENSE
    │       │
    │       └───src
    │               Error.php
    │               Result.php
    │               Success.php
    │
    ├───guzzlehttp
    │   ├───guzzle
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   UPGRADING.md
    │   │   │
    │   │   └───src
    │   │       │   BodySummarizer.php
    │   │       │   BodySummarizerInterface.php
    │   │       │   Client.php
    │   │       │   ClientInterface.php
    │   │       │   ClientTrait.php
    │   │       │   functions.php
    │   │       │   functions_include.php
    │   │       │   HandlerStack.php
    │   │       │   MessageFormatter.php
    │   │       │   MessageFormatterInterface.php
    │   │       │   Middleware.php
    │   │       │   Pool.php
    │   │       │   PrepareBodyMiddleware.php
    │   │       │   RedirectMiddleware.php
    │   │       │   RequestOptions.php
    │   │       │   RetryMiddleware.php
    │   │       │   TransferStats.php
    │   │       │   Utils.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
    │   │       │       ServerException.php
    │   │       │       TooManyRedirectsException.php
    │   │       │       TransferException.php
    │   │       │
    │   │       └───Handler
    │   │               CurlFactory.php
    │   │               CurlFactoryInterface.php
    │   │               CurlHandler.php
    │   │               CurlMultiHandler.php
    │   │               EasyHandle.php
    │   │               HeaderProcessor.php
    │   │               MockHandler.php
    │   │               Proxy.php
    │   │               StreamHandler.php
    │   │
    │   ├───promises
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───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
    │   │   │
    │   │       ├───php-cs-fixer
    │   │       │       composer.json
    │   │       │
    │   │       ├───phpstan
    │   │       │       composer.json
    │   │       │
    │   │       └───psalm
    │   │               composer.json
    │   │
    │   └───psr7
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       └───src
    │           │   AppendStream.php
    │           │   BufferStream.php
    │           │   CachingStream.php
    │           │   DroppingStream.php
    │           │   FnStream.php
    │           │   Header.php
    │           │   HttpFactory.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
    │           │   UriComparator.php
    │           │   UriNormalizer.php
    │           │   UriResolver.php
    │           │   Utils.php
    │           │
    │           └───Exception
    │                   MalformedUriException.php
    │
    ├───hamcrest
    │   └───hamcrest-php
    │       │   .coveralls.yml
    │       │   .gitignore
    │       │   .gush.yml
    │       │   .travis.yml
    │       │   CHANGES.txt
    │       │   composer.json
    │       │   LICENSE.txt
    │       │   README.md
    │       │
    │       ├───.github
    │       │   └───workflows
    │       │           tests.yml
    │       │
    │       ├───generator
    │       │   │   FactoryCall.php
    │       │   │   FactoryClass.php
    │       │   │   FactoryFile.php
    │       │   │   FactoryGenerator.php
    │       │   │   FactoryMethod.php
    │       │   │   FactoryParameter.php
    │       │   │   GlobalFunctionFile.php
    │       │   │   run.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
    │       │
    │       ├───hamcrest
    │       │   │   Hamcrest.php
    │       │   │
    │       │   └───Hamcrest
    │       │       │   AssertionError.php
    │       │       │   BaseDescription.php
    │       │       │   BaseMatcher.php
    │       │       │   Description.php
    │       │       │   DiagnosingMatcher.php
    │       │       │   FeatureMatcher.php
    │       │       │   Matcher.php
    │       │       │   MatcherAssert.php
    │       │       │   Matchers.php
    │       │       │   NullDescription.php
    │       │       │   SelfDescribing.php
    │       │       │   StringDescription.php
    │       │       │   TypeSafeDiagnosingMatcher.php
    │       │       │   TypeSafeMatcher.php
    │       │       │   Util.php
    │       │       │
    │       │       ├───Arrays
    │       │       │       IsArray.php
    │       │       │       IsArrayContaining.php
    │       │       │       IsArrayContainingInAnyOrder.php
    │       │       │       IsArrayContainingInOrder.php
    │       │       │       IsArrayContainingKey.php
    │       │       │       IsArrayContainingKeyValuePair.php
    │       │       │       IsArrayWithSize.php
    │       │       │       MatchingOnce.php
    │       │       │       SeriesMatchingOnce.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
    │       │       │
    │       │       ├───Internal
    │       │       │       SelfDescribingValue.php
    │       │       │
    │       │       ├───Number
    │       │       │       IsCloseTo.php
    │       │       │       OrderingComparison.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
    │       │       │
    │       │       └───Xml
    │       │               HasXPath.php
    │       │
    │       └───tests
    │           │   bootstrap.php
    │           │   phpunit.xml.dist
    │           │
    │           └───Hamcrest
    │               │   AbstractMatcherTest.php
    │               │   BaseMatcherTest.php
    │               │   FeatureMatcherTest.php
    │               │   InvokedMatcherTest.php
    │               │   MatcherAssertTest.php
    │               │   StringDescriptionTest.php
    │               │   UtilTest.php
    │               │
    │               ├───Array
    │               │       IsArrayContainingInAnyOrderTest.php
    │               │       IsArrayContainingInOrderTest.php
    │               │       IsArrayContainingKeyTest.php
    │               │       IsArrayContainingKeyValuePairTest.php
    │               │       IsArrayContainingTest.php
    │               │       IsArrayTest.php
    │               │       IsArrayWithSizeTest.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
    │               │
    │               ├───Number
    │               │       IsCloseToTest.php
    │               │       OrderingComparisonTest.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
    │               │
    │               └───Xml
    │                       HasXPathTest.php
    │
    ├───haruncpi
    │   └───laravel-id-generator
    │       │   .gitignore
    │       │   composer.json
    │       │   preview.png
    │       │   README.md
    │       │
    │       ├───src
    │       │   │   IdGenerator.php
    │       │   │   IdGeneratorServiceProvider.php
    │       │   │
    │       │   └───Traits
    │       │           IdFactory.php
    │       │
    │       └───tests
    │           └───Unit
    │                   IdGenerateTest.php
    │
    ├───hekmatinasser
    │   ├───notowo
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   helpers.php
    │   │       │   Notowo.php
    │   │       │   NotowoServiceProvider.php
    │   │       │
    │   │       └───Lang
    │   │               en.php
    │   │               fa.php
    │   │
    │   └───verta
    │       │   .php_cs.dist.php
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       ├───docs
    │       │   │   index.html
    │       │   │
    │       │   ├───assert
    │       │   │       logo.png
    │       │   │
    │       │   ├───css
    │       │   │       style.css
    │       │   │
    │       │   └───en
    │       │           index.html
    │       │
    │       └───src
    │           │   helpers.php
    │           │   Verta.php
    │           │   VertaInterface.php
    │           │
    │           ├───Facades
    │           │       Verta.php
    │           │
    │           ├───Lang
    │           │       ar.php
    │           │       az.php
    │           │       en.php
    │           │       fa.php
    │           │       haz.php
    │           │       ku.php
    │           │       ps.php
    │           │
    │           ├───Laravel
    │           │       JalaliValidator.php
    │           │       VertaServiceProvider.php
    │           │
    │           └───Traits
    │                   Accessor.php
    │                   Boundaries.php
    │                   Comparison.php
    │                   Creator.php
    │                   Date.php
    │                   Difference.php
    │                   Formatting.php
    │                   Modification.php
    │                   Transformation.php
    │                   Translator.php
    │
    ├───laravel
    │   ├───framework
    │   │   │   composer.json
    │   │   │   LICENSE.md
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       └───Illuminate
    │   │           ├───Auth
    │   │           │   │   Authenticatable.php
    │   │           │   │   AuthenticationException.php
    │   │           │   │   AuthManager.php
    │   │           │   │   AuthServiceProvider.php
    │   │           │   │   composer.json
    │   │           │   │   CreatesUserProviders.php
    │   │           │   │   DatabaseUserProvider.php
    │   │           │   │   EloquentUserProvider.php
    │   │           │   │   GenericUser.php
    │   │           │   │   GuardHelpers.php
    │   │           │   │   LICENSE.md
    │   │           │   │   MustVerifyEmail.php
    │   │           │   │   Recaller.php
    │   │           │   │   RequestGuard.php
    │   │           │   │   SessionGuard.php
    │   │           │   │   TokenGuard.php
    │   │           │   │
    │   │           │   ├───Access
    │   │           │   │   │   AuthorizationException.php
    │   │           │   │   │   Gate.php
    │   │           │   │   │   HandlesAuthorization.php
    │   │           │   │   │   Response.php
    │   │           │   │   │
    │   │           │   │   └───Events
    │   │           │   │           GateEvaluated.php
    │   │           │   │
    │   │           │   ├───Console
    │   │           │   │   │   ClearResetsCommand.php
    │   │           │   │   │
    │   │           │   │   └───stubs
    │   │           │   │       └───make
    │   │           │   │           └───views
    │   │           │   │               └───layouts
    │   │           │   │                       app.stub
    │   │           │   │
    │   │           │   ├───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
    │   │           │   │
    │   │           │   ├───Listeners
    │   │           │   │       SendEmailVerificationNotification.php
    │   │           │   │
    │   │           │   ├───Middleware
    │   │           │   │       Authenticate.php
    │   │           │   │       AuthenticateWithBasicAuth.php
    │   │           │   │       Authorize.php
    │   │           │   │       EnsureEmailIsVerified.php
    │   │           │   │       RequirePassword.php
    │   │           │   │
    │   │           │   ├───Notifications
    │   │           │   │       ResetPassword.php
    │   │           │   │       VerifyEmail.php
    │   │           │   │
    │   │           │   └───Passwords
    │   │           │           CanResetPassword.php
    │   │           │           DatabaseTokenRepository.php
    │   │           │           PasswordBroker.php
    │   │           │           PasswordBrokerManager.php
    │   │           │           PasswordResetServiceProvider.php
    │   │           │           TokenRepositoryInterface.php
    │   │           │
    │   │           ├───Broadcasting
    │   │           │   │   BroadcastController.php
    │   │           │   │   BroadcastEvent.php
    │   │           │   │   BroadcastException.php
    │   │           │   │   BroadcastManager.php
    │   │           │   │   BroadcastServiceProvider.php
    │   │           │   │   Channel.php
    │   │           │   │   composer.json
    │   │           │   │   EncryptedPrivateChannel.php
    │   │           │   │   InteractsWithBroadcasting.php
    │   │           │   │   InteractsWithSockets.php
    │   │           │   │   LICENSE.md
    │   │           │   │   PendingBroadcast.php
    │   │           │   │   PresenceChannel.php
    │   │           │   │   PrivateChannel.php
    │   │           │   │
    │   │           │   └───Broadcasters
    │   │           │           AblyBroadcaster.php
    │   │           │           Broadcaster.php
    │   │           │           LogBroadcaster.php
    │   │           │           NullBroadcaster.php
    │   │           │           PusherBroadcaster.php
    │   │           │           RedisBroadcaster.php
    │   │           │           UsePusherChannelConventions.php
    │   │           │
    │   │           ├───Bus
    │   │           │   │   Batch.php
    │   │           │   │   Batchable.php
    │   │           │   │   BatchFactory.php
    │   │           │   │   BatchRepository.php
    │   │           │   │   BusServiceProvider.php
    │   │           │   │   composer.json
    │   │           │   │   DatabaseBatchRepository.php
    │   │           │   │   Dispatcher.php
    │   │           │   │   LICENSE.md
    │   │           │   │   PendingBatch.php
    │   │           │   │   PrunableBatchRepository.php
    │   │           │   │   Queueable.php
    │   │           │   │   UniqueLock.php
    │   │           │   │   UpdatedBatchJobCounts.php
    │   │           │   │
    │   │           │   └───Events
    │   │           │           BatchDispatched.php
    │   │           │
    │   │           ├───Cache
    │   │           │   │   ApcStore.php
    │   │           │   │   ApcWrapper.php
    │   │           │   │   ArrayLock.php
    │   │           │   │   ArrayStore.php
    │   │           │   │   CacheLock.php
    │   │           │   │   CacheManager.php
    │   │           │   │   CacheServiceProvider.php
    │   │           │   │   composer.json
    │   │           │   │   DatabaseLock.php
    │   │           │   │   DatabaseStore.php
    │   │           │   │   DynamoDbLock.php
    │   │           │   │   DynamoDbStore.php
    │   │           │   │   FileStore.php
    │   │           │   │   HasCacheLock.php
    │   │           │   │   LICENSE.md
    │   │           │   │   Lock.php
    │   │           │   │   LuaScripts.php
    │   │           │   │   MemcachedConnector.php
    │   │           │   │   MemcachedLock.php
    │   │           │   │   MemcachedStore.php
    │   │           │   │   NoLock.php
    │   │           │   │   NullStore.php
    │   │           │   │   PhpRedisLock.php
    │   │           │   │   RateLimiter.php
    │   │           │   │   RedisLock.php
    │   │           │   │   RedisStore.php
    │   │           │   │   RedisTaggedCache.php
    │   │           │   │   Repository.php
    │   │           │   │   RetrievesMultipleKeys.php
    │   │           │   │   TaggableStore.php
    │   │           │   │   TaggedCache.php
    │   │           │   │   TagSet.php
    │   │           │   │
    │   │           │   ├───Console
    │   │           │   │   │   CacheTableCommand.php
    │   │           │   │   │   ClearCommand.php
    │   │           │   │   │   ForgetCommand.php
    │   │           │   │   │
    │   │           │   │   └───stubs
    │   │           │   │           cache.stub
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       CacheEvent.php
    │   │           │   │       CacheHit.php
    │   │           │   │       CacheMissed.php
    │   │           │   │       KeyForgotten.php
    │   │           │   │       KeyWritten.php
    │   │           │   │
    │   │           │   └───RateLimiting
    │   │           │           GlobalLimit.php
    │   │           │           Limit.php
    │   │           │           Unlimited.php
    │   │           │
    │   │           ├───Collections
    │   │           │   │   Arr.php
    │   │           │   │   Collection.php
    │   │           │   │   composer.json
    │   │           │   │   Enumerable.php
    │   │           │   │   helpers.php
    │   │           │   │   HigherOrderCollectionProxy.php
    │   │           │   │   HigherOrderWhenProxy.php
    │   │           │   │   ItemNotFoundException.php
    │   │           │   │   LazyCollection.php
    │   │           │   │   LICENSE.md
    │   │           │   │   MultipleItemsFoundException.php
    │   │           │   │
    │   │           │   └───Traits
    │   │           │           EnumeratesValues.php
    │   │           │
    │   │           ├───Config
    │   │           │       composer.json
    │   │           │       LICENSE.md
    │   │           │       Repository.php
    │   │           │
    │   │           ├───Console
    │   │           │   │   Application.php
    │   │           │   │   BufferedConsoleOutput.php
    │   │           │   │   Command.php
    │   │           │   │   composer.json
    │   │           │   │   ConfirmableTrait.php
    │   │           │   │   GeneratorCommand.php
    │   │           │   │   LICENSE.md
    │   │           │   │   OutputStyle.php
    │   │           │   │   Parser.php
    │   │           │   │
    │   │           │   ├───Concerns
    │   │           │   │       CallsCommands.php
    │   │           │   │       CreatesMatchingTest.php
    │   │           │   │       HasParameters.php
    │   │           │   │       InteractsWithIO.php
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       ArtisanStarting.php
    │   │           │   │       CommandFinished.php
    │   │           │   │       CommandStarting.php
    │   │           │   │       ScheduledBackgroundTaskFinished.php
    │   │           │   │       ScheduledTaskFailed.php
    │   │           │   │       ScheduledTaskFinished.php
    │   │           │   │       ScheduledTaskSkipped.php
    │   │           │   │       ScheduledTaskStarting.php
    │   │           │   │
    │   │           │   └───Scheduling
    │   │           │           CacheAware.php
    │   │           │           CacheEventMutex.php
    │   │           │           CacheSchedulingMutex.php
    │   │           │           CallbackEvent.php
    │   │           │           CommandBuilder.php
    │   │           │           Event.php
    │   │           │           EventMutex.php
    │   │           │           ManagesFrequencies.php
    │   │           │           Schedule.php
    │   │           │           ScheduleClearCacheCommand.php
    │   │           │           ScheduleFinishCommand.php
    │   │           │           ScheduleListCommand.php
    │   │           │           ScheduleRunCommand.php
    │   │           │           ScheduleTestCommand.php
    │   │           │           ScheduleWorkCommand.php
    │   │           │           SchedulingMutex.php
    │   │           │
    │   │           ├───Container
    │   │           │       BoundMethod.php
    │   │           │       composer.json
    │   │           │       Container.php
    │   │           │       ContextualBindingBuilder.php
    │   │           │       EntryNotFoundException.php
    │   │           │       LICENSE.md
    │   │           │       RewindableGenerator.php
    │   │           │       Util.php
    │   │           │
    │   │           ├───Contracts
    │   │           │   │   composer.json
    │   │           │   │   LICENSE.md
    │   │           │   │
    │   │           │   ├───Auth
    │   │           │   │   │   Authenticatable.php
    │   │           │   │   │   CanResetPassword.php
    │   │           │   │   │   Factory.php
    │   │           │   │   │   Guard.php
    │   │           │   │   │   MustVerifyEmail.php
    │   │           │   │   │   PasswordBroker.php
    │   │           │   │   │   PasswordBrokerFactory.php
    │   │           │   │   │   StatefulGuard.php
    │   │           │   │   │   SupportsBasicAuth.php
    │   │           │   │   │   UserProvider.php
    │   │           │   │   │
    │   │           │   │   ├───Access
    │   │           │   │   │       Authorizable.php
    │   │           │   │   │       Gate.php
    │   │           │   │   │
    │   │           │   │   └───Middleware
    │   │           │   │           AuthenticatesRequests.php
    │   │           │   │
    │   │           │   ├───Broadcasting
    │   │           │   │       Broadcaster.php
    │   │           │   │       Factory.php
    │   │           │   │       HasBroadcastChannel.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
    │   │           │   │       CircularDependencyException.php
    │   │           │   │       Container.php
    │   │           │   │       ContextualBindingBuilder.php
    │   │           │   │
    │   │           │   ├───Cookie
    │   │           │   │       Factory.php
    │   │           │   │       QueueingFactory.php
    │   │           │   │
    │   │           │   ├───Database
    │   │           │   │   │   ModelIdentifier.php
    │   │           │   │   │
    │   │           │   │   ├───Eloquent
    │   │           │   │   │       Castable.php
    │   │           │   │   │       CastsAttributes.php
    │   │           │   │   │       CastsInboundAttributes.php
    │   │           │   │   │       DeviatesCastableAttributes.php
    │   │           │   │   │       SerializesCastableAttributes.php
    │   │           │   │   │       SupportsPartialRelations.php
    │   │           │   │   │
    │   │           │   │   └───Events
    │   │           │   │           MigrationEvent.php
    │   │           │   │
    │   │           │   ├───Debug
    │   │           │   │       ExceptionHandler.php
    │   │           │   │
    │   │           │   ├───Encryption
    │   │           │   │       DecryptException.php
    │   │           │   │       Encrypter.php
    │   │           │   │       EncryptException.php
    │   │           │   │       StringEncrypter.php
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       Dispatcher.php
    │   │           │   │
    │   │           │   ├───Filesystem
    │   │           │   │       Cloud.php
    │   │           │   │       Factory.php
    │   │           │   │       FileExistsException.php
    │   │           │   │       FileNotFoundException.php
    │   │           │   │       Filesystem.php
    │   │           │   │       LockTimeoutException.php
    │   │           │   │
    │   │           │   ├───Foundation
    │   │           │   │       Application.php
    │   │           │   │       CachesConfiguration.php
    │   │           │   │       CachesRoutes.php
    │   │           │   │
    │   │           │   ├───Hashing
    │   │           │   │       Hasher.php
    │   │           │   │
    │   │           │   ├───Http
    │   │           │   │       Kernel.php
    │   │           │   │
    │   │           │   ├───Mail
    │   │           │   │       Factory.php
    │   │           │   │       Mailable.php
    │   │           │   │       Mailer.php
    │   │           │   │       MailQueue.php
    │   │           │   │
    │   │           │   ├───Notifications
    │   │           │   │       Dispatcher.php
    │   │           │   │       Factory.php
    │   │           │   │
    │   │           │   ├───Pagination
    │   │           │   │       CursorPaginator.php
    │   │           │   │       LengthAwarePaginator.php
    │   │           │   │       Paginator.php
    │   │           │   │
    │   │           │   ├───Pipeline
    │   │           │   │       Hub.php
    │   │           │   │       Pipeline.php
    │   │           │   │
    │   │           │   ├───Queue
    │   │           │   │       ClearableQueue.php
    │   │           │   │       EntityNotFoundException.php
    │   │           │   │       EntityResolver.php
    │   │           │   │       Factory.php
    │   │           │   │       Job.php
    │   │           │   │       Monitor.php
    │   │           │   │       Queue.php
    │   │           │   │       QueueableCollection.php
    │   │           │   │       QueueableEntity.php
    │   │           │   │       ShouldBeEncrypted.php
    │   │           │   │       ShouldBeUnique.php
    │   │           │   │       ShouldBeUniqueUntilProcessing.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
    │   │           │   │       CanBeEscapedWhenCastToString.php
    │   │           │   │       DeferrableProvider.php
    │   │           │   │       DeferringDisplayableValue.php
    │   │           │   │       Htmlable.php
    │   │           │   │       Jsonable.php
    │   │           │   │       MessageBag.php
    │   │           │   │       MessageProvider.php
    │   │           │   │       Renderable.php
    │   │           │   │       Responsable.php
    │   │           │   │       ValidatedData.php
    │   │           │   │
    │   │           │   ├───Translation
    │   │           │   │       HasLocalePreference.php
    │   │           │   │       Loader.php
    │   │           │   │       Translator.php
    │   │           │   │
    │   │           │   ├───Validation
    │   │           │   │       DataAwareRule.php
    │   │           │   │       Factory.php
    │   │           │   │       ImplicitRule.php
    │   │           │   │       Rule.php
    │   │           │   │       UncompromisedVerifier.php
    │   │           │   │       ValidatesWhenResolved.php
    │   │           │   │       Validator.php
    │   │           │   │       ValidatorAwareRule.php
    │   │           │   │
    │   │           │   └───View
    │   │           │           Engine.php
    │   │           │           Factory.php
    │   │           │           View.php
    │   │           │
    │   │           ├───Cookie
    │   │           │   │   composer.json
    │   │           │   │   CookieJar.php
    │   │           │   │   CookieServiceProvider.php
    │   │           │   │   CookieValuePrefix.php
    │   │           │   │   LICENSE.md
    │   │           │   │
    │   │           │   └───Middleware
    │   │           │           AddQueuedCookiesToResponse.php
    │   │           │           EncryptCookies.php
    │   │           │
    │   │           ├───Database
    │   │           │   │   ClassMorphViolationException.php
    │   │           │   │   composer.json
    │   │           │   │   ConfigurationUrlParser.php
    │   │           │   │   Connection.php
    │   │           │   │   ConnectionInterface.php
    │   │           │   │   ConnectionResolver.php
    │   │           │   │   ConnectionResolverInterface.php
    │   │           │   │   DatabaseManager.php
    │   │           │   │   DatabaseServiceProvider.php
    │   │           │   │   DatabaseTransactionRecord.php
    │   │           │   │   DatabaseTransactionsManager.php
    │   │           │   │   DetectsConcurrencyErrors.php
    │   │           │   │   DetectsLostConnections.php
    │   │           │   │   Grammar.php
    │   │           │   │   LazyLoadingViolationException.php
    │   │           │   │   LICENSE.md
    │   │           │   │   MigrationServiceProvider.php
    │   │           │   │   MultipleRecordsFoundException.php
    │   │           │   │   MySqlConnection.php
    │   │           │   │   PostgresConnection.php
    │   │           │   │   QueryException.php
    │   │           │   │   README.md
    │   │           │   │   RecordsNotFoundException.php
    │   │           │   │   Seeder.php
    │   │           │   │   SQLiteConnection.php
    │   │           │   │   SqlServerConnection.php
    │   │           │   │
    │   │           │   ├───Capsule
    │   │           │   │       Manager.php
    │   │           │   │
    │   │           │   ├───Concerns
    │   │           │   │       BuildsQueries.php
    │   │           │   │       ExplainsQueries.php
    │   │           │   │       ManagesTransactions.php
    │   │           │   │
    │   │           │   ├───Connectors
    │   │           │   │       ConnectionFactory.php
    │   │           │   │       Connector.php
    │   │           │   │       ConnectorInterface.php
    │   │           │   │       MySqlConnector.php
    │   │           │   │       PostgresConnector.php
    │   │           │   │       SQLiteConnector.php
    │   │           │   │       SqlServerConnector.php
    │   │           │   │
    │   │           │   ├───Console
    │   │           │   │   │   DbCommand.php
    │   │           │   │   │   DumpCommand.php
    │   │           │   │   │   PruneCommand.php
    │   │           │   │   │   WipeCommand.php
    │   │           │   │   │
    │   │           │   │   ├───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
    │   │           │   │
    │   │           │   ├───DBAL
    │   │           │   │       TimestampType.php
    │   │           │   │
    │   │           │   ├───Eloquent
    │   │           │   │   │   BroadcastableModelEventOccurred.php
    │   │           │   │   │   BroadcastsEvents.php
    │   │           │   │   │   Builder.php
    │   │           │   │   │   Collection.php
    │   │           │   │   │   HigherOrderBuilderProxy.php
    │   │           │   │   │   InvalidCastException.php
    │   │           │   │   │   JsonEncodingException.php
    │   │           │   │   │   MassAssignmentException.php
    │   │           │   │   │   MassPrunable.php
    │   │           │   │   │   Model.php
    │   │           │   │   │   ModelNotFoundException.php
    │   │           │   │   │   Prunable.php
    │   │           │   │   │   QueueEntityResolver.php
    │   │           │   │   │   RelationNotFoundException.php
    │   │           │   │   │   Scope.php
    │   │           │   │   │   SoftDeletes.php
    │   │           │   │   │   SoftDeletingScope.php
    │   │           │   │   │
    │   │           │   │   ├───Casts
    │   │           │   │   │       ArrayObject.php
    │   │           │   │   │       AsArrayObject.php
    │   │           │   │   │       AsCollection.php
    │   │           │   │   │       AsEncryptedArrayObject.php
    │   │           │   │   │       AsEncryptedCollection.php
    │   │           │   │   │       AsStringable.php
    │   │           │   │   │       Attribute.php
    │   │           │   │   │
    │   │           │   │   ├───Concerns
    │   │           │   │   │       GuardsAttributes.php
    │   │           │   │   │       HasAttributes.php
    │   │           │   │   │       HasEvents.php
    │   │           │   │   │       HasGlobalScopes.php
    │   │           │   │   │       HasRelationships.php
    │   │           │   │   │       HasTimestamps.php
    │   │           │   │   │       HidesAttributes.php
    │   │           │   │   │       QueriesRelationships.php
    │   │           │   │   │
    │   │           │   │   ├───Factories
    │   │           │   │   │       BelongsToManyRelationship.php
    │   │           │   │   │       BelongsToRelationship.php
    │   │           │   │   │       CrossJoinSequence.php
    │   │           │   │   │       Factory.php
    │   │           │   │   │       HasFactory.php
    │   │           │   │   │       Relationship.php
    │   │           │   │   │       Sequence.php
    │   │           │   │   │
    │   │           │   │   └───Relations
    │   │           │   │       │   BelongsTo.php
    │   │           │   │       │   BelongsToMany.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
    │   │           │   │       │
    │   │           │   │       └───Concerns
    │   │           │   │               AsPivot.php
    │   │           │   │               CanBeOneOfMany.php
    │   │           │   │               ComparesRelatedModels.php
    │   │           │   │               InteractsWithDictionary.php
    │   │           │   │               InteractsWithPivotTable.php
    │   │           │   │               SupportsDefaultModels.php
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       ConnectionEvent.php
    │   │           │   │       DatabaseRefreshed.php
    │   │           │   │       MigrationEnded.php
    │   │           │   │       MigrationEvent.php
    │   │           │   │       MigrationsEnded.php
    │   │           │   │       MigrationsEvent.php
    │   │           │   │       MigrationsStarted.php
    │   │           │   │       MigrationStarted.php
    │   │           │   │       ModelsPruned.php
    │   │           │   │       NoPendingMigrations.php
    │   │           │   │       QueryExecuted.php
    │   │           │   │       SchemaDumped.php
    │   │           │   │       SchemaLoaded.php
    │   │           │   │       StatementPrepared.php
    │   │           │   │       TransactionBeginning.php
    │   │           │   │       TransactionCommitted.php
    │   │           │   │       TransactionRolledBack.php
    │   │           │   │
    │   │           │   ├───Migrations
    │   │           │   │   │   DatabaseMigrationRepository.php
    │   │           │   │   │   Migration.php
    │   │           │   │   │   MigrationCreator.php
    │   │           │   │   │   MigrationRepositoryInterface.php
    │   │           │   │   │   Migrator.php
    │   │           │   │   │
    │   │           │   │   └───stubs
    │   │           │   │           migration.create.stub
    │   │           │   │           migration.stub
    │   │           │   │           migration.update.stub
    │   │           │   │
    │   │           │   ├───PDO
    │   │           │   │   │   Connection.php
    │   │           │   │   │   MySqlDriver.php
    │   │           │   │   │   PostgresDriver.php
    │   │           │   │   │   SQLiteDriver.php
    │   │           │   │   │   SqlServerConnection.php
    │   │           │   │   │   SqlServerDriver.php
    │   │           │   │   │
    │   │           │   │   └───Concerns
    │   │           │   │           ConnectsToDatabase.php
    │   │           │   │
    │   │           │   ├───Query
    │   │           │   │   │   Builder.php
    │   │           │   │   │   Expression.php
    │   │           │   │   │   JoinClause.php
    │   │           │   │   │
    │   │           │   │   ├───Grammars
    │   │           │   │   │       Grammar.php
    │   │           │   │   │       MySqlGrammar.php
    │   │           │   │   │       PostgresGrammar.php
    │   │           │   │   │       SQLiteGrammar.php
    │   │           │   │   │       SqlServerGrammar.php
    │   │           │   │   │
    │   │           │   │   └───Processors
    │   │           │   │           MySqlProcessor.php
    │   │           │   │           PostgresProcessor.php
    │   │           │   │           Processor.php
    │   │           │   │           SQLiteProcessor.php
    │   │           │   │           SqlServerProcessor.php
    │   │           │   │
    │   │           │   └───Schema
    │   │           │       │   Blueprint.php
    │   │           │       │   Builder.php
    │   │           │       │   ColumnDefinition.php
    │   │           │       │   ForeignIdColumnDefinition.php
    │   │           │       │   ForeignKeyDefinition.php
    │   │           │       │   MySqlBuilder.php
    │   │           │       │   MySqlSchemaState.php
    │   │           │       │   PostgresBuilder.php
    │   │           │       │   PostgresSchemaState.php
    │   │           │       │   SchemaState.php
    │   │           │       │   SQLiteBuilder.php
    │   │           │       │   SqliteSchemaState.php
    │   │           │       │   SqlServerBuilder.php
    │   │           │       │
    │   │           │       └───Grammars
    │   │           │               ChangeColumn.php
    │   │           │               Grammar.php
    │   │           │               MySqlGrammar.php
    │   │           │               PostgresGrammar.php
    │   │           │               RenameColumn.php
    │   │           │               SQLiteGrammar.php
    │   │           │               SqlServerGrammar.php
    │   │           │
    │   │           ├───Encryption
    │   │           │       composer.json
    │   │           │       Encrypter.php
    │   │           │       EncryptionServiceProvider.php
    │   │           │       LICENSE.md
    │   │           │       MissingAppKeyException.php
    │   │           │
    │   │           ├───Events
    │   │           │       CallQueuedListener.php
    │   │           │       composer.json
    │   │           │       Dispatcher.php
    │   │           │       EventServiceProvider.php
    │   │           │       functions.php
    │   │           │       InvokeQueuedClosure.php
    │   │           │       LICENSE.md
    │   │           │       NullDispatcher.php
    │   │           │       QueuedClosure.php
    │   │           │
    │   │           ├───Filesystem
    │   │           │       Cache.php
    │   │           │       composer.json
    │   │           │       Filesystem.php
    │   │           │       FilesystemAdapter.php
    │   │           │       FilesystemManager.php
    │   │           │       FilesystemServiceProvider.php
    │   │           │       LICENSE.md
    │   │           │       LockableFile.php
    │   │           │
    │   │           ├───Foundation
    │   │           │   │   AliasLoader.php
    │   │           │   │   Application.php
    │   │           │   │   ComposerScripts.php
    │   │           │   │   EnvironmentDetector.php
    │   │           │   │   helpers.php
    │   │           │   │   Inspiring.php
    │   │           │   │   Mix.php
    │   │           │   │   PackageManifest.php
    │   │           │   │   ProviderRepository.php
    │   │           │   │
    │   │           │   ├───Auth
    │   │           │   │   │   EmailVerificationRequest.php
    │   │           │   │   │   User.php
    │   │           │   │   │
    │   │           │   │   └───Access
    │   │           │   │           Authorizable.php
    │   │           │   │           AuthorizesRequests.php
    │   │           │   │
    │   │           │   ├───Bootstrap
    │   │           │   │       BootProviders.php
    │   │           │   │       HandleExceptions.php
    │   │           │   │       LoadConfiguration.php
    │   │           │   │       LoadEnvironmentVariables.php
    │   │           │   │       RegisterFacades.php
    │   │           │   │       RegisterProviders.php
    │   │           │   │       SetRequestForConsole.php
    │   │           │   │
    │   │           │   ├───Bus
    │   │           │   │       Dispatchable.php
    │   │           │   │       DispatchesJobs.php
    │   │           │   │       PendingChain.php
    │   │           │   │       PendingClosureDispatch.php
    │   │           │   │       PendingDispatch.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
    │   │           │   │   │   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
    │   │           │   │           maintenance-mode.stub
    │   │           │   │           markdown-mail.stub
    │   │           │   │           markdown-notification.stub
    │   │           │   │           markdown.stub
    │   │           │   │           model.pivot.stub
    │   │           │   │           model.stub
    │   │           │   │           notification.stub
    │   │           │   │           observer.plain.stub
    │   │           │   │           observer.stub
    │   │           │   │           pest.stub
    │   │           │   │           pest.unit.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
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       DiscoverEvents.php
    │   │           │   │       Dispatchable.php
    │   │           │   │       LocaleUpdated.php
    │   │           │   │       MaintenanceModeDisabled.php
    │   │           │   │       MaintenanceModeEnabled.php
    │   │           │   │
    │   │           │   ├───Exceptions
    │   │           │   │   │   Handler.php
    │   │           │   │   │   RegisterErrorViewPaths.php
    │   │           │   │   │   ReportableHandler.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
    │   │           │   │   │   FormRequest.php
    │   │           │   │   │   Kernel.php
    │   │           │   │   │   MaintenanceModeBypassCookie.php
    │   │           │   │   │
    │   │           │   │   ├───Events
    │   │           │   │   │       RequestHandled.php
    │   │           │   │   │
    │   │           │   │   ├───Exceptions
    │   │           │   │   │       MaintenanceModeException.php
    │   │           │   │   │
    │   │           │   │   └───Middleware
    │   │           │   │           CheckForMaintenanceMode.php
    │   │           │   │           ConvertEmptyStringsToNull.php
    │   │           │   │           PreventRequestsDuringMaintenance.php
    │   │           │   │           TransformsRequest.php
    │   │           │   │           TrimStrings.php
    │   │           │   │           ValidatePostSize.php
    │   │           │   │           VerifyCsrfToken.php
    │   │           │   │
    │   │           │   ├───Providers
    │   │           │   │       ArtisanServiceProvider.php
    │   │           │   │       ComposerServiceProvider.php
    │   │           │   │       ConsoleSupportServiceProvider.php
    │   │           │   │       FormRequestServiceProvider.php
    │   │           │   │       FoundationServiceProvider.php
    │   │           │   │
    │   │           │   ├───stubs
    │   │           │   │       facade.stub
    │   │           │   │
    │   │           │   ├───Support
    │   │           │   │   └───Providers
    │   │           │   │           AuthServiceProvider.php
    │   │           │   │           EventServiceProvider.php
    │   │           │   │           RouteServiceProvider.php
    │   │           │   │
    │   │           │   ├───Testing
    │   │           │   │   │   DatabaseMigrations.php
    │   │           │   │   │   DatabaseTransactions.php
    │   │           │   │   │   LazilyRefreshDatabase.php
    │   │           │   │   │   RefreshDatabase.php
    │   │           │   │   │   RefreshDatabaseState.php
    │   │           │   │   │   TestCase.php
    │   │           │   │   │   WithFaker.php
    │   │           │   │   │   WithoutEvents.php
    │   │           │   │   │   WithoutMiddleware.php
    │   │           │   │   │   Wormhole.php
    │   │           │   │   │
    │   │           │   │   ├───Concerns
    │   │           │   │   │       InteractsWithAuthentication.php
    │   │           │   │   │       InteractsWithConsole.php
    │   │           │   │   │       InteractsWithContainer.php
    │   │           │   │   │       InteractsWithDatabase.php
    │   │           │   │   │       InteractsWithDeprecationHandling.php
    │   │           │   │   │       InteractsWithExceptionHandling.php
    │   │           │   │   │       InteractsWithRedis.php
    │   │           │   │   │       InteractsWithSession.php
    │   │           │   │   │       InteractsWithTime.php
    │   │           │   │   │       InteractsWithViews.php
    │   │           │   │   │       MakesHttpRequests.php
    │   │           │   │   │       MocksApplicationServices.php
    │   │           │   │   │
    │   │           │   │   └───Traits
    │   │           │   │           CanConfigureMigrationCommands.php
    │   │           │   │
    │   │           │   └───Validation
    │   │           │           ValidatesRequests.php
    │   │           │
    │   │           ├───Hashing
    │   │           │       AbstractHasher.php
    │   │           │       Argon2IdHasher.php
    │   │           │       ArgonHasher.php
    │   │           │       BcryptHasher.php
    │   │           │       composer.json
    │   │           │       HashManager.php
    │   │           │       HashServiceProvider.php
    │   │           │       LICENSE.md
    │   │           │
    │   │           ├───Http
    │   │           │   │   composer.json
    │   │           │   │   File.php
    │   │           │   │   FileHelpers.php
    │   │           │   │   JsonResponse.php
    │   │           │   │   LICENSE.md
    │   │           │   │   RedirectResponse.php
    │   │           │   │   Request.php
    │   │           │   │   Response.php
    │   │           │   │   ResponseTrait.php
    │   │           │   │   UploadedFile.php
    │   │           │   │
    │   │           │   ├───Client
    │   │           │   │   │   ConnectionException.php
    │   │           │   │   │   Factory.php
    │   │           │   │   │   HttpClientException.php
    │   │           │   │   │   PendingRequest.php
    │   │           │   │   │   Pool.php
    │   │           │   │   │   Request.php
    │   │           │   │   │   RequestException.php
    │   │           │   │   │   Response.php
    │   │           │   │   │   ResponseSequence.php
    │   │           │   │   │
    │   │           │   │   └───Events
    │   │           │   │           ConnectionFailed.php
    │   │           │   │           RequestSending.php
    │   │           │   │           ResponseReceived.php
    │   │           │   │
    │   │           │   ├───Concerns
    │   │           │   │       InteractsWithContentTypes.php
    │   │           │   │       InteractsWithFlashData.php
    │   │           │   │       InteractsWithInput.php
    │   │           │   │
    │   │           │   ├───Exceptions
    │   │           │   │       HttpResponseException.php
    │   │           │   │       PostTooLargeException.php
    │   │           │   │       ThrottleRequestsException.php
    │   │           │   │
    │   │           │   ├───Middleware
    │   │           │   │       CheckResponseForModifications.php
    │   │           │   │       FrameGuard.php
    │   │           │   │       SetCacheHeaders.php
    │   │           │   │       TrustHosts.php
    │   │           │   │       TrustProxies.php
    │   │           │   │
    │   │           │   ├───Resources
    │   │           │   │   │   CollectsResources.php
    │   │           │   │   │   ConditionallyLoadsAttributes.php
    │   │           │   │   │   DelegatesToResource.php
    │   │           │   │   │   MergeValue.php
    │   │           │   │   │   MissingValue.php
    │   │           │   │   │   PotentiallyMissing.php
    │   │           │   │   │
    │   │           │   │   └───Json
    │   │           │   │           AnonymousResourceCollection.php
    │   │           │   │           JsonResource.php
    │   │           │   │           PaginatedResourceResponse.php
    │   │           │   │           ResourceCollection.php
    │   │           │   │           ResourceResponse.php
    │   │           │   │
    │   │           │   └───Testing
    │   │           │           File.php
    │   │           │           FileFactory.php
    │   │           │           MimeType.php
    │   │           │
    │   │           ├───Log
    │   │           │   │   composer.json
    │   │           │   │   LICENSE.md
    │   │           │   │   Logger.php
    │   │           │   │   LogManager.php
    │   │           │   │   LogServiceProvider.php
    │   │           │   │   ParsesLogConfiguration.php
    │   │           │   │
    │   │           │   └───Events
    │   │           │           MessageLogged.php
    │   │           │
    │   │           ├───Macroable
    │   │           │   │   composer.json
    │   │           │   │   LICENSE.md
    │   │           │   │
    │   │           │   └───Traits
    │   │           │           Macroable.php
    │   │           │
    │   │           ├───Mail
    │   │           │   │   composer.json
    │   │           │   │   LICENSE.md
    │   │           │   │   Mailable.php
    │   │           │   │   Mailer.php
    │   │           │   │   MailManager.php
    │   │           │   │   MailServiceProvider.php
    │   │           │   │   Markdown.php
    │   │           │   │   Message.php
    │   │           │   │   PendingMail.php
    │   │           │   │   SendQueuedMailable.php
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       MessageSending.php
    │   │           │   │       MessageSent.php
    │   │           │   │
    │   │           │   ├───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
    │   │           │   │
    │   │           │   └───Transport
    │   │           │           ArrayTransport.php
    │   │           │           LogTransport.php
    │   │           │           MailgunTransport.php
    │   │           │           SesTransport.php
    │   │           │           Transport.php
    │   │           │
    │   │           ├───Notifications
    │   │           │   │   Action.php
    │   │           │   │   AnonymousNotifiable.php
    │   │           │   │   ChannelManager.php
    │   │           │   │   composer.json
    │   │           │   │   DatabaseNotification.php
    │   │           │   │   DatabaseNotificationCollection.php
    │   │           │   │   HasDatabaseNotifications.php
    │   │           │   │   LICENSE.md
    │   │           │   │   Notifiable.php
    │   │           │   │   Notification.php
    │   │           │   │   NotificationSender.php
    │   │           │   │   NotificationServiceProvider.php
    │   │           │   │   RoutesNotifications.php
    │   │           │   │   SendQueuedNotifications.php
    │   │           │   │
    │   │           │   ├───Channels
    │   │           │   │       BroadcastChannel.php
    │   │           │   │       DatabaseChannel.php
    │   │           │   │       MailChannel.php
    │   │           │   │
    │   │           │   ├───Console
    │   │           │   │   │   NotificationTableCommand.php
    │   │           │   │   │
    │   │           │   │   └───stubs
    │   │           │   │           notifications.stub
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       BroadcastNotificationCreated.php
    │   │           │   │       NotificationFailed.php
    │   │           │   │       NotificationSending.php
    │   │           │   │       NotificationSent.php
    │   │           │   │
    │   │           │   ├───Messages
    │   │           │   │       BroadcastMessage.php
    │   │           │   │       DatabaseMessage.php
    │   │           │   │       MailMessage.php
    │   │           │   │       SimpleMessage.php
    │   │           │   │
    │   │           │   └───resources
    │   │           │       └───views
    │   │           │               email.blade.php
    │   │           │
    │   │           ├───Pagination
    │   │           │   │   AbstractCursorPaginator.php
    │   │           │   │   AbstractPaginator.php
    │   │           │   │   composer.json
    │   │           │   │   Cursor.php
    │   │           │   │   CursorPaginationException.php
    │   │           │   │   CursorPaginator.php
    │   │           │   │   LengthAwarePaginator.php
    │   │           │   │   LICENSE.md
    │   │           │   │   PaginationServiceProvider.php
    │   │           │   │   PaginationState.php
    │   │           │   │   Paginator.php
    │   │           │   │   UrlWindow.php
    │   │           │   │
    │   │           │   └───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
    │   │           │       composer.json
    │   │           │       Hub.php
    │   │           │       LICENSE.md
    │   │           │       Pipeline.php
    │   │           │       PipelineServiceProvider.php
    │   │           │
    │   │           ├───Queue
    │   │           │   │   BeanstalkdQueue.php
    │   │           │   │   CallQueuedClosure.php
    │   │           │   │   CallQueuedHandler.php
    │   │           │   │   composer.json
    │   │           │   │   DatabaseQueue.php
    │   │           │   │   InteractsWithQueue.php
    │   │           │   │   InvalidPayloadException.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
    │   │           │   │   SerializableClosureFactory.php
    │   │           │   │   SerializesAndRestoresModelIdentifiers.php
    │   │           │   │   SerializesModels.php
    │   │           │   │   SqsQueue.php
    │   │           │   │   SyncQueue.php
    │   │           │   │   Worker.php
    │   │           │   │   WorkerOptions.php
    │   │           │   │
    │   │           │   ├───Capsule
    │   │           │   │       Manager.php
    │   │           │   │
    │   │           │   ├───Connectors
    │   │           │   │       BeanstalkdConnector.php
    │   │           │   │       ConnectorInterface.php
    │   │           │   │       DatabaseConnector.php
    │   │           │   │       NullConnector.php
    │   │           │   │       RedisConnector.php
    │   │           │   │       SqsConnector.php
    │   │           │   │       SyncConnector.php
    │   │           │   │
    │   │           │   ├───Console
    │   │           │   │   │   BatchesTableCommand.php
    │   │           │   │   │   ClearCommand.php
    │   │           │   │   │   FailedTableCommand.php
    │   │           │   │   │   FlushFailedCommand.php
    │   │           │   │   │   ForgetFailedCommand.php
    │   │           │   │   │   ListenCommand.php
    │   │           │   │   │   ListFailedCommand.php
    │   │           │   │   │   MonitorCommand.php
    │   │           │   │   │   PruneBatchesCommand.php
    │   │           │   │   │   PruneFailedJobsCommand.php
    │   │           │   │   │   RestartCommand.php
    │   │           │   │   │   RetryBatchCommand.php
    │   │           │   │   │   RetryCommand.php
    │   │           │   │   │   TableCommand.php
    │   │           │   │   │   WorkCommand.php
    │   │           │   │   │
    │   │           │   │   └───stubs
    │   │           │   │           batches.stub
    │   │           │   │           failed_jobs.stub
    │   │           │   │           jobs.stub
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       JobExceptionOccurred.php
    │   │           │   │       JobFailed.php
    │   │           │   │       JobProcessed.php
    │   │           │   │       JobProcessing.php
    │   │           │   │       JobQueued.php
    │   │           │   │       JobRetryRequested.php
    │   │           │   │       Looping.php
    │   │           │   │       QueueBusy.php
    │   │           │   │       WorkerStopping.php
    │   │           │   │
    │   │           │   ├───Failed
    │   │           │   │       DatabaseFailedJobProvider.php
    │   │           │   │       DatabaseUuidFailedJobProvider.php
    │   │           │   │       DynamoDbFailedJobProvider.php
    │   │           │   │       FailedJobProviderInterface.php
    │   │           │   │       NullFailedJobProvider.php
    │   │           │   │       PrunableFailedJobProvider.php
    │   │           │   │
    │   │           │   ├───Jobs
    │   │           │   │       BeanstalkdJob.php
    │   │           │   │       DatabaseJob.php
    │   │           │   │       DatabaseJobRecord.php
    │   │           │   │       Job.php
    │   │           │   │       JobName.php
    │   │           │   │       RedisJob.php
    │   │           │   │       SqsJob.php
    │   │           │   │       SyncJob.php
    │   │           │   │
    │   │           │   └───Middleware
    │   │           │           RateLimited.php
    │   │           │           RateLimitedWithRedis.php
    │   │           │           ThrottlesExceptions.php
    │   │           │           ThrottlesExceptionsWithRedis.php
    │   │           │           WithoutOverlapping.php
    │   │           │
    │   │           ├───Redis
    │   │           │   │   composer.json
    │   │           │   │   LICENSE.md
    │   │           │   │   RedisManager.php
    │   │           │   │   RedisServiceProvider.php
    │   │           │   │
    │   │           │   ├───Connections
    │   │           │   │       Connection.php
    │   │           │   │       PacksPhpRedisValues.php
    │   │           │   │       PhpRedisClusterConnection.php
    │   │           │   │       PhpRedisConnection.php
    │   │           │   │       PredisClusterConnection.php
    │   │           │   │       PredisConnection.php
    │   │           │   │
    │   │           │   ├───Connectors
    │   │           │   │       PhpRedisConnector.php
    │   │           │   │       PredisConnector.php
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       CommandExecuted.php
    │   │           │   │
    │   │           │   └───Limiters
    │   │           │           ConcurrencyLimiter.php
    │   │           │           ConcurrencyLimiterBuilder.php
    │   │           │           DurationLimiter.php
    │   │           │           DurationLimiterBuilder.php
    │   │           │
    │   │           ├───Routing
    │   │           │   │   AbstractRouteCollection.php
    │   │           │   │   CompiledRouteCollection.php
    │   │           │   │   composer.json
    │   │           │   │   Controller.php
    │   │           │   │   ControllerDispatcher.php
    │   │           │   │   ControllerMiddlewareOptions.php
    │   │           │   │   CreatesRegularExpressionRouteConstraints.php
    │   │           │   │   ImplicitRouteBinding.php
    │   │           │   │   LICENSE.md
    │   │           │   │   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
    │   │           │   │   Router.php
    │   │           │   │   RouteRegistrar.php
    │   │           │   │   RouteSignatureParameters.php
    │   │           │   │   RouteUri.php
    │   │           │   │   RouteUrlGenerator.php
    │   │           │   │   RoutingServiceProvider.php
    │   │           │   │   SortedMiddleware.php
    │   │           │   │   UrlGenerator.php
    │   │           │   │   ViewController.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
    │   │           │   │
    │   │           │   ├───Events
    │   │           │   │       RouteMatched.php
    │   │           │   │
    │   │           │   ├───Exceptions
    │   │           │   │       InvalidSignatureException.php
    │   │           │   │       UrlGenerationException.php
    │   │           │   │
    │   │           │   ├───Matching
    │   │           │   │       HostValidator.php
    │   │           │   │       MethodValidator.php
    │   │           │   │       SchemeValidator.php
    │   │           │   │       UriValidator.php
    │   │           │   │       ValidatorInterface.php
    │   │           │   │
    │   │           │   └───Middleware
    │   │           │           SubstituteBindings.php
    │   │           │           ThrottleRequests.php
    │   │           │           ThrottleRequestsWithRedis.php
    │   │           │           ValidateSignature.php
    │   │           │
    │   │           ├───Session
    │   │           │   │   ArraySessionHandler.php
    │   │           │   │   CacheBasedSessionHandler.php
    │   │           │   │   composer.json
    │   │           │   │   CookieSessionHandler.php
    │   │           │   │   DatabaseSessionHandler.php
    │   │           │   │   EncryptedStore.php
    │   │           │   │   ExistenceAwareInterface.php
    │   │           │   │   FileSessionHandler.php
    │   │           │   │   LICENSE.md
    │   │           │   │   NullSessionHandler.php
    │   │           │   │   SessionManager.php
    │   │           │   │   SessionServiceProvider.php
    │   │           │   │   Store.php
    │   │           │   │   TokenMismatchException.php
    │   │           │   │
    │   │           │   ├───Console
    │   │           │   │   │   SessionTableCommand.php
    │   │           │   │   │
    │   │           │   │   └───stubs
    │   │           │   │           database.stub
    │   │           │   │
    │   │           │   └───Middleware
    │   │           │           AuthenticateSession.php
    │   │           │           StartSession.php
    │   │           │
    │   │           ├───Support
    │   │           │   │   AggregateServiceProvider.php
    │   │           │   │   Carbon.php
    │   │           │   │   composer.json
    │   │           │   │   Composer.php
    │   │           │   │   ConfigurationUrlParser.php
    │   │           │   │   DateFactory.php
    │   │           │   │   Env.php
    │   │           │   │   Fluent.php
    │   │           │   │   helpers.php
    │   │           │   │   HigherOrderTapProxy.php
    │   │           │   │   HtmlString.php
    │   │           │   │   InteractsWithTime.php
    │   │           │   │   Js.php
    │   │           │   │   LICENSE.md
    │   │           │   │   Manager.php
    │   │           │   │   MessageBag.php
    │   │           │   │   MultipleInstanceManager.php
    │   │           │   │   NamespacedItemResolver.php
    │   │           │   │   Optional.php
    │   │           │   │   Pluralizer.php
    │   │           │   │   ProcessUtils.php
    │   │           │   │   Reflector.php
    │   │           │   │   ServiceProvider.php
    │   │           │   │   Str.php
    │   │           │   │   Stringable.php
    │   │           │   │   Timebox.php
    │   │           │   │   ValidatedInput.php
    │   │           │   │   ViewErrorBag.php
    │   │           │   │
    │   │           │   ├───Facades
    │   │           │   │       App.php
    │   │           │   │       Artisan.php
    │   │           │   │       Auth.php
    │   │           │   │       Blade.php
    │   │           │   │       Broadcast.php
    │   │           │   │       Bus.php
    │   │           │   │       Cache.php
    │   │           │   │       Config.php
    │   │           │   │       Cookie.php
    │   │           │   │       Crypt.php
    │   │           │   │       Date.php
    │   │           │   │       DB.php
    │   │           │   │       Event.php
    │   │           │   │       Facade.php
    │   │           │   │       File.php
    │   │           │   │       Gate.php
    │   │           │   │       Hash.php
    │   │           │   │       Http.php
    │   │           │   │       Lang.php
    │   │           │   │       Log.php
    │   │           │   │       Mail.php
    │   │           │   │       Notification.php
    │   │           │   │       ParallelTesting.php
    │   │           │   │       Password.php
    │   │           │   │       Queue.php
    │   │           │   │       RateLimiter.php
    │   │           │   │       Redirect.php
    │   │           │   │       Redis.php
    │   │           │   │       Request.php
    │   │           │   │       Response.php
    │   │           │   │       Route.php
    │   │           │   │       Schema.php
    │   │           │   │       Session.php
    │   │           │   │       Storage.php
    │   │           │   │       URL.php
    │   │           │   │       Validator.php
    │   │           │   │       View.php
    │   │           │   │
    │   │           │   ├───Testing
    │   │           │   │   └───Fakes
    │   │           │   │           BatchRepositoryFake.php
    │   │           │   │           BusFake.php
    │   │           │   │           EventFake.php
    │   │           │   │           MailFake.php
    │   │           │   │           NotificationFake.php
    │   │           │   │           PendingBatchFake.php
    │   │           │   │           PendingChainFake.php
    │   │           │   │           PendingMailFake.php
    │   │           │   │           QueueFake.php
    │   │           │   │
    │   │           │   └───Traits
    │   │           │           CapsuleManagerTrait.php
    │   │           │           Conditionable.php
    │   │           │           ForwardsCalls.php
    │   │           │           Localizable.php
    │   │           │           ReflectsClosures.php
    │   │           │           Tappable.php
    │   │           │
    │   │           ├───Testing
    │   │           │   │   Assert.php
    │   │           │   │   AssertableJsonString.php
    │   │           │   │   composer.json
    │   │           │   │   LICENSE.md
    │   │           │   │   LoggedExceptionCollection.php
    │   │           │   │   ParallelConsoleOutput.php
    │   │           │   │   ParallelRunner.php
    │   │           │   │   ParallelTesting.php
    │   │           │   │   ParallelTestingServiceProvider.php
    │   │           │   │   PendingCommand.php
    │   │           │   │   TestComponent.php
    │   │           │   │   TestResponse.php
    │   │           │   │   TestView.php
    │   │           │   │
    │   │           │   ├───Concerns
    │   │           │   │       TestDatabases.php
    │   │           │   │
    │   │           │   ├───Constraints
    │   │           │   │       ArraySubset.php
    │   │           │   │       CountInDatabase.php
    │   │           │   │       HasInDatabase.php
    │   │           │   │       NotSoftDeletedInDatabase.php
    │   │           │   │       SeeInOrder.php
    │   │           │   │       SoftDeletedInDatabase.php
    │   │           │   │
    │   │           │   └───Fluent
    │   │           │       │   AssertableJson.php
    │   │           │       │
    │   │           │       └───Concerns
    │   │           │               Debugging.php
    │   │           │               Has.php
    │   │           │               Interaction.php
    │   │           │               Matching.php
    │   │           │
    │   │           ├───Translation
    │   │           │       ArrayLoader.php
    │   │           │       composer.json
    │   │           │       FileLoader.php
    │   │           │       LICENSE.md
    │   │           │       MessageSelector.php
    │   │           │       TranslationServiceProvider.php
    │   │           │       Translator.php
    │   │           │
    │   │           ├───Validation
    │   │           │   │   ClosureValidationRule.php
    │   │           │   │   composer.json
    │   │           │   │   ConditionalRules.php
    │   │           │   │   DatabasePresenceVerifier.php
    │   │           │   │   DatabasePresenceVerifierInterface.php
    │   │           │   │   Factory.php
    │   │           │   │   LICENSE.md
    │   │           │   │   NotPwnedVerifier.php
    │   │           │   │   PresenceVerifierInterface.php
    │   │           │   │   Rule.php
    │   │           │   │   UnauthorizedException.php
    │   │           │   │   ValidatesWhenResolvedTrait.php
    │   │           │   │   ValidationData.php
    │   │           │   │   ValidationException.php
    │   │           │   │   ValidationRuleParser.php
    │   │           │   │   ValidationServiceProvider.php
    │   │           │   │   Validator.php
    │   │           │   │
    │   │           │   ├───Concerns
    │   │           │   │       FilterEmailValidation.php
    │   │           │   │       FormatsMessages.php
    │   │           │   │       ReplacesAttributes.php
    │   │           │   │       ValidatesAttributes.php
    │   │           │   │
    │   │           │   └───Rules
    │   │           │           DatabaseRule.php
    │   │           │           Dimensions.php
    │   │           │           Enum.php
    │   │           │           Exists.php
    │   │           │           In.php
    │   │           │           NotIn.php
    │   │           │           Password.php
    │   │           │           RequiredIf.php
    │   │           │           Unique.php
    │   │           │
    │   │           └───View
    │   │               │   AnonymousComponent.php
    │   │               │   AppendableAttributeValue.php
    │   │               │   Component.php
    │   │               │   ComponentAttributeBag.php
    │   │               │   ComponentSlot.php
    │   │               │   composer.json
    │   │               │   DynamicComponent.php
    │   │               │   Factory.php
    │   │               │   FileViewFinder.php
    │   │               │   InvokableComponentVariable.php
    │   │               │   LICENSE.md
    │   │               │   View.php
    │   │               │   ViewException.php
    │   │               │   ViewFinderInterface.php
    │   │               │   ViewName.php
    │   │               │   ViewServiceProvider.php
    │   │               │
    │   │               ├───Compilers
    │   │               │   │   BladeCompiler.php
    │   │               │   │   Compiler.php
    │   │               │   │   CompilerInterface.php
    │   │               │   │   ComponentTagCompiler.php
    │   │               │   │
    │   │               │   └───Concerns
    │   │               │           CompilesAuthorizations.php
    │   │               │           CompilesClasses.php
    │   │               │           CompilesComments.php
    │   │               │           CompilesComponents.php
    │   │               │           CompilesConditionals.php
    │   │               │           CompilesEchos.php
    │   │               │           CompilesErrors.php
    │   │               │           CompilesHelpers.php
    │   │               │           CompilesIncludes.php
    │   │               │           CompilesInjections.php
    │   │               │           CompilesJs.php
    │   │               │           CompilesJson.php
    │   │               │           CompilesLayouts.php
    │   │               │           CompilesLoops.php
    │   │               │           CompilesRawPhp.php
    │   │               │           CompilesStacks.php
    │   │               │           CompilesTranslations.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
    │   │               │
    │   │               └───Middleware
    │   │                       ShareErrorsFromSession.php
    │   │
    │   ├───sail
    │   │   │   composer.json
    │   │   │   LICENSE.md
    │   │   │   README.md
    │   │   │
    │   │   ├───bin
    │   │   │       sail
    │   │   │
    │   │   ├───database
    │   │   │   ├───mysql
    │   │   │   │       create-testing-database.sh
    │   │   │   │
    │   │   │   └───pgsql
    │   │   │           create-testing-database.sql
    │   │   │
    │   │   ├───runtimes
    │   │   │   ├───7.4
    │   │   │   │       Dockerfile
    │   │   │   │       php.ini
    │   │   │   │       start-container
    │   │   │   │       supervisord.conf
    │   │   │   │
    │   │   │   ├───8.0
    │   │   │   │       Dockerfile
    │   │   │   │       php.ini
    │   │   │   │       start-container
    │   │   │   │       supervisord.conf
    │   │   │   │
    │   │   │   ├───8.1
    │   │   │   │       Dockerfile
    │   │   │   │       php.ini
    │   │   │   │       start-container
    │   │   │   │       supervisord.conf
    │   │   │   │
    │   │   │   └───8.2
    │   │   │           Dockerfile
    │   │   │           php.ini
    │   │   │           start-container
    │   │   │           supervisord.conf
    │   │   │
    │   │   ├───src
    │   │   │   │   SailServiceProvider.php
    │   │   │   │
    │   │   │   └───Console
    │   │   │           InstallCommand.php
    │   │   │           PublishCommand.php
    │   │   │
    │   │   └───stubs
    │   │           devcontainer.stub
    │   │           docker-compose.stub
    │   │           mailpit.stub
    │   │           mariadb.stub
    │   │           meilisearch.stub
    │   │           memcached.stub
    │   │           minio.stub
    │   │           mysql.stub
    │   │           pgsql.stub
    │   │           redis.stub
    │   │           selenium.stub
    │   │
    │   ├───sanctum
    │   │   │   composer.json
    │   │   │   LICENSE.md
    │   │   │   README.md
    │   │   │
    │   │   ├───config
    │   │   │       sanctum.php
    │   │   │
    │   │   ├───database
    │   │   │   └───migrations
    │   │   │           2019_12_14_000001_create_personal_access_tokens_table.php
    │   │   │
    │   │   └───src
    │   │       │   Guard.php
    │   │       │   HasApiTokens.php
    │   │       │   NewAccessToken.php
    │   │       │   PersonalAccessToken.php
    │   │       │   Sanctum.php
    │   │       │   SanctumServiceProvider.php
    │   │       │   TransientToken.php
    │   │       │
    │   │       ├───Console
    │   │       │   └───Commands
    │   │       │           PruneExpired.php
    │   │       │
    │   │       ├───Contracts
    │   │       │       HasAbilities.php
    │   │       │       HasApiTokens.php
    │   │       │
    │   │       ├───Events
    │   │       │       TokenAuthenticated.php
    │   │       │
    │   │       ├───Exceptions
    │   │       │       MissingAbilityException.php
    │   │       │       MissingScopeException.php
    │   │       │
    │   │       └───Http
    │   │           ├───Controllers
    │   │           │       CsrfCookieController.php
    │   │           │
    │   │           └───Middleware
    │   │                   CheckAbilities.php
    │   │                   CheckForAnyAbility.php
    │   │                   CheckForAnyScope.php
    │   │                   CheckScopes.php
    │   │                   EnsureFrontendRequestsAreStateful.php
    │   │
    │   ├───serializable-closure
    │   │   │   composer.json
    │   │   │   LICENSE.md
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   SerializableClosure.php
    │   │       │   UnsignedSerializableClosure.php
    │   │       │
    │   │       ├───Contracts
    │   │       │       Serializable.php
    │   │       │       Signer.php
    │   │       │
    │   │       ├───Exceptions
    │   │       │       InvalidSignatureException.php
    │   │       │       MissingSecretKeyException.php
    │   │       │       PhpVersionNotSupportedException.php
    │   │       │
    │   │       ├───Serializers
    │   │       │       Native.php
    │   │       │       Signed.php
    │   │       │
    │   │       ├───Signers
    │   │       │       Hmac.php
    │   │       │
    │   │       └───Support
    │   │               ClosureScope.php
    │   │               ClosureStream.php
    │   │               ReflectionClosure.php
    │   │               SelfReference.php
    │   │
    │   ├───tinker
    │   │   │   composer.json
    │   │   │   LICENSE.md
    │   │   │   README.md
    │   │   │
    │   │   ├───config
    │   │   │       tinker.php
    │   │   │
    │   │   └───src
    │   │       │   ClassAliasAutoloader.php
    │   │       │   TinkerCaster.php
    │   │       │   TinkerServiceProvider.php
    │   │       │
    │   │       └───Console
    │   │               TinkerCommand.php
    │   │
    │   └───ui
    │       │   composer.json
    │       │   LICENSE.md
    │       │   README.md
    │       │
    │       ├───auth-backend
    │       │       AuthenticatesUsers.php
    │       │       ConfirmsPasswords.php
    │       │       RedirectsUsers.php
    │       │       RegistersUsers.php
    │       │       ResetsPasswords.php
    │       │       SendsPasswordResetEmails.php
    │       │       ThrottlesLogins.php
    │       │       VerifiesEmails.php
    │       │
    │       ├───src
    │       │   │   AuthCommand.php
    │       │   │   AuthRouteMethods.php
    │       │   │   ControllersCommand.php
    │       │   │   UiCommand.php
    │       │   │   UiServiceProvider.php
    │       │   │
    │       │   ├───Auth
    │       │   │   ├───bootstrap-stubs
    │       │   │   │   │   home.stub
    │       │   │   │   │
    │       │   │   │   ├───auth
    │       │   │   │   │   │   login.stub
    │       │   │   │   │   │   register.stub
    │       │   │   │   │   │   verify.stub
    │       │   │   │   │   │
    │       │   │   │   │   └───passwords
    │       │   │   │   │           confirm.stub
    │       │   │   │   │           email.stub
    │       │   │   │   │           reset.stub
    │       │   │   │   │
    │       │   │   │   └───layouts
    │       │   │   │           app.stub
    │       │   │   │
    │       │   │   └───stubs
    │       │   │       │   routes.stub
    │       │   │       │
    │       │   │       └───controllers
    │       │   │               HomeController.stub
    │       │   │
    │       │   └───Presets
    │       │       │   Bootstrap.php
    │       │       │   Preset.php
    │       │       │   React.php
    │       │       │   Vue.php
    │       │       │
    │       │       ├───bootstrap-stubs
    │       │       │       app.scss
    │       │       │       bootstrap.js
    │       │       │       webpack.mix.js
    │       │       │       _variables.scss
    │       │       │
    │       │       ├───react-stubs
    │       │       │       app.js
    │       │       │       Example.js
    │       │       │       webpack.mix.js
    │       │       │
    │       │       └───vue-stubs
    │       │               app.js
    │       │               ExampleComponent.vue
    │       │               webpack.mix.js
    │       │
    │       ├───stubs
    │       │   ├───Auth
    │       │   │       ConfirmPasswordController.stub
    │       │   │       ForgotPasswordController.stub
    │       │   │       LoginController.stub
    │       │   │       RegisterController.stub
    │       │   │       ResetPasswordController.stub
    │       │   │       VerificationController.stub
    │       │   │
    │       │   └───migrations
    │       │           2014_10_12_100000_create_password_resets_table.php
    │       │
    │       └───tests
    │           └───AuthBackend
    │                   AuthenticatesUsersTest.php
    │                   RegistersUsersTest.php
    │                   ThrottleLoginsTest.php
    │
    ├───lcobucci
    │   └───jwt
    │       │   .gitignore
    │       │   .scrutinizer.yml
    │       │   .travis.yml
    │       │   composer.json
    │       │   LICENSE
    │       │   phpunit.xml.dist
    │       │   README.md
    │       │
    │       ├───src
    │       │   │   Builder.php
    │       │   │   Claim.php
    │       │   │   Parser.php
    │       │   │   Signature.php
    │       │   │   Signer.php
    │       │   │   Token.php
    │       │   │   ValidationData.php
    │       │   │
    │       │   ├───Claim
    │       │   │       Basic.php
    │       │   │       EqualsTo.php
    │       │   │       Factory.php
    │       │   │       GreaterOrEqualsTo.php
    │       │   │       LesserOrEqualsTo.php
    │       │   │       Validatable.php
    │       │   │
    │       │   ├───Parsing
    │       │   │       Decoder.php
    │       │   │       Encoder.php
    │       │   │
    │       │   └───Signer
    │       │       │   BaseSigner.php
    │       │       │   Ecdsa.php
    │       │       │   Hmac.php
    │       │       │   Key.php
    │       │       │   Keychain.php
    │       │       │   OpenSSL.php
    │       │       │   Rsa.php
    │       │       │
    │       │       ├───Ecdsa
    │       │       │       MultibyteStringConverter.php
    │       │       │       Sha256.php
    │       │       │       Sha384.php
    │       │       │       Sha512.php
    │       │       │       SignatureConverter.php
    │       │       │
    │       │       ├───Hmac
    │       │       │       Sha256.php
    │       │       │       Sha384.php
    │       │       │       Sha512.php
    │       │       │
    │       │       └───Rsa
    │       │               Sha256.php
    │       │               Sha384.php
    │       │               Sha512.php
    │       │
    │       └───test
    │           ├───functional
    │           │   │   EcdsaTokenTest.php
    │           │   │   HmacTokenTest.php
    │           │   │   Keys.php
    │           │   │   RFC6978VectorTest.php
    │           │   │   RsaTokenTest.php
    │           │   │   UnsignedTokenTest.php
    │           │   │
    │           │   ├───ecdsa
    │           │   │       private.key
    │           │   │       private2.key
    │           │   │       public1.key
    │           │   │       public2.key
    │           │   │       public3.key
    │           │   │
    │           │   └───rsa
    │           │           encrypted-private.key
    │           │           encrypted-public.key
    │           │           private.key
    │           │           public.key
    │           │
    │           └───unit
    │               │   BuilderTest.php
    │               │   ParserTest.php
    │               │   SignatureTest.php
    │               │   TokenTest.php
    │               │   ValidationDataTest.php
    │               │
    │               ├───Claim
    │               │       BasicTest.php
    │               │       EqualsToTest.php
    │               │       FactoryTest.php
    │               │       GreaterOrEqualsToTest.php
    │               │       LesserOrEqualsToTest.php
    │               │
    │               ├───Parsing
    │               │       DecoderTest.php
    │               │       EncoderTest.php
    │               │
    │               └───Signer
    │                   │   BaseSignerTest.php
    │                   │   EcdsaTest.php
    │                   │   HmacTest.php
    │                   │   KeychainTest.php
    │                   │   KeyTest.php
    │                   │   RsaTest.php
    │                   │
    │                   ├───Ecdsa
    │                   │       MultibyteStringConverterTest.php
    │                   │       Sha256Test.php
    │                   │       Sha384Test.php
    │                   │       Sha512Test.php
    │                   │
    │                   ├───Hmac
    │                   │       Sha256Test.php
    │                   │       Sha384Test.php
    │                   │       Sha512Test.php
    │                   │
    │                   └───Rsa
    │                           Sha256Test.php
    │                           Sha384Test.php
    │                           Sha512Test.php
    │
    ├───league
    │   ├───commonmark
    │   │   │   .phpstorm.meta.php
    │   │   │   CHANGELOG-0.x.md
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───bin
    │   │   │       commonmark
    │   │   │
    │   │   └───src
    │   │       │   CommonMarkConverter.php
    │   │       │   ConfigurableEnvironmentInterface.php
    │   │       │   Context.php
    │   │       │   ContextInterface.php
    │   │       │   Converter.php
    │   │       │   ConverterInterface.php
    │   │       │   Cursor.php
    │   │       │   DocParser.php
    │   │       │   DocParserInterface.php
    │   │       │   ElementRendererInterface.php
    │   │       │   Environment.php
    │   │       │   EnvironmentAwareInterface.php
    │   │       │   EnvironmentInterface.php
    │   │       │   GithubFlavoredMarkdownConverter.php
    │   │       │   HtmlElement.php
    │   │       │   HtmlRenderer.php
    │   │       │   InlineParserContext.php
    │   │       │   InlineParserEngine.php
    │   │       │   MarkdownConverter.php
    │   │       │   MarkdownConverterInterface.php
    │   │       │   UnmatchedBlockCloser.php
    │   │       │
    │   │       ├───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
    │   │       │
    │   │       ├───Delimiter
    │   │       │   │   Delimiter.php
    │   │       │   │   DelimiterInterface.php
    │   │       │   │   DelimiterStack.php
    │   │       │   │
    │   │       │   └───Processor
    │   │       │           DelimiterProcessorCollection.php
    │   │       │           DelimiterProcessorCollectionInterface.php
    │   │       │           DelimiterProcessorInterface.php
    │   │       │           EmphasisDelimiterProcessor.php
    │   │       │           StaggeredDelimiterProcessor.php
    │   │       │
    │   │       ├───Event
    │   │       │       AbstractEvent.php
    │   │       │       DocumentParsedEvent.php
    │   │       │       DocumentPreParsedEvent.php
    │   │       │
    │   │       ├───Exception
    │   │       │       InvalidOptionException.php
    │   │       │       UnexpectedEncodingException.php
    │   │       │
    │   │       ├───Extension
    │   │       │   │   CommonMarkCoreExtension.php
    │   │       │   │   ExtensionInterface.php
    │   │       │   │   GithubFlavoredMarkdownExtension.php
    │   │       │   │
    │   │       │   ├───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
    │   │       │   │
    │   │       │   ├───DisallowedRawHtml
    │   │       │   │       DisallowedRawHtmlBlockRenderer.php
    │   │       │   │       DisallowedRawHtmlExtension.php
    │   │       │   │       DisallowedRawHtmlInlineRenderer.php
    │   │       │   │
    │   │       │   ├───ExternalLink
    │   │       │   │       ExternalLinkExtension.php
    │   │       │   │       ExternalLinkProcessor.php
    │   │       │   │
    │   │       │   ├───Footnote
    │   │       │   │   │   FootnoteExtension.php
    │   │       │   │   │
    │   │       │   │   ├───Event
    │   │       │   │   │       AnonymousFootnotesListener.php
    │   │       │   │   │       GatherFootnotesListener.php
    │   │       │   │   │       NumberFootnotesListener.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
    │   │       │   │
    │   │       │   ├───HeadingPermalink
    │   │       │   │   │   HeadingPermalink.php
    │   │       │   │   │   HeadingPermalinkExtension.php
    │   │       │   │   │   HeadingPermalinkProcessor.php
    │   │       │   │   │   HeadingPermalinkRenderer.php
    │   │       │   │   │
    │   │       │   │   └───Slug
    │   │       │   │           DefaultSlugGenerator.php
    │   │       │   │           SlugGeneratorInterface.php
    │   │       │   │
    │   │       │   ├───InlinesOnly
    │   │       │   │       ChildRenderer.php
    │   │       │   │       InlinesOnlyExtension.php
    │   │       │   │
    │   │       │   ├───Mention
    │   │       │   │   │   Mention.php
    │   │       │   │   │   MentionExtension.php
    │   │       │   │   │   MentionParser.php
    │   │       │   │   │
    │   │       │   │   └───Generator
    │   │       │   │           CallbackGenerator.php
    │   │       │   │           MentionGeneratorInterface.php
    │   │       │   │           StringTemplateLinkGenerator.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
    │   │       │   │   │   TableOfContents.php
    │   │       │   │   │   TableOfContentsBuilder.php
    │   │       │   │   │   TableOfContentsExtension.php
    │   │       │   │   │   TableOfContentsGenerator.php
    │   │       │   │   │   TableOfContentsGeneratorInterface.php
    │   │       │   │   │   TableOfContentsPlaceholderParser.php
    │   │       │   │   │   TableOfContentsPlaceholderRenderer.php
    │   │       │   │   │
    │   │       │   │   ├───Node
    │   │       │   │   │       TableOfContents.php
    │   │       │   │   │       TableOfContentsPlaceholder.php
    │   │       │   │   │
    │   │       │   │   └───Normalizer
    │   │       │   │           AsIsNormalizerStrategy.php
    │   │       │   │           FlatNormalizerStrategy.php
    │   │       │   │           NormalizerStrategyInterface.php
    │   │       │   │           RelativeNormalizerStrategy.php
    │   │       │   │
    │   │       │   └───TaskList
    │   │       │           TaskListExtension.php
    │   │       │           TaskListItemMarker.php
    │   │       │           TaskListItemMarkerParser.php
    │   │       │           TaskListItemMarkerRenderer.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
    │   │       │
    │   │       ├───Input
    │   │       │       MarkdownInput.php
    │   │       │       MarkdownInputInterface.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
    │   │       │
    │   │       └───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
    │   │   │   composer.json
    │   │   │   deprecations.md
    │   │   │   LICENSE
    │   │   │   SECURITY.md
    │   │   │
    │   │   └───src
    │   │       │   AdapterInterface.php
    │   │       │   Config.php
    │   │       │   ConfigAwareTrait.php
    │   │       │   ConnectionErrorException.php
    │   │       │   ConnectionRuntimeException.php
    │   │       │   CorruptedPathDetected.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
    │   │       │   PluginInterface.php
    │   │       │   ReadInterface.php
    │   │       │   RootViolationException.php
    │   │       │   SafeStorage.php
    │   │       │   UnreadableFileException.php
    │   │       │   Util.php
    │   │       │
    │   │       ├───Adapter
    │   │       │   │   AbstractAdapter.php
    │   │       │   │   AbstractFtpAdapter.php
    │   │       │   │   CanOverwriteFiles.php
    │   │       │   │   Ftp.php
    │   │       │   │   Ftpd.php
    │   │       │   │   Local.php
    │   │       │   │   NullAdapter.php
    │   │       │   │   SynologyFtp.php
    │   │       │   │
    │   │       │   └───Polyfill
    │   │       │           NotSupportingVisibilityTrait.php
    │   │       │           StreamedCopyTrait.php
    │   │       │           StreamedReadingTrait.php
    │   │       │           StreamedTrait.php
    │   │       │           StreamedWritingTrait.php
    │   │       │
    │   │       ├───Plugin
    │   │       │       AbstractPlugin.php
    │   │       │       EmptyDir.php
    │   │       │       ForcedCopy.php
    │   │       │       ForcedRename.php
    │   │       │       GetWithMetadata.php
    │   │       │       ListFiles.php
    │   │       │       ListPaths.php
    │   │       │       ListWith.php
    │   │       │       PluggableTrait.php
    │   │       │       PluginNotFoundException.php
    │   │       │
    │   │       └───Util
    │   │               ContentListingFormatter.php
    │   │               MimeType.php
    │   │               StreamHasher.php
    │   │
    │   └───mime-type-detection
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │
    │       └───src
    │               EmptyExtensionToMimeTypeMap.php
    │               ExtensionMimeTypeDetector.php
    │               ExtensionToMimeTypeMap.php
    │               FinfoMimeTypeDetector.php
    │               GeneratedExtensionToMimeTypeMap.php
    │               MimeTypeDetector.php
    │               OverridingExtensionToMimeTypeMap.php
    │
    ├───mockery
    │   └───mockery
    │       │   .phpstorm.meta.php
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   CONTRIBUTING.md
    │       │   LICENSE
    │       │   README.md
    │       │
    │       ├───docs
    │       │   │   conf.py
    │       │   │   index.rst
    │       │   │   README.md
    │       │   │
    │       │   ├───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
    │       │   │
    │       │   ├───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
    │           │   helpers.php
    │           │   Mockery.php
    │           │
    │           └───Mockery
    │               │   ClosureWrapper.php
    │               │   CompositeExpectation.php
    │               │   Configuration.php
    │               │   Container.php
    │               │   Exception.php
    │               │   Expectation.php
    │               │   ExpectationDirector.php
    │               │   ExpectationInterface.php
    │               │   ExpectsHigherOrderMessage.php
    │               │   HigherOrderMessage.php
    │               │   Instantiator.php
    │               │   LegacyMockInterface.php
    │               │   MethodCall.php
    │               │   Mock.php
    │               │   MockInterface.php
    │               │   QuickDefinitionsConfiguration.php
    │               │   ReceivedMethodCalls.php
    │               │   Reflector.php
    │               │   Undefined.php
    │               │   VerificationDirector.php
    │               │   VerificationExpectation.php
    │               │
    │               ├───Adapter
    │               │   └───Phpunit
    │               │           MockeryPHPUnitIntegration.php
    │               │           MockeryPHPUnitIntegrationAssertPostConditions.php
    │               │           MockeryTestCase.php
    │               │           MockeryTestCaseSetUp.php
    │               │           TestListener.php
    │               │           TestListenerTrait.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
    │               │
    │               ├───Generator
    │               │   │   CachingGenerator.php
    │               │   │   DefinedTargetClass.php
    │               │   │   Generator.php
    │               │   │   Method.php
    │               │   │   MockConfiguration.php
    │               │   │   MockConfigurationBuilder.php
    │               │   │   MockDefinition.php
    │               │   │   MockNameBuilder.php
    │               │   │   Parameter.php
    │               │   │   StringManipulationGenerator.php
    │               │   │   TargetClassInterface.php
    │               │   │   UndefinedTargetClass.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
    │               │
    │               ├───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
    │                       Pattern.php
    │                       Subset.php
    │                       Type.php
    │
    ├───monolog
    │   └───monolog
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │   UPGRADE.md
    │       │
    │       └───src
    │           └───Monolog
    │               │   DateTimeImmutable.php
    │               │   ErrorHandler.php
    │               │   Logger.php
    │               │   LogRecord.php
    │               │   Registry.php
    │               │   ResettableInterface.php
    │               │   SignalHandler.php
    │               │   Utils.php
    │               │
    │               ├───Attribute
    │               │       AsMonologProcessor.php
    │               │
    │               ├───Formatter
    │               │       ChromePHPFormatter.php
    │               │       ElasticaFormatter.php
    │               │       ElasticsearchFormatter.php
    │               │       FlowdockFormatter.php
    │               │       FluentdFormatter.php
    │               │       FormatterInterface.php
    │               │       GelfMessageFormatter.php
    │               │       GoogleCloudLoggingFormatter.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
    │               │   │   DeduplicationHandler.php
    │               │   │   DoctrineCouchDBHandler.php
    │               │   │   DynamoDbHandler.php
    │               │   │   ElasticaHandler.php
    │               │   │   ElasticsearchHandler.php
    │               │   │   ErrorLogHandler.php
    │               │   │   FallbackGroupHandler.php
    │               │   │   FilterHandler.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
    │               │   │   ProcessableHandlerInterface.php
    │               │   │   ProcessableHandlerTrait.php
    │               │   │   ProcessHandler.php
    │               │   │   PsrHandler.php
    │               │   │   PushoverHandler.php
    │               │   │   RedisHandler.php
    │               │   │   RedisPubSubHandler.php
    │               │   │   RollbarHandler.php
    │               │   │   RotatingFileHandler.php
    │               │   │   SamplingHandler.php
    │               │   │   SendGridHandler.php
    │               │   │   SlackHandler.php
    │               │   │   SlackWebhookHandler.php
    │               │   │   SocketHandler.php
    │               │   │   SqsHandler.php
    │               │   │   StreamHandler.php
    │               │   │   SwiftMailerHandler.php
    │               │   │   SymfonyMailerHandler.php
    │               │   │   SyslogHandler.php
    │               │   │   SyslogUdpHandler.php
    │               │   │   TelegramBotHandler.php
    │               │   │   TestHandler.php
    │               │   │   WebRequestRecognizerTrait.php
    │               │   │   WhatFailureGroupHandler.php
    │               │   │   ZendMonitorHandler.php
    │               │   │
    │               │   ├───Curl
    │               │   │       Util.php
    │               │   │
    │               │   ├───FingersCrossed
    │               │   │       ActivationStrategyInterface.php
    │               │   │       ChannelLevelActivationStrategy.php
    │               │   │       ErrorLevelActivationStrategy.php
    │               │   │
    │               │   ├───Slack
    │               │   │       SlackRecord.php
    │               │   │
    │               │   └───SyslogUdp
    │               │           UdpSocket.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
    │               │
    │               └───Test
    │                       TestCase.php
    │
    ├───myclabs
    │   └───deep-copy
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       ├───.github
    │       │   │   FUNDING.yml
    │       │   │
    │       │   └───workflows
    │       │           ci.yaml
    │       │
    │       └───src
    │           └───DeepCopy
    │               │   DeepCopy.php
    │               │   deep_copy.php
    │               │
    │               ├───Exception
    │               │       CloneException.php
    │               │       PropertyException.php
    │               │
    │               ├───Filter
    │               │   │   ChainableFilter.php
    │               │   │   Filter.php
    │               │   │   KeepFilter.php
    │               │   │   ReplaceFilter.php
    │               │   │   SetNullFilter.php
    │               │   │
    │               │   └───Doctrine
    │               │           DoctrineCollectionFilter.php
    │               │           DoctrineEmptyCollectionFilter.php
    │               │           DoctrineProxyFilter.php
    │               │
    │               ├───Matcher
    │               │   │   Matcher.php
    │               │   │   PropertyMatcher.php
    │               │   │   PropertyNameMatcher.php
    │               │   │   PropertyTypeMatcher.php
    │               │   │
    │               │   └───Doctrine
    │               │           DoctrineProxyMatcher.php
    │               │
    │               ├───Reflection
    │               │       ReflectionHelper.php
    │               │
    │               ├───TypeFilter
    │               │   │   ReplaceFilter.php
    │               │   │   ShallowCopyFilter.php
    │               │   │   TypeFilter.php
    │               │   │
    │               │   ├───Date
    │               │   │       DateIntervalFilter.php
    │               │   │
    │               │   └───Spl
    │               │           ArrayObjectFilter.php
    │               │           SplDoublyLinkedList.php
    │               │           SplDoublyLinkedListFilter.php
    │               │
    │               └───TypeMatcher
    │                       TypeMatcher.php
    │
    ├───namshi
    │   └───jose
    │       │   .coveralls.yml
    │       │   .gitignore
    │       │   .travis.yml
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   phpunit.xml.dist
    │       │   README.md
    │       │
    │       ├───src
    │       │   └───Namshi
    │       │       └───JOSE
    │       │           │   JWS.php
    │       │           │   JWT.php
    │       │           │   SimpleJWS.php
    │       │           │
    │       │           ├───Base64
    │       │           │       Base64Encoder.php
    │       │           │       Base64UrlSafeEncoder.php
    │       │           │       Encoder.php
    │       │           │
    │       │           └───Signer
    │       │               │   SignerInterface.php
    │       │               │
    │       │               ├───OpenSSL
    │       │               │       ECDSA.php
    │       │               │       ES256.php
    │       │               │       ES384.php
    │       │               │       ES512.php
    │       │               │       HMAC.php
    │       │               │       HS256.php
    │       │               │       HS384.php
    │       │               │       HS512.php
    │       │               │       None.php
    │       │               │       PublicKey.php
    │       │               │       RS256.php
    │       │               │       RS384.php
    │       │               │       RS512.php
    │       │               │       RSA.php
    │       │               │
    │       │               └───SecLib
    │       │                       PublicKey.php
    │       │                       RS256.php
    │       │                       RS384.php
    │       │                       RS512.php
    │       │                       RSA.php
    │       │
    │       └───tests
    │           │   bootstrap.php
    │           │   private-ne.key
    │           │   private.es256.key
    │           │   private.es384.key
    │           │   private.es512.key
    │           │   private.key
    │           │   public-ne.key
    │           │   public.es256.key
    │           │   public.es384.key
    │           │   public.es512.key
    │           │   public.key
    │           │
    │           └───Namshi
    │               └───JOSE
    │                   └───Test
    │                       │   BCJWSTest.php
    │                       │   JWSTest.php
    │                       │   JWTTest.php
    │                       │   SimpleJWSTest.php
    │                       │
    │                       └───Signer
    │                           ├───OpenSSL
    │                           │       ES256Test.php
    │                           │       ES384Test.php
    │                           │       ES512Test.php
    │                           │       HS256Test.php
    │                           │       HS384Test.php
    │                           │       HS512Test.php
    │                           │       KeyFormatTest.php
    │                           │       NoneTest.php
    │                           │       RS256Test.php
    │                           │       RS384Test.php
    │                           │       RS512Test.php
    │                           │
    │                           └───SecLib
    │                                   RS256TEST.php
    │                                   RS384Test.php
    │                                   RS512Test.php
    │                                   SecLibTestCase.php
    │
    ├───nesbot
    │   └───carbon
    │       │   .phpstorm.meta.php
    │       │   composer.json
    │       │   extension.neon
    │       │   LICENSE
    │       │   readme.md
    │       │   sponsors.php
    │       │
    │       ├───bin
    │       │       carbon
    │       │       carbon.bat
    │       │
    │       ├───lazy
    │       │   └───Carbon
    │       │       │   TranslatorStrongType.php
    │       │       │   TranslatorWeakType.php
    │       │       │
    │       │       ├───MessageFormatter
    │       │       │       MessageFormatterMapperStrongType.php
    │       │       │       MessageFormatterMapperWeakType.php
    │       │       │
    │       │       └───PHPStan
    │       │               AbstractMacroBuiltin.php
    │       │               AbstractMacroStatic.php
    │       │               MacroStrongType.php
    │       │               MacroWeakType.php
    │       │
    │       └───src
    │           └───Carbon
    │               │   AbstractTranslator.php
    │               │   Carbon.php
    │               │   CarbonConverterInterface.php
    │               │   CarbonImmutable.php
    │               │   CarbonInterface.php
    │               │   CarbonInterval.php
    │               │   CarbonPeriod.php
    │               │   CarbonPeriodImmutable.php
    │               │   CarbonTimeZone.php
    │               │   Factory.php
    │               │   FactoryImmutable.php
    │               │   Language.php
    │               │   Translator.php
    │               │   TranslatorImmutable.php
    │               │   TranslatorStrongTypeInterface.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
    │               │       EndLessPeriodException.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
    │               │
    │               ├───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
    │               │       anp.php
    │               │       anp_IN.php
    │               │       an_ES.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_Shakl.php
    │               │       ar_SO.php
    │               │       ar_SS.php
    │               │       ar_SY.php
    │               │       ar_TD.php
    │               │       ar_TN.php
    │               │       ar_YE.php
    │               │       as.php
    │               │       asa.php
    │               │       ast.php
    │               │       ast_ES.php
    │               │       as_IN.php
    │               │       ayc.php
    │               │       ayc_PE.php
    │               │       az.php
    │               │       az_AZ.php
    │               │       az_Cyrl.php
    │               │       az_IR.php
    │               │       az_Latn.php
    │               │       bas.php
    │               │       be.php
    │               │       bem.php
    │               │       bem_ZM.php
    │               │       ber.php
    │               │       ber_DZ.php
    │               │       ber_MA.php
    │               │       bez.php
    │               │       be_BY.php
    │               │       be_BY@latin.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
    │               │       brx.php
    │               │       brx_IN.php
    │               │       br_FR.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
    │               │       ckb.php
    │               │       cmn.php
    │               │       cmn_TW.php
    │               │       crh.php
    │               │       crh_UA.php
    │               │       cs.php
    │               │       csb.php
    │               │       csb_PL.php
    │               │       cs_CZ.php
    │               │       cu.php
    │               │       cv.php
    │               │       cv_RU.php
    │               │       cy.php
    │               │       cy_GB.php
    │               │       da.php
    │               │       dav.php
    │               │       da_DK.php
    │               │       da_GL.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
    │               │       fil.php
    │               │       fil_PH.php
    │               │       fi_FI.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
    │               │       guz.php
    │               │       gu_IN.php
    │               │       gv.php
    │               │       gv_GB.php
    │               │       ha.php
    │               │       hak.php
    │               │       hak_TW.php
    │               │       haw.php
    │               │       ha_GH.php
    │               │       ha_NE.php
    │               │       ha_NG.php
    │               │       he.php
    │               │       he_IL.php
    │               │       hi.php
    │               │       hif.php
    │               │       hif_FJ.php
    │               │       hi_IN.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
    │               │       kab.php
    │               │       kab_DZ.php
    │               │       kam.php
    │               │       ka_GE.php
    │               │       kde.php
    │               │       kea.php
    │               │       khq.php
    │               │       ki.php
    │               │       kk.php
    │               │       kkj.php
    │               │       kk_KZ.php
    │               │       kl.php
    │               │       kln.php
    │               │       kl_GL.php
    │               │       km.php
    │               │       km_KH.php
    │               │       kn.php
    │               │       kn_IN.php
    │               │       ko.php
    │               │       kok.php
    │               │       kok_IN.php
    │               │       ko_KP.php
    │               │       ko_KR.php
    │               │       ks.php
    │               │       ksb.php
    │               │       ksf.php
    │               │       ksh.php
    │               │       ks_IN.php
    │               │       ks_IN@devanagari.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
    │               │       lij.php
    │               │       lij_IT.php
    │               │       li_NL.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
    │               │       mgh.php
    │               │       mgo.php
    │               │       mg_MG.php
    │               │       mhr.php
    │               │       mhr_RU.php
    │               │       mi.php
    │               │       miq.php
    │               │       miq_NI.php
    │               │       mi_NZ.php
    │               │       mjw.php
    │               │       mjw_IN.php
    │               │       mk.php
    │               │       mk_MK.php
    │               │       ml.php
    │               │       ml_IN.php
    │               │       mn.php
    │               │       mni.php
    │               │       mni_IN.php
    │               │       mn_MN.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
    │               │       nnh.php
    │               │       nn_NO.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
    │               │       pap.php
    │               │       pap_AW.php
    │               │       pap_CW.php
    │               │       pa_Arab.php
    │               │       pa_Guru.php
    │               │       pa_IN.php
    │               │       pa_PK.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
    │               │       quz.php
    │               │       quz_PE.php
    │               │       qu_BO.php
    │               │       qu_EC.php
    │               │       raj.php
    │               │       raj_IN.php
    │               │       rm.php
    │               │       rn.php
    │               │       ro.php
    │               │       rof.php
    │               │       ro_MD.php
    │               │       ro_RO.php
    │               │       ru.php
    │               │       ru_BY.php
    │               │       ru_KG.php
    │               │       ru_KZ.php
    │               │       ru_MD.php
    │               │       ru_RU.php
    │               │       ru_UA.php
    │               │       rw.php
    │               │       rwk.php
    │               │       rw_RW.php
    │               │       sa.php
    │               │       sah.php
    │               │       sah_RU.php
    │               │       saq.php
    │               │       sat.php
    │               │       sat_IN.php
    │               │       sa_IN.php
    │               │       sbp.php
    │               │       sc.php
    │               │       sc_IT.php
    │               │       sd.php
    │               │       sd_IN.php
    │               │       sd_IN@devanagari.php
    │               │       se.php
    │               │       seh.php
    │               │       ses.php
    │               │       se_FI.php
    │               │       se_NO.php
    │               │       se_SE.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
    │               │       sid.php
    │               │       sid_ET.php
    │               │       si_LK.php
    │               │       sk.php
    │               │       sk_SK.php
    │               │       sl.php
    │               │       sl_SI.php
    │               │       sm.php
    │               │       smn.php
    │               │       sm_WS.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
    │               │       teo.php
    │               │       teo_KE.php
    │               │       tet.php
    │               │       te_IN.php
    │               │       tg.php
    │               │       tg_TJ.php
    │               │       th.php
    │               │       the.php
    │               │       the_NP.php
    │               │       th_TH.php
    │               │       ti.php
    │               │       tig.php
    │               │       tig_ER.php
    │               │       ti_ER.php
    │               │       ti_ET.php
    │               │       tk.php
    │               │       tk_TM.php
    │               │       tl.php
    │               │       tlh.php
    │               │       tl_PH.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
    │               │       wae.php
    │               │       wae_CH.php
    │               │       wal.php
    │               │       wal_ET.php
    │               │       wa_BE.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_Hans.php
    │               │       yue_Hant.php
    │               │       yue_HK.php
    │               │       yuw.php
    │               │       yuw_PG.php
    │               │       zgh.php
    │               │       zh.php
    │               │       zh_CN.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_HK.php
    │               │       zh_MO.php
    │               │       zh_SG.php
    │               │       zh_TW.php
    │               │       zh_YUE.php
    │               │       zu.php
    │               │       zu_ZA.php
    │               │
    │               ├───Laravel
    │               │       ServiceProvider.php
    │               │
    │               ├───List
    │               │       languages.php
    │               │       regions.php
    │               │
    │               ├───MessageFormatter
    │               │       MessageFormatterMapper.php
    │               │
    │               ├───PHPStan
    │               │       AbstractMacro.php
    │               │       Macro.php
    │               │       MacroExtension.php
    │               │       MacroScanner.php
    │               │
    │               └───Traits
    │                       Boundaries.php
    │                       Cast.php
    │                       Comparison.php
    │                       Converter.php
    │                       Creator.php
    │                       Date.php
    │                       DeprecatedProperties.php
    │                       Difference.php
    │                       IntervalRounding.php
    │                       IntervalStep.php
    │                       Localization.php
    │                       Macro.php
    │                       MagicParameter.php
    │                       Mixin.php
    │                       Modifiers.php
    │                       Mutability.php
    │                       ObjectInitialisation.php
    │                       Options.php
    │                       Rounding.php
    │                       Serialization.php
    │                       Test.php
    │                       Timestamp.php
    │                       ToStringFormat.php
    │                       Units.php
    │                       Week.php
    │
    ├───nikic
    │   └───php-parser
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       ├───bin
    │       │       php-parse
    │       │
    │       ├───grammar
    │       │       parser.template
    │       │       php5.y
    │       │       php7.y
    │       │       phpyLang.php
    │       │       README.md
    │       │       rebuildParsers.php
    │       │       tokens.template
    │       │       tokens.y
    │       │
    │       └───lib
    │           └───PhpParser
    │               │   Builder.php
    │               │   BuilderFactory.php
    │               │   BuilderHelpers.php
    │               │   Comment.php
    │               │   ConstExprEvaluationException.php
    │               │   ConstExprEvaluator.php
    │               │   Error.php
    │               │   ErrorHandler.php
    │               │   JsonDecoder.php
    │               │   Lexer.php
    │               │   NameContext.php
    │               │   Node.php
    │               │   NodeAbstract.php
    │               │   NodeDumper.php
    │               │   NodeFinder.php
    │               │   NodeTraverser.php
    │               │   NodeTraverserInterface.php
    │               │   NodeVisitor.php
    │               │   NodeVisitorAbstract.php
    │               │   Parser.php
    │               │   ParserAbstract.php
    │               │   ParserFactory.php
    │               │   PrettyPrinterAbstract.php
    │               │
    │               ├───Builder
    │               │       ClassConst.php
    │               │       Class_.php
    │               │       Declaration.php
    │               │       EnumCase.php
    │               │       Enum_.php
    │               │       FunctionLike.php
    │               │       Function_.php
    │               │       Interface_.php
    │               │       Method.php
    │               │       Namespace_.php
    │               │       Param.php
    │               │       Property.php
    │               │       TraitUse.php
    │               │       TraitUseAdaptation.php
    │               │       Trait_.php
    │               │       Use_.php
    │               │
    │               ├───Comment
    │               │       Doc.php
    │               │
    │               ├───ErrorHandler
    │               │       Collecting.php
    │               │       Throwing.php
    │               │
    │               ├───Internal
    │               │       DiffElem.php
    │               │       Differ.php
    │               │       PrintableNewAnonClassNode.php
    │               │       TokenStream.php
    │               │
    │               ├───Lexer
    │               │   │   Emulative.php
    │               │   │
    │               │   └───TokenEmulator
    │               │           AttributeEmulator.php
    │               │           CoaleseEqualTokenEmulator.php
    │               │           EnumTokenEmulator.php
    │               │           ExplicitOctalEmulator.php
    │               │           FlexibleDocStringEmulator.php
    │               │           FnTokenEmulator.php
    │               │           KeywordEmulator.php
    │               │           MatchTokenEmulator.php
    │               │           NullsafeTokenEmulator.php
    │               │           NumericLiteralSeparatorEmulator.php
    │               │           ReadonlyFunctionTokenEmulator.php
    │               │           ReadonlyTokenEmulator.php
    │               │           ReverseEmulator.php
    │               │           TokenEmulator.php
    │               │
    │               ├───Node
    │               │   │   Arg.php
    │               │   │   Attribute.php
    │               │   │   AttributeGroup.php
    │               │   │   ComplexType.php
    │               │   │   Const_.php
    │               │   │   Expr.php
    │               │   │   FunctionLike.php
    │               │   │   Identifier.php
    │               │   │   IntersectionType.php
    │               │   │   MatchArm.php
    │               │   │   Name.php
    │               │   │   NullableType.php
    │               │   │   Param.php
    │               │   │   Scalar.php
    │               │   │   Stmt.php
    │               │   │   UnionType.php
    │               │   │   VariadicPlaceholder.php
    │               │   │   VarLikeIdentifier.php
    │               │   │
    │               │   ├───Expr
    │               │   │   │   ArrayDimFetch.php
    │               │   │   │   ArrayItem.php
    │               │   │   │   Array_.php
    │               │   │   │   ArrowFunction.php
    │               │   │   │   Assign.php
    │               │   │   │   AssignOp.php
    │               │   │   │   AssignRef.php
    │               │   │   │   BinaryOp.php
    │               │   │   │   BitwiseNot.php
    │               │   │   │   BooleanNot.php
    │               │   │   │   CallLike.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
    │               │   │   │
    │               │   │   ├───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
    │               │   │   │
    │               │   │   ├───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
    │               │   │   │
    │               │   │   └───Cast
    │               │   │           Array_.php
    │               │   │           Bool_.php
    │               │   │           Double.php
    │               │   │           Int_.php
    │               │   │           Object_.php
    │               │   │           String_.php
    │               │   │           Unset_.php
    │               │   │
    │               │   ├───Name
    │               │   │       FullyQualified.php
    │               │   │       Relative.php
    │               │   │
    │               │   ├───Scalar
    │               │   │   │   DNumber.php
    │               │   │   │   Encapsed.php
    │               │   │   │   EncapsedStringPart.php
    │               │   │   │   LNumber.php
    │               │   │   │   MagicConst.php
    │               │   │   │   String_.php
    │               │   │   │
    │               │   │   └───MagicConst
    │               │   │           Class_.php
    │               │   │           Dir.php
    │               │   │           File.php
    │               │   │           Function_.php
    │               │   │           Line.php
    │               │   │           Method.php
    │               │   │           Namespace_.php
    │               │   │           Trait_.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
    │               │       │   EnumCase.php
    │               │       │   Enum_.php
    │               │       │   Expression.php
    │               │       │   Finally_.php
    │               │       │   Foreach_.php
    │               │       │   For_.php
    │               │       │   Function_.php
    │               │       │   Global_.php
    │               │       │   Goto_.php
    │               │       │   GroupUse.php
    │               │       │   HaltCompiler.php
    │               │       │   If_.php
    │               │       │   InlineHTML.php
    │               │       │   Interface_.php
    │               │       │   Label.php
    │               │       │   Namespace_.php
    │               │       │   Nop.php
    │               │       │   Property.php
    │               │       │   PropertyProperty.php
    │               │       │   Return_.php
    │               │       │   StaticVar.php
    │               │       │   Static_.php
    │               │       │   Switch_.php
    │               │       │   Throw_.php
    │               │       │   TraitUse.php
    │               │       │   TraitUseAdaptation.php
    │               │       │   Trait_.php
    │               │       │   TryCatch.php
    │               │       │   Unset_.php
    │               │       │   UseUse.php
    │               │       │   Use_.php
    │               │       │   While_.php
    │               │       │
    │               │       └───TraitUseAdaptation
    │               │               Alias.php
    │               │               Precedence.php
    │               │
    │               ├───NodeVisitor
    │               │       CloningVisitor.php
    │               │       FindingVisitor.php
    │               │       FirstFindingVisitor.php
    │               │       NameResolver.php
    │               │       NodeConnectingVisitor.php
    │               │       ParentConnectingVisitor.php
    │               │
    │               ├───Parser
    │               │       Multiple.php
    │               │       Php5.php
    │               │       Php7.php
    │               │       Tokens.php
    │               │
    │               └───PrettyPrinter
    │                       Standard.php
    │
    ├───nunomaduro
    │   └───collision
    │       │   composer.json
    │       │   LICENSE.md
    │       │   README.md
    │       │
    │       └───src
    │           │   ArgumentFormatter.php
    │           │   ConsoleColor.php
    │           │   Handler.php
    │           │   Highlighter.php
    │           │   Provider.php
    │           │   Writer.php
    │           │
    │           ├───Adapters
    │           │   ├───Laravel
    │           │   │   │   CollisionServiceProvider.php
    │           │   │   │   ExceptionHandler.php
    │           │   │   │   IgnitionSolutionsRepository.php
    │           │   │   │   Inspector.php
    │           │   │   │
    │           │   │   ├───Commands
    │           │   │   │       TestCommand.php
    │           │   │   │
    │           │   │   └───Exceptions
    │           │   │           RequirementsException.php
    │           │   │
    │           │   └───Phpunit
    │           │           ConfigureIO.php
    │           │           Printer.php
    │           │           State.php
    │           │           Style.php
    │           │           TestResult.php
    │           │           Timer.php
    │           │
    │           ├───Contracts
    │           │   │   ArgumentFormatter.php
    │           │   │   Handler.php
    │           │   │   Highlighter.php
    │           │   │   Provider.php
    │           │   │   RenderlessEditor.php
    │           │   │   RenderlessTrace.php
    │           │   │   SolutionsRepository.php
    │           │   │   Writer.php
    │           │   │
    │           │   └───Adapters
    │           │       └───Phpunit
    │           │               HasPrintableTestCaseName.php
    │           │               Listener.php
    │           │
    │           ├───Exceptions
    │           │       InvalidStyleException.php
    │           │       ShouldNotHappen.php
    │           │
    │           └───SolutionsRepositories
    │                   NullSolutionsRepository.php
    │
    ├───opis
    │   └───closure
    │       │   autoload.php
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   functions.php
    │       │   LICENSE
    │       │   NOTICE
    │       │   README.md
    │       │
    │       └───src
    │               Analyzer.php
    │               ClosureContext.php
    │               ClosureScope.php
    │               ClosureStream.php
    │               ISecurityProvider.php
    │               ReflectionClosure.php
    │               SecurityException.php
    │               SecurityProvider.php
    │               SelfReference.php
    │               SerializableClosure.php
    │
    ├───phar-io
    │   ├───manifest
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   composer.lock
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   ManifestDocumentMapper.php
    │   │       │   ManifestLoader.php
    │   │       │   ManifestSerializer.php
    │   │       │
    │   │       ├───exceptions
    │   │       │       ElementCollectionException.php
    │   │       │       Exception.php
    │   │       │       InvalidApplicationNameException.php
    │   │       │       InvalidEmailException.php
    │   │       │       InvalidUrlException.php
    │   │       │       ManifestDocumentException.php
    │   │       │       ManifestDocumentLoadingException.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
    │   │               ManifestElement.php
    │   │               PhpElement.php
    │   │               RequiresElement.php
    │   │
    │   └───version
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       └───src
    │           │   BuildMetaData.php
    │           │   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
    │                   NoBuildMetaDataException.php
    │                   NoPreReleaseSuffixException.php
    │                   UnsupportedVersionConstraintException.php
    │
    ├───phpoption
    │   └───phpoption
    │       │   composer.json
    │       │   LICENSE
    │       │
    │       └───src
    │           └───PhpOption
    │                   LazyOption.php
    │                   None.php
    │                   Option.php
    │                   Some.php
    │
    ├───phpunit
    │   ├───php-code-coverage
    │   │   │   ChangeLog-9.2.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   CodeCoverage.php
    │   │       │   Filter.php
    │   │       │   ProcessedCodeCoverageData.php
    │   │       │   RawCodeCoverageData.php
    │   │       │   Version.php
    │   │       │
    │   │       ├───Driver
    │   │       │       Driver.php
    │   │       │       PcovDriver.php
    │   │       │       PhpdbgDriver.php
    │   │       │       Selector.php
    │   │       │       Xdebug2Driver.php
    │   │       │       Xdebug3Driver.php
    │   │       │
    │   │       ├───Exception
    │   │       │       BranchAndPathCoverageNotSupportedException.php
    │   │       │       DeadCodeDetectionNotSupportedException.php
    │   │       │       DirectoryCouldNotBeCreatedException.php
    │   │       │       Exception.php
    │   │       │       InvalidArgumentException.php
    │   │       │       NoCodeCoverageDriverAvailableException.php
    │   │       │       NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php
    │   │       │       ParserException.php
    │   │       │       PathExistsButIsNotDirectoryException.php
    │   │       │       PcovNotAvailableException.php
    │   │       │       PhpdbgNotAvailableException.php
    │   │       │       ReflectionException.php
    │   │       │       ReportAlreadyFinalizedException.php
    │   │       │       StaticAnalysisCacheNotConfiguredException.php
    │   │       │       TestIdMissingException.php
    │   │       │       UnintentionallyCoveredCodeException.php
    │   │       │       WriteOperationFailedException.php
    │   │       │       WrongXdebugVersionException.php
    │   │       │       Xdebug2NotEnabledException.php
    │   │       │       Xdebug3NotEnabledException.php
    │   │       │       XdebugNotAvailableException.php
    │   │       │       XmlException.php
    │   │       │
    │   │       ├───Node
    │   │       │       AbstractNode.php
    │   │       │       Builder.php
    │   │       │       CrapIndex.php
    │   │       │       Directory.php
    │   │       │       File.php
    │   │       │       Iterator.php
    │   │       │
    │   │       ├───Report
    │   │       │   │   Clover.php
    │   │       │   │   Cobertura.php
    │   │       │   │   Crap4j.php
    │   │       │   │   PHP.php
    │   │       │   │   Text.php
    │   │       │   │
    │   │       │   ├───Html
    │   │       │   │   │   Facade.php
    │   │       │   │   │   Renderer.php
    │   │       │   │   │
    │   │       │   │   └───Renderer
    │   │       │   │       │   Dashboard.php
    │   │       │   │       │   Directory.php
    │   │       │   │       │   File.php
    │   │       │   │       │
    │   │       │   │       └───Template
    │   │       │   │           │   branches.html.dist
    │   │       │   │           │   coverage_bar.html.dist
    │   │       │   │           │   coverage_bar_branch.html.dist
    │   │       │   │           │   dashboard.html.dist
    │   │       │   │           │   dashboard_branch.html.dist
    │   │       │   │           │   directory.html.dist
    │   │       │   │           │   directory_branch.html.dist
    │   │       │   │           │   directory_item.html.dist
    │   │       │   │           │   directory_item_branch.html.dist
    │   │       │   │           │   file.html.dist
    │   │       │   │           │   file_branch.html.dist
    │   │       │   │           │   file_item.html.dist
    │   │       │   │           │   file_item_branch.html.dist
    │   │       │   │           │   line.html.dist
    │   │       │   │           │   lines.html.dist
    │   │       │   │           │   method_item.html.dist
    │   │       │   │           │   method_item_branch.html.dist
    │   │       │   │           │   paths.html.dist
    │   │       │   │           │
    │   │       │   │           ├───css
    │   │       │   │           │       bootstrap.min.css
    │   │       │   │           │       custom.css
    │   │       │   │           │       nv.d3.min.css
    │   │       │   │           │       octicons.css
    │   │       │   │           │       style.css
    │   │       │   │           │
    │   │       │   │           ├───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
    │   │       │   │
    │   │       │   └───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
    │   │       │
    │   │       ├───StaticAnalysis
    │   │       │       CacheWarmer.php
    │   │       │       CachingFileAnalyser.php
    │   │       │       CodeUnitFindingVisitor.php
    │   │       │       ExecutableLinesFindingVisitor.php
    │   │       │       FileAnalyser.php
    │   │       │       IgnoredLinesFindingVisitor.php
    │   │       │       ParsingFileAnalyser.php
    │   │       │
    │   │       └───Util
    │   │               Filesystem.php
    │   │               Percentage.php
    │   │
    │   ├───php-file-iterator
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │           Facade.php
    │   │           Factory.php
    │   │           Iterator.php
    │   │
    │   ├───php-invoker
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   Invoker.php
    │   │       │
    │   │       └───exceptions
    │   │               Exception.php
    │   │               ProcessControlExtensionNotLoadedException.php
    │   │               TimeoutException.php
    │   │
    │   ├───php-text-template
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │       │   Template.php
    │   │       │
    │   │       └───exceptions
    │   │               Exception.php
    │   │               InvalidArgumentException.php
    │   │               RuntimeException.php
    │   │
    │   ├───php-timer
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │       │   Duration.php
    │   │       │   ResourceUsageFormatter.php
    │   │       │   Timer.php
    │   │       │
    │   │       └───exceptions
    │   │               Exception.php
    │   │               NoActiveTimerException.php
    │   │               TimeSinceStartOfRequestNotAvailableException.php
    │   │
    │   └───phpunit
    │       │   .phpstorm.meta.php
    │       │   ChangeLog-9.6.md
    │       │   composer.json
    │       │   LICENSE
    │       │   phpunit
    │       │   phpunit.xsd
    │       │   README.md
    │       │   SECURITY.md
    │       │
    │       ├───schema
    │       │       8.5.xsd
    │       │       9.2.xsd
    │       │
    │       └───src
    │           │   Exception.php
    │           │
    │           ├───Framework
    │           │   │   Assert.php
    │           │   │   DataProviderTestSuite.php
    │           │   │   ErrorTestCase.php
    │           │   │   ExceptionWrapper.php
    │           │   │   ExecutionOrderDependency.php
    │           │   │   IncompleteTest.php
    │           │   │   IncompleteTestCase.php
    │           │   │   InvalidParameterGroupException.php
    │           │   │   Reorderable.php
    │           │   │   SelfDescribing.php
    │           │   │   SkippedTest.php
    │           │   │   SkippedTestCase.php
    │           │   │   Test.php
    │           │   │   TestBuilder.php
    │           │   │   TestCase.php
    │           │   │   TestFailure.php
    │           │   │   TestListener.php
    │           │   │   TestListenerDefaultImplementation.php
    │           │   │   TestResult.php
    │           │   │   TestSuite.php
    │           │   │   TestSuiteIterator.php
    │           │   │   WarningTestCase.php
    │           │   │
    │           │   ├───Assert
    │           │   │       Functions.php
    │           │   │
    │           │   ├───Constraint
    │           │   │   │   Callback.php
    │           │   │   │   Constraint.php
    │           │   │   │   IsAnything.php
    │           │   │   │   IsIdentical.php
    │           │   │   │   JsonMatches.php
    │           │   │   │   JsonMatchesErrorMessageProvider.php
    │           │   │   │
    │           │   │   ├───Boolean
    │           │   │   │       IsFalse.php
    │           │   │   │       IsTrue.php
    │           │   │   │
    │           │   │   ├───Cardinality
    │           │   │   │       Count.php
    │           │   │   │       GreaterThan.php
    │           │   │   │       IsEmpty.php
    │           │   │   │       LessThan.php
    │           │   │   │       SameSize.php
    │           │   │   │
    │           │   │   ├───Equality
    │           │   │   │       IsEqual.php
    │           │   │   │       IsEqualCanonicalizing.php
    │           │   │   │       IsEqualIgnoringCase.php
    │           │   │   │       IsEqualWithDelta.php
    │           │   │   │
    │           │   │   ├───Exception
    │           │   │   │       Exception.php
    │           │   │   │       ExceptionCode.php
    │           │   │   │       ExceptionMessage.php
    │           │   │   │       ExceptionMessageRegularExpression.php
    │           │   │   │
    │           │   │   ├───Filesystem
    │           │   │   │       DirectoryExists.php
    │           │   │   │       FileExists.php
    │           │   │   │       IsReadable.php
    │           │   │   │       IsWritable.php
    │           │   │   │
    │           │   │   ├───Math
    │           │   │   │       IsFinite.php
    │           │   │   │       IsInfinite.php
    │           │   │   │       IsNan.php
    │           │   │   │
    │           │   │   ├───Object
    │           │   │   │       ClassHasAttribute.php
    │           │   │   │       ClassHasStaticAttribute.php
    │           │   │   │       ObjectEquals.php
    │           │   │   │       ObjectHasAttribute.php
    │           │   │   │
    │           │   │   ├───Operator
    │           │   │   │       BinaryOperator.php
    │           │   │   │       LogicalAnd.php
    │           │   │   │       LogicalNot.php
    │           │   │   │       LogicalOr.php
    │           │   │   │       LogicalXor.php
    │           │   │   │       Operator.php
    │           │   │   │       UnaryOperator.php
    │           │   │   │
    │           │   │   ├───String
    │           │   │   │       IsJson.php
    │           │   │   │       RegularExpression.php
    │           │   │   │       StringContains.php
    │           │   │   │       StringEndsWith.php
    │           │   │   │       StringMatchesFormatDescription.php
    │           │   │   │       StringStartsWith.php
    │           │   │   │
    │           │   │   ├───Traversable
    │           │   │   │       ArrayHasKey.php
    │           │   │   │       TraversableContains.php
    │           │   │   │       TraversableContainsEqual.php
    │           │   │   │       TraversableContainsIdentical.php
    │           │   │   │       TraversableContainsOnly.php
    │           │   │   │
    │           │   │   └───Type
    │           │   │           IsInstanceOf.php
    │           │   │           IsNull.php
    │           │   │           IsType.php
    │           │   │
    │           │   ├───Error
    │           │   │       Deprecated.php
    │           │   │       Error.php
    │           │   │       Notice.php
    │           │   │       Warning.php
    │           │   │
    │           │   ├───Exception
    │           │   │       ActualValueIsNotAnObjectException.php
    │           │   │       AssertionFailedError.php
    │           │   │       CodeCoverageException.php
    │           │   │       ComparisonMethodDoesNotAcceptParameterTypeException.php
    │           │   │       ComparisonMethodDoesNotDeclareBoolReturnTypeException.php
    │           │   │       ComparisonMethodDoesNotDeclareExactlyOneParameterException.php
    │           │   │       ComparisonMethodDoesNotDeclareParameterTypeException.php
    │           │   │       ComparisonMethodDoesNotExistException.php
    │           │   │       CoveredCodeNotExecutedException.php
    │           │   │       Error.php
    │           │   │       Exception.php
    │           │   │       ExpectationFailedException.php
    │           │   │       IncompleteTestError.php
    │           │   │       InvalidArgumentException.php
    │           │   │       InvalidCoversTargetException.php
    │           │   │       InvalidDataProviderException.php
    │           │   │       MissingCoversAnnotationException.php
    │           │   │       NoChildTestSuiteException.php
    │           │   │       OutputError.php
    │           │   │       PHPTAssertionFailedError.php
    │           │   │       RiskyTestError.php
    │           │   │       SkippedTestError.php
    │           │   │       SkippedTestSuiteError.php
    │           │   │       SyntheticError.php
    │           │   │       SyntheticSkippedError.php
    │           │   │       UnintentionallyCoveredCodeError.php
    │           │   │       Warning.php
    │           │   │
    │           │   └───MockObject
    │           │       │   ConfigurableMethod.php
    │           │       │   Generator.php
    │           │       │   Invocation.php
    │           │       │   InvocationHandler.php
    │           │       │   Matcher.php
    │           │       │   MethodNameConstraint.php
    │           │       │   MockBuilder.php
    │           │       │   MockClass.php
    │           │       │   MockMethod.php
    │           │       │   MockMethodSet.php
    │           │       │   MockObject.php
    │           │       │   MockTrait.php
    │           │       │   MockType.php
    │           │       │   Stub.php
    │           │       │   Verifiable.php
    │           │       │
    │           │       ├───Api
    │           │       │       Api.php
    │           │       │       Method.php
    │           │       │
    │           │       ├───Builder
    │           │       │       Identity.php
    │           │       │       InvocationMocker.php
    │           │       │       InvocationStubber.php
    │           │       │       MethodNameMatch.php
    │           │       │       ParametersMatch.php
    │           │       │       Stub.php
    │           │       │
    │           │       ├───Exception
    │           │       │       BadMethodCallException.php
    │           │       │       CannotUseAddMethodsException.php
    │           │       │       CannotUseOnlyMethodsException.php
    │           │       │       ClassAlreadyExistsException.php
    │           │       │       ClassIsFinalException.php
    │           │       │       ClassIsReadonlyException.php
    │           │       │       ConfigurableMethodsAlreadyInitializedException.php
    │           │       │       DuplicateMethodException.php
    │           │       │       Exception.php
    │           │       │       IncompatibleReturnValueException.php
    │           │       │       InvalidMethodNameException.php
    │           │       │       MatchBuilderNotFoundException.php
    │           │       │       MatcherAlreadyRegisteredException.php
    │           │       │       MethodCannotBeConfiguredException.php
    │           │       │       MethodNameAlreadyConfiguredException.php
    │           │       │       MethodNameNotConfiguredException.php
    │           │       │       MethodParametersAlreadyConfiguredException.php
    │           │       │       OriginalConstructorInvocationRequiredException.php
    │           │       │       ReflectionException.php
    │           │       │       ReturnValueNotConfiguredException.php
    │           │       │       RuntimeException.php
    │           │       │       SoapExtensionNotAvailableException.php
    │           │       │       UnknownClassException.php
    │           │       │       UnknownTraitException.php
    │           │       │       UnknownTypeException.php
    │           │       │
    │           │       ├───Generator
    │           │       │       deprecation.tpl
    │           │       │       intersection.tpl
    │           │       │       mocked_class.tpl
    │           │       │       mocked_method.tpl
    │           │       │       mocked_method_never_or_void.tpl
    │           │       │       mocked_static_method.tpl
    │           │       │       proxied_method.tpl
    │           │       │       proxied_method_never_or_void.tpl
    │           │       │       trait_class.tpl
    │           │       │       wsdl_class.tpl
    │           │       │       wsdl_method.tpl
    │           │       │
    │           │       ├───Rule
    │           │       │       AnyInvokedCount.php
    │           │       │       AnyParameters.php
    │           │       │       ConsecutiveParameters.php
    │           │       │       InvocationOrder.php
    │           │       │       InvokedAtIndex.php
    │           │       │       InvokedAtLeastCount.php
    │           │       │       InvokedAtLeastOnce.php
    │           │       │       InvokedAtMostCount.php
    │           │       │       InvokedCount.php
    │           │       │       MethodName.php
    │           │       │       Parameters.php
    │           │       │       ParametersRule.php
    │           │       │
    │           │       └───Stub
    │           │               ConsecutiveCalls.php
    │           │               Exception.php
    │           │               ReturnArgument.php
    │           │               ReturnCallback.php
    │           │               ReturnReference.php
    │           │               ReturnSelf.php
    │           │               ReturnStub.php
    │           │               ReturnValueMap.php
    │           │               Stub.php
    │           │
    │           ├───Runner
    │           │   │   BaseTestRunner.php
    │           │   │   DefaultTestResultCache.php
    │           │   │   Exception.php
    │           │   │   NullTestResultCache.php
    │           │   │   PhptTestCase.php
    │           │   │   ResultCacheExtension.php
    │           │   │   StandardTestSuiteLoader.php
    │           │   │   TestResultCache.php
    │           │   │   TestSuiteLoader.php
    │           │   │   TestSuiteSorter.php
    │           │   │   Version.php
    │           │   │
    │           │   ├───Extension
    │           │   │       ExtensionHandler.php
    │           │   │       PharLoader.php
    │           │   │
    │           │   ├───Filter
    │           │   │       ExcludeGroupFilterIterator.php
    │           │   │       Factory.php
    │           │   │       GroupFilterIterator.php
    │           │   │       IncludeGroupFilterIterator.php
    │           │   │       NameFilterIterator.php
    │           │   │
    │           │   └───Hook
    │           │           AfterIncompleteTestHook.php
    │           │           AfterLastTestHook.php
    │           │           AfterRiskyTestHook.php
    │           │           AfterSkippedTestHook.php
    │           │           AfterSuccessfulTestHook.php
    │           │           AfterTestErrorHook.php
    │           │           AfterTestFailureHook.php
    │           │           AfterTestHook.php
    │           │           AfterTestWarningHook.php
    │           │           BeforeFirstTestHook.php
    │           │           BeforeTestHook.php
    │           │           Hook.php
    │           │           TestHook.php
    │           │           TestListenerAdapter.php
    │           │
    │           ├───TextUI
    │           │   │   Command.php
    │           │   │   DefaultResultPrinter.php
    │           │   │   Help.php
    │           │   │   ResultPrinter.php
    │           │   │   TestRunner.php
    │           │   │   TestSuiteMapper.php
    │           │   │
    │           │   ├───CliArguments
    │           │   │       Builder.php
    │           │   │       Configuration.php
    │           │   │       Exception.php
    │           │   │       Mapper.php
    │           │   │
    │           │   ├───Exception
    │           │   │       Exception.php
    │           │   │       ReflectionException.php
    │           │   │       RuntimeException.php
    │           │   │       TestDirectoryNotFoundException.php
    │           │   │       TestFileNotFoundException.php
    │           │   │
    │           │   └───XmlConfiguration
    │           │       │   Configuration.php
    │           │       │   Exception.php
    │           │       │   Generator.php
    │           │       │   Loader.php
    │           │       │
    │           │       ├───CodeCoverage
    │           │       │   │   CodeCoverage.php
    │           │       │   │   FilterMapper.php
    │           │       │   │
    │           │       │   ├───Filter
    │           │       │   │       Directory.php
    │           │       │   │       DirectoryCollection.php
    │           │       │   │       DirectoryCollectionIterator.php
    │           │       │   │
    │           │       │   └───Report
    │           │       │           Clover.php
    │           │       │           Cobertura.php
    │           │       │           Crap4j.php
    │           │       │           Html.php
    │           │       │           Php.php
    │           │       │           Text.php
    │           │       │           Xml.php
    │           │       │
    │           │       ├───Filesystem
    │           │       │       Directory.php
    │           │       │       DirectoryCollection.php
    │           │       │       DirectoryCollectionIterator.php
    │           │       │       File.php
    │           │       │       FileCollection.php
    │           │       │       FileCollectionIterator.php
    │           │       │
    │           │       ├───Group
    │           │       │       Group.php
    │           │       │       GroupCollection.php
    │           │       │       GroupCollectionIterator.php
    │           │       │       Groups.php
    │           │       │
    │           │       ├───Logging
    │           │       │   │   Junit.php
    │           │       │   │   Logging.php
    │           │       │   │   TeamCity.php
    │           │       │   │   Text.php
    │           │       │   │
    │           │       │   └───TestDox
    │           │       │           Html.php
    │           │       │           Text.php
    │           │       │           Xml.php
    │           │       │
    │           │       ├───Migration
    │           │       │   │   MigrationBuilder.php
    │           │       │   │   MigrationBuilderException.php
    │           │       │   │   MigrationException.php
    │           │       │   │   Migrator.php
    │           │       │   │
    │           │       │   └───Migrations
    │           │       │           ConvertLogTypes.php
    │           │       │           CoverageCloverToReport.php
    │           │       │           CoverageCrap4jToReport.php
    │           │       │           CoverageHtmlToReport.php
    │           │       │           CoveragePhpToReport.php
    │           │       │           CoverageTextToReport.php
    │           │       │           CoverageXmlToReport.php
    │           │       │           IntroduceCoverageElement.php
    │           │       │           LogToReportMigration.php
    │           │       │           Migration.php
    │           │       │           MoveAttributesFromFilterWhitelistToCoverage.php
    │           │       │           MoveAttributesFromRootToCoverage.php
    │           │       │           MoveWhitelistDirectoriesToCoverage.php
    │           │       │           MoveWhitelistExcludesToCoverage.php
    │           │       │           RemoveCacheTokensAttribute.php
    │           │       │           RemoveEmptyFilter.php
    │           │       │           RemoveLogTypes.php
    │           │       │           UpdateSchemaLocationTo93.php
    │           │       │
    │           │       ├───PHP
    │           │       │       Constant.php
    │           │       │       ConstantCollection.php
    │           │       │       ConstantCollectionIterator.php
    │           │       │       IniSetting.php
    │           │       │       IniSettingCollection.php
    │           │       │       IniSettingCollectionIterator.php
    │           │       │       Php.php
    │           │       │       PhpHandler.php
    │           │       │       Variable.php
    │           │       │       VariableCollection.php
    │           │       │       VariableCollectionIterator.php
    │           │       │
    │           │       ├───PHPUnit
    │           │       │       Extension.php
    │           │       │       ExtensionCollection.php
    │           │       │       ExtensionCollectionIterator.php
    │           │       │       PHPUnit.php
    │           │       │
    │           │       └───TestSuite
    │           │               TestDirectory.php
    │           │               TestDirectoryCollection.php
    │           │               TestDirectoryCollectionIterator.php
    │           │               TestFile.php
    │           │               TestFileCollection.php
    │           │               TestFileCollectionIterator.php
    │           │               TestSuite.php
    │           │               TestSuiteCollection.php
    │           │               TestSuiteCollectionIterator.php
    │           │
    │           └───Util
    │               │   Blacklist.php
    │               │   Cloner.php
    │               │   Color.php
    │               │   ErrorHandler.php
    │               │   Exception.php
    │               │   ExcludeList.php
    │               │   FileLoader.php
    │               │   Filesystem.php
    │               │   Filter.php
    │               │   GlobalState.php
    │               │   InvalidDataSetException.php
    │               │   Json.php
    │               │   Printer.php
    │               │   Reflection.php
    │               │   RegularExpression.php
    │               │   Test.php
    │               │   TextTestListRenderer.php
    │               │   Type.php
    │               │   VersionComparisonOperator.php
    │               │   XdebugFilterScriptGenerator.php
    │               │   Xml.php
    │               │   XmlTestListRenderer.php
    │               │
    │               ├───Annotation
    │               │       DocBlock.php
    │               │       Registry.php
    │               │
    │               ├───Log
    │               │       JUnit.php
    │               │       TeamCity.php
    │               │
    │               ├───PHP
    │               │   │   AbstractPhpProcess.php
    │               │   │   DefaultPhpProcess.php
    │               │   │   WindowsPhpProcess.php
    │               │   │
    │               │   └───Template
    │               │           PhptTestCase.tpl
    │               │           TestCaseClass.tpl
    │               │           TestCaseMethod.tpl
    │               │
    │               ├───TestDox
    │               │       CliTestDoxPrinter.php
    │               │       HtmlResultPrinter.php
    │               │       NamePrettifier.php
    │               │       ResultPrinter.php
    │               │       TestDoxPrinter.php
    │               │       TextResultPrinter.php
    │               │       XmlResultPrinter.php
    │               │
    │               └───Xml
    │                       Exception.php
    │                       FailedSchemaDetectionResult.php
    │                       Loader.php
    │                       SchemaDetectionResult.php
    │                       SchemaDetector.php
    │                       SchemaFinder.php
    │                       SnapshotNodeList.php
    │                       SuccessfulSchemaDetectionResult.php
    │                       ValidationResult.php
    │                       Validator.php
    │
    ├───psr
    │   ├───container
    │   │   │   .gitignore
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           ContainerExceptionInterface.php
    │   │           ContainerInterface.php
    │   │           NotFoundExceptionInterface.php
    │   │
    │   ├───event-dispatcher
    │   │   │   .editorconfig
    │   │   │   .gitignore
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           EventDispatcherInterface.php
    │   │           ListenerProviderInterface.php
    │   │           StoppableEventInterface.php
    │   │
    │   ├───http-client
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           ClientExceptionInterface.php
    │   │           ClientInterface.php
    │   │           NetworkExceptionInterface.php
    │   │           RequestExceptionInterface.php
    │   │
    │   ├───http-factory
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           RequestFactoryInterface.php
    │   │           ResponseFactoryInterface.php
    │   │           ServerRequestFactoryInterface.php
    │   │           StreamFactoryInterface.php
    │   │           UploadedFileFactoryInterface.php
    │   │           UriFactoryInterface.php
    │   │
    │   ├───http-message
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───docs
    │   │   │       PSR7-Interfaces.md
    │   │   │       PSR7-Usage.md
    │   │   │
    │   │   └───src
    │   │           MessageInterface.php
    │   │           RequestInterface.php
    │   │           ResponseInterface.php
    │   │           ServerRequestInterface.php
    │   │           StreamInterface.php
    │   │           UploadedFileInterface.php
    │   │           UriInterface.php
    │   │
    │   ├───log
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───Psr
    │   │       └───Log
    │   │           │   AbstractLogger.php
    │   │           │   InvalidArgumentException.php
    │   │           │   LoggerAwareInterface.php
    │   │           │   LoggerAwareTrait.php
    │   │           │   LoggerInterface.php
    │   │           │   LoggerTrait.php
    │   │           │   LogLevel.php
    │   │           │   NullLogger.php
    │   │           │
    │   │           └───Test
    │   │                   DummyTest.php
    │   │                   LoggerInterfaceTest.php
    │   │                   TestLogger.php
    │   │
    │   └───simple-cache
    │       │   .editorconfig
    │       │   composer.json
    │       │   LICENSE.md
    │       │   README.md
    │       │
    │       └───src
    │               CacheException.php
    │               CacheInterface.php
    │               InvalidArgumentException.php
    │
    ├───psy
    │   └───psysh
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       ├───bin
    │       │       psysh
    │       │
    │       └───src
    │           │   CodeCleaner.php
    │           │   ConfigPaths.php
    │           │   Configuration.php
    │           │   Context.php
    │           │   ContextAware.php
    │           │   EnvInterface.php
    │           │   ExecutionClosure.php
    │           │   ExecutionLoopClosure.php
    │           │   functions.php
    │           │   ParserFactory.php
    │           │   Shell.php
    │           │   Sudo.php
    │           │   SuperglobalsEnv.php
    │           │   SystemEnv.php
    │           │
    │           ├───CodeCleaner
    │           │       AbstractClassPass.php
    │           │       AssignThisVariablePass.php
    │           │       CalledClassPass.php
    │           │       CallTimePassByReferencePass.php
    │           │       CodeCleanerPass.php
    │           │       EmptyArrayDimFetchPass.php
    │           │       ExitPass.php
    │           │       FinalClassPass.php
    │           │       FunctionContextPass.php
    │           │       FunctionReturnInWriteContextPass.php
    │           │       ImplicitReturnPass.php
    │           │       InstanceOfPass.php
    │           │       IssetPass.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
    │           │       ValidConstructorPass.php
    │           │       ValidFunctionNamePass.php
    │           │
    │           ├───Command
    │           │   │   BufferCommand.php
    │           │   │   ClearCommand.php
    │           │   │   Command.php
    │           │   │   DocCommand.php
    │           │   │   DumpCommand.php
    │           │   │   EditCommand.php
    │           │   │   ExitCommand.php
    │           │   │   HelpCommand.php
    │           │   │   HistoryCommand.php
    │           │   │   ListCommand.php
    │           │   │   ParseCommand.php
    │           │   │   PsyVersionCommand.php
    │           │   │   ReflectingCommand.php
    │           │   │   ShowCommand.php
    │           │   │   SudoCommand.php
    │           │   │   ThrowUpCommand.php
    │           │   │   TimeitCommand.php
    │           │   │   TraceCommand.php
    │           │   │   WhereamiCommand.php
    │           │   │   WtfCommand.php
    │           │   │
    │           │   ├───ListCommand
    │           │   │       ClassConstantEnumerator.php
    │           │   │       ClassEnumerator.php
    │           │   │       ConstantEnumerator.php
    │           │   │       Enumerator.php
    │           │   │       FunctionEnumerator.php
    │           │   │       GlobalVariableEnumerator.php
    │           │   │       MethodEnumerator.php
    │           │   │       PropertyEnumerator.php
    │           │   │       VariableEnumerator.php
    │           │   │
    │           │   └───TimeitCommand
    │           │           TimeitVisitor.php
    │           │
    │           ├───Exception
    │           │       BreakException.php
    │           │       DeprecatedException.php
    │           │       ErrorException.php
    │           │       Exception.php
    │           │       FatalErrorException.php
    │           │       ParseErrorException.php
    │           │       RuntimeException.php
    │           │       ThrowUpException.php
    │           │       TypeErrorException.php
    │           │       UnexpectedTargetException.php
    │           │
    │           ├───ExecutionLoop
    │           │       AbstractListener.php
    │           │       Listener.php
    │           │       ProcessForker.php
    │           │       RunkitReloader.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
    │           │       Theme.php
    │           │
    │           ├───Readline
    │           │   │   GNUReadline.php
    │           │   │   HoaConsole.php
    │           │   │   Libedit.php
    │           │   │   Readline.php
    │           │   │   Transient.php
    │           │   │   Userland.php
    │           │   │
    │           │   └───Hoa
    │           │       │   Autocompleter.php
    │           │       │   AutocompleterAggregate.php
    │           │       │   AutocompleterPath.php
    │           │       │   AutocompleterWord.php
    │           │       │   Console.php
    │           │       │   ConsoleCursor.php
    │           │       │   ConsoleException.php
    │           │       │   ConsoleInput.php
    │           │       │   ConsoleOutput.php
    │           │       │   ConsoleProcessus.php
    │           │       │   ConsoleTput.php
    │           │       │   ConsoleWindow.php
    │           │       │   Event.php
    │           │       │   EventBucket.php
    │           │       │   EventException.php
    │           │       │   EventListenable.php
    │           │       │   EventListener.php
    │           │       │   EventListens.php
    │           │       │   EventSource.php
    │           │       │   Exception.php
    │           │       │   ExceptionIdle.php
    │           │       │   File.php
    │           │       │   FileDirectory.php
    │           │       │   FileDoesNotExistException.php
    │           │       │   FileException.php
    │           │       │   FileFinder.php
    │           │       │   FileGeneric.php
    │           │       │   FileLink.php
    │           │       │   FileLinkRead.php
    │           │       │   FileLinkReadWrite.php
    │           │       │   FileRead.php
    │           │       │   FileReadWrite.php
    │           │       │   IStream.php
    │           │       │   IteratorFileSystem.php
    │           │       │   IteratorRecursiveDirectory.php
    │           │       │   IteratorSplFileInfo.php
    │           │       │   Protocol.php
    │           │       │   ProtocolException.php
    │           │       │   ProtocolNode.php
    │           │       │   ProtocolNodeLibrary.php
    │           │       │   ProtocolWrapper.php
    │           │       │   Readline.php
    │           │       │   Stream.php
    │           │       │   StreamBufferable.php
    │           │       │   StreamContext.php
    │           │       │   StreamException.php
    │           │       │   StreamIn.php
    │           │       │   StreamLockable.php
    │           │       │   StreamOut.php
    │           │       │   StreamPathable.php
    │           │       │   StreamPointable.php
    │           │       │   StreamStatable.php
    │           │       │   StreamTouchable.php
    │           │       │   Ustring.php
    │           │       │   Xcallable.php
    │           │       │
    │           │       └───Terminfo
    │           │           ├───77
    │           │           │       windows-ansi
    │           │           │
    │           │           └───78
    │           │                   xterm
    │           │                   xterm-256color
    │           │
    │           ├───Reflection
    │           │       ReflectionClassConstant.php
    │           │       ReflectionConstant.php
    │           │       ReflectionConstant_.php
    │           │       ReflectionLanguageConstruct.php
    │           │       ReflectionLanguageConstructParameter.php
    │           │       ReflectionNamespace.php
    │           │
    │           ├───Sudo
    │           │       SudoVisitor.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
    │               │   Downloader.php
    │               │   GitHubChecker.php
    │               │   Installer.php
    │               │   IntervalChecker.php
    │               │   NoopChecker.php
    │               │   SelfUpdate.php
    │               │
    │               └───Downloader
    │                       CurlDownloader.php
    │                       Factory.php
    │                       FileDownloader.php
    │
    ├───ralouphie
    │   └───getallheaders
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       └───src
    │               getallheaders.php
    │
    ├───ramsey
    │   ├───collection
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   SECURITY.md
    │   │   │
    │   │   ├───bin
    │   │   └───src
    │   │       │   AbstractArray.php
    │   │       │   AbstractCollection.php
    │   │       │   AbstractSet.php
    │   │       │   ArrayInterface.php
    │   │       │   Collection.php
    │   │       │   CollectionInterface.php
    │   │       │   DoubleEndedQueue.php
    │   │       │   DoubleEndedQueueInterface.php
    │   │       │   GenericArray.php
    │   │       │   Queue.php
    │   │       │   QueueInterface.php
    │   │       │   Set.php
    │   │       │
    │   │       ├───Exception
    │   │       │       CollectionMismatchException.php
    │   │       │       InvalidArgumentException.php
    │   │       │       InvalidSortOrderException.php
    │   │       │       NoSuchElementException.php
    │   │       │       OutOfBoundsException.php
    │   │       │       UnsupportedOperationException.php
    │   │       │       ValueExtractionException.php
    │   │       │
    │   │       ├───Map
    │   │       │       AbstractMap.php
    │   │       │       AbstractTypedMap.php
    │   │       │       AssociativeArrayMap.php
    │   │       │       MapInterface.php
    │   │       │       NamedParameterMap.php
    │   │       │       TypedMap.php
    │   │       │       TypedMapInterface.php
    │   │       │
    │   │       └───Tool
    │   │               TypeTrait.php
    │   │               ValueExtractorTrait.php
    │   │               ValueToStringTrait.php
    │   │
    │   └───uuid
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       └───src
    │           │   BinaryUtils.php
    │           │   DegradedUuid.php
    │           │   DeprecatedUuidInterface.php
    │           │   DeprecatedUuidMethodsTrait.php
    │           │   FeatureSet.php
    │           │   functions.php
    │           │   Uuid.php
    │           │   UuidFactory.php
    │           │   UuidFactoryInterface.php
    │           │   UuidInterface.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
    │           │   │   NumberConverterInterface.php
    │           │   │   TimeConverterInterface.php
    │           │   │
    │           │   ├───Number
    │           │   │       BigNumberConverter.php
    │           │   │       DegradedNumberConverter.php
    │           │   │       GenericNumberConverter.php
    │           │   │
    │           │   └───Time
    │           │           BigNumberTimeConverter.php
    │           │           DegradedTimeConverter.php
    │           │           GenericTimeConverter.php
    │           │           PhpTimeConverter.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
    │           │       UuidExceptionInterface.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
    │           │   │   DceSecurityProviderInterface.php
    │           │   │   NodeProviderInterface.php
    │           │   │   TimeProviderInterface.php
    │           │   │
    │           │   ├───Dce
    │           │   │       SystemDceSecurityProvider.php
    │           │   │
    │           │   ├───Node
    │           │   │       FallbackNodeProvider.php
    │           │   │       NodeProviderCollection.php
    │           │   │       RandomNodeProvider.php
    │           │   │       StaticNodeProvider.php
    │           │   │       SystemNodeProvider.php
    │           │   │
    │           │   └───Time
    │           │           FixedTimeProvider.php
    │           │           SystemTimeProvider.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
    │           │
    │           └───Validator
    │                   GenericValidator.php
    │                   ValidatorInterface.php
    │
    ├───sebastian
    │   ├───cli-parser
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   infection.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   Parser.php
    │   │       │
    │   │       └───exceptions
    │   │               AmbiguousOptionException.php
    │   │               Exception.php
    │   │               OptionDoesNotAllowArgumentException.php
    │   │               RequiredOptionArgumentMissingException.php
    │   │               UnknownOptionException.php
    │   │
    │   ├───code-unit
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │       │   ClassMethodUnit.php
    │   │       │   ClassUnit.php
    │   │       │   CodeUnit.php
    │   │       │   CodeUnitCollection.php
    │   │       │   CodeUnitCollectionIterator.php
    │   │       │   FunctionUnit.php
    │   │       │   InterfaceMethodUnit.php
    │   │       │   InterfaceUnit.php
    │   │       │   Mapper.php
    │   │       │   TraitMethodUnit.php
    │   │       │   TraitUnit.php
    │   │       │
    │   │       └───exceptions
    │   │               Exception.php
    │   │               InvalidCodeUnitException.php
    │   │               NoTraitException.php
    │   │               ReflectionException.php
    │   │
    │   ├───code-unit-reverse-lookup
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           Wizard.php
    │   │
    │   ├───comparator
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   ArrayComparator.php
    │   │       │   Comparator.php
    │   │       │   ComparisonFailure.php
    │   │       │   DateTimeComparator.php
    │   │       │   DOMNodeComparator.php
    │   │       │   DoubleComparator.php
    │   │       │   ExceptionComparator.php
    │   │       │   Factory.php
    │   │       │   MockObjectComparator.php
    │   │       │   NumericComparator.php
    │   │       │   ObjectComparator.php
    │   │       │   ResourceComparator.php
    │   │       │   ScalarComparator.php
    │   │       │   SplObjectStorageComparator.php
    │   │       │   TypeComparator.php
    │   │       │
    │   │       └───exceptions
    │   │               Exception.php
    │   │               RuntimeException.php
    │   │
    │   ├───complexity
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │       │   Calculator.php
    │   │       │
    │   │       ├───Complexity
    │   │       │       Complexity.php
    │   │       │       ComplexityCollection.php
    │   │       │       ComplexityCollectionIterator.php
    │   │       │
    │   │       ├───Exception
    │   │       │       Exception.php
    │   │       │       RuntimeException.php
    │   │       │
    │   │       └───Visitor
    │   │               ComplexityCalculatingVisitor.php
    │   │               CyclomaticComplexityCalculatingVisitor.php
    │   │
    │   ├───diff
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   Chunk.php
    │   │       │   Diff.php
    │   │       │   Differ.php
    │   │       │   Line.php
    │   │       │   LongestCommonSubsequenceCalculator.php
    │   │       │   MemoryEfficientLongestCommonSubsequenceCalculator.php
    │   │       │   Parser.php
    │   │       │   TimeEfficientLongestCommonSubsequenceCalculator.php
    │   │       │
    │   │       ├───Exception
    │   │       │       ConfigurationException.php
    │   │       │       Exception.php
    │   │       │       InvalidArgumentException.php
    │   │       │
    │   │       └───Output
    │   │               AbstractChunkOutputBuilder.php
    │   │               DiffOnlyOutputBuilder.php
    │   │               DiffOutputBuilderInterface.php
    │   │               StrictUnifiedDiffOutputBuilder.php
    │   │               UnifiedDiffOutputBuilder.php
    │   │
    │   ├───environment
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           Console.php
    │   │           OperatingSystem.php
    │   │           Runtime.php
    │   │
    │   ├───exporter
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           Exporter.php
    │   │
    │   ├───global-state
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   CodeExporter.php
    │   │       │   ExcludeList.php
    │   │       │   Restorer.php
    │   │       │   Snapshot.php
    │   │       │
    │   │       └───exceptions
    │   │               Exception.php
    │   │               RuntimeException.php
    │   │
    │   ├───lines-of-code
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │       │   Counter.php
    │   │       │   LineCountingVisitor.php
    │   │       │   LinesOfCode.php
    │   │       │
    │   │       └───Exception
    │   │               Exception.php
    │   │               IllogicalValuesException.php
    │   │               NegativeValueException.php
    │   │               RuntimeException.php
    │   │
    │   ├───object-enumerator
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   phpunit.xml
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │           Enumerator.php
    │   │           Exception.php
    │   │           InvalidArgumentException.php
    │   │
    │   ├───object-reflector
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───.psalm
    │   │   │       baseline.xml
    │   │   │       config.xml
    │   │   │
    │   │   └───src
    │   │           Exception.php
    │   │           InvalidArgumentException.php
    │   │           ObjectReflector.php
    │   │
    │   ├───recursion-context
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │           Context.php
    │   │           Exception.php
    │   │           InvalidArgumentException.php
    │   │
    │   ├───resource-operations
    │   │   │   .gitattributes
    │   │   │   .gitignore
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───build
    │   │   │       generate.php
    │   │   │
    │   │   └───src
    │   │           ResourceOperations.php
    │   │
    │   ├───type
    │   │   │   ChangeLog.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───src
    │   │       │   Parameter.php
    │   │       │   ReflectionMapper.php
    │   │       │   TypeName.php
    │   │       │
    │   │       ├───exception
    │   │       │       Exception.php
    │   │       │       RuntimeException.php
    │   │       │
    │   │       └───type
    │   │               CallableType.php
    │   │               FalseType.php
    │   │               GenericObjectType.php
    │   │               IntersectionType.php
    │   │               IterableType.php
    │   │               MixedType.php
    │   │               NeverType.php
    │   │               NullType.php
    │   │               ObjectType.php
    │   │               SimpleType.php
    │   │               StaticType.php
    │   │               TrueType.php
    │   │               Type.php
    │   │               UnionType.php
    │   │               UnknownType.php
    │   │               VoidType.php
    │   │
    │   └───version
    │       │   .gitattributes
    │       │   .gitignore
    │       │   ChangeLog.md
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       └───src
    │               Version.php
    │
    ├───swiftmailer
    │   └───swiftmailer
    │       │   .gitattributes
    │       │   .gitignore
    │       │   .php_cs.dist
    │       │   CHANGES
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │
    │       ├───.github
    │       │   │   ISSUE_TEMPLATE.md
    │       │   │   PULL_REQUEST_TEMPLATE.md
    │       │   │
    │       │   └───workflows
    │       │           tests.yml
    │       │
    │       ├───doc
    │       │       headers.rst
    │       │       index.rst
    │       │       introduction.rst
    │       │       japanese.rst
    │       │       messages.rst
    │       │       plugins.rst
    │       │       sending.rst
    │       │
    │       └───lib
    │           │   mime_types.php
    │           │   preferences.php
    │           │   swiftmailer_generate_mimes_config.php
    │           │   swift_required.php
    │           │
    │           ├───classes
    │           │   │   Swift.php
    │           │   │
    │           │   └───Swift
    │           │       │   AddressEncoder.php
    │           │       │   AddressEncoderException.php
    │           │       │   Attachment.php
    │           │       │   CharacterReader.php
    │           │       │   CharacterReaderFactory.php
    │           │       │   CharacterStream.php
    │           │       │   ConfigurableSpool.php
    │           │       │   DependencyContainer.php
    │           │       │   DependencyException.php
    │           │       │   EmbeddedFile.php
    │           │       │   Encoder.php
    │           │       │   FailoverTransport.php
    │           │       │   FileSpool.php
    │           │       │   FileStream.php
    │           │       │   Filterable.php
    │           │       │   IdGenerator.php
    │           │       │   Image.php
    │           │       │   InputByteStream.php
    │           │       │   IoException.php
    │           │       │   KeyCache.php
    │           │       │   LoadBalancedTransport.php
    │           │       │   Mailer.php
    │           │       │   MemorySpool.php
    │           │       │   Message.php
    │           │       │   MimePart.php
    │           │       │   NullTransport.php
    │           │       │   OutputByteStream.php
    │           │       │   Preferences.php
    │           │       │   ReplacementFilterFactory.php
    │           │       │   RfcComplianceException.php
    │           │       │   SendmailTransport.php
    │           │       │   Signer.php
    │           │       │   SmtpTransport.php
    │           │       │   Spool.php
    │           │       │   SpoolTransport.php
    │           │       │   StreamFilter.php
    │           │       │   SwiftException.php
    │           │       │   Transport.php
    │           │       │   TransportException.php
    │           │       │
    │           │       ├───AddressEncoder
    │           │       │       IdnAddressEncoder.php
    │           │       │       Utf8AddressEncoder.php
    │           │       │
    │           │       ├───ByteStream
    │           │       │       AbstractFilterableInputStream.php
    │           │       │       ArrayByteStream.php
    │           │       │       FileByteStream.php
    │           │       │       TemporaryFileByteStream.php
    │           │       │
    │           │       ├───CharacterReader
    │           │       │       GenericFixedWidthReader.php
    │           │       │       UsAsciiReader.php
    │           │       │       Utf8Reader.php
    │           │       │
    │           │       ├───CharacterReaderFactory
    │           │       │       SimpleCharacterReaderFactory.php
    │           │       │
    │           │       ├───CharacterStream
    │           │       │       ArrayCharacterStream.php
    │           │       │       NgCharacterStream.php
    │           │       │
    │           │       ├───Encoder
    │           │       │       Base64Encoder.php
    │           │       │       QpEncoder.php
    │           │       │       Rfc2231Encoder.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
    │           │       │
    │           │       ├───KeyCache
    │           │       │       ArrayKeyCache.php
    │           │       │       DiskKeyCache.php
    │           │       │       KeyCacheInputStream.php
    │           │       │       NullKeyCache.php
    │           │       │       SimpleKeyCacheInputStream.php
    │           │       │
    │           │       ├───Mailer
    │           │       │       ArrayRecipientIterator.php
    │           │       │       RecipientIterator.php
    │           │       │
    │           │       ├───Mime
    │           │       │   │   Attachment.php
    │           │       │   │   CharsetObserver.php
    │           │       │   │   ContentEncoder.php
    │           │       │   │   EmbeddedFile.php
    │           │       │   │   EncodingObserver.php
    │           │       │   │   Header.php
    │           │       │   │   HeaderEncoder.php
    │           │       │   │   IdGenerator.php
    │           │       │   │   MimePart.php
    │           │       │   │   SimpleHeaderFactory.php
    │           │       │   │   SimpleHeaderSet.php
    │           │       │   │   SimpleMessage.php
    │           │       │   │   SimpleMimeEntity.php
    │           │       │   │
    │           │       │   ├───ContentEncoder
    │           │       │   │       Base64ContentEncoder.php
    │           │       │   │       NativeQpContentEncoder.php
    │           │       │   │       NullContentEncoder.php
    │           │       │   │       PlainContentEncoder.php
    │           │       │   │       QpContentEncoder.php
    │           │       │   │       QpContentEncoderProxy.php
    │           │       │   │       RawContentEncoder.php
    │           │       │   │
    │           │       │   ├───HeaderEncoder
    │           │       │   │       Base64HeaderEncoder.php
    │           │       │   │       QpHeaderEncoder.php
    │           │       │   │
    │           │       │   └───Headers
    │           │       │           AbstractHeader.php
    │           │       │           DateHeader.php
    │           │       │           IdentificationHeader.php
    │           │       │           MailboxHeader.php
    │           │       │           OpenDKIMHeader.php
    │           │       │           ParameterizedHeader.php
    │           │       │           PathHeader.php
    │           │       │           UnstructuredHeader.php
    │           │       │
    │           │       ├───Plugins
    │           │       │   │   AntiFloodPlugin.php
    │           │       │   │   BandwidthMonitorPlugin.php
    │           │       │   │   DecoratorPlugin.php
    │           │       │   │   ImpersonatePlugin.php
    │           │       │   │   Logger.php
    │           │       │   │   LoggerPlugin.php
    │           │       │   │   MessageLogger.php
    │           │       │   │   PopBeforeSmtpPlugin.php
    │           │       │   │   RedirectingPlugin.php
    │           │       │   │   Reporter.php
    │           │       │   │   ReporterPlugin.php
    │           │       │   │   Sleeper.php
    │           │       │   │   ThrottlerPlugin.php
    │           │       │   │   Timer.php
    │           │       │   │
    │           │       │   ├───Decorator
    │           │       │   │       Replacements.php
    │           │       │   │
    │           │       │   ├───Loggers
    │           │       │   │       ArrayLogger.php
    │           │       │   │       EchoLogger.php
    │           │       │   │
    │           │       │   ├───Pop
    │           │       │   │       Pop3Connection.php
    │           │       │   │       Pop3Exception.php
    │           │       │   │
    │           │       │   └───Reporters
    │           │       │           HitReporter.php
    │           │       │           HtmlReporter.php
    │           │       │
    │           │       ├───Signers
    │           │       │       BodySigner.php
    │           │       │       DKIMSigner.php
    │           │       │       DomainKeySigner.php
    │           │       │       HeaderSigner.php
    │           │       │       OpenDKIMSigner.php
    │           │       │       SMimeSigner.php
    │           │       │
    │           │       ├───StreamFilters
    │           │       │       ByteArrayReplacementFilter.php
    │           │       │       StringReplacementFilter.php
    │           │       │       StringReplacementFilterFactory.php
    │           │       │
    │           │       └───Transport
    │           │           │   AbstractSmtpTransport.php
    │           │           │   EsmtpHandler.php
    │           │           │   EsmtpTransport.php
    │           │           │   FailoverTransport.php
    │           │           │   IoBuffer.php
    │           │           │   LoadBalancedTransport.php
    │           │           │   NullTransport.php
    │           │           │   SendmailTransport.php
    │           │           │   SmtpAgent.php
    │           │           │   SpoolTransport.php
    │           │           │   StreamBuffer.php
    │           │           │
    │           │           └───Esmtp
    │           │               │   Authenticator.php
    │           │               │   AuthHandler.php
    │           │               │   EightBitMimeHandler.php
    │           │               │   SmtpUtf8Handler.php
    │           │               │
    │           │               └───Auth
    │           │                       CramMd5Authenticator.php
    │           │                       LoginAuthenticator.php
    │           │                       NTLMAuthenticator.php
    │           │                       PlainAuthenticator.php
    │           │                       XOAuth2Authenticator.php
    │           │
    │           └───dependency_maps
    │                   cache_deps.php
    │                   message_deps.php
    │                   mime_deps.php
    │                   transport_deps.php
    │
    ├───symfony
    │   ├───console
    │   │   │   Application.php
    │   │   │   CHANGELOG.md
    │   │   │   Color.php
    │   │   │   composer.json
    │   │   │   ConsoleEvents.php
    │   │   │   Cursor.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   SingleCommandApplication.php
    │   │   │   Terminal.php
    │   │   │
    │   │   ├───Attribute
    │   │   │       AsCommand.php
    │   │   │
    │   │   ├───CI
    │   │   │       GithubActionReporter.php
    │   │   │
    │   │   ├───Command
    │   │   │       Command.php
    │   │   │       CompleteCommand.php
    │   │   │       DumpCompletionCommand.php
    │   │   │       HelpCommand.php
    │   │   │       LazyCommand.php
    │   │   │       ListCommand.php
    │   │   │       LockableTrait.php
    │   │   │       SignalableCommandInterface.php
    │   │   │
    │   │   ├───CommandLoader
    │   │   │       CommandLoaderInterface.php
    │   │   │       ContainerCommandLoader.php
    │   │   │       FactoryCommandLoader.php
    │   │   │
    │   │   ├───Completion
    │   │   │   │   CompletionInput.php
    │   │   │   │   CompletionSuggestions.php
    │   │   │   │   Suggestion.php
    │   │   │   │
    │   │   │   └───Output
    │   │   │           BashCompletionOutput.php
    │   │   │           CompletionOutputInterface.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
    │   │   │
    │   │   ├───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
    │   │   │
    │   │   ├───Resources
    │   │   │   │   completion.bash
    │   │   │   │
    │   │   │   └───bin
    │   │   │           hiddeninput.exe
    │   │   │
    │   │   ├───SignalRegistry
    │   │   │       SignalRegistry.php
    │   │   │
    │   │   ├───Style
    │   │   │       OutputStyle.php
    │   │   │       StyleInterface.php
    │   │   │       SymfonyStyle.php
    │   │   │
    │   │   └───Tester
    │   │       │   ApplicationTester.php
    │   │       │   CommandCompletionTester.php
    │   │       │   CommandTester.php
    │   │       │   TesterTrait.php
    │   │       │
    │   │       └───Constraint
    │   │               CommandIsSuccessful.php
    │   │
    │   ├───css-selector
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   CssSelectorConverter.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───Exception
    │   │   │       ExceptionInterface.php
    │   │   │       ExpressionErrorException.php
    │   │   │       InternalErrorException.php
    │   │   │       ParseException.php
    │   │   │       SyntaxErrorException.php
    │   │   │
    │   │   ├───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
    │   │   │   │   Parser.php
    │   │   │   │   ParserInterface.php
    │   │   │   │   Reader.php
    │   │   │   │   Token.php
    │   │   │   │   TokenStream.php
    │   │   │   │
    │   │   │   ├───Handler
    │   │   │   │       CommentHandler.php
    │   │   │   │       HandlerInterface.php
    │   │   │   │       HashHandler.php
    │   │   │   │       IdentifierHandler.php
    │   │   │   │       NumberHandler.php
    │   │   │   │       StringHandler.php
    │   │   │   │       WhitespaceHandler.php
    │   │   │   │
    │   │   │   ├───Shortcut
    │   │   │   │       ClassParser.php
    │   │   │   │       ElementParser.php
    │   │   │   │       EmptyStringParser.php
    │   │   │   │       HashParser.php
    │   │   │   │
    │   │   │   └───Tokenizer
    │   │   │           Tokenizer.php
    │   │   │           TokenizerEscaping.php
    │   │   │           TokenizerPatterns.php
    │   │   │
    │   │   └───XPath
    │   │       │   Translator.php
    │   │       │   TranslatorInterface.php
    │   │       │   XPathExpr.php
    │   │       │
    │   │       └───Extension
    │   │               AbstractExtension.php
    │   │               AttributeMatchingExtension.php
    │   │               CombinationExtension.php
    │   │               ExtensionInterface.php
    │   │               FunctionExtension.php
    │   │               HtmlExtension.php
    │   │               NodeExtension.php
    │   │               PseudoClassExtension.php
    │   │
    │   ├───deprecation-contracts
    │   │       .gitignore
    │   │       CHANGELOG.md
    │   │       composer.json
    │   │       function.php
    │   │       LICENSE
    │   │       README.md
    │   │
    │   ├───error-handler
    │   │   │   BufferingLogger.php
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   Debug.php
    │   │   │   DebugClassLoader.php
    │   │   │   ErrorHandler.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   ThrowableUtils.php
    │   │   │
    │   │   ├───Error
    │   │   │       ClassNotFoundError.php
    │   │   │       FatalError.php
    │   │   │       OutOfMemoryError.php
    │   │   │       UndefinedFunctionError.php
    │   │   │       UndefinedMethodError.php
    │   │   │
    │   │   ├───ErrorEnhancer
    │   │   │       ClassNotFoundErrorEnhancer.php
    │   │   │       ErrorEnhancerInterface.php
    │   │   │       UndefinedFunctionErrorEnhancer.php
    │   │   │       UndefinedMethodErrorEnhancer.php
    │   │   │
    │   │   ├───ErrorRenderer
    │   │   │       CliErrorRenderer.php
    │   │   │       ErrorRendererInterface.php
    │   │   │       HtmlErrorRenderer.php
    │   │   │       SerializerErrorRenderer.php
    │   │   │
    │   │   ├───Exception
    │   │   │       FlattenException.php
    │   │   │       SilencedErrorContext.php
    │   │   │
    │   │   ├───Internal
    │   │   │       TentativeTypes.php
    │   │   │
    │   │   └───Resources
    │   │       ├───assets
    │   │       │   ├───css
    │   │       │   │       error.css
    │   │       │   │       exception.css
    │   │       │   │       exception_full.css
    │   │       │   │
    │   │       │   ├───images
    │   │       │   │       chevron-right.svg
    │   │       │   │       favicon.png.base64
    │   │       │   │       icon-book.svg
    │   │       │   │       icon-copy.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
    │   │       │
    │   │       ├───bin
    │   │       │       extract-tentative-return-types.php
    │   │       │       patch-type-declarations
    │   │       │
    │   │       └───views
    │   │               error.html.php
    │   │               exception.html.php
    │   │               exception_full.html.php
    │   │               logs.html.php
    │   │               trace.html.php
    │   │               traces.html.php
    │   │               traces_text.html.php
    │   │
    │   ├───event-dispatcher
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   EventDispatcher.php
    │   │   │   EventDispatcherInterface.php
    │   │   │   EventSubscriberInterface.php
    │   │   │   GenericEvent.php
    │   │   │   ImmutableEventDispatcher.php
    │   │   │   LegacyEventDispatcherProxy.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   ├───Attribute
    │   │   │       AsEventListener.php
    │   │   │
    │   │   ├───Debug
    │   │   │       TraceableEventDispatcher.php
    │   │   │       WrappedListener.php
    │   │   │
    │   │   └───DependencyInjection
    │   │           AddEventAliasesPass.php
    │   │           RegisterListenersPass.php
    │   │
    │   ├───event-dispatcher-contracts
    │   │       .gitignore
    │   │       CHANGELOG.md
    │   │       composer.json
    │   │       Event.php
    │   │       EventDispatcherInterface.php
    │   │       LICENSE
    │   │       README.md
    │   │
    │   ├───finder
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   Finder.php
    │   │   │   Gitignore.php
    │   │   │   Glob.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   SplFileInfo.php
    │   │   │
    │   │   ├───Comparator
    │   │   │       Comparator.php
    │   │   │       DateComparator.php
    │   │   │       NumberComparator.php
    │   │   │
    │   │   ├───Exception
    │   │   │       AccessDeniedException.php
    │   │   │       DirectoryNotFoundException.php
    │   │   │
    │   │   └───Iterator
    │   │           CustomFilterIterator.php
    │   │           DateRangeFilterIterator.php
    │   │           DepthRangeFilterIterator.php
    │   │           ExcludeDirectoryFilterIterator.php
    │   │           FilecontentFilterIterator.php
    │   │           FilenameFilterIterator.php
    │   │           FileTypeFilterIterator.php
    │   │           LazyIterator.php
    │   │           MultiplePcreFilterIterator.php
    │   │           PathFilterIterator.php
    │   │           RecursiveDirectoryIterator.php
    │   │           SizeRangeFilterIterator.php
    │   │           SortableIterator.php
    │   │           VcsIgnoredFilterIterator.php
    │   │
    │   ├───http-foundation
    │   │   │   AcceptHeader.php
    │   │   │   AcceptHeaderItem.php
    │   │   │   BinaryFileResponse.php
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   Cookie.php
    │   │   │   ExpressionRequestMatcher.php
    │   │   │   FileBag.php
    │   │   │   HeaderBag.php
    │   │   │   HeaderUtils.php
    │   │   │   InputBag.php
    │   │   │   IpUtils.php
    │   │   │   JsonResponse.php
    │   │   │   LICENSE
    │   │   │   ParameterBag.php
    │   │   │   README.md
    │   │   │   RedirectResponse.php
    │   │   │   Request.php
    │   │   │   RequestMatcher.php
    │   │   │   RequestMatcherInterface.php
    │   │   │   RequestStack.php
    │   │   │   Response.php
    │   │   │   ResponseHeaderBag.php
    │   │   │   ServerBag.php
    │   │   │   StreamedResponse.php
    │   │   │   UrlHelper.php
    │   │   │
    │   │   ├───Exception
    │   │   │       BadRequestException.php
    │   │   │       ConflictingHeadersException.php
    │   │   │       JsonException.php
    │   │   │       RequestExceptionInterface.php
    │   │   │       SessionNotFoundException.php
    │   │   │       SuspiciousOperationException.php
    │   │   │
    │   │   ├───File
    │   │   │   │   File.php
    │   │   │   │   Stream.php
    │   │   │   │   UploadedFile.php
    │   │   │   │
    │   │   │   └───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
    │   │   │
    │   │   ├───RateLimiter
    │   │   │       AbstractRequestRateLimiter.php
    │   │   │       RequestRateLimiterInterface.php
    │   │   │
    │   │   ├───Session
    │   │   │   │   Session.php
    │   │   │   │   SessionBagInterface.php
    │   │   │   │   SessionBagProxy.php
    │   │   │   │   SessionFactory.php
    │   │   │   │   SessionFactoryInterface.php
    │   │   │   │   SessionInterface.php
    │   │   │   │   SessionUtils.php
    │   │   │   │
    │   │   │   ├───Attribute
    │   │   │   │       AttributeBag.php
    │   │   │   │       AttributeBagInterface.php
    │   │   │   │       NamespacedAttributeBag.php
    │   │   │   │
    │   │   │   ├───Flash
    │   │   │   │       AutoExpireFlashBag.php
    │   │   │   │       FlashBag.php
    │   │   │   │       FlashBagInterface.php
    │   │   │   │
    │   │   │   └───Storage
    │   │   │       │   MetadataBag.php
    │   │   │       │   MockArraySessionStorage.php
    │   │   │       │   MockFileSessionStorage.php
    │   │   │       │   MockFileSessionStorageFactory.php
    │   │   │       │   NativeSessionStorage.php
    │   │   │       │   NativeSessionStorageFactory.php
    │   │   │       │   PhpBridgeSessionStorage.php
    │   │   │       │   PhpBridgeSessionStorageFactory.php
    │   │   │       │   ServiceSessionFactory.php
    │   │   │       │   SessionStorageFactoryInterface.php
    │   │   │       │   SessionStorageInterface.php
    │   │   │       │
    │   │   │       ├───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
    │   │   │       │
    │   │   │       └───Proxy
    │   │   │               AbstractProxy.php
    │   │   │               SessionHandlerProxy.php
    │   │   │
    │   │   └───Test
    │   │       └───Constraint
    │   │               RequestAttributeValueSame.php
    │   │               ResponseCookieValueSame.php
    │   │               ResponseFormatSame.php
    │   │               ResponseHasCookie.php
    │   │               ResponseHasHeader.php
    │   │               ResponseHeaderSame.php
    │   │               ResponseIsRedirected.php
    │   │               ResponseIsSuccessful.php
    │   │               ResponseIsUnprocessable.php
    │   │               ResponseStatusCodeSame.php
    │   │
    │   ├───http-kernel
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   HttpClientKernel.php
    │   │   │   HttpKernel.php
    │   │   │   HttpKernelBrowser.php
    │   │   │   HttpKernelInterface.php
    │   │   │   Kernel.php
    │   │   │   KernelEvents.php
    │   │   │   KernelInterface.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   RebootableInterface.php
    │   │   │   TerminableInterface.php
    │   │   │   UriSigner.php
    │   │   │
    │   │   ├───Attribute
    │   │   │       ArgumentInterface.php
    │   │   │       AsController.php
    │   │   │
    │   │   ├───Bundle
    │   │   │       Bundle.php
    │   │   │       BundleInterface.php
    │   │   │
    │   │   ├───CacheClearer
    │   │   │       CacheClearerInterface.php
    │   │   │       ChainCacheClearer.php
    │   │   │       Psr6CacheClearer.php
    │   │   │
    │   │   ├───CacheWarmer
    │   │   │       CacheWarmer.php
    │   │   │       CacheWarmerAggregate.php
    │   │   │       CacheWarmerInterface.php
    │   │   │       WarmableInterface.php
    │   │   │
    │   │   ├───Config
    │   │   │       FileLocator.php
    │   │   │
    │   │   ├───Controller
    │   │   │   │   ArgumentResolver.php
    │   │   │   │   ArgumentResolverInterface.php
    │   │   │   │   ArgumentValueResolverInterface.php
    │   │   │   │   ContainerControllerResolver.php
    │   │   │   │   ControllerReference.php
    │   │   │   │   ControllerResolver.php
    │   │   │   │   ControllerResolverInterface.php
    │   │   │   │   ErrorController.php
    │   │   │   │   TraceableArgumentResolver.php
    │   │   │   │   TraceableControllerResolver.php
    │   │   │   │
    │   │   │   └───ArgumentResolver
    │   │   │           DefaultValueResolver.php
    │   │   │           NotTaggedControllerValueResolver.php
    │   │   │           RequestAttributeValueResolver.php
    │   │   │           RequestValueResolver.php
    │   │   │           ServiceValueResolver.php
    │   │   │           SessionValueResolver.php
    │   │   │           TraceableValueResolver.php
    │   │   │           VariadicValueResolver.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
    │   │   │       FragmentUriGenerator.php
    │   │   │       FragmentUriGeneratorInterface.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
    │   │   │
    │   │   ├───Log
    │   │   │       DebugLoggerInterface.php
    │   │   │       Logger.php
    │   │   │
    │   │   ├───Profiler
    │   │   │       FileProfilerStorage.php
    │   │   │       Profile.php
    │   │   │       Profiler.php
    │   │   │       ProfilerStorageInterface.php
    │   │   │
    │   │   └───Resources
    │   │           welcome.html.php
    │   │
    │   ├───mime
    │   │   │   Address.php
    │   │   │   BodyRendererInterface.php
    │   │   │   CHANGELOG.md
    │   │   │   CharacterStream.php
    │   │   │   composer.json
    │   │   │   Email.php
    │   │   │   FileBinaryMimeTypeGuesser.php
    │   │   │   FileinfoMimeTypeGuesser.php
    │   │   │   LICENSE
    │   │   │   Message.php
    │   │   │   MessageConverter.php
    │   │   │   MimeTypeGuesserInterface.php
    │   │   │   MimeTypes.php
    │   │   │   MimeTypesInterface.php
    │   │   │   RawMessage.php
    │   │   │   README.md
    │   │   │
    │   │   ├───Crypto
    │   │   │       DkimOptions.php
    │   │   │       DkimSigner.php
    │   │   │       SMime.php
    │   │   │       SMimeEncrypter.php
    │   │   │       SMimeSigner.php
    │   │   │
    │   │   ├───DependencyInjection
    │   │   │       AddMimeTypeGuesserPass.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
    │   │   │
    │   │   ├───Header
    │   │   │       AbstractHeader.php
    │   │   │       DateHeader.php
    │   │   │       HeaderInterface.php
    │   │   │       Headers.php
    │   │   │       IdentificationHeader.php
    │   │   │       MailboxHeader.php
    │   │   │       MailboxListHeader.php
    │   │   │       ParameterizedHeader.php
    │   │   │       PathHeader.php
    │   │   │       UnstructuredHeader.php
    │   │   │
    │   │   ├───Part
    │   │   │   │   AbstractMultipartPart.php
    │   │   │   │   AbstractPart.php
    │   │   │   │   DataPart.php
    │   │   │   │   MessagePart.php
    │   │   │   │   SMimePart.php
    │   │   │   │   TextPart.php
    │   │   │   │
    │   │   │   └───Multipart
    │   │   │           AlternativePart.php
    │   │   │           DigestPart.php
    │   │   │           FormDataPart.php
    │   │   │           MixedPart.php
    │   │   │           RelatedPart.php
    │   │   │
    │   │   ├───Resources
    │   │   │   └───bin
    │   │   │           update_mime_types.php
    │   │   │
    │   │   └───Test
    │   │       └───Constraint
    │   │               EmailAddressContains.php
    │   │               EmailAttachmentCount.php
    │   │               EmailHasHeader.php
    │   │               EmailHeaderSame.php
    │   │               EmailHtmlBodyContains.php
    │   │               EmailTextBodyContains.php
    │   │
    │   ├───polyfill-ctype
    │   │       bootstrap.php
    │   │       bootstrap80.php
    │   │       composer.json
    │   │       Ctype.php
    │   │       LICENSE
    │   │       README.md
    │   │
    │   ├───polyfill-iconv
    │   │   │   bootstrap.php
    │   │   │   bootstrap80.php
    │   │   │   composer.json
    │   │   │   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
    │   │
    │   ├───polyfill-intl-grapheme
    │   │       bootstrap.php
    │   │       bootstrap80.php
    │   │       composer.json
    │   │       Grapheme.php
    │   │       LICENSE
    │   │       README.md
    │   │
    │   ├───polyfill-intl-idn
    │   │   │   bootstrap.php
    │   │   │   bootstrap80.php
    │   │   │   composer.json
    │   │   │   Idn.php
    │   │   │   Info.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │
    │   │   └───Resources
    │   │       └───unidata
    │   │               deviation.php
    │   │               disallowed.php
    │   │               DisallowedRanges.php
    │   │               disallowed_STD3_mapped.php
    │   │               disallowed_STD3_valid.php
    │   │               ignored.php
    │   │               mapped.php
    │   │               Regex.php
    │   │               virama.php
    │   │
    │   ├───polyfill-intl-normalizer
    │   │   │   bootstrap.php
    │   │   │   bootstrap80.php
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   Normalizer.php
    │   │   │   README.md
    │   │   │
    │   │   └───Resources
    │   │       ├───stubs
    │   │       │       Normalizer.php
    │   │       │
    │   │       └───unidata
    │   │               canonicalComposition.php
    │   │               canonicalDecomposition.php
    │   │               combiningClass.php
    │   │               compatibilityDecomposition.php
    │   │
    │   ├───polyfill-mbstring
    │   │   │   bootstrap.php
    │   │   │   bootstrap80.php
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   Mbstring.php
    │   │   │   README.md
    │   │   │
    │   │   └───Resources
    │   │       └───unidata
    │   │               lowerCase.php
    │   │               titleCaseRegexp.php
    │   │               upperCase.php
    │   │
    │   ├───polyfill-php72
    │   │       bootstrap.php
    │   │       composer.json
    │   │       LICENSE
    │   │       Php72.php
    │   │       README.md
    │   │
    │   ├───polyfill-php73
    │   │   │   bootstrap.php
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   Php73.php
    │   │   │   README.md
    │   │   │
    │   │   └───Resources
    │   │       └───stubs
    │   │               JsonException.php
    │   │
    │   ├───polyfill-php80
    │   │   │   bootstrap.php
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   Php80.php
    │   │   │   PhpToken.php
    │   │   │   README.md
    │   │   │
    │   │   └───Resources
    │   │       └───stubs
    │   │               Attribute.php
    │   │               PhpToken.php
    │   │               Stringable.php
    │   │               UnhandledMatchError.php
    │   │               ValueError.php
    │   │
    │   ├───polyfill-php81
    │   │   │   bootstrap.php
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   Php81.php
    │   │   │   README.md
    │   │   │
    │   │   └───Resources
    │   │       └───stubs
    │   │               ReturnTypeWillChange.php
    │   │
    │   ├───process
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   ExecutableFinder.php
    │   │   │   InputStream.php
    │   │   │   LICENSE
    │   │   │   PhpExecutableFinder.php
    │   │   │   PhpProcess.php
    │   │   │   Process.php
    │   │   │   ProcessUtils.php
    │   │   │   README.md
    │   │   │
    │   │   ├───Exception
    │   │   │       ExceptionInterface.php
    │   │   │       InvalidArgumentException.php
    │   │   │       LogicException.php
    │   │   │       ProcessFailedException.php
    │   │   │       ProcessSignaledException.php
    │   │   │       ProcessTimedOutException.php
    │   │   │       RuntimeException.php
    │   │   │
    │   │   └───Pipes
    │   │           AbstractPipes.php
    │   │           PipesInterface.php
    │   │           UnixPipes.php
    │   │           WindowsPipes.php
    │   │
    │   ├───routing
    │   │   │   Alias.php
    │   │   │   CHANGELOG.md
    │   │   │   CompiledRoute.php
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   RequestContext.php
    │   │   │   RequestContextAwareInterface.php
    │   │   │   Route.php
    │   │   │   RouteCollection.php
    │   │   │   RouteCollectionBuilder.php
    │   │   │   RouteCompiler.php
    │   │   │   RouteCompilerInterface.php
    │   │   │   Router.php
    │   │   │   RouterInterface.php
    │   │   │
    │   │   ├───Annotation
    │   │   │       Route.php
    │   │   │
    │   │   ├───DependencyInjection
    │   │   │       RoutingResolverPass.php
    │   │   │
    │   │   ├───Exception
    │   │   │       ExceptionInterface.php
    │   │   │       InvalidArgumentException.php
    │   │   │       InvalidParameterException.php
    │   │   │       MethodNotAllowedException.php
    │   │   │       MissingMandatoryParametersException.php
    │   │   │       NoConfigurationException.php
    │   │   │       ResourceNotFoundException.php
    │   │   │       RouteCircularReferenceException.php
    │   │   │       RouteNotFoundException.php
    │   │   │       RuntimeException.php
    │   │   │
    │   │   ├───Generator
    │   │   │   │   CompiledUrlGenerator.php
    │   │   │   │   ConfigurableRequirementsInterface.php
    │   │   │   │   UrlGenerator.php
    │   │   │   │   UrlGeneratorInterface.php
    │   │   │   │
    │   │   │   └───Dumper
    │   │   │           CompiledUrlGeneratorDumper.php
    │   │   │           GeneratorDumper.php
    │   │   │           GeneratorDumperInterface.php
    │   │   │
    │   │   ├───Loader
    │   │   │   │   AnnotationClassLoader.php
    │   │   │   │   AnnotationDirectoryLoader.php
    │   │   │   │   AnnotationFileLoader.php
    │   │   │   │   ClosureLoader.php
    │   │   │   │   ContainerLoader.php
    │   │   │   │   DirectoryLoader.php
    │   │   │   │   GlobFileLoader.php
    │   │   │   │   ObjectLoader.php
    │   │   │   │   PhpFileLoader.php
    │   │   │   │   XmlFileLoader.php
    │   │   │   │   YamlFileLoader.php
    │   │   │   │
    │   │   │   ├───Configurator
    │   │   │   │   │   AliasConfigurator.php
    │   │   │   │   │   CollectionConfigurator.php
    │   │   │   │   │   ImportConfigurator.php
    │   │   │   │   │   RouteConfigurator.php
    │   │   │   │   │   RoutingConfigurator.php
    │   │   │   │   │
    │   │   │   │   └───Traits
    │   │   │   │           AddTrait.php
    │   │   │   │           HostTrait.php
    │   │   │   │           LocalizedRouteTrait.php
    │   │   │   │           PrefixTrait.php
    │   │   │   │           RouteTrait.php
    │   │   │   │
    │   │   │   └───schema
    │   │   │       └───routing
    │   │   │               routing-1.0.xsd
    │   │   │
    │   │   └───Matcher
    │   │       │   CompiledUrlMatcher.php
    │   │       │   ExpressionLanguageProvider.php
    │   │       │   RedirectableUrlMatcher.php
    │   │       │   RedirectableUrlMatcherInterface.php
    │   │       │   RequestMatcherInterface.php
    │   │       │   TraceableUrlMatcher.php
    │   │       │   UrlMatcher.php
    │   │       │   UrlMatcherInterface.php
    │   │       │
    │   │       └───Dumper
    │   │               CompiledUrlMatcherDumper.php
    │   │               CompiledUrlMatcherTrait.php
    │   │               MatcherDumper.php
    │   │               MatcherDumperInterface.php
    │   │               StaticPrefixCollection.php
    │   │
    │   ├───service-contracts
    │   │   │   .gitignore
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   ResetInterface.php
    │   │   │   ServiceLocatorTrait.php
    │   │   │   ServiceProviderInterface.php
    │   │   │   ServiceSubscriberInterface.php
    │   │   │   ServiceSubscriberTrait.php
    │   │   │
    │   │   ├───Attribute
    │   │   │       Required.php
    │   │   │       SubscribedService.php
    │   │   │
    │   │   └───Test
    │   │           ServiceLocatorTest.php
    │   │
    │   ├───string
    │   │   │   AbstractString.php
    │   │   │   AbstractUnicodeString.php
    │   │   │   ByteString.php
    │   │   │   CHANGELOG.md
    │   │   │   CodePointString.php
    │   │   │   composer.json
    │   │   │   LazyString.php
    │   │   │   LICENSE
    │   │   │   README.md
    │   │   │   UnicodeString.php
    │   │   │
    │   │   ├───Exception
    │   │   │       ExceptionInterface.php
    │   │   │       InvalidArgumentException.php
    │   │   │       RuntimeException.php
    │   │   │
    │   │   ├───Inflector
    │   │   │       EnglishInflector.php
    │   │   │       FrenchInflector.php
    │   │   │       InflectorInterface.php
    │   │   │
    │   │   ├───Resources
    │   │   │   │   functions.php
    │   │   │   │
    │   │   │   ├───bin
    │   │   │   └───data
    │   │   │           wcswidth_table_wide.php
    │   │   │           wcswidth_table_zero.php
    │   │   │
    │   │   └───Slugger
    │   │           AsciiSlugger.php
    │   │           SluggerInterface.php
    │   │
    │   ├───translation
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   DataCollectorTranslator.php
    │   │   │   IdentityTranslator.php
    │   │   │   LICENSE
    │   │   │   LoggingTranslator.php
    │   │   │   MessageCatalogue.php
    │   │   │   MessageCatalogueInterface.php
    │   │   │   MetadataAwareInterface.php
    │   │   │   PseudoLocalizationTranslator.php
    │   │   │   README.md
    │   │   │   TranslatableMessage.php
    │   │   │   Translator.php
    │   │   │   TranslatorBag.php
    │   │   │   TranslatorBagInterface.php
    │   │   │
    │   │   ├───Catalogue
    │   │   │       AbstractOperation.php
    │   │   │       MergeOperation.php
    │   │   │       OperationInterface.php
    │   │   │       TargetOperation.php
    │   │   │
    │   │   ├───Command
    │   │   │       TranslationPullCommand.php
    │   │   │       TranslationPushCommand.php
    │   │   │       TranslationTrait.php
    │   │   │       XliffLintCommand.php
    │   │   │
    │   │   ├───DataCollector
    │   │   │       TranslationDataCollector.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
    │   │   │       IncompleteDsnException.php
    │   │   │       InvalidArgumentException.php
    │   │   │       InvalidResourceException.php
    │   │   │       LogicException.php
    │   │   │       MissingRequiredOptionException.php
    │   │   │       NotFoundResourceException.php
    │   │   │       ProviderException.php
    │   │   │       ProviderExceptionInterface.php
    │   │   │       RuntimeException.php
    │   │   │       UnsupportedSchemeException.php
    │   │   │
    │   │   ├───Extractor
    │   │   │       AbstractFileExtractor.php
    │   │   │       ChainExtractor.php
    │   │   │       ExtractorInterface.php
    │   │   │       PhpExtractor.php
    │   │   │       PhpStringTokenParser.php
    │   │   │
    │   │   ├───Formatter
    │   │   │       IntlFormatter.php
    │   │   │       IntlFormatterInterface.php
    │   │   │       MessageFormatter.php
    │   │   │       MessageFormatterInterface.php
    │   │   │
    │   │   ├───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
    │   │   │
    │   │   ├───Provider
    │   │   │       AbstractProviderFactory.php
    │   │   │       Dsn.php
    │   │   │       FilteringProvider.php
    │   │   │       NullProvider.php
    │   │   │       NullProviderFactory.php
    │   │   │       ProviderFactoryInterface.php
    │   │   │       ProviderInterface.php
    │   │   │       TranslationProviderCollection.php
    │   │   │       TranslationProviderCollectionFactory.php
    │   │   │
    │   │   ├───Reader
    │   │   │       TranslationReader.php
    │   │   │       TranslationReaderInterface.php
    │   │   │
    │   │   ├───Resources
    │   │   │   │   functions.php
    │   │   │   │
    │   │   │   ├───bin
    │   │   │   │       translation-status.php
    │   │   │   │
    │   │   │   ├───data
    │   │   │   │       parents.json
    │   │   │   │
    │   │   │   └───schemas
    │   │   │           xliff-core-1.2-strict.xsd
    │   │   │           xliff-core-2.0.xsd
    │   │   │           xml.xsd
    │   │   │
    │   │   ├───Test
    │   │   │       ProviderFactoryTestCase.php
    │   │   │       ProviderTestCase.php
    │   │   │
    │   │   ├───Util
    │   │   │       ArrayConverter.php
    │   │   │       XliffUtils.php
    │   │   │
    │   │   └───Writer
    │   │           TranslationWriter.php
    │   │           TranslationWriterInterface.php
    │   │
    │   ├───translation-contracts
    │   │   │   .gitignore
    │   │   │   CHANGELOG.md
    │   │   │   composer.json
    │   │   │   LICENSE
    │   │   │   LocaleAwareInterface.php
    │   │   │   README.md
    │   │   │   TranslatableInterface.php
    │   │   │   TranslatorInterface.php
    │   │   │   TranslatorTrait.php
    │   │   │
    │   │   └───Test
    │   │           TranslatorTest.php
    │   │
    │   └───var-dumper
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE
    │       │   README.md
    │       │   VarDumper.php
    │       │
    │       ├───Caster
    │       │       AmqpCaster.php
    │       │       ArgsStub.php
    │       │       Caster.php
    │       │       ClassStub.php
    │       │       ConstStub.php
    │       │       CutArrayStub.php
    │       │       CutStub.php
    │       │       DateCaster.php
    │       │       DoctrineCaster.php
    │       │       DOMCaster.php
    │       │       DsCaster.php
    │       │       DsPairStub.php
    │       │       EnumStub.php
    │       │       ExceptionCaster.php
    │       │       FiberCaster.php
    │       │       FrameStub.php
    │       │       GmpCaster.php
    │       │       ImagineCaster.php
    │       │       ImgStub.php
    │       │       IntlCaster.php
    │       │       LinkStub.php
    │       │       MemcachedCaster.php
    │       │       MysqliCaster.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
    │       │   │   ServerDumpCommand.php
    │       │   │
    │       │   └───Descriptor
    │       │           CliDescriptor.php
    │       │           DumpDescriptorInterface.php
    │       │           HtmlDescriptor.php
    │       │
    │       ├───Dumper
    │       │   │   AbstractDumper.php
    │       │   │   CliDumper.php
    │       │   │   ContextualizedDumper.php
    │       │   │   DataDumperInterface.php
    │       │   │   HtmlDumper.php
    │       │   │   ServerDumper.php
    │       │   │
    │       │   └───ContextProvider
    │       │           CliContextProvider.php
    │       │           ContextProviderInterface.php
    │       │           RequestContextProvider.php
    │       │           SourceContextProvider.php
    │       │
    │       ├───Exception
    │       │       ThrowingCasterException.php
    │       │
    │       ├───Resources
    │       │   ├───bin
    │       │   │       var-dump-server
    │       │   │
    │       │   ├───css
    │       │   │       htmlDescriptor.css
    │       │   │
    │       │   ├───functions
    │       │   │       dump.php
    │       │   │
    │       │   └───js
    │       │           htmlDescriptor.js
    │       │
    │       ├───Server
    │       │       Connection.php
    │       │       DumpServer.php
    │       │
    │       └───Test
    │               VarDumperTestTrait.php
    │
    ├───theseer
    │   └───tokenizer
    │       │   .php_cs.dist
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   composer.lock
    │       │   LICENSE
    │       │   README.md
    │       │
    │       └───src
    │               Exception.php
    │               NamespaceUri.php
    │               NamespaceUriException.php
    │               Token.php
    │               TokenCollection.php
    │               TokenCollectionException.php
    │               Tokenizer.php
    │               XMLSerializer.php
    │
    ├───tijsverkoyen
    │   └───css-to-inline-styles
    │       │   composer.json
    │       │   LICENSE.md
    │       │
    │       └───src
    │           │   CssToInlineStyles.php
    │           │
    │           └───Css
    │               │   Processor.php
    │               │
    │               ├───Property
    │               │       Processor.php
    │               │       Property.php
    │               │
    │               └───Rule
    │                       Processor.php
    │                       Rule.php
    │
    ├───tymon
    │   └───jwt-auth
    │       │   composer.json
    │       │   LICENSE
    │       │
    │       ├───config
    │       │       config.php
    │       │
    │       └───src
    │           │   Blacklist.php
    │           │   Factory.php
    │           │   JWT.php
    │           │   JWTAuth.php
    │           │   JWTGuard.php
    │           │   Manager.php
    │           │   Payload.php
    │           │   Token.php
    │           │
    │           ├───Claims
    │           │       Audience.php
    │           │       Claim.php
    │           │       Collection.php
    │           │       Custom.php
    │           │       DatetimeTrait.php
    │           │       Expiration.php
    │           │       Factory.php
    │           │       IssuedAt.php
    │           │       Issuer.php
    │           │       JwtId.php
    │           │       NotBefore.php
    │           │       Subject.php
    │           │
    │           ├───Console
    │           │       JWTGenerateSecretCommand.php
    │           │
    │           ├───Contracts
    │           │   │   Claim.php
    │           │   │   JWTSubject.php
    │           │   │   Validator.php
    │           │   │
    │           │   ├───Http
    │           │   │       Parser.php
    │           │   │
    │           │   └───Providers
    │           │           Auth.php
    │           │           JWT.php
    │           │           Storage.php
    │           │
    │           ├───Exceptions
    │           │       InvalidClaimException.php
    │           │       JWTException.php
    │           │       PayloadException.php
    │           │       TokenBlacklistedException.php
    │           │       TokenExpiredException.php
    │           │       TokenInvalidException.php
    │           │       UserNotDefinedException.php
    │           │
    │           ├───Facades
    │           │       JWTAuth.php
    │           │       JWTFactory.php
    │           │       JWTProvider.php
    │           │
    │           ├───Http
    │           │   ├───Middleware
    │           │   │       Authenticate.php
    │           │   │       AuthenticateAndRenew.php
    │           │   │       BaseMiddleware.php
    │           │   │       Check.php
    │           │   │       RefreshToken.php
    │           │   │
    │           │   └───Parser
    │           │           AuthHeaders.php
    │           │           Cookies.php
    │           │           InputSource.php
    │           │           KeyTrait.php
    │           │           LumenRouteParams.php
    │           │           Parser.php
    │           │           QueryString.php
    │           │           RouteParams.php
    │           │
    │           ├───Providers
    │           │   │   AbstractServiceProvider.php
    │           │   │   LaravelServiceProvider.php
    │           │   │   LumenServiceProvider.php
    │           │   │
    │           │   ├───Auth
    │           │   │       Illuminate.php
    │           │   │
    │           │   ├───JWT
    │           │   │       Lcobucci.php
    │           │   │       Namshi.php
    │           │   │       Provider.php
    │           │   │
    │           │   └───Storage
    │           │           Illuminate.php
    │           │
    │           ├───Support
    │           │       CustomClaims.php
    │           │       RefreshFlow.php
    │           │       Utils.php
    │           │
    │           └───Validators
    │                   PayloadValidator.php
    │                   TokenValidator.php
    │                   Validator.php
    │
    ├───vlucas
    │   └───phpdotenv
    │       │   composer.json
    │       │   LICENSE
    │       │
    │       └───src
    │           │   Dotenv.php
    │           │   Validator.php
    │           │
    │           ├───Exception
    │           │       ExceptionInterface.php
    │           │       InvalidEncodingException.php
    │           │       InvalidFileException.php
    │           │       InvalidPathException.php
    │           │       ValidationException.php
    │           │
    │           ├───Loader
    │           │       Loader.php
    │           │       LoaderInterface.php
    │           │       Resolver.php
    │           │
    │           ├───Parser
    │           │       Entry.php
    │           │       EntryParser.php
    │           │       Lexer.php
    │           │       Lines.php
    │           │       Parser.php
    │           │       ParserInterface.php
    │           │       Value.php
    │           │
    │           ├───Repository
    │           │   │   AdapterRepository.php
    │           │   │   RepositoryBuilder.php
    │           │   │   RepositoryInterface.php
    │           │   │
    │           │   └───Adapter
    │           │           AdapterInterface.php
    │           │           ApacheAdapter.php
    │           │           ArrayAdapter.php
    │           │           EnvConstAdapter.php
    │           │           GuardedWriter.php
    │           │           ImmutableWriter.php
    │           │           MultiReader.php
    │           │           MultiWriter.php
    │           │           PutenvAdapter.php
    │           │           ReaderInterface.php
    │           │           ReplacingWriter.php
    │           │           ServerConstAdapter.php
    │           │           WriterInterface.php
    │           │
    │           ├───Store
    │           │   │   FileStore.php
    │           │   │   StoreBuilder.php
    │           │   │   StoreInterface.php
    │           │   │   StringStore.php
    │           │   │
    │           │   └───File
    │           │           Paths.php
    │           │           Reader.php
    │           │
    │           └───Util
    │                   Regex.php
    │                   Str.php
    │
    ├───voku
    │   └───portable-ascii
    │       │   .whitesource
    │       │   CHANGELOG.md
    │       │   composer.json
    │       │   LICENSE.txt
    │       │   README.md
    │       │
    │       ├───build
    │       │   │   composer.json
    │       │   │   generate_docs.php
    │       │   │   generate_max_key_length.php
    │       │   │
    │       │   └───docs
    │       │           base.md
    │       │
    │       └───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
    │
    └───webmozart
        └───assert
            │   CHANGELOG.md
            │   composer.json
            │   LICENSE
            │   README.md
            │
            └───src
                    Assert.php
                    InvalidArgumentException.php
                    Mixin.php



