. ├── app │   ├── Actions │   │   ├── GetThemeType.php │   │   ├── SamplePermissionApi.php │   │   ├── SampleRoleApi.php │   │   └── SampleUserApi.php │   ├── Console │   │   └── Kernel.php │   ├── Core │   │   ├── Bootstrap │   │   │   ├── BootstrapAuth.php │   │   │   ├── BootstrapDefault.php │   │   │   └── BootstrapSystem.php │   │   ├── KTBootstrap.php │   │   └── Theme.php │   ├── DataTables │   │   ├── PermissionsDataTable.php │   │   ├── UsersAssignedRoleDataTable.php │   │   └── UsersDataTable.php │   ├── Exceptions │   │   └── Handler.php │   ├── Helpers │   │   └── Helpers.php │   ├── Http │   │   ├── Controllers │   │   │   ├── Apps │   │   │   │   ├── PermissionManagementController.php │   │   │   │   ├── RoleManagementController.php │   │   │   │   └── UserManagementController.php │   │   │   ├── Auth │   │   │   │   ├── AuthenticatedSessionController.php │   │   │   │   ├── ConfirmablePasswordController.php │   │   │   │   ├── EmailVerificationNotificationController.php │   │   │   │   ├── EmailVerificationPromptController.php │   │   │   │   ├── NewPasswordController.php │   │   │   │   ├── PasswordResetLinkController.php │   │   │   │   ├── RegisteredUserController.php │   │   │   │   ├── SocialiteController.php │   │   │   │   └── VerifyEmailController.php │   │   │   ├── Controller.php │   │   │   ├── DashboardController.php │   │   │   ├── InvoiceController.php │   │   │   ├── Items │   │   │   │   └── ItemController.php │   │   │   ├── Packages │   │   │   │   └── PackageController.php │   │   │   ├── PaymentController.php │   │   │   ├── PricingController.php │   │   │   └── ProfileController.php │   │   ├── Kernel.php │   │   ├── Middleware │   │   │   ├── Authenticate.php │   │   │   ├── EncryptCookies.php │   │   │   ├── PreventRequestsDuringMaintenance.php │   │   │   ├── RedirectIfAuthenticated.php │   │   │   ├── TrimStrings.php │   │   │   ├── TrustHosts.php │   │   │   ├── TrustProxies.php │   │   │   ├── ValidateSignature.php │   │   │   └── VerifyCsrfToken.php │   │   └── Requests │   │   └── Auth │   │   └── LoginRequest.php │   ├── Livewire │   │   ├── Permission │   │   │   ├── PermissionModal.php │   │   │   ├── RoleList.php │   │   │   └── RoleModal.php │   │   └── User │   │   └── AddUserModal.php │   ├── Models │   │   ├── Address.php │   │   ├── Category.php │   │   ├── Invoice.php │   │   ├── PackageItem.php │   │   ├── Package.php │   │   ├── Pricing.php │   │   ├── PricingSetting.php │   │   └── User.php │   ├── Providers │   │   ├── AppServiceProvider.php │   │   ├── AuthServiceProvider.php │   │   ├── BroadcastServiceProvider.php │   │   ├── EventServiceProvider.php │   │   ├── HelperServiceProvider.php │   │   └── RouteServiceProvider.php │   └── View │   └── Components │   ├── AuthLayout.php │   ├── DefaultLayout.php │   └── SystemLayout.php ├── artisan ├── bootstrap │   ├── app.php │   └── cache │   ├── livewire-components.php │   ├── packages.php │   └── services.php ├── composer.json ├── composer.lock ├── config │   ├── app.php │   ├── auth.php │   ├── breadcrumbs.php │   ├── broadcasting.php │   ├── cache.php │   ├── cors.php │   ├── database.php │   ├── filesystems.php │   ├── hashing.php │   ├── livewire.php │   ├── logging.php │   ├── mail.php │   ├── permission.php │   ├── queue.php │   ├── sanctum.php │   ├── services.php │   ├── session.php │   ├── settings.php │   └── view.php ├── database │   ├── factories │   │   ├── AddressFactory.php │   │   └── 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_05_28_090500_add_login_fields_to_users_table.php │   │   ├── 2023_06_12_013333_add_profile_photo_path_column_to_users_table.php │   │   ├── 2023_10_09_041104_create_addresses_table.php │   │   ├── 2024_07_01_100049_create_permission_tables.php │   │   ├── 2025_02_11_203608_create_packages_table.php │   │   ├── 2025_02_11_203949_add_shipping_code_to_users_table.php │   │   ├── 2025_02_11_205513_add_payment_status_to_packages_table.php │   │   ├── 2025_02_13_141656_add_image_to_packages_table.php │   │   ├── 2025_02_16_131030_add_shipping_cost_to_packages_table.php │   │   ├── 2025_02_16_131359_add_image_to_packages_table.php │   │   ├── 2025_02_17_163535_create_categories_table.php │   │   ├── 2025_02_17_170737_add_category_id_to_packages_table.php │   │   ├── 2025_02_18_181539_update_package_statuses.php │   │   ├── 2025_02_18_182934_add_status_updated_at_to_packages_table.php │   │   ├── 2025_02_18_185451_update_status_column_in_packages_table.php │   │   ├── 2025_02_18_192321_update_packages_shipping_fields.php │   │   ├── 2025_02_19_082724_add_mobile_number_to_users_table.php │   │   ├── 2025_02_19_103258_create_invoices_table.php │   │   └── 2025_02_22_103922_create_package_items_table.php │   └── seeders │   ├── CategorySeeder.php │   ├── DatabaseSeeder.php │   ├── RolesPermissionsSeeder.php │   └── UsersSeeder.php ├── ers as $user) { ├── lang │   └── en │   ├── auth.php │   ├── pagination.php │   ├── passwords.php │   └── validation.php ├── Package::create([ ├── package.json ├── package-lock.json ├── phpunit.xml ├── public │   ├── assets │   │   ├── css │   │   │   ├── style.bundle.css │   │   │   └── style.bundle.rtl.css │   │   ├── js │   │   │   ├── custom │   │   │   │   ├── account │   │   │   │   ├── apps │   │   │   │   ├── authentication │   │   │   │   ├── landing.js │   │   │   │   ├── pages │   │   │   │   ├── utilities │   │   │   │   └── widgets.js │   │   │   ├── scripts.bundle.js │   │   │   └── widgets.bundle.js │   │   ├── media │   │   │   ├── auth │   │   │   │   ├── 404-error-dark.png │   │   │   │   ├── 404-error.png │   │   │   │   ├── 500-error-dark.png │   │   │   │   ├── 500-error.png │   │   │   │   ├── 505-error-dark.png │   │   │   │   ├── 505-error.png │   │   │   │   ├── agency-dark.png │   │   │   │   ├── agency.png │   │   │   │   ├── bg10-dark.jpeg │   │   │   │   ├── bg10.jpeg │   │   │   │   ├── bg11.png │   │   │   │   ├── bg1-dark.jpg │   │   │   │   ├── bg1.jpg │   │   │   │   ├── bg2-dark.jpg │   │   │   │   ├── bg2.jpg │   │   │   │   ├── bg3-dark.jpg │   │   │   │   ├── bg3.jpg │   │   │   │   ├── bg4-dark.jpg │   │   │   │   ├── bg4.jpg │   │   │   │   ├── bg5-dark.jpg │   │   │   │   ├── bg5.jpg │   │   │   │   ├── bg6-dark.jpg │   │   │   │   ├── bg6.jpg │   │   │   │   ├── bg7-dark.jpg │   │   │   │   ├── bg7.jpg │   │   │   │   ├── bg8-dark.jpg │   │   │   │   ├── bg8.jpg │   │   │   │   ├── bg9-dark.jpg │   │   │   │   ├── bg9.jpg │   │   │   │   ├── chart-graph-dark.png │   │   │   │   ├── chart-graph.png │   │   │   │   ├── membership-dark.png │   │   │   │   ├── membership.png │   │   │   │   ├── ok-dark.png │   │   │   │   ├── ok.png │   │   │   │   ├── please-verify-your-email-dark.png │   │   │   │   ├── please-verify-your-email.png │   │   │   │   ├── welcome-dark.png │   │   │   │   └── welcome.png │   │   │   ├── avatars │   │   │   │   ├── 300-10.jpg │   │   │   │   ├── 300-11.jpg │   │   │   │   ├── 300-12.jpg │   │   │   │   ├── 300-13.jpg │   │   │   │   ├── 300-14.jpg │   │   │   │   ├── 300-15.jpg │   │   │   │   ├── 300-16.jpg │   │   │   │   ├── 300-17.jpg │   │   │   │   ├── 300-18.jpg │   │   │   │   ├── 300-19.jpg │   │   │   │   ├── 300-1.jpg │   │   │   │   ├── 300-20.jpg │   │   │   │   ├── 300-21.jpg │   │   │   │   ├── 300-22.jpg │   │   │   │   ├── 300-23.jpg │   │   │   │   ├── 300-24.jpg │   │   │   │   ├── 300-25.jpg │   │   │   │   ├── 300-26.jpg │   │   │   │   ├── 300-27.jpg │   │   │   │   ├── 300-28.jpg │   │   │   │   ├── 300-29.jpg │   │   │   │   ├── 300-2.jpg │   │   │   │   ├── 300-30.jpg │   │   │   │   ├── 300-3.jpg │   │   │   │   ├── 300-4.jpg │   │   │   │   ├── 300-5.jpg │   │   │   │   ├── 300-6.jpg │   │   │   │   ├── 300-7.jpg │   │   │   │   ├── 300-8.jpg │   │   │   │   ├── 300-9.jpg │   │   │   │   └── blank.png │   │   │   ├── banners │   │   │   │   ├── button-dark.svg │   │   │   │   ├── button-red.svg │   │   │   │   ├── mega-bundle.png │   │   │   │   ├── metronic-9.png │   │   │   │   └── metronic-ph.png │   │   │   ├── books │   │   │   │   ├── 10.png │   │   │   │   ├── 11.png │   │   │   │   ├── 12.png │   │   │   │   ├── 13.png │   │   │   │   ├── 1.png │   │   │   │   ├── 2.png │   │   │   │   ├── 3.png │   │   │   │   ├── 4.png │   │   │   │   ├── 5.png │   │   │   │   ├── 6.png │   │   │   │   ├── 7.png │   │   │   │   ├── 8.png │   │   │   │   ├── 9.png │   │   │   │   └── img-72.jpg │   │   │   ├── demo │   │   │   │   ├── 1600x1200 │   │   │   │   └── 2600x1200 │   │   │   ├── email │   │   │   │   ├── icon-bullet.svg │   │   │   │   ├── icon-dribbble.svg │   │   │   │   ├── icon-facebook.svg │   │   │   │   ├── icon-linkedin.svg │   │   │   │   ├── icon-polygon.svg │   │   │   │   ├── icon-positive-vote-1.svg │   │   │   │   ├── icon-positive-vote-2.svg │   │   │   │   ├── icon-positive-vote-3.svg │   │   │   │   ├── icon-positive-vote-4.svg │   │   │   │   ├── icon-twitter.svg │   │   │   │   ├── img-1.png │   │   │   │   ├── img-2.png │   │   │   │   ├── img-3.jpg │   │   │   │   ├── img-4.jpg │   │   │   │   ├── img-5.jpg │   │   │   │   ├── img-6.jpg │   │   │   │   ├── logo-1.svg │   │   │   │   └── logo-2.svg │   │   │   ├── features-logos │   │   │   │   ├── amchart.png │   │   │   │   ├── angular-forms.png │   │   │   │   ├── angular-i18n.png │   │   │   │   ├── angular-material.png │   │   │   │   ├── angular-router.png │   │   │   │   ├── angular-rxjs.png │   │   │   │   ├── apexcharts.png │   │   │   │   ├── axios.png │   │   │   │   ├── babel.png │   │   │   │   ├── bootstrap.png │   │   │   │   ├── composer.png │   │   │   │   ├── css3.png │   │   │   │   ├── datatables.png │   │   │   │   ├── element-plus.png │   │   │   │   ├── fullcalendar.png │   │   │   │   ├── gulp.png │   │   │   │   ├── html5.png │   │   │   │   ├── laravel-blade.png │   │   │   │   ├── laravel-guzlle.png │   │   │   │   ├── laravel-mix.png │   │   │   │   ├── metronic.png │   │   │   │   ├── npm.png │   │   │   │   ├── react-bootstrap.png │   │   │   │   ├── react-create-react-app.png │   │   │   │   ├── react-query.png │   │   │   │   ├── react-redux.png │   │   │   │   ├── react-redux-saga.png │   │   │   │   ├── react-router.png │   │   │   │   ├── sass.png │   │   │   │   ├── tailwind.png │   │   │   │   ├── theme-api.png │   │   │   │   ├── typescript.png │   │   │   │   ├── vite.png │   │   │   │   ├── vue-i18n.png │   │   │   │   ├── vuelidate.png │   │   │   │   ├── vue-pania.png │   │   │   │   ├── vue-router.png │   │   │   │   ├── vue-vuetify.png │   │   │   │   ├── webpack.png │   │   │   │   └── yarn.png │   │   │   ├── flags │   │   │   │   ├── afghanistan.svg │   │   │   │   ├── aland-islands.svg │   │   │   │   ├── albania.svg │   │   │   │   ├── algeria.svg │   │   │   │   ├── american-samoa.svg │   │   │   │   ├── andorra.svg │   │   │   │   ├── angola.svg │   │   │   │   ├── anguilla.svg │   │   │   │   ├── antigua-and-barbuda.svg │   │   │   │   ├── argentina.svg │   │   │   │   ├── armenia.svg │   │   │   │   ├── aruba.svg │   │   │   │   ├── australia.svg │   │   │   │   ├── austria.svg │   │   │   │   ├── azerbaijan.svg │   │   │   │   ├── azores-islands.svg │   │   │   │   ├── bahamas.svg │   │   │   │   ├── bahrain.svg │   │   │   │   ├── balearic-islands.svg │   │   │   │   ├── bangladesh.svg │   │   │   │   ├── barbados.svg │   │   │   │   ├── basque-country.svg │   │   │   │   ├── belarus.svg │   │   │   │   ├── belgium.svg │   │   │   │   ├── belize.svg │   │   │   │   ├── benin.svg │   │   │   │   ├── bermuda.svg │   │   │   │   ├── bhutan.svg │   │   │   │   ├── bolivia.svg │   │   │   │   ├── bonaire.svg │   │   │   │   ├── bosnia-and-herzegovina.svg │   │   │   │   ├── botswana.svg │   │   │   │   ├── brazil.svg │   │   │   │   ├── british-columbia.svg │   │   │   │   ├── british-indian-ocean-territory.svg │   │   │   │   ├── british-virgin-islands.svg │   │   │   │   ├── brunei.svg │   │   │   │   ├── bulgaria.svg │   │   │   │   ├── burkina-faso.svg │   │   │   │   ├── burundi.svg │   │   │   │   ├── cambodia.svg │   │   │   │   ├── cameroon.svg │   │   │   │   ├── canada.svg │   │   │   │   ├── canary-islands.svg │   │   │   │   ├── cape-verde.svg │   │   │   │   ├── cayman-islands.svg │   │   │   │   ├── central-african-republic.svg │   │   │   │   ├── ceuta.svg │   │   │   │   ├── chad.svg │   │   │   │   ├── chile.svg │   │   │   │   ├── china.svg │   │   │   │   ├── christmas-island.svg │   │   │   │   ├── cocos-island.svg │   │   │   │   ├── colombia.svg │   │   │   │   ├── comoros.svg │   │   │   │   ├── cook-islands.svg │   │   │   │   ├── corsica.svg │   │   │   │   ├── costa-rica.svg │   │   │   │   ├── croatia.svg │   │   │   │   ├── cuba.svg │   │   │   │   ├── curacao.svg │   │   │   │   ├── czech-republic.svg │   │   │   │   ├── democratic-republic-of-congo.svg │   │   │   │   ├── denmark.svg │   │   │   │   ├── djibouti.svg │   │   │   │   ├── dominican-republic.svg │   │   │   │   ├── dominica.svg │   │   │   │   ├── east-timor.svg │   │   │   │   ├── ecuador.svg │   │   │   │   ├── egypt.svg │   │   │   │   ├── el-salvador.svg │   │   │   │   ├── england.svg │   │   │   │   ├── equatorial-guinea.svg │   │   │   │   ├── eritrea.svg │   │   │   │   ├── estonia.svg │   │   │   │   ├── ethiopia.svg │   │   │   │   ├── european-union.svg │   │   │   │   ├── falkland-islands.svg │   │   │   │   ├── fiji.svg │   │   │   │   ├── finland.svg │   │   │   │   ├── flag.svg │   │   │   │   ├── france.svg │   │   │   │   ├── french-polynesia.svg │   │   │   │   ├── gabon.svg │   │   │   │   ├── galapagos-islands.svg │   │   │   │   ├── gambia.svg │   │   │   │   ├── georgia.svg │   │   │   │   ├── germany.svg │   │   │   │   ├── ghana.svg │   │   │   │   ├── gibraltar.svg │   │   │   │   ├── greece.svg │   │   │   │   ├── greenland.svg │   │   │   │   ├── grenada.svg │   │   │   │   ├── guam.svg │   │   │   │   ├── guatemala.svg │   │   │   │   ├── guernsey.svg │   │   │   │   ├── guinea-bissau.svg │   │   │   │   ├── guinea.svg │   │   │   │   ├── haiti.svg │   │   │   │   ├── hawaii.svg │   │   │   │   ├── honduras.svg │   │   │   │   ├── hong-kong.svg │   │   │   │   ├── hungary.svg │   │   │   │   ├── iceland.svg │   │   │   │   ├── india.svg │   │   │   │   ├── indonesia.svg │   │   │   │   ├── iran.svg │   │   │   │   ├── iraq.svg │   │   │   │   ├── ireland.svg │   │   │   │   ├── isle-of-man.svg │   │   │   │   ├── israel.svg │   │   │   │   ├── italy.svg │   │   │   │   ├── ivory-coast.svg │   │   │   │   ├── jamaica.svg │   │   │   │   ├── japan.svg │   │   │   │   ├── jersey.svg │   │   │   │   ├── jordan.svg │   │   │   │   ├── kazakhstan.svg │   │   │   │   ├── kenya.svg │   │   │   │   ├── kiribati.svg │   │   │   │   ├── kosovo.svg │   │   │   │   ├── kuwait.svg │   │   │   │   ├── kyrgyzstan.svg │   │   │   │   ├── laos.svg │   │   │   │   ├── latvia.svg │   │   │   │   ├── lebanon.svg │   │   │   │   ├── lesotho.svg │   │   │   │   ├── liberia.svg │   │   │   │   ├── libya.svg │   │   │   │   ├── liechtenstein.svg │   │   │   │   ├── lithuania.svg │   │   │   │   ├── luxembourg.svg │   │   │   │   ├── macao.svg │   │   │   │   ├── madagascar.svg │   │   │   │   ├── madeira.svg │   │   │   │   ├── malawi.svg │   │   │   │   ├── malaysia.svg │   │   │   │   ├── maldives.svg │   │   │   │   ├── mali.svg │   │   │   │   ├── malta.svg │   │   │   │   ├── marshall-island.svg │   │   │   │   ├── martinique.svg │   │   │   │   ├── mauritania.svg │   │   │   │   ├── mauritius.svg │   │   │   │   ├── melilla.svg │   │   │   │   ├── mexico.svg │   │   │   │   ├── micronesia.svg │   │   │   │   ├── moldova.svg │   │   │   │   ├── monaco.svg │   │   │   │   ├── mongolia.svg │   │   │   │   ├── montenegro.svg │   │   │   │   ├── montserrat.svg │   │   │   │   ├── morocco.svg │   │   │   │   ├── mozambique.svg │   │   │   │   ├── myanmar.svg │   │   │   │   ├── namibia.svg │   │   │   │   ├── nato.svg │   │   │   │   ├── nauru.svg │   │   │   │   ├── nepal.svg │   │   │   │   ├── netherlands.svg │   │   │   │   ├── new-zealand.svg │   │   │   │   ├── nicaragua.svg │   │   │   │   ├── nigeria.svg │   │   │   │   ├── niger.svg │   │   │   │   ├── niue.svg │   │   │   │   ├── norfolk-island.svg │   │   │   │   ├── northern-cyprus.svg │   │   │   │   ├── northern-mariana-islands.svg │   │   │   │   ├── north-korea.svg │   │   │   │   ├── norway.svg │   │   │   │   ├── oman.svg │   │   │   │   ├── ossetia.svg │   │   │   │   ├── pakistan.svg │   │   │   │   ├── palau.svg │   │   │   │   ├── palestine.svg │   │   │   │   ├── panama.svg │   │   │   │   ├── papua-new-guinea.svg │   │   │   │   ├── paraguay.svg │   │   │   │   ├── peru.svg │   │   │   │   ├── philippines.svg │   │   │   │   ├── pitcairn-islands.svg │   │   │   │   ├── poland.svg │   │   │   │   ├── portugal.svg │   │   │   │   ├── puerto-rico.svg │   │   │   │   ├── qatar.svg │   │   │   │   ├── rapa-nui.svg │   │   │   │   ├── republic-of-macedonia.svg │   │   │   │   ├── republic-of-the-congo.svg │   │   │   │   ├── romania.svg │   │   │   │   ├── russia.svg │   │   │   │   ├── rwanda.svg │   │   │   │   ├── saba-island.svg │   │   │   │   ├── sahrawi-arab-democratic-republic.svg │   │   │   │   ├── saint-kitts-and-nevis.svg │   │   │   │   ├── samoa.svg │   │   │   │   ├── san-marino.svg │   │   │   │   ├── sao-tome-and-prince.svg │   │   │   │   ├── sardinia.svg │   │   │   │   ├── saudi-arabia.svg │   │   │   │   ├── scotland.svg │   │   │   │   ├── senegal.svg │   │   │   │   ├── serbia.svg │   │   │   │   ├── seychelles.svg │   │   │   │   ├── sicily.svg │   │   │   │   ├── sierra-leone.svg │   │   │   │   ├── singapore.svg │   │   │   │   ├── sint-eustatius.svg │   │   │   │   ├── sint-maarten.svg │   │   │   │   ├── slovakia.svg │   │   │   │   ├── slovenia.svg │   │   │   │   ├── solomon-islands.svg │   │   │   │   ├── somalia.svg │   │   │   │   ├── somaliland.svg │   │   │   │   ├── south-africa.svg │   │   │   │   ├── south-korea.svg │   │   │   │   ├── south-sudan.svg │   │   │   │   ├── spain.svg │   │   │   │   ├── sri-lanka.svg │   │   │   │   ├── st-barts.svg │   │   │   │   ├── st-lucia.svg │   │   │   │   ├── st-vincent-and-the-grenadines.svg │   │   │   │   ├── sudan.svg │   │   │   │   ├── suriname.svg │   │   │   │   ├── swaziland.svg │   │   │   │   ├── sweden.svg │   │   │   │   ├── switzerland.svg │   │   │   │   ├── syria.svg │   │   │   │   ├── taiwan.svg │   │   │   │   ├── tajikistan.svg │   │   │   │   ├── tanzania.svg │   │   │   │   ├── thailand.svg │   │   │   │   ├── tibet.svg │   │   │   │   ├── togo.svg │   │   │   │   ├── tokelau.svg │   │   │   │   ├── tonga.svg │   │   │   │   ├── transnistria.svg │   │   │   │   ├── trinidad-and-tobago.svg │   │   │   │   ├── tunisia.svg │   │   │   │   ├── turkey.svg │   │   │   │   ├── turkmenistan.svg │   │   │   │   ├── turks-and-caicos.svg │   │   │   │   ├── tuvalu-1.svg │   │   │   │   ├── tuvalu.svg │   │   │   │   ├── uganda.svg │   │   │   │   ├── ukraine.svg │   │   │   │   ├── uk.svg │   │   │   │   ├── united-arab-emirates.svg │   │   │   │   ├── united-kingdom.svg │   │   │   │   ├── united-nations.svg │   │   │   │   ├── united-states.svg │   │   │   │   ├── uruguay.svg │   │   │   │   ├── uzbekistan.svg │   │   │   │   ├── vanuatu.svg │   │   │   │   ├── vatican-city.svg │   │   │   │   ├── venezuela.svg │   │   │   │   ├── vietnam.svg │   │   │   │   ├── virgin-islands.svg │   │   │   │   ├── wales.svg │   │   │   │   ├── yemen.svg │   │   │   │   ├── zambia.svg │   │   │   │   └── zimbabwe.svg │   │   │   ├── framework-logos │   │   │   │   ├── angular.png │   │   │   │   ├── asp.net-core.png │   │   │   │   ├── blazor.png │   │   │   │   ├── bootstrap.png │   │   │   │   ├── codeigniter.png │   │   │   │   ├── django.png │   │   │   │   ├── flask.png │   │   │   │   ├── go.png │   │   │   │   ├── html.png │   │   │   │   ├── inactive │   │   │   │   ├── laravel.png │   │   │   │   ├── nextjs.svg │   │   │   │   ├── nodejs.png │   │   │   │   ├── play.png │   │   │   │   ├── rails.png │   │   │   │   ├── react.png │   │   │   │   ├── spring.png │   │   │   │   ├── symfony.png │   │   │   │   ├── vue.png │   │   │   │   └── yii.png │   │   │   ├── icons │   │   │   │   └── duotune │   │   │   ├── illustrations │   │   │   │   ├── dozzy-1 │   │   │   │   ├── misc │   │   │   │   ├── sigma-1 │   │   │   │   ├── sketchy-1 │   │   │   │   └── unitedpalms-1 │   │   │   ├── logos │   │   │   │   ├── custom-1.png │   │   │   │   ├── custom-2.svg │   │   │   │   ├── custom-3.svg │   │   │   │   ├── default-dark.png │   │   │   │   ├── default-dark.svg │   │   │   │   ├── default-large.svg │   │   │   │   ├── default-small-dark.svg │   │   │   │   ├── default-small.png │   │   │   │   ├── default-small.svg │   │   │   │   ├── default.svg │   │   │   │   ├── favicon.ico │   │   │   │   ├── keenthemes-dark.svg │   │   │   │   ├── keenthemes.svg │   │   │   │   ├── landing-dark.svg │   │   │   │   ├── landing.svg │   │   │   │   └── mail.svg │   │   │   ├── misc │   │   │   │   ├── 1.png │   │   │   │   ├── auth-bg.png │   │   │   │   ├── auth-screens.png │   │   │   │   ├── bg-2.jpg │   │   │   │   ├── city.png │   │   │   │   ├── image.png │   │   │   │   ├── layout │   │   │   │   ├── menu-header-bg.jpg │   │   │   │   ├── menu-header-dark.png │   │   │   │   ├── outdoor.png │   │   │   │   ├── pattern-2.png │   │   │   │   ├── pattern-4.jpg │   │   │   │   ├── portfolio.png │   │   │   │   ├── preview-1.jpg │   │   │   │   ├── preview-2.jpg │   │   │   │   ├── preview-3.jpg │   │   │   │   ├── profile-head-bg.jpg │   │   │   │   ├── qr-code.png │   │   │   │   ├── qr.png │   │   │   │   ├── search-bg.png │   │   │   │   ├── spinner.gif │   │   │   │   └── track-order.png │   │   │   ├── patterns │   │   │   │   ├── pattern-1.jpg │   │   │   │   └── vector-1.png │   │   │   ├── plugins │   │   │   │   └── jstree │   │   │   ├── product │   │   │   │   ├── 1.svg │   │   │   │   ├── 2.svg │   │   │   │   ├── 3.svg │   │   │   │   └── 5.svg │   │   │   ├── products │   │   │   │   ├── 10.png │   │   │   │   ├── 11.png │   │   │   │   ├── 12.png │   │   │   │   ├── 13.png │   │   │   │   ├── 14.png │   │   │   │   ├── 15.png │   │   │   │   ├── 16.png │   │   │   │   ├── 17.png │   │   │   │   ├── 18.png │   │   │   │   ├── 19.png │   │   │   │   ├── 1.png │   │   │   │   ├── 20.png │   │   │   │   ├── 21.png │   │   │   │   ├── 22.png │   │   │   │   ├── 2.png │   │   │   │   ├── 3.png │   │   │   │   ├── 4.png │   │   │   │   ├── 5.png │   │   │   │   ├── 6.png │   │   │   │   ├── 7.png │   │   │   │   ├── 8.png │   │   │   │   └── 9.png │   │   │   ├── smiles │   │   │   │   ├── happy.png │   │   │   │   ├── sad.png │   │   │   │   └── shocked.png │   │   │   ├── stock │   │   │   │   ├── 1600x800 │   │   │   │   ├── 500x600 │   │   │   │   ├── 600x400 │   │   │   │   ├── 600x600 │   │   │   │   ├── 900x600 │   │   │   │   ├── ecommerce │   │   │   │   └── food │   │   │   └── svg │   │   │   ├── avatars │   │   │   ├── brand-logos │   │   │   ├── card-logos │   │   │   ├── coins │   │   │   ├── files │   │   │   ├── food-icons │   │   │   ├── general │   │   │   ├── humans │   │   │   ├── illustrations │   │   │   ├── misc │   │   │   ├── payment-methods │   │   │   ├── products-categories │   │   │   ├── shapes │   │   │   └── social-logos │   │   └── plugins │   │   ├── custom │   │   │   ├── ckeditor │   │   │   ├── cookiealert │   │   │   ├── cropper │   │   │   ├── datatables │   │   │   ├── draggable │   │   │   ├── flotcharts │   │   │   ├── formrepeater │   │   │   ├── fslightbox │   │   │   ├── fullcalendar │   │   │   ├── jkanban │   │   │   ├── jstree │   │   │   ├── leaflet │   │   │   ├── prismjs │   │   │   ├── tinymce │   │   │   ├── tiny-slider │   │   │   ├── typedjs │   │   │   └── vis-timeline │   │   └── global │   │   ├── fonts │   │   ├── plugins.bundle.css │   │   ├── plugins.bundle.js │   │   └── plugins.bundle.rtl.css │   ├── favicon.ico │   ├── icons.json │   ├── index.php │   ├── mix-manifest.json │   ├── robots.txt │   ├── storage -> /var/www/shipiteasy/storage/app/public │   └── vendor │   └── livewire │   ├── livewire.esm.js │   ├── livewire.esm.js.map │   ├── livewire.js │   ├── livewire.min.js │   ├── livewire.min.js.map │   └── manifest.json ├── README.md ├── ' => 'received', ├── resources │   ├── _keenthemes │   │   ├── src │   │   │   ├── js │   │   │   │   ├── components │   │   │   │   ├── custom │   │   │   │   ├── layout │   │   │   │   ├── vendors │   │   │   │   └── widgets │   │   │   ├── media │   │   │   │   ├── auth │   │   │   │   ├── avatars │   │   │   │   ├── banners │   │   │   │   ├── books │   │   │   │   ├── demo │   │   │   │   ├── email │   │   │   │   ├── features-logos │   │   │   │   ├── flags │   │   │   │   ├── framework-logos │   │   │   │   ├── icons │   │   │   │   ├── illustrations │   │   │   │   ├── logos │   │   │   │   ├── misc │   │   │   │   ├── patterns │   │   │   │   ├── plugins │   │   │   │   ├── product │   │   │   │   ├── products │   │   │   │   ├── smiles │   │   │   │   ├── stock │   │   │   │   └── svg │   │   │   ├── plugins │   │   │   │   ├── @form-validation │   │   │   │   ├── keenicons │   │   │   │   └── toastr │   │   │   └── sass │   │   │   ├── base │   │   │   ├── components │   │   │   ├── _init.scss │   │   │   ├── layout │   │   │   ├── plugins.scss │   │   │   ├── style.scss │   │   │   └── vendors │   │   └── tools │   │   ├── gulp │   │   │   ├── build.js │   │   │   ├── clean.js │   │   │   ├── compile.js │   │   │   ├── helpers.js │   │   │   └── watch.js │   │   ├── gulp.config.js │   │   ├── gulpfile.js │   │   └── package.json │   ├── mix │   │   ├── common │   │   │   └── button-ajax.js │   │   ├── plugins.js │   │   ├── plugins.scss │   │   ├── scripts.js │   │   └── vendors │   │   ├── ckeditor │   │   │   ├── ckeditor-balloon-block.bundle.js │   │   │   ├── ckeditor-balloon.bundle.js │   │   │   ├── ckeditor-classic.bundle.js │   │   │   ├── ckeditor-document.bundle.js │   │   │   └── ckeditor-inline.bundle.js │   │   ├── cookiealert │   │   │   └── cookiealert.bundle.js │   │   ├── cropper │   │   │   └── cropper.bundle.js │   │   ├── datatables │   │   │   ├── datatables.bundle.js │   │   │   └── datatables.bundle.scss │   │   ├── draggable │   │   │   └── draggable.bundle.js │   │   ├── flotcharts │   │   │   └── flotcharts.bundle.js │   │   ├── formrepeater │   │   │   └── formrepeater.bundle.js │   │   ├── fslightbox │   │   │   └── fslightbox.bundle.js │   │   ├── fullcalendar │   │   │   ├── fullcalendar.bundle.js │   │   │   └── fullcalendar.bundle.scss │   │   ├── jkanban │   │   │   ├── jkanban.bundle.js │   │   │   └── jkanban.bundle.scss │   │   ├── jstree │   │   │   ├── jstree.bundle.js │   │   │   └── jstree.bundle.scss │   │   ├── leaflet │   │   │   ├── leaflet.bundle.js │   │   │   └── leaflet.bundle.scss │   │   ├── prismjs │   │   │   ├── prismjs.bundle.js │   │   │   └── prismjs.bundle.scss │   │   ├── tinymce │   │   │   └── tinymce.js │   │   ├── tiny-slider │   │   │   ├── tiny-slider.js │   │   │   └── tiny-slider.scss │   │   ├── typedjs │   │   │   └── typedjs.js │   │   └── vis-timeline │   │   ├── vis-timeline.bundle.js │   │   └── vis-timeline.bundle.scss │   └── views │   ├── errors │   │   ├── 404.blade.php │   │   └── 500.blade.php │   ├── layout │   │   ├── admin.blade.php │   │   ├── _auth.blade.php │   │   ├── _default.blade.php │   │   ├── _default_header_layout.blade.php │   │   ├── master.blade.php │   │   ├── partials │   │   │   ├── header-layout │   │   │   └── sidebar-layout │   │   └── _system.blade.php │   ├── livewire │   │   ├── permission │   │   │   ├── permission-modal.blade.php │   │   │   ├── role-list.blade.php │   │   │   └── role-modal.blade.php │   │   └── user │   │   └── add-user-modal.blade.php │   ├── pages │   │   ├── apps │   │   │   └── user-management │   │   ├── auth │   │   │   ├── confirm-password.blade.php │   │   │   ├── forgot-password.blade.php │   │   │   ├── login.blade.php │   │   │   ├── register.blade.php │   │   │   └── reset-password.blade.php │   │   ├── dashboards │   │   │   ├── index.blade.php │   │   │   └── pricing.blade.php │   │   ├── items │   │   │   ├── create.blade.php │   │   │   ├── edit.blade.php │   │   │   ├── index.blade.php │   │   │   └── show.blade.php │   │   ├── packages │   │   │   ├── create.blade.php │   │   │   ├── edit.blade.php │   │   │   ├── index.blade.php │   │   │   └── show.blade.php │   │   ├── pricing │   │   │   ├── create.blade.php │   │   │   ├── edit.blade.php │   │   │   └── index.blade.php │   │   ├── profile │   │   │   ├── edit.blade.php │   │   │   ├── invoice-pdf.blade.php │   │   │   ├── invoices.blade.php │   │   │   └── show.blade.php │   │   └── system │   │   ├── error.blade.php │   │   └── not_found.blade.php │   ├── partials │   │   ├── drawers │   │   │   ├── _activity-drawer.blade.php │   │   │   ├── _chat-messenger.blade.php │   │   │   └── _shopping-cart.blade.php │   │   ├── _drawers.blade.php │   │   ├── general │   │   │   ├── _button-indicator.blade.php │   │   │   ├── _form-tooltip-hint.blade.php │   │   │   └── _notice.blade.php │   │   ├── menus │   │   │   ├── _menu-2.blade.php │   │   │   ├── _menu-3.blade.php │   │   │   ├── _my-apps-menu.blade.php │   │   │   ├── _notifications-menu.blade.php │   │   │   ├── _quick-links-menu.blade.php │   │   │   └── _user-account-menu.blade.php │   │   ├── modals │   │   │   ├── create-app │   │   │   ├── create-campaign │   │   │   ├── create-project │   │   │   ├── _invite-friends.blade.php │   │   │   ├── new-card │   │   │   ├── _new-target.blade.php │   │   │   ├── _upgrade-plan.blade.php │   │   │   ├── users-search │   │   │   └── _view-users.blade.php │   │   ├── _modals.blade.php │   │   ├── _scrolltop.blade.php │   │   ├── search │   │   │   ├── _dropdown.blade.php │   │   │   └── partials │   │   ├── theme-mode │   │   │   ├── _init.blade.php │   │   │   └── __menu.blade.php │   │   └── widgets │   │   ├── cards │   │   ├── charts │   │   ├── engage │   │   ├── lists │   │   └── tables │   └── vendor │   ├── breadcrumbs │   │   └── bootstrap5.blade.php │   └── mail │   ├── html │   └── text ├── routes │   ├── api.php │   ├── auth.php │   ├── breadcrumbs.php │   ├── channels.php │   ├── console.php │   └── web.php ├── storage │   ├── app │   │   └── public │   │   └── packages │   │   ├── EN34hIjANaRAavEBmDZ5xUASll4kVYbiTvrcogfR.jpg │   │   ├── IMG_2373.JPEG │   │   ├── IMG_2374.JPEG │   │   ├── JoXLw7ttcXvAzCYfxzqqhouVZFLnee7GcaxQ03kv.jpg │   │   ├── TesvwQnt6GrpBAlC404T8KIYnzpRkLPbHaSBOvxg.jpg │   │   ├── TNm1qjXQDrAZMYTanqdK4c8AnAianOWQOumiNvMw.jpg │   │   └── XLKhHmldi0p1mp8nqJ1i8apkckxqCxhzMNe7wWct.jpg │   ├── framework │   │   ├── cache │   │   │   └── data │   │   │   └── d4 │   │   ├── sessions │   │   │   ├── 0FPb3Y5XDYikTZwwSPRAf5Lj6BcgBZVjCVSYunv4 │   │   │   ├── 1jw5Ml6EZl1at9Qshrqmc47X0dbj9jbIwzRFUbvp │   │   │   ├── 9sUcajwqGRJamxDlTmiq6uOmhYOp41nOFQ5MQJqg │   │   │   ├── B65heYKw4xgKSTzENnl1P0BL8fDZoTLRV6D94a1m │   │   │   ├── DFKsItbNpdmAxTgIseDr45r44aqBb90Lg5csKmhJ │   │   │   ├── Dw8HtfGmXhLx79HGUc7zF9zPEPKd9JCPpT1BIslK │   │   │   ├── EcFdW1QTDEMAEt6dUZy7O0j0GvE2pw1B1805wvcT │   │   │   ├── ERV7FofHRjSPXqDYhv0pELASJDJJmwtEhSdz6BhU │   │   │   ├── FCAkWwKzLx4PjoHXmk05F2ndWKnaqTiI5zpnewOy │   │   │   ├── gM1YGnr0nDkTQAZHFYuX5bcKg4Y1HTmqIY2kyGn8 │   │   │   ├── GQcXA7S15tKcMCrT1VwIzwuBWQdukpk9cEsQ7UnH │   │   │   ├── NhaifcATkiTVx4WxFnmnz7rPDvs1UlIwvmdYAWe2 │   │   │   ├── rBb66Skro9Vtw2x0UlvluRlI3BIal5KHECSjeUJl │   │   │   ├── uIonHRWRKgy2hNCB1L253wYD3bfH93zTxK4WyID6 │   │   │   ├── vx2BHphw4Laj4Lbun2jmWCnlBdNWMwkGKpyehYEO │   │   │   ├── XNN6Hg2Tcppqvt6LDYuLn3UjT9SGPgJmbOYq4bBn │   │   │   ├── Xq0PepDiVbUaUQhldT1HlRetgQrTjb4T7c0HjLMB │   │   │   ├── YCaFrMz8HDh4vVKpBqeBAlJ4YC01ah2V9SwTyZHC │   │   │   └── YIV4W3yBSYdkBo4G8s8LYScgK3z8yT0gY2hDUHaa │   │   ├── testing │   │   └── views │   │   ├── 0886be0052076495383709f3c48664a0.php │   │   ├── 0b3e7e20f2779a1511b549482105d600.php │   │   ├── 0b5d415c3cd2e30b8f3029e25b8d74cd.php │   │   ├── 0b68cd14f2d792a9fbb9853794a18938.php │   │   ├── 0c2a527cde695f1d668399a7c01c85b1.php │   │   ├── 0c697e187b44cc7014414c2923e05455.php │   │   ├── 1295a9a7b66a433962565fafe7d4ffac.php │   │   ├── 12e40ddb8c2c33ad55bba25073aa6384.php │   │   ├── 1399a369e816af971ed62b9d3263c0c4.php │   │   ├── 16dbb6116a994fe160d3083be09e8053.php │   │   ├── 1f6dd90d2f2a0526e9bbec4cfc9df0fd.php │   │   ├── 22f489803e58316ccad64e396dbb1871.php │   │   ├── 26662772a1bb305a795a96892ede6b53.php │   │   ├── 281ed2131384265c837fbabcc03a681e.php │   │   ├── 2f7edec70da31c284b6a8ce848e787d1.php │   │   ├── 326fdc91f04197b209d562390a268d31.php │   │   ├── 3676c7a1ff1198e01de90a497e241593.php │   │   ├── 380dded1379ef23cf474c5d128c8f731.php │   │   ├── 38ae968c7405596aa145ee872c28d48f.php │   │   ├── 3dce1d5197e6612ca97f1d8901f3109d.php │   │   ├── 4000977867c0a41e413f6809a08cbc03.php │   │   ├── 40c2e8b9ae3870ab1ede2cc8735925e1.php │   │   ├── 486dad2fd6802adde4dfc7cffab6f7c8.php │   │   ├── 4a2301a7f58644daddd171aaa092cbdc.php │   │   ├── 5367ccfff42ad15136863b4484b98383.php │   │   ├── 54a9c01e58260334bfd5db065642e111.php │   │   ├── 5539627c24c890ae5cdebeceb11ba709.php │   │   ├── 5b7955602083dd508c01ebc11b9dfa0c.php │   │   ├── 5ca044ef613be85a903bb42203bc35c7.php │   │   ├── 5d23d7d3fc3ce27ca080d7c28b736536.php │   │   ├── 5dc96bb4abb3540e33cf3f0cea04fa4e.php │   │   ├── 5e1483f9fc4c99dfcb4c90ab9972600e.php │   │   ├── 5f30e8d9731496bf5b65c1b290e9cde3.php │   │   ├── 602f26293ac3a3f10761063d09778549.php │   │   ├── 67f23f2de523dcbeb942b35f068d55fe.php │   │   ├── 6fa28cd2139256c3795d7193f32c6e68.php │   │   ├── 727706b46de818ae61dccfafcb98507a.php │   │   ├── 78e52021656a71b1f7c83d9d1e5d366f.php │   │   ├── 7b4a5189ac038b1cda73219efcd1a692.php │   │   ├── 7f8f9d41b222a44603579d19ffa6e717.php │   │   ├── 814c3c2e0367ce3eaad2c15990e0d8bf.php │   │   ├── 836633e3a51ec78fc6ca9724d4cc82a0.php │   │   ├── 85194ab4a091f288ed959b3c4e901e69.php │   │   ├── 8c88a4f3279682673517dae4b70af27c.php │   │   ├── 8e736c2beb85f810929057551ada34e7.php │   │   ├── 9325136e8c1afd62d76c12dbe389c3b3.php │   │   ├── 933f8a2693018023904cf3835c5ee0a1.php │   │   ├── 99ed2b4afbf201f2b5b0492df5d535de.php │   │   ├── a2423da04ff8400b5442bad7c76cfec6.php │   │   ├── a54cd8de0d81541434a1ee795ce393e8.php │   │   ├── a5b8cab3e1b6a9fa4098a0ba003c5f42.php │   │   ├── a7bd46fc16fc53d18294051304374cd9.php │   │   ├── a8b2fe74745cf5f7aea7accf471107b1.php │   │   ├── ae281cc3f734d33632227c187a149789.php │   │   ├── b224efb377fac2592f856f59b056a2f7.php │   │   ├── b27062d16161869841923fd1ebfc95b3.php │   │   ├── b35a4fa700a7b8a56bffc062d1afebb2.php │   │   ├── bc68e5417511be64de40a3721b38c868.php │   │   ├── bcdf8a079dd585960bc70e43d0fecbd3.php │   │   ├── bcf8cf9f42efad038919a6da5b6b127c.php │   │   ├── c093c5a8b7a9f3e6a62e88c8917b9caa.php │   │   ├── c57e3cdcf110591aa1cc5cf2b40f2b41.php │   │   ├── c5b46d63564c7da533ca3b99122fa126.php │   │   ├── ca4ca0bfb5c19e53aec8d1c40384cb52.php │   │   ├── ced0f2beb1ff23165496efe83747ae46.php │   │   ├── d1cd4d79b8b41f87dac57fd1090621f1.php │   │   ├── d279a25c784356049e30b8e7b56fde09.php │   │   ├── d7ece5b54855f0dedee0d7f5ef785212.php │   │   ├── db76025bb6d6eab0f4ec501a65f57d35.php │   │   ├── e5f85e9b6882076dca60be3c5eff8505.php │   │   ├── e7df32c64b717e76a7b9ef26573f2cf4.php │   │   ├── ed08234ad8266e7d1417400f25f2fb97.php │   │   ├── f7c9411537fb4fb7cf3f8de56c4a9551.php │   │   ├── f8b997e27d00e0e5b3377802095ed5c3.php │   │   ├── fc57450c41151943113e8b730f50698a.php │   │   ├── ff09ae02a4e505828d99e49ff66acfb7.php │   │   └── ff8ec4db316727236fd1fdfcd6bef7c0.php │   └── logs │   └── laravel.log ├── structure.txt ├── tests │   ├── CreatesApplication.php │   ├── Feature │   │   ├── Auth │   │   │   ├── AuthenticationTest.php │   │   │   ├── EmailVerificationTest.php │   │   │   ├── PasswordConfirmationTest.php │   │   │   ├── PasswordResetTest.php │   │   │   └── RegistrationTest.php │   │   └── ExampleTest.php │   ├── TestCase.php │   └── Unit │   └── ExampleTest.php ├── User::select('id', 'name', 'shipping_code')->get(); ├── User::whereNull('shipping_code')->update(['shipping_code' => AppModelsUser::generateUniqueShippingCode()]); ├── vendor │   ├── autoload.php │   ├── bin │   │   ├── carbon │   │   ├── patch-type-declarations │   │   ├── php-parse │   │   ├── phpunit │   │   ├── pint │   │   ├── psysh │   │   ├── sail │   │   ├── var-dump-server │   │   └── yaml-lint │   ├── brick │   │   └── math │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   └── src │   │   ├── BigDecimal.php │   │   ├── BigInteger.php │   │   ├── BigNumber.php │   │   ├── BigRational.php │   │   ├── Exception │   │   ├── Internal │   │   └── RoundingMode.php │   ├── carbonphp │   │   └── carbon-doctrine-types │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   └── Carbon │   ├── 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 │   │   ├── pcre │   │   │   ├── composer.json │   │   │   ├── extension.neon │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── MatchAllResult.php │   │   │   ├── MatchAllStrictGroupsResult.php │   │   │   ├── MatchAllWithOffsetsResult.php │   │   │   ├── MatchResult.php │   │   │   ├── MatchStrictGroupsResult.php │   │   │   ├── MatchWithOffsetsResult.php │   │   │   ├── PcreException.php │   │   │   ├── PHPStan │   │   │   ├── Preg.php │   │   │   ├── Regex.php │   │   │   ├── ReplaceResult.php │   │   │   └── UnexpectedNullMatchException.php │   │   └── platform_check.php │   ├── dflydev │   │   └── dot-access-data │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── DataInterface.php │   │   ├── Data.php │   │   ├── Exception │   │   └── Util.php │   ├── diglactic │   │   └── laravel-breadcrumbs │   │   ├── composer.json │   │   ├── config │   │   │   └── breadcrumbs.php │   │   ├── resources │   │   │   └── views │   │   └── src │   │   ├── Breadcrumbs.php │   │   ├── Exceptions │   │   ├── Generator.php │   │   ├── Manager.php │   │   └── ServiceProvider.php │   ├── doctrine │   │   ├── inflector │   │   │   ├── composer.json │   │   │   ├── docs │   │   │   │   └── en │   │   │   ├── lib │   │   │   │   └── Doctrine │   │   │   ├── LICENSE │   │   │   └── README.md │   │   └── lexer │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   ├── src │   │   │   ├── AbstractLexer.php │   │   │   └── Token.php │   │   └── UPGRADE.md │   ├── dragonmantank │   │   └── cron-expression │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   └── Cron │   ├── egulias │   │   └── email-validator │   │   ├── composer.json │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE │   │   └── src │   │   ├── EmailLexer.php │   │   ├── EmailParser.php │   │   ├── EmailValidator.php │   │   ├── MessageIDParser.php │   │   ├── Parser │   │   ├── Parser.php │   │   ├── Result │   │   ├── Validation │   │   └── Warning │   ├── facade │   │   └── ignition-contracts │   │   ├── composer.json │   │   ├── LICENSE.md │   │   ├── psalm.xml │   │   └── src │   │   ├── BaseSolution.php │   │   ├── HasSolutionsForThrowable.php │   │   ├── ProvidesSolution.php │   │   ├── RunnableSolution.php │   │   ├── Solution.php │   │   └── SolutionProviderRepository.php │   ├── fakerphp │   │   └── faker │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   ├── rector-migrate.php │   │   └── src │   │   ├── autoload.php │   │   └── Faker │   ├── filp │   │   └── whoops │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE.md │   │   ├── SECURITY.md │   │   └── src │   │   └── Whoops │   ├── firebase │   │   └── php-jwt │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── BeforeValidException.php │   │   ├── CachedKeySet.php │   │   ├── ExpiredException.php │   │   ├── JWK.php │   │   ├── JWTExceptionWithPayloadInterface.php │   │   ├── JWT.php │   │   ├── Key.php │   │   └── SignatureInvalidException.php │   ├── fruitcake │   │   └── php-cors │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── CorsService.php │   │   └── Exceptions │   ├── graham-campbell │   │   └── result-type │   │   ├── composer.json │   │   ├── LICENSE │   │   └── src │   │   ├── Error.php │   │   ├── Result.php │   │   └── Success.php │   ├── guzzlehttp │   │   ├── guzzle │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── src │   │   │   │   ├── BodySummarizerInterface.php │   │   │   │   ├── BodySummarizer.php │   │   │   │   ├── ClientInterface.php │   │   │   │   ├── Client.php │   │   │   │   ├── ClientTrait.php │   │   │   │   ├── Cookie │   │   │   │   ├── Exception │   │   │   │   ├── functions_include.php │   │   │   │   ├── functions.php │   │   │   │   ├── Handler │   │   │   │   ├── HandlerStack.php │   │   │   │   ├── MessageFormatterInterface.php │   │   │   │   ├── MessageFormatter.php │   │   │   │   ├── Middleware.php │   │   │   │   ├── Pool.php │   │   │   │   ├── PrepareBodyMiddleware.php │   │   │   │   ├── RedirectMiddleware.php │   │   │   │   ├── RequestOptions.php │   │   │   │   ├── RetryMiddleware.php │   │   │   │   ├── TransferStats.php │   │   │   │   └── Utils.php │   │   │   └── UPGRADING.md │   │   ├── 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 │   │   │   ├── PromiseInterface.php │   │   │   ├── Promise.php │   │   │   ├── PromisorInterface.php │   │   │   ├── RejectedPromise.php │   │   │   ├── RejectionException.php │   │   │   ├── TaskQueueInterface.php │   │   │   ├── TaskQueue.php │   │   │   └── Utils.php │   │   ├── psr7 │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── AppendStream.php │   │   │   ├── BufferStream.php │   │   │   ├── CachingStream.php │   │   │   ├── DroppingStream.php │   │   │   ├── Exception │   │   │   ├── 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 │   │   │   ├── StreamDecoratorTrait.php │   │   │   ├── Stream.php │   │   │   ├── StreamWrapper.php │   │   │   ├── UploadedFile.php │   │   │   ├── UriComparator.php │   │   │   ├── UriNormalizer.php │   │   │   ├── Uri.php │   │   │   ├── UriResolver.php │   │   │   └── Utils.php │   │   └── uri-template │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   └── UriTemplate.php │   ├── hamcrest │   │   └── hamcrest-php │   │   ├── CHANGES.txt │   │   ├── composer.json │   │   ├── generator │   │   │   ├── FactoryCall.php │   │   │   ├── FactoryClass.php │   │   │   ├── FactoryFile.php │   │   │   ├── FactoryGenerator.php │   │   │   ├── FactoryMethod.php │   │   │   ├── FactoryParameter.php │   │   │   ├── GlobalFunctionFile.php │   │   │   ├── parts │   │   │   ├── run.php │   │   │   └── StaticMethodFile.php │   │   ├── hamcrest │   │   │   ├── Hamcrest │   │   │   └── Hamcrest.php │   │   ├── LICENSE.txt │   │   ├── README.md │   │   └── tests │   │   ├── bootstrap.php │   │   ├── Hamcrest │   │   └── phpunit.xml.dist │   ├── laravel │   │   ├── breeze │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── src │   │   │   │   ├── BreezeServiceProvider.php │   │   │   │   └── Console │   │   │   └── stubs │   │   │   ├── api │   │   │   ├── default │   │   │   ├── inertia-common │   │   │   ├── inertia-react │   │   │   ├── inertia-react-ts │   │   │   ├── inertia-vue │   │   │   ├── inertia-vue-ts │   │   │   ├── livewire │   │   │   ├── livewire-common │   │   │   └── livewire-functional │   │   ├── framework │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── config │   │   │   │   ├── app.php │   │   │   │   ├── auth.php │   │   │   │   ├── broadcasting.php │   │   │   │   ├── cache.php │   │   │   │   ├── concurrency.php │   │   │   │   ├── cors.php │   │   │   │   ├── database.php │   │   │   │   ├── filesystems.php │   │   │   │   ├── hashing.php │   │   │   │   ├── logging.php │   │   │   │   ├── mail.php │   │   │   │   ├── queue.php │   │   │   │   ├── services.php │   │   │   │   ├── session.php │   │   │   │   └── view.php │   │   │   ├── config-stubs │   │   │   │   └── app.php │   │   │   ├── LICENSE.md │   │   │   ├── pint.json │   │   │   ├── README.md │   │   │   └── src │   │   │   └── Illuminate │   │   ├── pint │   │   │   ├── builds │   │   │   │   └── pint │   │   │   ├── composer.json │   │   │   └── LICENSE.md │   │   ├── prompts │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── phpunit.xml │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── Clear.php │   │   │   ├── Concerns │   │   │   ├── ConfirmPrompt.php │   │   │   ├── Exceptions │   │   │   ├── FormBuilder.php │   │   │   ├── FormStep.php │   │   │   ├── helpers.php │   │   │   ├── Key.php │   │   │   ├── MultiSearchPrompt.php │   │   │   ├── MultiSelectPrompt.php │   │   │   ├── Note.php │   │   │   ├── Output │   │   │   ├── PasswordPrompt.php │   │   │   ├── PausePrompt.php │   │   │   ├── Progress.php │   │   │   ├── Prompt.php │   │   │   ├── SearchPrompt.php │   │   │   ├── SelectPrompt.php │   │   │   ├── Spinner.php │   │   │   ├── SuggestPrompt.php │   │   │   ├── Support │   │   │   ├── Table.php │   │   │   ├── Terminal.php │   │   │   ├── TextareaPrompt.php │   │   │   ├── TextPrompt.php │   │   │   └── Themes │   │   ├── sail │   │   │   ├── bin │   │   │   │   └── sail │   │   │   ├── composer.json │   │   │   ├── database │   │   │   │   ├── mariadb │   │   │   │   ├── mysql │   │   │   │   └── pgsql │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── runtimes │   │   │   │   ├── 8.0 │   │   │   │   ├── 8.1 │   │   │   │   ├── 8.2 │   │   │   │   ├── 8.3 │   │   │   │   └── 8.4 │   │   │   ├── src │   │   │   │   ├── Console │   │   │   │   └── SailServiceProvider.php │   │   │   └── stubs │   │   │   ├── devcontainer.stub │   │   │   ├── docker-compose.stub │   │   │   ├── mailpit.stub │   │   │   ├── mariadb.stub │   │   │   ├── meilisearch.stub │   │   │   ├── memcached.stub │   │   │   ├── minio.stub │   │   │   ├── mongodb.stub │   │   │   ├── mysql.stub │   │   │   ├── pgsql.stub │   │   │   ├── redis.stub │   │   │   ├── selenium.stub │   │   │   ├── soketi.stub │   │   │   ├── typesense.stub │   │   │   └── valkey.stub │   │   ├── sanctum │   │   │   ├── composer.json │   │   │   ├── config │   │   │   │   └── sanctum.php │   │   │   ├── database │   │   │   │   └── migrations │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── src │   │   │   │   ├── Console │   │   │   │   ├── Contracts │   │   │   │   ├── Events │   │   │   │   ├── Exceptions │   │   │   │   ├── Guard.php │   │   │   │   ├── HasApiTokens.php │   │   │   │   ├── Http │   │   │   │   ├── NewAccessToken.php │   │   │   │   ├── PersonalAccessToken.php │   │   │   │   ├── Sanctum.php │   │   │   │   ├── SanctumServiceProvider.php │   │   │   │   └── TransientToken.php │   │   │   ├── testbench.yaml │   │   │   └── UPGRADE.md │   │   ├── serializable-closure │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── Contracts │   │   │   ├── Exceptions │   │   │   ├── SerializableClosure.php │   │   │   ├── Serializers │   │   │   ├── Signers │   │   │   ├── Support │   │   │   └── UnsignedSerializableClosure.php │   │   ├── socialite │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── AbstractUser.php │   │   │   ├── Contracts │   │   │   ├── Facades │   │   │   ├── One │   │   │   ├── SocialiteManager.php │   │   │   ├── SocialiteServiceProvider.php │   │   │   └── Two │   │   └── tinker │   │   ├── composer.json │   │   ├── config │   │   │   └── tinker.php │   │   ├── LICENSE.md │   │   ├── README.md │   │   └── src │   │   ├── ClassAliasAutoloader.php │   │   ├── Console │   │   ├── TinkerCaster.php │   │   └── TinkerServiceProvider.php │   ├── league │   │   ├── commonmark │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── CommonMarkConverter.php │   │   │   ├── ConverterInterface.php │   │   │   ├── Delimiter │   │   │   ├── Environment │   │   │   ├── Event │   │   │   ├── Exception │   │   │   ├── Extension │   │   │   ├── GithubFlavoredMarkdownConverter.php │   │   │   ├── Input │   │   │   ├── MarkdownConverterInterface.php │   │   │   ├── MarkdownConverter.php │   │   │   ├── Node │   │   │   ├── Normalizer │   │   │   ├── Output │   │   │   ├── Parser │   │   │   ├── Reference │   │   │   ├── Renderer │   │   │   ├── Util │   │   │   └── Xml │   │   ├── config │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── ConfigurationAwareInterface.php │   │   │   ├── ConfigurationBuilderInterface.php │   │   │   ├── ConfigurationInterface.php │   │   │   ├── Configuration.php │   │   │   ├── ConfigurationProviderInterface.php │   │   │   ├── Exception │   │   │   ├── MutableConfigurationInterface.php │   │   │   ├── ReadOnlyConfiguration.php │   │   │   └── SchemaBuilderInterface.php │   │   ├── flysystem │   │   │   ├── composer.json │   │   │   ├── INFO.md │   │   │   ├── LICENSE │   │   │   ├── readme.md │   │   │   └── src │   │   │   ├── CalculateChecksumFromStream.php │   │   │   ├── ChecksumAlgoIsNotSupported.php │   │   │   ├── ChecksumProvider.php │   │   │   ├── Config.php │   │   │   ├── CorruptedPathDetected.php │   │   │   ├── DecoratedAdapter.php │   │   │   ├── DirectoryAttributes.php │   │   │   ├── DirectoryListing.php │   │   │   ├── FileAttributes.php │   │   │   ├── FilesystemAdapter.php │   │   │   ├── FilesystemException.php │   │   │   ├── FilesystemOperationFailed.php │   │   │   ├── FilesystemOperator.php │   │   │   ├── Filesystem.php │   │   │   ├── FilesystemReader.php │   │   │   ├── FilesystemWriter.php │   │   │   ├── InvalidStreamProvided.php │   │   │   ├── InvalidVisibilityProvided.php │   │   │   ├── MountManager.php │   │   │   ├── PathNormalizer.php │   │   │   ├── PathPrefixer.php │   │   │   ├── PathTraversalDetected.php │   │   │   ├── PortableVisibilityGuard.php │   │   │   ├── ProxyArrayAccessToProperties.php │   │   │   ├── ResolveIdenticalPathConflict.php │   │   │   ├── StorageAttributes.php │   │   │   ├── SymbolicLinkEncountered.php │   │   │   ├── UnableToCheckDirectoryExistence.php │   │   │   ├── UnableToCheckExistence.php │   │   │   ├── UnableToCheckFileExistence.php │   │   │   ├── UnableToCopyFile.php │   │   │   ├── UnableToCreateDirectory.php │   │   │   ├── UnableToDeleteDirectory.php │   │   │   ├── UnableToDeleteFile.php │   │   │   ├── UnableToGeneratePublicUrl.php │   │   │   ├── UnableToGenerateTemporaryUrl.php │   │   │   ├── UnableToListContents.php │   │   │   ├── UnableToMountFilesystem.php │   │   │   ├── UnableToMoveFile.php │   │   │   ├── UnableToProvideChecksum.php │   │   │   ├── UnableToReadFile.php │   │   │   ├── UnableToResolveFilesystemMount.php │   │   │   ├── UnableToRetrieveMetadata.php │   │   │   ├── UnableToSetVisibility.php │   │   │   ├── UnableToWriteFile.php │   │   │   ├── UnixVisibility │   │   │   ├── UnreadableFileEncountered.php │   │   │   ├── UrlGeneration │   │   │   ├── Visibility.php │   │   │   └── WhitespacePathNormalizer.php │   │   ├── flysystem-local │   │   │   ├── composer.json │   │   │   ├── FallbackMimeTypeDetector.php │   │   │   ├── LICENSE │   │   │   └── LocalFilesystemAdapter.php │   │   ├── fractal │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── phpcs.xml.dist │   │   │   ├── phpstan-baseline.neon │   │   │   ├── phpstan.neon.dist │   │   │   ├── psalm.baseline.xml │   │   │   ├── psalm.xml │   │   │   └── src │   │   │   ├── Manager.php │   │   │   ├── Pagination │   │   │   ├── ParamBag.php │   │   │   ├── Resource │   │   │   ├── ScopeFactoryInterface.php │   │   │   ├── ScopeFactory.php │   │   │   ├── Scope.php │   │   │   ├── Serializer │   │   │   └── TransformerAbstract.php │   │   ├── mime-type-detection │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   └── src │   │   │   ├── EmptyExtensionToMimeTypeMap.php │   │   │   ├── ExtensionLookup.php │   │   │   ├── ExtensionMimeTypeDetector.php │   │   │   ├── ExtensionToMimeTypeMap.php │   │   │   ├── FinfoMimeTypeDetector.php │   │   │   ├── GeneratedExtensionToMimeTypeMap.php │   │   │   ├── MimeTypeDetector.php │   │   │   └── OverridingExtensionToMimeTypeMap.php │   │   ├── oauth1-client │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── Credentials │   │   │   ├── Server │   │   │   └── Signature │   │   ├── uri │   │   │   ├── BaseUri.php │   │   │   ├── composer.json │   │   │   ├── HttpFactory.php │   │   │   ├── Http.php │   │   │   ├── LICENSE │   │   │   ├── UriInfo.php │   │   │   ├── Uri.php │   │   │   ├── UriResolver.php │   │   │   ├── UriTemplate │   │   │   │   ├── Expression.php │   │   │   │   ├── Operator.php │   │   │   │   ├── TemplateCanNotBeExpanded.php │   │   │   │   ├── Template.php │   │   │   │   ├── VariableBag.php │   │   │   │   └── VarSpecifier.php │   │   │   └── UriTemplate.php │   │   └── uri-interfaces │   │   ├── composer.json │   │   ├── Contracts │   │   │   ├── AuthorityInterface.php │   │   │   ├── DataPathInterface.php │   │   │   ├── DomainHostInterface.php │   │   │   ├── FragmentInterface.php │   │   │   ├── HostInterface.php │   │   │   ├── IpHostInterface.php │   │   │   ├── PathInterface.php │   │   │   ├── PortInterface.php │   │   │   ├── QueryInterface.php │   │   │   ├── SegmentedPathInterface.php │   │   │   ├── UriAccess.php │   │   │   ├── UriComponentInterface.php │   │   │   ├── UriException.php │   │   │   ├── UriInterface.php │   │   │   └── UserInfoInterface.php │   │   ├── Encoder.php │   │   ├── Exceptions │   │   │   ├── ConversionFailed.php │   │   │   ├── MissingFeature.php │   │   │   ├── OffsetOutOfBounds.php │   │   │   └── SyntaxError.php │   │   ├── FeatureDetection.php │   │   ├── Idna │   │   │   ├── Converter.php │   │   │   ├── Error.php │   │   │   ├── Option.php │   │   │   └── Result.php │   │   ├── IPv4 │   │   │   ├── BCMathCalculator.php │   │   │   ├── Calculator.php │   │   │   ├── Converter.php │   │   │   ├── GMPCalculator.php │   │   │   └── NativeCalculator.php │   │   ├── IPv6 │   │   │   └── Converter.php │   │   ├── KeyValuePair │   │   │   └── Converter.php │   │   ├── LICENSE │   │   ├── QueryString.php │   │   └── UriString.php │   ├── livewire │   │   └── livewire │   │   ├── composer.json │   │   ├── config │   │   │   └── livewire.php │   │   ├── dist │   │   │   ├── livewire.esm.js │   │   │   ├── livewire.esm.js.map │   │   │   ├── livewire.js │   │   │   ├── livewire.min.js │   │   │   ├── livewire.min.js.map │   │   │   └── manifest.json │   │   ├── LICENSE.md │   │   ├── README.md │   │   └── src │   │   ├── Attribute.php │   │   ├── Attributes │   │   ├── ComponentHook.php │   │   ├── ComponentHookRegistry.php │   │   ├── Component.php │   │   ├── Concerns │   │   ├── Drawer │   │   ├── EventBus.php │   │   ├── Exceptions │   │   ├── Features │   │   ├── Form.php │   │   ├── helpers.php │   │   ├── ImplicitlyBoundMethod.php │   │   ├── LivewireManager.php │   │   ├── Livewire.php │   │   ├── LivewireServiceProvider.php │   │   ├── Mechanisms │   │   ├── Pipe.php │   │   ├── Transparency.php │   │   ├── Wireable.php │   │   ├── WireDirective.php │   │   ├── WithFileUploads.php │   │   ├── WithoutUrlPagination.php │   │   ├── WithPagination.php │   │   └── Wrapped.php │   ├── maennchen │   │   └── zipstream-php │   │   ├── composer.json │   │   ├── guides │   │   │   ├── ContentLength.rst │   │   │   ├── FlySystem.rst │   │   │   ├── index.rst │   │   │   ├── Nginx.rst │   │   │   ├── Options.rst │   │   │   ├── PSR7Streams.rst │   │   │   ├── StreamOutput.rst │   │   │   ├── Symfony.rst │   │   │   └── Varnish.rst │   │   ├── LICENSE │   │   ├── phpdoc.dist.xml │   │   ├── phpunit.xml.dist │   │   ├── psalm.xml │   │   ├── README.md │   │   ├── src │   │   │   ├── CentralDirectoryFileHeader.php │   │   │   ├── CompressionMethod.php │   │   │   ├── DataDescriptor.php │   │   │   ├── EndOfCentralDirectory.php │   │   │   ├── Exception │   │   │   ├── Exception.php │   │   │   ├── File.php │   │   │   ├── GeneralPurposeBitFlag.php │   │   │   ├── LocalFileHeader.php │   │   │   ├── OperationMode.php │   │   │   ├── PackField.php │   │   │   ├── Time.php │   │   │   ├── Version.php │   │   │   ├── Zip64 │   │   │   ├── ZipStream.php │   │   │   └── Zs │   │   └── test │   │   ├── Assertions.php │   │   ├── bootstrap.php │   │   ├── CentralDirectoryFileHeaderTest.php │   │   ├── DataDescriptorTest.php │   │   ├── EndlessCycleStream.php │   │   ├── EndOfCentralDirectoryTest.php │   │   ├── FaultInjectionResource.php │   │   ├── LocalFileHeaderTest.php │   │   ├── PackFieldTest.php │   │   ├── ResourceStream.php │   │   ├── Tempfile.php │   │   ├── TimeTest.php │   │   ├── Util.php │   │   ├── Zip64 │   │   ├── ZipStreamTest.php │   │   └── Zs │   ├── markbaker │   │   ├── complex │   │   │   ├── classes │   │   │   │   └── src │   │   │   ├── composer.json │   │   │   ├── examples │   │   │   │   ├── complexTest.php │   │   │   │   ├── testFunctions.php │   │   │   │   └── testOperations.php │   │   │   ├── license.md │   │   │   └── README.md │   │   └── matrix │   │   ├── buildPhar.php │   │   ├── classes │   │   │   └── src │   │   ├── composer.json │   │   ├── examples │   │   │   └── test.php │   │   ├── infection.json.dist │   │   ├── license.md │   │   ├── phpstan.neon │   │   └── README.md │   ├── mockery │   │   └── mockery │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── composer.lock │   │   ├── CONTRIBUTING.md │   │   ├── COPYRIGHT.md │   │   ├── docs │   │   │   ├── conf.py │   │   │   ├── cookbook │   │   │   ├── getting_started │   │   │   ├── index.rst │   │   │   ├── Makefile │   │   │   ├── mockery │   │   │   ├── README.md │   │   │   ├── reference │   │   │   ├── requirements.txt │   │   │   └── _static │   │   ├── library │   │   │   ├── helpers.php │   │   │   ├── Mockery │   │   │   └── Mockery.php │   │   ├── LICENSE │   │   ├── README.md │   │   └── SECURITY.md │   ├── monolog │   │   └── monolog │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   └── Monolog │   ├── myclabs │   │   └── deep-copy │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   └── DeepCopy │   ├── nesbot │   │   └── carbon │   │   ├── bin │   │   │   ├── carbon │   │   │   └── carbon.bat │   │   ├── composer.json │   │   ├── extension.neon │   │   ├── lazy │   │   │   └── Carbon │   │   ├── LICENSE │   │   ├── readme.md │   │   ├── sponsors.php │   │   └── src │   │   └── Carbon │   ├── nette │   │   ├── schema │   │   │   ├── composer.json │   │   │   ├── license.md │   │   │   ├── readme.md │   │   │   └── src │   │   │   └── Schema │   │   └── utils │   │   ├── composer.json │   │   ├── license.md │   │   ├── readme.md │   │   └── src │   │   ├── compatibility.php │   │   ├── exceptions.php │   │   ├── HtmlStringable.php │   │   ├── Iterators │   │   ├── SmartObject.php │   │   ├── StaticClass.php │   │   ├── Translator.php │   │   └── Utils │   ├── nikic │   │   └── php-parser │   │   ├── bin │   │   │   └── php-parse │   │   ├── composer.json │   │   ├── lib │   │   │   └── PhpParser │   │   ├── LICENSE │   │   └── README.md │   ├── nunomaduro │   │   ├── collision │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── Adapters │   │   │   ├── ArgumentFormatter.php │   │   │   ├── ConsoleColor.php │   │   │   ├── Contracts │   │   │   ├── Coverage.php │   │   │   ├── Exceptions │   │   │   ├── Handler.php │   │   │   ├── Highlighter.php │   │   │   ├── Provider.php │   │   │   ├── SolutionsRepositories │   │   │   └── Writer.php │   │   └── termwind │   │   ├── composer.json │   │   ├── LICENSE.md │   │   ├── playground.php │   │   └── src │   │   ├── Actions │   │   ├── Components │   │   ├── Enums │   │   ├── Exceptions │   │   ├── Functions.php │   │   ├── Helpers │   │   ├── Html │   │   ├── HtmlRenderer.php │   │   ├── Laravel │   │   ├── Question.php │   │   ├── Repositories │   │   ├── Terminal.php │   │   ├── Termwind.php │   │   └── ValueObjects │   ├── openspout │   │   └── openspout │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── LICENSE-for-cc42c1d │   │   ├── README.md │   │   ├── renovate.json │   │   ├── src │   │   │   ├── Common │   │   │   ├── Reader │   │   │   └── Writer │   │   └── UPGRADE.md │   ├── paragonie │   │   ├── constant_time_encoding │   │   │   ├── composer.json │   │   │   ├── LICENSE.txt │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── Base32Hex.php │   │   │   ├── Base32.php │   │   │   ├── Base64DotSlashOrdered.php │   │   │   ├── Base64DotSlash.php │   │   │   ├── Base64.php │   │   │   ├── Base64UrlSafe.php │   │   │   ├── Binary.php │   │   │   ├── EncoderInterface.php │   │   │   ├── Encoding.php │   │   │   ├── Hex.php │   │   │   └── RFC4648.php │   │   └── random_compat │   │   ├── build-phar.sh │   │   ├── composer.json │   │   ├── dist │   │   │   ├── random_compat.phar.pubkey │   │   │   └── random_compat.phar.pubkey.asc │   │   ├── lib │   │   │   └── random.php │   │   ├── LICENSE │   │   ├── other │   │   │   └── build_phar.php │   │   ├── psalm-autoload.php │   │   └── psalm.xml │   ├── phar-io │   │   ├── manifest │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── composer.lock │   │   │   ├── LICENSE │   │   │   ├── manifest.xsd │   │   │   ├── README.md │   │   │   ├── src │   │   │   │   ├── exceptions │   │   │   │   ├── ManifestDocumentMapper.php │   │   │   │   ├── ManifestLoader.php │   │   │   │   ├── ManifestSerializer.php │   │   │   │   ├── values │   │   │   │   └── xml │   │   │   └── tools │   │   │   └── php-cs-fixer.d │   │   └── version │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── BuildMetaData.php │   │   ├── constraints │   │   ├── exceptions │   │   ├── PreReleaseSuffix.php │   │   ├── VersionConstraintParser.php │   │   ├── VersionConstraintValue.php │   │   ├── VersionNumber.php │   │   └── Version.php │   ├── phpoffice │   │   └── phpspreadsheet │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   └── PhpSpreadsheet │   ├── phpoption │   │   └── phpoption │   │   ├── composer.json │   │   ├── LICENSE │   │   └── src │   │   └── PhpOption │   ├── phpseclib │   │   └── phpseclib │   │   ├── AUTHORS │   │   ├── BACKERS.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── phpseclib │   │   │   ├── bootstrap.php │   │   │   ├── Common │   │   │   ├── Crypt │   │   │   ├── Exception │   │   │   ├── File │   │   │   ├── Math │   │   │   ├── Net │   │   │   ├── openssl.cnf │   │   │   └── System │   │   └── README.md │   ├── phpunit │   │   ├── php-code-coverage │   │   │   ├── ChangeLog-10.1.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── CodeCoverage.php │   │   │   ├── Data │   │   │   ├── Driver │   │   │   ├── Exception │   │   │   ├── Filter.php │   │   │   ├── Node │   │   │   ├── Report │   │   │   ├── StaticAnalysis │   │   │   ├── TestSize │   │   │   ├── TestStatus │   │   │   ├── Util │   │   │   └── Version.php │   │   ├── php-file-iterator │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── ExcludeIterator.php │   │   │   ├── Facade.php │   │   │   ├── Factory.php │   │   │   └── Iterator.php │   │   ├── php-invoker │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── exceptions │   │   │   └── Invoker.php │   │   ├── php-text-template │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── exceptions │   │   │   └── Template.php │   │   ├── php-timer │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── Duration.php │   │   │   ├── exceptions │   │   │   ├── ResourceUsageFormatter.php │   │   │   └── Timer.php │   │   └── phpunit │   │   ├── ChangeLog-10.5.md │   │   ├── composer.json │   │   ├── composer.lock │   │   ├── DEPRECATIONS.md │   │   ├── LICENSE │   │   ├── phpunit │   │   ├── phpunit.xsd │   │   ├── README.md │   │   ├── schema │   │   │   ├── 10.0.xsd │   │   │   ├── 10.1.xsd │   │   │   ├── 10.2.xsd │   │   │   ├── 10.3.xsd │   │   │   ├── 10.4.xsd │   │   │   ├── 8.5.xsd │   │   │   ├── 9.0.xsd │   │   │   ├── 9.1.xsd │   │   │   ├── 9.2.xsd │   │   │   ├── 9.3.xsd │   │   │   ├── 9.4.xsd │   │   │   └── 9.5.xsd │   │   ├── SECURITY.md │   │   └── src │   │   ├── Event │   │   ├── Exception.php │   │   ├── Framework │   │   ├── Logging │   │   ├── Metadata │   │   ├── Runner │   │   ├── TextUI │   │   └── Util │   ├── psr │   │   ├── clock │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   └── ClockInterface.php │   │   ├── container │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── ContainerExceptionInterface.php │   │   │   ├── ContainerInterface.php │   │   │   └── NotFoundExceptionInterface.php │   │   ├── event-dispatcher │   │   │   ├── 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 │   │   │   ├── docs │   │   │   │   ├── PSR7-Interfaces.md │   │   │   │   └── PSR7-Usage.md │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── MessageInterface.php │   │   │   ├── RequestInterface.php │   │   │   ├── ResponseInterface.php │   │   │   ├── ServerRequestInterface.php │   │   │   ├── StreamInterface.php │   │   │   ├── UploadedFileInterface.php │   │   │   └── UriInterface.php │   │   ├── log │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── AbstractLogger.php │   │   │   ├── InvalidArgumentException.php │   │   │   ├── LoggerAwareInterface.php │   │   │   ├── LoggerAwareTrait.php │   │   │   ├── LoggerInterface.php │   │   │   ├── LoggerTrait.php │   │   │   ├── LogLevel.php │   │   │   └── NullLogger.php │   │   └── simple-cache │   │   ├── composer.json │   │   ├── LICENSE.md │   │   ├── README.md │   │   └── src │   │   ├── CacheException.php │   │   ├── CacheInterface.php │   │   └── InvalidArgumentException.php │   ├── psy │   │   └── psysh │   │   ├── bin │   │   │   └── psysh │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── CodeCleaner │   │   ├── CodeCleaner.php │   │   ├── Command │   │   ├── ConfigPaths.php │   │   ├── Configuration.php │   │   ├── ContextAware.php │   │   ├── Context.php │   │   ├── EnvInterface.php │   │   ├── Exception │   │   ├── ExecutionClosure.php │   │   ├── ExecutionLoop │   │   ├── ExecutionLoopClosure.php │   │   ├── Formatter │   │   ├── functions.php │   │   ├── Input │   │   ├── Output │   │   ├── ParserFactory.php │   │   ├── Readline │   │   ├── Reflection │   │   ├── Shell.php │   │   ├── Sudo │   │   ├── Sudo.php │   │   ├── SuperglobalsEnv.php │   │   ├── SystemEnv.php │   │   ├── TabCompletion │   │   ├── Util │   │   ├── VarDumper │   │   └── VersionUpdater │   ├── ralouphie │   │   └── getallheaders │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   └── getallheaders.php │   ├── ramsey │   │   ├── collection │   │   │   ├── composer.json │   │   │   ├── conventional-commits.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── AbstractArray.php │   │   │   ├── AbstractCollection.php │   │   │   ├── AbstractSet.php │   │   │   ├── ArrayInterface.php │   │   │   ├── CollectionInterface.php │   │   │   ├── Collection.php │   │   │   ├── DoubleEndedQueueInterface.php │   │   │   ├── DoubleEndedQueue.php │   │   │   ├── Exception │   │   │   ├── GenericArray.php │   │   │   ├── Map │   │   │   ├── QueueInterface.php │   │   │   ├── Queue.php │   │   │   ├── Set.php │   │   │   ├── Sort.php │   │   │   └── Tool │   │   └── uuid │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── BinaryUtils.php │   │   ├── Builder │   │   ├── Codec │   │   ├── Converter │   │   ├── DegradedUuid.php │   │   ├── DeprecatedUuidInterface.php │   │   ├── DeprecatedUuidMethodsTrait.php │   │   ├── Exception │   │   ├── FeatureSet.php │   │   ├── Fields │   │   ├── functions.php │   │   ├── Generator │   │   ├── Guid │   │   ├── Lazy │   │   ├── Math │   │   ├── Nonstandard │   │   ├── Provider │   │   ├── Rfc4122 │   │   ├── Type │   │   ├── UuidFactoryInterface.php │   │   ├── UuidFactory.php │   │   ├── UuidInterface.php │   │   ├── Uuid.php │   │   └── Validator │   ├── sebastian │   │   ├── cli-parser │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── exceptions │   │   │   └── Parser.php │   │   ├── code-unit │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── ClassMethodUnit.php │   │   │   ├── ClassUnit.php │   │   │   ├── CodeUnitCollectionIterator.php │   │   │   ├── CodeUnitCollection.php │   │   │   ├── CodeUnit.php │   │   │   ├── exceptions │   │   │   ├── FileUnit.php │   │   │   ├── FunctionUnit.php │   │   │   ├── InterfaceMethodUnit.php │   │   │   ├── InterfaceUnit.php │   │   │   ├── Mapper.php │   │   │   ├── TraitMethodUnit.php │   │   │   └── TraitUnit.php │   │   ├── code-unit-reverse-lookup │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   └── Wizard.php │   │   ├── comparator │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── ArrayComparator.php │   │   │   ├── Comparator.php │   │   │   ├── ComparisonFailure.php │   │   │   ├── DateTimeComparator.php │   │   │   ├── DOMNodeComparator.php │   │   │   ├── ExceptionComparator.php │   │   │   ├── exceptions │   │   │   ├── Factory.php │   │   │   ├── MockObjectComparator.php │   │   │   ├── NumericComparator.php │   │   │   ├── ObjectComparator.php │   │   │   ├── ResourceComparator.php │   │   │   ├── ScalarComparator.php │   │   │   ├── SplObjectStorageComparator.php │   │   │   └── TypeComparator.php │   │   ├── complexity │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── Calculator.php │   │   │   ├── Complexity │   │   │   ├── Exception │   │   │   └── Visitor │   │   ├── diff │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── Chunk.php │   │   │   ├── Differ.php │   │   │   ├── Diff.php │   │   │   ├── Exception │   │   │   ├── Line.php │   │   │   ├── LongestCommonSubsequenceCalculator.php │   │   │   ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │   │   │   ├── Output │   │   │   ├── Parser.php │   │   │   └── TimeEfficientLongestCommonSubsequenceCalculator.php │   │   ├── environment │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── Console.php │   │   │   └── Runtime.php │   │   ├── exporter │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   └── Exporter.php │   │   ├── global-state │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── CodeExporter.php │   │   │   ├── exceptions │   │   │   ├── ExcludeList.php │   │   │   ├── Restorer.php │   │   │   └── Snapshot.php │   │   ├── lines-of-code │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── Counter.php │   │   │   ├── Exception │   │   │   ├── LineCountingVisitor.php │   │   │   └── LinesOfCode.php │   │   ├── object-enumerator │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── phpunit.xml │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   └── Enumerator.php │   │   ├── object-reflector │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   └── ObjectReflector.php │   │   ├── recursion-context │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   └── Context.php │   │   ├── type │   │   │   ├── ChangeLog.md │   │   │   ├── composer.json │   │   │   ├── infection.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── SECURITY.md │   │   │   └── src │   │   │   ├── exception │   │   │   ├── Parameter.php │   │   │   ├── ReflectionMapper.php │   │   │   ├── type │   │   │   └── TypeName.php │   │   └── version │   │   ├── ChangeLog.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   ├── SECURITY.md │   │   └── src │   │   └── Version.php │   ├── spatie │   │   ├── backtrace │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── Arguments │   │   │   ├── Backtrace.php │   │   │   ├── CodeSnippets │   │   │   └── Frame.php │   │   ├── error-solutions │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── legacy │   │   │   │   ├── ignition │   │   │   │   └── laravel-ignition │   │   │   ├── LICENSE.md │   │   │   ├── phpstan-baseline.neon │   │   │   ├── phpstan.neon.dist │   │   │   ├── README.md │   │   │   ├── resources │   │   │   │   └── views │   │   │   └── src │   │   │   ├── Contracts │   │   │   ├── DiscoverSolutionProviders.php │   │   │   ├── SolutionProviderRepository.php │   │   │   ├── SolutionProviders │   │   │   ├── Solutions │   │   │   └── Support │   │   ├── flare-client-php │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── Api.php │   │   │   ├── Concerns │   │   │   ├── Context │   │   │   ├── Contracts │   │   │   ├── Enums │   │   │   ├── FlareMiddleware │   │   │   ├── Flare.php │   │   │   ├── Frame.php │   │   │   ├── Glows │   │   │   ├── helpers.php │   │   │   ├── Http │   │   │   ├── Report.php │   │   │   ├── Solutions │   │   │   ├── Support │   │   │   ├── Time │   │   │   ├── Truncation │   │   │   └── View.php │   │   ├── ignition │   │   │   ├── composer.json │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   ├── resources │   │   │   │   ├── compiled │   │   │   │   └── views │   │   │   └── src │   │   │   ├── Config │   │   │   ├── Contracts │   │   │   ├── ErrorPage │   │   │   └── Ignition.php │   │   ├── laravel-ignition │   │   │   ├── composer.json │   │   │   ├── config │   │   │   │   ├── flare.php │   │   │   │   └── ignition.php │   │   │   ├── LICENSE.md │   │   │   ├── README.md │   │   │   └── src │   │   │   ├── ArgumentReducers │   │   │   ├── Commands │   │   │   ├── ContextProviders │   │   │   ├── Exceptions │   │   │   ├── Facades │   │   │   ├── FlareMiddleware │   │   │   ├── helpers.php │   │   │   ├── Http │   │   │   ├── ignition-routes.php │   │   │   ├── IgnitionServiceProvider.php │   │   │   ├── Recorders │   │   │   ├── Renderers │   │   │   ├── Solutions │   │   │   ├── Support │   │   │   └── Views │   │   └── laravel-permission │   │   ├── composer.json │   │   ├── config │   │   │   └── permission.php │   │   ├── database │   │   │   └── migrations │   │   ├── ide.json │   │   ├── LICENSE.md │   │   ├── pint.json │   │   ├── README.md │   │   └── src │   │   ├── Commands │   │   ├── Contracts │   │   ├── DefaultTeamResolver.php │   │   ├── Exceptions │   │   ├── Guard.php │   │   ├── helpers.php │   │   ├── Middleware │   │   ├── Models │   │   ├── PermissionRegistrar.php │   │   ├── PermissionServiceProvider.php │   │   ├── Traits │   │   └── WildcardPermission.php │   ├── stripe │   │   └── stripe-php │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── CONTRIBUTING.md │   │   ├── data │   │   │   └── ca-certificates.crt │   │   ├── init.php │   │   ├── justfile │   │   ├── lib │   │   │   ├── AccountLink.php │   │   │   ├── Account.php │   │   │   ├── AccountSession.php │   │   │   ├── ApiOperations │   │   │   ├── ApiRequestor.php │   │   │   ├── ApiResource.php │   │   │   ├── ApiResponse.php │   │   │   ├── ApplePayDomain.php │   │   │   ├── ApplicationFee.php │   │   │   ├── ApplicationFeeRefund.php │   │   │   ├── Application.php │   │   │   ├── Apps │   │   │   ├── Balance.php │   │   │   ├── BalanceTransaction.php │   │   │   ├── BankAccount.php │   │   │   ├── BaseStripeClientInterface.php │   │   │   ├── BaseStripeClient.php │   │   │   ├── Billing │   │   │   ├── BillingPortal │   │   │   ├── Capability.php │   │   │   ├── Card.php │   │   │   ├── CashBalance.php │   │   │   ├── Charge.php │   │   │   ├── Checkout │   │   │   ├── Climate │   │   │   ├── Collection.php │   │   │   ├── ConfirmationToken.php │   │   │   ├── ConnectCollectionTransfer.php │   │   │   ├── CountrySpec.php │   │   │   ├── Coupon.php │   │   │   ├── CreditNoteLineItem.php │   │   │   ├── CreditNote.php │   │   │   ├── CustomerBalanceTransaction.php │   │   │   ├── CustomerCashBalanceTransaction.php │   │   │   ├── Customer.php │   │   │   ├── CustomerSession.php │   │   │   ├── Discount.php │   │   │   ├── Dispute.php │   │   │   ├── Entitlements │   │   │   ├── EphemeralKey.php │   │   │   ├── ErrorObject.php │   │   │   ├── EventData │   │   │   ├── Event.php │   │   │   ├── Events │   │   │   ├── Exception │   │   │   ├── ExchangeRate.php │   │   │   ├── FileLink.php │   │   │   ├── File.php │   │   │   ├── FinancialConnections │   │   │   ├── Forwarding │   │   │   ├── FundingInstructions.php │   │   │   ├── HttpClient │   │   │   ├── Identity │   │   │   ├── InvoiceItem.php │   │   │   ├── InvoiceLineItem.php │   │   │   ├── Invoice.php │   │   │   ├── InvoiceRenderingTemplate.php │   │   │   ├── Issuing │   │   │   ├── LineItem.php │   │   │   ├── LoginLink.php │   │   │   ├── Mandate.php │   │   │   ├── OAuthErrorObject.php │   │   │   ├── OAuth.php │   │   │   ├── PaymentIntent.php │   │   │   ├── PaymentLink.php │   │   │   ├── PaymentMethodConfiguration.php │   │   │   ├── PaymentMethodDomain.php │   │   │   ├── PaymentMethod.php │   │   │   ├── Payout.php │   │   │   ├── Person.php │   │   │   ├── Plan.php │   │   │   ├── Price.php │   │   │   ├── ProductFeature.php │   │   │   ├── Product.php │   │   │   ├── PromotionCode.php │   │   │   ├── Quote.php │   │   │   ├── Radar │   │   │   ├── Reason.php │   │   │   ├── RecipientTransfer.php │   │   │   ├── Refund.php │   │   │   ├── RelatedObject.php │   │   │   ├── Reporting │   │   │   ├── RequestTelemetry.php │   │   │   ├── ReserveTransaction.php │   │   │   ├── Review.php │   │   │   ├── SearchResult.php │   │   │   ├── Service │   │   │   ├── SetupAttempt.php │   │   │   ├── SetupIntent.php │   │   │   ├── ShippingRate.php │   │   │   ├── Sigma │   │   │   ├── SingletonApiResource.php │   │   │   ├── SourceMandateNotification.php │   │   │   ├── Source.php │   │   │   ├── SourceTransaction.php │   │   │   ├── StripeClientInterface.php │   │   │   ├── StripeClient.php │   │   │   ├── StripeObject.php │   │   │   ├── Stripe.php │   │   │   ├── StripeStreamingClientInterface.php │   │   │   ├── SubscriptionItem.php │   │   │   ├── Subscription.php │   │   │   ├── SubscriptionSchedule.php │   │   │   ├── Tax │   │   │   ├── TaxCode.php │   │   │   ├── TaxDeductedAtSource.php │   │   │   ├── TaxId.php │   │   │   ├── TaxRate.php │   │   │   ├── Terminal │   │   │   ├── TestHelpers │   │   │   ├── ThinEvent.php │   │   │   ├── Token.php │   │   │   ├── Topup.php │   │   │   ├── Transfer.php │   │   │   ├── TransferReversal.php │   │   │   ├── Treasury │   │   │   ├── UsageRecord.php │   │   │   ├── UsageRecordSummary.php │   │   │   ├── Util │   │   │   ├── V2 │   │   │   ├── WebhookEndpoint.php │   │   │   ├── Webhook.php │   │   │   └── WebhookSignature.php │   │   ├── LICENSE │   │   ├── OPENAPI_VERSION │   │   ├── README.md │   │   └── VERSION │   ├── symfony │   │   ├── clock │   │   │   ├── CHANGELOG.md │   │   │   ├── ClockAwareTrait.php │   │   │   ├── ClockInterface.php │   │   │   ├── Clock.php │   │   │   ├── composer.json │   │   │   ├── DatePoint.php │   │   │   ├── LICENSE │   │   │   ├── MockClock.php │   │   │   ├── MonotonicClock.php │   │   │   ├── NativeClock.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   └── now.php │   │   │   └── Test │   │   │   └── ClockSensitiveTrait.php │   │   ├── console │   │   │   ├── Application.php │   │   │   ├── Attribute │   │   │   │   └── AsCommand.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CI │   │   │   │   └── GithubActionReporter.php │   │   │   ├── Color.php │   │   │   ├── Command │   │   │   │   ├── Command.php │   │   │   │   ├── CompleteCommand.php │   │   │   │   ├── DumpCompletionCommand.php │   │   │   │   ├── HelpCommand.php │   │   │   │   ├── LazyCommand.php │   │   │   │   ├── ListCommand.php │   │   │   │   ├── LockableTrait.php │   │   │   │   ├── SignalableCommandInterface.php │   │   │   │   └── TraceableCommand.php │   │   │   ├── CommandLoader │   │   │   │   ├── CommandLoaderInterface.php │   │   │   │   ├── ContainerCommandLoader.php │   │   │   │   └── FactoryCommandLoader.php │   │   │   ├── Completion │   │   │   │   ├── CompletionInput.php │   │   │   │   ├── CompletionSuggestions.php │   │   │   │   ├── Output │   │   │   │   └── Suggestion.php │   │   │   ├── composer.json │   │   │   ├── ConsoleEvents.php │   │   │   ├── Cursor.php │   │   │   ├── DataCollector │   │   │   │   └── CommandDataCollector.php │   │   │   ├── Debug │   │   │   │   └── CliRequest.php │   │   │   ├── DependencyInjection │   │   │   │   └── AddConsoleCommandPass.php │   │   │   ├── Descriptor │   │   │   │   ├── ApplicationDescription.php │   │   │   │   ├── DescriptorInterface.php │   │   │   │   ├── Descriptor.php │   │   │   │   ├── JsonDescriptor.php │   │   │   │   ├── MarkdownDescriptor.php │   │   │   │   ├── ReStructuredTextDescriptor.php │   │   │   │   ├── TextDescriptor.php │   │   │   │   └── XmlDescriptor.php │   │   │   ├── Event │   │   │   │   ├── ConsoleAlarmEvent.php │   │   │   │   ├── 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 │   │   │   │   ├── RunCommandFailedException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── Formatter │   │   │   │   ├── NullOutputFormatter.php │   │   │   │   ├── NullOutputFormatterStyle.php │   │   │   │   ├── OutputFormatterInterface.php │   │   │   │   ├── OutputFormatter.php │   │   │   │   ├── OutputFormatterStyleInterface.php │   │   │   │   ├── OutputFormatterStyle.php │   │   │   │   ├── OutputFormatterStyleStack.php │   │   │   │   └── WrappableOutputFormatterInterface.php │   │   │   ├── Helper │   │   │   │   ├── DebugFormatterHelper.php │   │   │   │   ├── DescriptorHelper.php │   │   │   │   ├── Dumper.php │   │   │   │   ├── FormatterHelper.php │   │   │   │   ├── HelperInterface.php │   │   │   │   ├── Helper.php │   │   │   │   ├── HelperSet.php │   │   │   │   ├── InputAwareHelper.php │   │   │   │   ├── OutputWrapper.php │   │   │   │   ├── ProcessHelper.php │   │   │   │   ├── ProgressBar.php │   │   │   │   ├── ProgressIndicator.php │   │   │   │   ├── QuestionHelper.php │   │   │   │   ├── SymfonyQuestionHelper.php │   │   │   │   ├── TableCell.php │   │   │   │   ├── TableCellStyle.php │   │   │   │   ├── Table.php │   │   │   │   ├── TableRows.php │   │   │   │   ├── TableSeparator.php │   │   │   │   └── TableStyle.php │   │   │   ├── Input │   │   │   │   ├── ArgvInput.php │   │   │   │   ├── ArrayInput.php │   │   │   │   ├── InputArgument.php │   │   │   │   ├── InputAwareInterface.php │   │   │   │   ├── InputDefinition.php │   │   │   │   ├── InputInterface.php │   │   │   │   ├── InputOption.php │   │   │   │   ├── Input.php │   │   │   │   ├── StreamableInputInterface.php │   │   │   │   └── StringInput.php │   │   │   ├── LICENSE │   │   │   ├── Logger │   │   │   │   └── ConsoleLogger.php │   │   │   ├── Messenger │   │   │   │   ├── RunCommandContext.php │   │   │   │   ├── RunCommandMessageHandler.php │   │   │   │   └── RunCommandMessage.php │   │   │   ├── Output │   │   │   │   ├── AnsiColorMode.php │   │   │   │   ├── BufferedOutput.php │   │   │   │   ├── ConsoleOutputInterface.php │   │   │   │   ├── ConsoleOutput.php │   │   │   │   ├── ConsoleSectionOutput.php │   │   │   │   ├── NullOutput.php │   │   │   │   ├── OutputInterface.php │   │   │   │   ├── Output.php │   │   │   │   ├── StreamOutput.php │   │   │   │   └── TrimmedBufferOutput.php │   │   │   ├── Question │   │   │   │   ├── ChoiceQuestion.php │   │   │   │   ├── ConfirmationQuestion.php │   │   │   │   └── Question.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   ├── completion.bash │   │   │   │   ├── completion.fish │   │   │   │   └── completion.zsh │   │   │   ├── SignalRegistry │   │   │   │   ├── SignalMap.php │   │   │   │   └── SignalRegistry.php │   │   │   ├── SingleCommandApplication.php │   │   │   ├── Style │   │   │   │   ├── OutputStyle.php │   │   │   │   ├── StyleInterface.php │   │   │   │   └── SymfonyStyle.php │   │   │   ├── Terminal.php │   │   │   └── Tester │   │   │   ├── ApplicationTester.php │   │   │   ├── CommandCompletionTester.php │   │   │   ├── CommandTester.php │   │   │   ├── Constraint │   │   │   └── TesterTrait.php │   │   ├── css-selector │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── CssSelectorConverter.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── ExpressionErrorException.php │   │   │   │   ├── InternalErrorException.php │   │   │   │   ├── ParseException.php │   │   │   │   └── SyntaxErrorException.php │   │   │   ├── LICENSE │   │   │   ├── Node │   │   │   │   ├── AbstractNode.php │   │   │   │   ├── AttributeNode.php │   │   │   │   ├── ClassNode.php │   │   │   │   ├── CombinedSelectorNode.php │   │   │   │   ├── ElementNode.php │   │   │   │   ├── FunctionNode.php │   │   │   │   ├── HashNode.php │   │   │   │   ├── MatchingNode.php │   │   │   │   ├── NegationNode.php │   │   │   │   ├── NodeInterface.php │   │   │   │   ├── PseudoNode.php │   │   │   │   ├── SelectorNode.php │   │   │   │   ├── SpecificityAdjustmentNode.php │   │   │   │   └── Specificity.php │   │   │   ├── Parser │   │   │   │   ├── Handler │   │   │   │   ├── ParserInterface.php │   │   │   │   ├── Parser.php │   │   │   │   ├── Reader.php │   │   │   │   ├── Shortcut │   │   │   │   ├── Tokenizer │   │   │   │   ├── Token.php │   │   │   │   └── TokenStream.php │   │   │   ├── README.md │   │   │   └── XPath │   │   │   ├── Extension │   │   │   ├── TranslatorInterface.php │   │   │   ├── Translator.php │   │   │   └── XPathExpr.php │   │   ├── deprecation-contracts │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── function.php │   │   │   ├── LICENSE │   │   │   └── README.md │   │   ├── error-handler │   │   │   ├── BufferingLogger.php │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── DebugClassLoader.php │   │   │   ├── Debug.php │   │   │   ├── Error │   │   │   │   ├── ClassNotFoundError.php │   │   │   │   ├── FatalError.php │   │   │   │   ├── OutOfMemoryError.php │   │   │   │   ├── UndefinedFunctionError.php │   │   │   │   └── UndefinedMethodError.php │   │   │   ├── ErrorEnhancer │   │   │   │   ├── ClassNotFoundErrorEnhancer.php │   │   │   │   ├── ErrorEnhancerInterface.php │   │   │   │   ├── UndefinedFunctionErrorEnhancer.php │   │   │   │   └── UndefinedMethodErrorEnhancer.php │   │   │   ├── ErrorHandler.php │   │   │   ├── ErrorRenderer │   │   │   │   ├── CliErrorRenderer.php │   │   │   │   ├── ErrorRendererInterface.php │   │   │   │   ├── FileLinkFormatter.php │   │   │   │   ├── HtmlErrorRenderer.php │   │   │   │   └── SerializerErrorRenderer.php │   │   │   ├── Exception │   │   │   │   ├── FlattenException.php │   │   │   │   └── SilencedErrorContext.php │   │   │   ├── Internal │   │   │   │   └── TentativeTypes.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── assets │   │   │   │   ├── bin │   │   │   │   └── views │   │   │   └── ThrowableUtils.php │   │   ├── event-dispatcher │   │   │   ├── Attribute │   │   │   │   └── AsEventListener.php │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── Debug │   │   │   │   ├── TraceableEventDispatcher.php │   │   │   │   └── WrappedListener.php │   │   │   ├── DependencyInjection │   │   │   │   ├── AddEventAliasesPass.php │   │   │   │   └── RegisterListenersPass.php │   │   │   ├── EventDispatcherInterface.php │   │   │   ├── EventDispatcher.php │   │   │   ├── EventSubscriberInterface.php │   │   │   ├── GenericEvent.php │   │   │   ├── ImmutableEventDispatcher.php │   │   │   ├── LICENSE │   │   │   └── README.md │   │   ├── event-dispatcher-contracts │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── EventDispatcherInterface.php │   │   │   ├── Event.php │   │   │   ├── LICENSE │   │   │   └── README.md │   │   ├── finder │   │   │   ├── CHANGELOG.md │   │   │   ├── Comparator │   │   │   │   ├── Comparator.php │   │   │   │   ├── DateComparator.php │   │   │   │   └── NumberComparator.php │   │   │   ├── composer.json │   │   │   ├── Exception │   │   │   │   ├── AccessDeniedException.php │   │   │   │   └── DirectoryNotFoundException.php │   │   │   ├── Finder.php │   │   │   ├── Gitignore.php │   │   │   ├── Glob.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 │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── SplFileInfo.php │   │   ├── http-foundation │   │   │   ├── AcceptHeaderItem.php │   │   │   ├── AcceptHeader.php │   │   │   ├── BinaryFileResponse.php │   │   │   ├── ChainRequestMatcher.php │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── Cookie.php │   │   │   ├── Exception │   │   │   │   ├── BadRequestException.php │   │   │   │   ├── ConflictingHeadersException.php │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── JsonException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── RequestExceptionInterface.php │   │   │   │   ├── SessionNotFoundException.php │   │   │   │   ├── SuspiciousOperationException.php │   │   │   │   └── UnexpectedValueException.php │   │   │   ├── File │   │   │   │   ├── Exception │   │   │   │   ├── File.php │   │   │   │   ├── Stream.php │   │   │   │   └── UploadedFile.php │   │   │   ├── FileBag.php │   │   │   ├── HeaderBag.php │   │   │   ├── HeaderUtils.php │   │   │   ├── InputBag.php │   │   │   ├── IpUtils.php │   │   │   ├── JsonResponse.php │   │   │   ├── LICENSE │   │   │   ├── ParameterBag.php │   │   │   ├── RateLimiter │   │   │   │   ├── AbstractRequestRateLimiter.php │   │   │   │   ├── PeekableRequestRateLimiterInterface.php │   │   │   │   └── RequestRateLimiterInterface.php │   │   │   ├── README.md │   │   │   ├── RedirectResponse.php │   │   │   ├── RequestMatcher │   │   │   │   ├── AttributesRequestMatcher.php │   │   │   │   ├── ExpressionRequestMatcher.php │   │   │   │   ├── HeaderRequestMatcher.php │   │   │   │   ├── HostRequestMatcher.php │   │   │   │   ├── IpsRequestMatcher.php │   │   │   │   ├── IsJsonRequestMatcher.php │   │   │   │   ├── MethodRequestMatcher.php │   │   │   │   ├── PathRequestMatcher.php │   │   │   │   ├── PortRequestMatcher.php │   │   │   │   ├── QueryParameterRequestMatcher.php │   │   │   │   └── SchemeRequestMatcher.php │   │   │   ├── RequestMatcherInterface.php │   │   │   ├── Request.php │   │   │   ├── RequestStack.php │   │   │   ├── ResponseHeaderBag.php │   │   │   ├── Response.php │   │   │   ├── ServerBag.php │   │   │   ├── Session │   │   │   │   ├── Attribute │   │   │   │   ├── Flash │   │   │   │   ├── FlashBagAwareSessionInterface.php │   │   │   │   ├── SessionBagInterface.php │   │   │   │   ├── SessionBagProxy.php │   │   │   │   ├── SessionFactoryInterface.php │   │   │   │   ├── SessionFactory.php │   │   │   │   ├── SessionInterface.php │   │   │   │   ├── Session.php │   │   │   │   ├── SessionUtils.php │   │   │   │   └── Storage │   │   │   ├── StreamedJsonResponse.php │   │   │   ├── StreamedResponse.php │   │   │   ├── Test │   │   │   │   └── Constraint │   │   │   ├── UriSigner.php │   │   │   └── UrlHelper.php │   │   ├── http-kernel │   │   │   ├── Attribute │   │   │   │   ├── AsController.php │   │   │   │   ├── AsTargetedValueResolver.php │   │   │   │   ├── Cache.php │   │   │   │   ├── MapDateTime.php │   │   │   │   ├── MapQueryParameter.php │   │   │   │   ├── MapQueryString.php │   │   │   │   ├── MapRequestPayload.php │   │   │   │   ├── MapUploadedFile.php │   │   │   │   ├── ValueResolver.php │   │   │   │   ├── WithHttpStatus.php │   │   │   │   └── WithLogLevel.php │   │   │   ├── Bundle │   │   │   │   ├── AbstractBundle.php │   │   │   │   ├── BundleExtension.php │   │   │   │   ├── BundleInterface.php │   │   │   │   └── Bundle.php │   │   │   ├── CacheClearer │   │   │   │   ├── CacheClearerInterface.php │   │   │   │   ├── ChainCacheClearer.php │   │   │   │   └── Psr6CacheClearer.php │   │   │   ├── CacheWarmer │   │   │   │   ├── CacheWarmerAggregate.php │   │   │   │   ├── CacheWarmerInterface.php │   │   │   │   ├── CacheWarmer.php │   │   │   │   └── WarmableInterface.php │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── Config │   │   │   │   └── FileLocator.php │   │   │   ├── Controller │   │   │   │   ├── ArgumentResolver │   │   │   │   ├── ArgumentResolverInterface.php │   │   │   │   ├── ArgumentResolver.php │   │   │   │   ├── ContainerControllerResolver.php │   │   │   │   ├── ControllerReference.php │   │   │   │   ├── ControllerResolverInterface.php │   │   │   │   ├── ControllerResolver.php │   │   │   │   ├── ErrorController.php │   │   │   │   ├── TraceableArgumentResolver.php │   │   │   │   ├── TraceableControllerResolver.php │   │   │   │   └── ValueResolverInterface.php │   │   │   ├── ControllerMetadata │   │   │   │   ├── ArgumentMetadataFactoryInterface.php │   │   │   │   ├── ArgumentMetadataFactory.php │   │   │   │   └── ArgumentMetadata.php │   │   │   ├── DataCollector │   │   │   │   ├── AjaxDataCollector.php │   │   │   │   ├── ConfigDataCollector.php │   │   │   │   ├── DataCollectorInterface.php │   │   │   │   ├── DataCollector.php │   │   │   │   ├── DumpDataCollector.php │   │   │   │   ├── EventDataCollector.php │   │   │   │   ├── ExceptionDataCollector.php │   │   │   │   ├── LateDataCollectorInterface.php │   │   │   │   ├── LoggerDataCollector.php │   │   │   │   ├── MemoryDataCollector.php │   │   │   │   ├── RequestDataCollector.php │   │   │   │   ├── RouterDataCollector.php │   │   │   │   └── TimeDataCollector.php │   │   │   ├── Debug │   │   │   │   ├── ErrorHandlerConfigurator.php │   │   │   │   ├── TraceableEventDispatcher.php │   │   │   │   └── VirtualRequestStack.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 │   │   │   │   ├── AddRequestFormatsListener.php │   │   │   │   ├── CacheAttributeListener.php │   │   │   │   ├── DebugHandlersListener.php │   │   │   │   ├── DisallowRobotsIndexingListener.php │   │   │   │   ├── DumpListener.php │   │   │   │   ├── ErrorListener.php │   │   │   │   ├── FragmentListener.php │   │   │   │   ├── LocaleAwareListener.php │   │   │   │   ├── LocaleListener.php │   │   │   │   ├── ProfilerListener.php │   │   │   │   ├── ResponseListener.php │   │   │   │   ├── RouterListener.php │   │   │   │   ├── SessionListener.php │   │   │   │   ├── SurrogateListener.php │   │   │   │   └── ValidateRequestListener.php │   │   │   ├── Exception │   │   │   │   ├── AccessDeniedHttpException.php │   │   │   │   ├── BadRequestHttpException.php │   │   │   │   ├── ConflictHttpException.php │   │   │   │   ├── ControllerDoesNotReturnResponseException.php │   │   │   │   ├── GoneHttpException.php │   │   │   │   ├── HttpExceptionInterface.php │   │   │   │   ├── HttpException.php │   │   │   │   ├── InvalidMetadataException.php │   │   │   │   ├── LengthRequiredHttpException.php │   │   │   │   ├── LockedHttpException.php │   │   │   │   ├── MethodNotAllowedHttpException.php │   │   │   │   ├── NearMissValueResolverException.php │   │   │   │   ├── NotAcceptableHttpException.php │   │   │   │   ├── NotFoundHttpException.php │   │   │   │   ├── PreconditionFailedHttpException.php │   │   │   │   ├── PreconditionRequiredHttpException.php │   │   │   │   ├── ResolverNotFoundException.php │   │   │   │   ├── ServiceUnavailableHttpException.php │   │   │   │   ├── TooManyRequestsHttpException.php │   │   │   │   ├── UnauthorizedHttpException.php │   │   │   │   ├── UnexpectedSessionUsageException.php │   │   │   │   ├── UnprocessableEntityHttpException.php │   │   │   │   └── UnsupportedMediaTypeHttpException.php │   │   │   ├── Fragment │   │   │   │   ├── AbstractSurrogateFragmentRenderer.php │   │   │   │   ├── EsiFragmentRenderer.php │   │   │   │   ├── FragmentHandler.php │   │   │   │   ├── FragmentRendererInterface.php │   │   │   │   ├── FragmentUriGeneratorInterface.php │   │   │   │   ├── FragmentUriGenerator.php │   │   │   │   ├── HIncludeFragmentRenderer.php │   │   │   │   ├── InlineFragmentRenderer.php │   │   │   │   ├── RoutableFragmentRenderer.php │   │   │   │   └── SsiFragmentRenderer.php │   │   │   ├── HttpCache │   │   │   │   ├── AbstractSurrogate.php │   │   │   │   ├── Esi.php │   │   │   │   ├── HttpCache.php │   │   │   │   ├── ResponseCacheStrategyInterface.php │   │   │   │   ├── ResponseCacheStrategy.php │   │   │   │   ├── Ssi.php │   │   │   │   ├── StoreInterface.php │   │   │   │   ├── Store.php │   │   │   │   ├── SubRequestHandler.php │   │   │   │   └── SurrogateInterface.php │   │   │   ├── HttpClientKernel.php │   │   │   ├── HttpKernelBrowser.php │   │   │   ├── HttpKernelInterface.php │   │   │   ├── HttpKernel.php │   │   │   ├── KernelEvents.php │   │   │   ├── KernelInterface.php │   │   │   ├── Kernel.php │   │   │   ├── LICENSE │   │   │   ├── Log │   │   │   │   ├── DebugLoggerConfigurator.php │   │   │   │   ├── DebugLoggerInterface.php │   │   │   │   └── Logger.php │   │   │   ├── Profiler │   │   │   │   ├── FileProfilerStorage.php │   │   │   │   ├── Profile.php │   │   │   │   ├── Profiler.php │   │   │   │   └── ProfilerStorageInterface.php │   │   │   ├── README.md │   │   │   ├── RebootableInterface.php │   │   │   ├── Resources │   │   │   │   └── welcome.html.php │   │   │   └── TerminableInterface.php │   │   ├── mailer │   │   │   ├── CHANGELOG.md │   │   │   ├── Command │   │   │   │   └── MailerTestCommand.php │   │   │   ├── composer.json │   │   │   ├── DataCollector │   │   │   │   └── MessageDataCollector.php │   │   │   ├── DelayedEnvelope.php │   │   │   ├── Envelope.php │   │   │   ├── Event │   │   │   │   ├── FailedMessageEvent.php │   │   │   │   ├── MessageEvent.php │   │   │   │   ├── MessageEvents.php │   │   │   │   └── SentMessageEvent.php │   │   │   ├── EventListener │   │   │   │   ├── EnvelopeListener.php │   │   │   │   ├── MessageListener.php │   │   │   │   ├── MessageLoggerListener.php │   │   │   │   └── MessengerTransportListener.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── HttpTransportException.php │   │   │   │   ├── IncompleteDsnException.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── RuntimeException.php │   │   │   │   ├── TransportExceptionInterface.php │   │   │   │   ├── TransportException.php │   │   │   │   ├── UnexpectedResponseException.php │   │   │   │   └── UnsupportedSchemeException.php │   │   │   ├── Header │   │   │   │   ├── MetadataHeader.php │   │   │   │   └── TagHeader.php │   │   │   ├── LICENSE │   │   │   ├── MailerInterface.php │   │   │   ├── Mailer.php │   │   │   ├── Messenger │   │   │   │   ├── MessageHandler.php │   │   │   │   └── SendEmailMessage.php │   │   │   ├── README.md │   │   │   ├── SentMessage.php │   │   │   ├── Test │   │   │   │   ├── AbstractTransportFactoryTestCase.php │   │   │   │   ├── Constraint │   │   │   │   ├── IncompleteDsnTestTrait.php │   │   │   │   └── TransportFactoryTestCase.php │   │   │   ├── Transport │   │   │   │   ├── AbstractApiTransport.php │   │   │   │   ├── AbstractHttpTransport.php │   │   │   │   ├── AbstractTransportFactory.php │   │   │   │   ├── AbstractTransport.php │   │   │   │   ├── Dsn.php │   │   │   │   ├── FailoverTransport.php │   │   │   │   ├── NativeTransportFactory.php │   │   │   │   ├── NullTransportFactory.php │   │   │   │   ├── NullTransport.php │   │   │   │   ├── RoundRobinTransport.php │   │   │   │   ├── SendmailTransportFactory.php │   │   │   │   ├── SendmailTransport.php │   │   │   │   ├── Smtp │   │   │   │   ├── TransportFactoryInterface.php │   │   │   │   ├── TransportInterface.php │   │   │   │   └── Transports.php │   │   │   └── Transport.php │   │   ├── mime │   │   │   ├── Address.php │   │   │   ├── BodyRendererInterface.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CharacterStream.php │   │   │   ├── composer.json │   │   │   ├── Crypto │   │   │   │   ├── DkimOptions.php │   │   │   │   ├── DkimSigner.php │   │   │   │   ├── SMimeEncrypter.php │   │   │   │   ├── SMime.php │   │   │   │   └── SMimeSigner.php │   │   │   ├── DependencyInjection │   │   │   │   └── AddMimeTypeGuesserPass.php │   │   │   ├── DraftEmail.php │   │   │   ├── Email.php │   │   │   ├── Encoder │   │   │   │   ├── AddressEncoderInterface.php │   │   │   │   ├── Base64ContentEncoder.php │   │   │   │   ├── Base64Encoder.php │   │   │   │   ├── Base64MimeHeaderEncoder.php │   │   │   │   ├── ContentEncoderInterface.php │   │   │   │   ├── EightBitContentEncoder.php │   │   │   │   ├── EncoderInterface.php │   │   │   │   ├── IdnAddressEncoder.php │   │   │   │   ├── MimeHeaderEncoderInterface.php │   │   │   │   ├── QpContentEncoder.php │   │   │   │   ├── QpEncoder.php │   │   │   │   ├── QpMimeHeaderEncoder.php │   │   │   │   └── Rfc2231Encoder.php │   │   │   ├── Exception │   │   │   │   ├── AddressEncoderException.php │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── RfcComplianceException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── FileBinaryMimeTypeGuesser.php │   │   │   ├── FileinfoMimeTypeGuesser.php │   │   │   ├── Header │   │   │   │   ├── AbstractHeader.php │   │   │   │   ├── DateHeader.php │   │   │   │   ├── HeaderInterface.php │   │   │   │   ├── Headers.php │   │   │   │   ├── IdentificationHeader.php │   │   │   │   ├── MailboxHeader.php │   │   │   │   ├── MailboxListHeader.php │   │   │   │   ├── ParameterizedHeader.php │   │   │   │   ├── PathHeader.php │   │   │   │   └── UnstructuredHeader.php │   │   │   ├── HtmlToTextConverter │   │   │   │   ├── DefaultHtmlToTextConverter.php │   │   │   │   ├── HtmlToTextConverterInterface.php │   │   │   │   └── LeagueHtmlToMarkdownConverter.php │   │   │   ├── LICENSE │   │   │   ├── MessageConverter.php │   │   │   ├── Message.php │   │   │   ├── MimeTypeGuesserInterface.php │   │   │   ├── MimeTypesInterface.php │   │   │   ├── MimeTypes.php │   │   │   ├── Part │   │   │   │   ├── AbstractMultipartPart.php │   │   │   │   ├── AbstractPart.php │   │   │   │   ├── DataPart.php │   │   │   │   ├── File.php │   │   │   │   ├── MessagePart.php │   │   │   │   ├── Multipart │   │   │   │   ├── SMimePart.php │   │   │   │   └── TextPart.php │   │   │   ├── RawMessage.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   └── bin │   │   │   └── Test │   │   │   └── Constraint │   │   ├── polyfill-ctype │   │   │   ├── bootstrap80.php │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── Ctype.php │   │   │   ├── LICENSE │   │   │   └── README.md │   │   ├── polyfill-intl-grapheme │   │   │   ├── bootstrap80.php │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── Grapheme.php │   │   │   ├── LICENSE │   │   │   └── README.md │   │   ├── polyfill-intl-idn │   │   │   ├── bootstrap80.php │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── Idn.php │   │   │   ├── Info.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── Resources │   │   │   └── unidata │   │   ├── polyfill-intl-normalizer │   │   │   ├── bootstrap80.php │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── Normalizer.php │   │   │   ├── README.md │   │   │   └── Resources │   │   │   ├── stubs │   │   │   └── unidata │   │   ├── polyfill-mbstring │   │   │   ├── bootstrap80.php │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── Mbstring.php │   │   │   ├── README.md │   │   │   └── Resources │   │   │   └── unidata │   │   ├── polyfill-php80 │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── Php80.php │   │   │   ├── PhpToken.php │   │   │   ├── README.md │   │   │   └── Resources │   │   │   └── stubs │   │   ├── polyfill-php83 │   │   │   ├── bootstrap81.php │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── Php83.php │   │   │   ├── README.md │   │   │   └── Resources │   │   │   └── stubs │   │   ├── polyfill-uuid │   │   │   ├── bootstrap80.php │   │   │   ├── bootstrap.php │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   └── Uuid.php │   │   ├── process │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── ProcessFailedException.php │   │   │   │   ├── ProcessSignaledException.php │   │   │   │   ├── ProcessStartFailedException.php │   │   │   │   ├── ProcessTimedOutException.php │   │   │   │   ├── RunProcessFailedException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── ExecutableFinder.php │   │   │   ├── InputStream.php │   │   │   ├── LICENSE │   │   │   ├── Messenger │   │   │   │   ├── RunProcessContext.php │   │   │   │   ├── RunProcessMessageHandler.php │   │   │   │   └── RunProcessMessage.php │   │   │   ├── PhpExecutableFinder.php │   │   │   ├── PhpProcess.php │   │   │   ├── PhpSubprocess.php │   │   │   ├── Pipes │   │   │   │   ├── AbstractPipes.php │   │   │   │   ├── PipesInterface.php │   │   │   │   ├── UnixPipes.php │   │   │   │   └── WindowsPipes.php │   │   │   ├── Process.php │   │   │   ├── ProcessUtils.php │   │   │   └── README.md │   │   ├── routing │   │   │   ├── Alias.php │   │   │   ├── Annotation │   │   │   │   └── Route.php │   │   │   ├── Attribute │   │   │   │   └── Route.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CompiledRoute.php │   │   │   ├── composer.json │   │   │   ├── DependencyInjection │   │   │   │   ├── AddExpressionLanguageProvidersPass.php │   │   │   │   └── RoutingResolverPass.php │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   ├── InvalidParameterException.php │   │   │   │   ├── LogicException.php │   │   │   │   ├── MethodNotAllowedException.php │   │   │   │   ├── MissingMandatoryParametersException.php │   │   │   │   ├── NoConfigurationException.php │   │   │   │   ├── ResourceNotFoundException.php │   │   │   │   ├── RouteCircularReferenceException.php │   │   │   │   ├── RouteNotFoundException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── Generator │   │   │   │   ├── CompiledUrlGenerator.php │   │   │   │   ├── ConfigurableRequirementsInterface.php │   │   │   │   ├── Dumper │   │   │   │   ├── UrlGeneratorInterface.php │   │   │   │   └── UrlGenerator.php │   │   │   ├── LICENSE │   │   │   ├── Loader │   │   │   │   ├── AttributeClassLoader.php │   │   │   │   ├── AttributeDirectoryLoader.php │   │   │   │   ├── AttributeFileLoader.php │   │   │   │   ├── ClosureLoader.php │   │   │   │   ├── Configurator │   │   │   │   ├── ContainerLoader.php │   │   │   │   ├── DirectoryLoader.php │   │   │   │   ├── GlobFileLoader.php │   │   │   │   ├── ObjectLoader.php │   │   │   │   ├── PhpFileLoader.php │   │   │   │   ├── Psr4DirectoryLoader.php │   │   │   │   ├── schema │   │   │   │   ├── XmlFileLoader.php │   │   │   │   └── YamlFileLoader.php │   │   │   ├── Matcher │   │   │   │   ├── CompiledUrlMatcher.php │   │   │   │   ├── Dumper │   │   │   │   ├── ExpressionLanguageProvider.php │   │   │   │   ├── RedirectableUrlMatcherInterface.php │   │   │   │   ├── RedirectableUrlMatcher.php │   │   │   │   ├── RequestMatcherInterface.php │   │   │   │   ├── TraceableUrlMatcher.php │   │   │   │   ├── UrlMatcherInterface.php │   │   │   │   └── UrlMatcher.php │   │   │   ├── README.md │   │   │   ├── RequestContextAwareInterface.php │   │   │   ├── RequestContext.php │   │   │   ├── Requirement │   │   │   │   ├── EnumRequirement.php │   │   │   │   └── Requirement.php │   │   │   ├── RouteCollection.php │   │   │   ├── RouteCompilerInterface.php │   │   │   ├── RouteCompiler.php │   │   │   ├── Route.php │   │   │   ├── RouterInterface.php │   │   │   └── Router.php │   │   ├── service-contracts │   │   │   ├── Attribute │   │   │   │   ├── Required.php │   │   │   │   └── SubscribedService.php │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── ResetInterface.php │   │   │   ├── ServiceCollectionInterface.php │   │   │   ├── ServiceLocatorTrait.php │   │   │   ├── ServiceMethodsSubscriberTrait.php │   │   │   ├── ServiceProviderInterface.php │   │   │   ├── ServiceSubscriberInterface.php │   │   │   ├── ServiceSubscriberTrait.php │   │   │   └── Test │   │   │   ├── ServiceLocatorTestCase.php │   │   │   └── ServiceLocatorTest.php │   │   ├── string │   │   │   ├── AbstractString.php │   │   │   ├── AbstractUnicodeString.php │   │   │   ├── ByteString.php │   │   │   ├── CHANGELOG.md │   │   │   ├── CodePointString.php │   │   │   ├── composer.json │   │   │   ├── Exception │   │   │   │   ├── ExceptionInterface.php │   │   │   │   ├── InvalidArgumentException.php │   │   │   │   └── RuntimeException.php │   │   │   ├── Inflector │   │   │   │   ├── EnglishInflector.php │   │   │   │   ├── FrenchInflector.php │   │   │   │   ├── InflectorInterface.php │   │   │   │   └── SpanishInflector.php │   │   │   ├── LazyString.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   ├── data │   │   │   │   └── functions.php │   │   │   ├── Slugger │   │   │   │   ├── AsciiSlugger.php │   │   │   │   └── SluggerInterface.php │   │   │   ├── TruncateMode.php │   │   │   └── UnicodeString.php │   │   ├── translation │   │   │   ├── Catalogue │   │   │   │   ├── AbstractOperation.php │   │   │   │   ├── MergeOperation.php │   │   │   │   ├── OperationInterface.php │   │   │   │   └── TargetOperation.php │   │   │   ├── CatalogueMetadataAwareInterface.php │   │   │   ├── CHANGELOG.md │   │   │   ├── Command │   │   │   │   ├── TranslationLintCommand.php │   │   │   │   ├── TranslationPullCommand.php │   │   │   │   ├── TranslationPushCommand.php │   │   │   │   ├── TranslationTrait.php │   │   │   │   └── XliffLintCommand.php │   │   │   ├── composer.json │   │   │   ├── DataCollector │   │   │   │   └── TranslationDataCollector.php │   │   │   ├── DataCollectorTranslator.php │   │   │   ├── DependencyInjection │   │   │   │   ├── DataCollectorTranslatorPass.php │   │   │   │   ├── LoggingTranslatorPass.php │   │   │   │   ├── 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 │   │   │   │   ├── ProviderExceptionInterface.php │   │   │   │   ├── ProviderException.php │   │   │   │   ├── RuntimeException.php │   │   │   │   └── UnsupportedSchemeException.php │   │   │   ├── Extractor │   │   │   │   ├── AbstractFileExtractor.php │   │   │   │   ├── ChainExtractor.php │   │   │   │   ├── ExtractorInterface.php │   │   │   │   ├── PhpAstExtractor.php │   │   │   │   └── Visitor │   │   │   ├── Formatter │   │   │   │   ├── IntlFormatterInterface.php │   │   │   │   ├── IntlFormatter.php │   │   │   │   ├── MessageFormatterInterface.php │   │   │   │   └── MessageFormatter.php │   │   │   ├── IdentityTranslator.php │   │   │   ├── LICENSE │   │   │   ├── Loader │   │   │   │   ├── ArrayLoader.php │   │   │   │   ├── CsvFileLoader.php │   │   │   │   ├── FileLoader.php │   │   │   │   ├── IcuDatFileLoader.php │   │   │   │   ├── IcuResFileLoader.php │   │   │   │   ├── IniFileLoader.php │   │   │   │   ├── JsonFileLoader.php │   │   │   │   ├── LoaderInterface.php │   │   │   │   ├── MoFileLoader.php │   │   │   │   ├── PhpFileLoader.php │   │   │   │   ├── PoFileLoader.php │   │   │   │   ├── QtFileLoader.php │   │   │   │   ├── XliffFileLoader.php │   │   │   │   └── YamlFileLoader.php │   │   │   ├── LocaleSwitcher.php │   │   │   ├── LoggingTranslator.php │   │   │   ├── MessageCatalogueInterface.php │   │   │   ├── MessageCatalogue.php │   │   │   ├── MetadataAwareInterface.php │   │   │   ├── Provider │   │   │   │   ├── AbstractProviderFactory.php │   │   │   │   ├── Dsn.php │   │   │   │   ├── FilteringProvider.php │   │   │   │   ├── NullProviderFactory.php │   │   │   │   ├── NullProvider.php │   │   │   │   ├── ProviderFactoryInterface.php │   │   │   │   ├── ProviderInterface.php │   │   │   │   ├── TranslationProviderCollectionFactory.php │   │   │   │   └── TranslationProviderCollection.php │   │   │   ├── PseudoLocalizationTranslator.php │   │   │   ├── Reader │   │   │   │   ├── TranslationReaderInterface.php │   │   │   │   └── TranslationReader.php │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   ├── data │   │   │   │   ├── functions.php │   │   │   │   └── schemas │   │   │   ├── Test │   │   │   │   ├── AbstractProviderFactoryTestCase.php │   │   │   │   ├── IncompleteDsnTestTrait.php │   │   │   │   ├── ProviderFactoryTestCase.php │   │   │   │   └── ProviderTestCase.php │   │   │   ├── TranslatableMessage.php │   │   │   ├── TranslatorBagInterface.php │   │   │   ├── TranslatorBag.php │   │   │   ├── Translator.php │   │   │   ├── Util │   │   │   │   ├── ArrayConverter.php │   │   │   │   └── XliffUtils.php │   │   │   └── Writer │   │   │   ├── TranslationWriterInterface.php │   │   │   └── TranslationWriter.php │   │   ├── translation-contracts │   │   │   ├── CHANGELOG.md │   │   │   ├── composer.json │   │   │   ├── LICENSE │   │   │   ├── LocaleAwareInterface.php │   │   │   ├── README.md │   │   │   ├── Test │   │   │   │   └── TranslatorTest.php │   │   │   ├── TranslatableInterface.php │   │   │   ├── TranslatorInterface.php │   │   │   └── TranslatorTrait.php │   │   ├── uid │   │   │   ├── AbstractUid.php │   │   │   ├── BinaryUtil.php │   │   │   ├── CHANGELOG.md │   │   │   ├── Command │   │   │   │   ├── GenerateUlidCommand.php │   │   │   │   ├── GenerateUuidCommand.php │   │   │   │   ├── InspectUlidCommand.php │   │   │   │   └── InspectUuidCommand.php │   │   │   ├── composer.json │   │   │   ├── Factory │   │   │   │   ├── NameBasedUuidFactory.php │   │   │   │   ├── RandomBasedUuidFactory.php │   │   │   │   ├── TimeBasedUuidFactory.php │   │   │   │   ├── UlidFactory.php │   │   │   │   └── UuidFactory.php │   │   │   ├── HashableInterface.php │   │   │   ├── LICENSE │   │   │   ├── MaxUlid.php │   │   │   ├── MaxUuid.php │   │   │   ├── NilUlid.php │   │   │   ├── NilUuid.php │   │   │   ├── README.md │   │   │   ├── TimeBasedUidInterface.php │   │   │   ├── Ulid.php │   │   │   ├── Uuid.php │   │   │   ├── UuidV1.php │   │   │   ├── UuidV3.php │   │   │   ├── UuidV4.php │   │   │   ├── UuidV5.php │   │   │   ├── UuidV6.php │   │   │   ├── UuidV7.php │   │   │   └── UuidV8.php │   │   ├── var-dumper │   │   │   ├── 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 │   │   │   │   ├── FFICaster.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 │   │   │   │   ├── ScalarStub.php │   │   │   │   ├── SplCaster.php │   │   │   │   ├── StubCaster.php │   │   │   │   ├── SymfonyCaster.php │   │   │   │   ├── TraceStub.php │   │   │   │   ├── UninitializedStub.php │   │   │   │   ├── UuidCaster.php │   │   │   │   ├── VirtualStub.php │   │   │   │   ├── XmlReaderCaster.php │   │   │   │   └── XmlResourceCaster.php │   │   │   ├── CHANGELOG.md │   │   │   ├── Cloner │   │   │   │   ├── AbstractCloner.php │   │   │   │   ├── ClonerInterface.php │   │   │   │   ├── Cursor.php │   │   │   │   ├── Data.php │   │   │   │   ├── DumperInterface.php │   │   │   │   ├── Internal │   │   │   │   ├── Stub.php │   │   │   │   └── VarCloner.php │   │   │   ├── Command │   │   │   │   ├── Descriptor │   │   │   │   └── ServerDumpCommand.php │   │   │   ├── composer.json │   │   │   ├── Dumper │   │   │   │   ├── AbstractDumper.php │   │   │   │   ├── CliDumper.php │   │   │   │   ├── ContextProvider │   │   │   │   ├── ContextualizedDumper.php │   │   │   │   ├── DataDumperInterface.php │   │   │   │   ├── HtmlDumper.php │   │   │   │   └── ServerDumper.php │   │   │   ├── Exception │   │   │   │   └── ThrowingCasterException.php │   │   │   ├── LICENSE │   │   │   ├── README.md │   │   │   ├── Resources │   │   │   │   ├── bin │   │   │   │   ├── css │   │   │   │   ├── functions │   │   │   │   └── js │   │   │   ├── Server │   │   │   │   ├── Connection.php │   │   │   │   └── DumpServer.php │   │   │   ├── Test │   │   │   │   └── VarDumperTestTrait.php │   │   │   └── VarDumper.php │   │   └── yaml │   │   ├── CHANGELOG.md │   │   ├── Command │   │   │   └── LintCommand.php │   │   ├── composer.json │   │   ├── Dumper.php │   │   ├── Escaper.php │   │   ├── Exception │   │   │   ├── DumpException.php │   │   │   ├── ExceptionInterface.php │   │   │   ├── ParseException.php │   │   │   └── RuntimeException.php │   │   ├── Inline.php │   │   ├── LICENSE │   │   ├── Parser.php │   │   ├── README.md │   │   ├── Resources │   │   │   └── bin │   │   ├── Tag │   │   │   └── TaggedValue.php │   │   ├── Unescaper.php │   │   └── Yaml.php │   ├── theseer │   │   └── tokenizer │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── composer.lock │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── Exception.php │   │   ├── NamespaceUriException.php │   │   ├── NamespaceUri.php │   │   ├── TokenCollectionException.php │   │   ├── TokenCollection.php │   │   ├── Tokenizer.php │   │   ├── Token.php │   │   └── XMLSerializer.php │   ├── tijsverkoyen │   │   └── css-to-inline-styles │   │   ├── composer.json │   │   ├── LICENSE.md │   │   └── src │   │   ├── Css │   │   └── CssToInlineStyles.php │   ├── vlucas │   │   └── phpdotenv │   │   ├── composer.json │   │   ├── LICENSE │   │   └── src │   │   ├── Dotenv.php │   │   ├── Exception │   │   ├── Loader │   │   ├── Parser │   │   ├── Repository │   │   ├── Store │   │   ├── Util │   │   └── Validator.php │   ├── voku │   │   └── portable-ascii │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE.txt │   │   ├── README.md │   │   └── src │   │   └── voku │   ├── webmozart │   │   └── assert │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE │   │   ├── README.md │   │   └── src │   │   ├── Assert.php │   │   ├── InvalidArgumentException.php │   │   └── Mixin.php │   └── yajra │   ├── laravel-datatables │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── LICENSE.md │   │   ├── phpstan.neon.dist │   │   ├── phpunit.xml.dist │   │   ├── README.md │   │   ├── rector.php │   │   ├── src │   │   └── tests │   │   ├── Feature │   │   ├── Pest.php │   │   ├── TestCase.php │   │   └── Unit │   ├── laravel-datatables-buttons │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE.md │   │   ├── README.md │   │   ├── rector.php │   │   ├── src │   │   │   ├── ButtonsServiceProvider.php │   │   │   ├── config │   │   │   ├── Contracts │   │   │   ├── Exports │   │   │   ├── Generators │   │   │   ├── Html │   │   │   ├── resources │   │   │   ├── Services │   │   │   └── Transformers │   │   └── UPGADE.md │   ├── laravel-datatables-editor │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── CONDUCT.md │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE.md │   │   ├── phpstan.neon.dist │   │   ├── pint.json │   │   ├── README.md │   │   ├── rector.php │   │   ├── SECURITY.md │   │   ├── src │   │   │   ├── Concerns │   │   │   ├── DataTablesEditorException.php │   │   │   ├── DataTablesEditor.php │   │   │   ├── EditorServiceProvider.php │   │   │   └── Generators │   │   └── UPGRADE.md │   ├── laravel-datatables-export │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── CONDUCT.md │   │   ├── CONTRIBUTING.md │   │   ├── LICENSE.md │   │   ├── phpstan.neon.dist │   │   ├── phpunit.xml.dist │   │   ├── README.md │   │   ├── rector.php │   │   ├── src │   │   │   ├── Commands │   │   │   ├── config │   │   │   ├── ExportServiceProvider.php │   │   │   ├── Jobs │   │   │   ├── Livewire │   │   │   ├── resources │   │   │   └── WithExportQueue.php │   │   └── UPGRADE.md │   ├── laravel-datatables-fractal │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── config │   │   │   └── datatables-fractal.php │   │   ├── LICENSE.md │   │   ├── README.md │   │   └── src │   │   ├── Commands │   │   ├── FractalServiceProvider.php │   │   └── Transformers │   ├── laravel-datatables-html │   │   ├── CHANGELOG.md │   │   ├── composer.json │   │   ├── CONDUCT.md │   │   ├── LICENSE.md │   │   ├── phpunit.xml │   │   ├── pint.json │   │   ├── README.md │   │   ├── rector.php │   │   ├── src │   │   │   ├── Html │   │   │   ├── HtmlServiceProvider.php │   │   │   └── resources │   │   └── UPGRADE.md │   └── laravel-datatables-oracle │   ├── CHANGELOG.md │   ├── composer.json │   ├── CONDUCT.md │   ├── LICENSE.md │   ├── README.md │   ├── src │   │   ├── ApiResourceDataTable.php │   │   ├── CollectionDataTable.php │   │   ├── config │   │   ├── Contracts │   │   ├── DataTableAbstract.php │   │   ├── DataTables.php │   │   ├── DataTablesServiceProvider.php │   │   ├── EloquentDataTable.php │   │   ├── Exceptions │   │   ├── Facades │   │   ├── helper.php │   │   ├── lumen.php │   │   ├── Processors │   │   ├── QueryDataTable.php │   │   └── Utilities │   └── UPGRADE.md └── webpack.mix.js 1080 directories, 3085 files