gitextract_2ufghwks/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── deploy.yml │ ├── main.yml │ └── php-cs-fixer.yml ├── .gitignore ├── .php_cs.dist.php ├── .phpstorm.meta.php ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── _ide_helper.php ├── composer.json ├── config/ │ └── lang-country.php ├── database/ │ └── migrations/ │ └── 2018_04_29_074240_add_lang_country_column_to_users_table.php ├── docs/ │ ├── .vitepress/ │ │ └── config.mts │ ├── contribute/ │ │ ├── contribution.md │ │ └── country-info.md │ ├── getting-started/ │ │ ├── changelog.md │ │ ├── installation.md │ │ └── upgrade.md │ ├── index.md │ └── usage/ │ ├── configuration.md │ ├── currency.md │ ├── date-time.md │ ├── language-switcher.md │ ├── language.md │ ├── middleware.md │ └── override.md ├── package.json ├── phpunit.xml ├── src/ │ ├── .stubs.php │ ├── Controllers/ │ │ └── LangCountrySwitchController.php │ ├── LangCountry.php │ ├── LangCountryData/ │ │ ├── _template.json │ │ ├── ar-MA.json │ │ ├── ar-SA.json │ │ ├── bg-BG.json │ │ ├── bn-BD.json │ │ ├── ca-ES.json │ │ ├── da-DA.json │ │ ├── de-AT.json │ │ ├── de-CH.json │ │ ├── de-DE.json │ │ ├── el-GR.json │ │ ├── en-AU.json │ │ ├── en-CA.json │ │ ├── en-CH.json │ │ ├── en-GB.json │ │ ├── en-US.json │ │ ├── es-CL.json │ │ ├── es-CO.json │ │ ├── es-ES.json │ │ ├── fr-BE.json │ │ ├── fr-CA.json │ │ ├── fr-CH.json │ │ ├── fr-FR.json │ │ ├── fr-MA.json │ │ ├── hu-HU.json │ │ ├── id-ID.json │ │ ├── it-CH.json │ │ ├── it-IT.json │ │ ├── lt-LT.json │ │ ├── nl-BE.json │ │ ├── nl-NL.json │ │ ├── pl-PL.json │ │ ├── ps-AF.json │ │ ├── pt-PT.json │ │ └── ru-RU.json │ ├── LangCountryFacade.php │ ├── LaravelLangCountryServiceProvider.php │ ├── Listeners/ │ │ └── UserAuthenticated.php │ ├── Middleware/ │ │ └── LangCountrySession.php │ └── Services/ │ └── PreferredLanguage.php └── tests/ ├── Feature/ │ ├── Controllers/ │ │ └── LangCountrySwitchControllerTest.php │ ├── LangCountry/ │ │ └── LangCountryTest.php │ ├── LangCountryData/ │ │ └── LangCountryDataTest.php │ ├── Listeners/ │ │ └── UserAuthenticatedTest.php │ ├── Middleware/ │ │ └── MiddlewareTest.php │ └── Services/ │ └── PreferredLanguageTest.php ├── Pest.php ├── Support/ │ ├── Controllers/ │ │ └── TestRoutesController.php │ ├── Files/ │ │ ├── es-CO.json │ │ └── lang-country-overrides/ │ │ └── nl-NL.json │ └── Models/ │ └── User.php └── TestCase.php