├── .gitattributes ├── .gitignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml.dist ├── phpunit.xml ├── release-please-config.json └── src ├── ArrayConfig.php ├── DeploymentConfig.php ├── IntegrationUtility.php ├── ObjectManager.php ├── ResourceConnectionConfig.php ├── ScopeConfig.php └── Store ├── Store.php ├── StoreGroup.php ├── StoreManager.php └── Website.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "1.0.0" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/phpunit.xml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/release-please-config.json -------------------------------------------------------------------------------- /src/ArrayConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/ArrayConfig.php -------------------------------------------------------------------------------- /src/DeploymentConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/DeploymentConfig.php -------------------------------------------------------------------------------- /src/IntegrationUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/IntegrationUtility.php -------------------------------------------------------------------------------- /src/ObjectManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/ObjectManager.php -------------------------------------------------------------------------------- /src/ResourceConnectionConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/ResourceConnectionConfig.php -------------------------------------------------------------------------------- /src/ScopeConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/ScopeConfig.php -------------------------------------------------------------------------------- /src/Store/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/Store/Store.php -------------------------------------------------------------------------------- /src/Store/StoreGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/Store/StoreGroup.php -------------------------------------------------------------------------------- /src/Store/StoreManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/Store/StoreManager.php -------------------------------------------------------------------------------- /src/Store/Website.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EcomDev/magento2-test-essentials/HEAD/src/Store/Website.php --------------------------------------------------------------------------------