├── .github ├── FUNDING.yml └── workflows │ ├── coding-standard.yml │ ├── integration.yml │ ├── mess-detector.yml │ └── phpstan.yml ├── LICENSE ├── Plugin └── Store │ └── HideDefaultStoreCodePlugin.php ├── README.md ├── Test └── Integration │ ├── CheckDefaultStoreCodeHiddenInUrlTest.php │ └── ModuleConfigTest.php ├── composer.json ├── etc ├── di.xml └── module.xml └── registration.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [customgento] 2 | -------------------------------------------------------------------------------- /.github/workflows/coding-standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/.github/workflows/coding-standard.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/mess-detector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/.github/workflows/mess-detector.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin/Store/HideDefaultStoreCodePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/Plugin/Store/HideDefaultStoreCodePlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/README.md -------------------------------------------------------------------------------- /Test/Integration/CheckDefaultStoreCodeHiddenInUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/Test/Integration/CheckDefaultStoreCodeHiddenInUrlTest.php -------------------------------------------------------------------------------- /Test/Integration/ModuleConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/Test/Integration/ModuleConfigTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-default-store-code-remover-m2/HEAD/registration.php --------------------------------------------------------------------------------