├── .gitignore ├── 100-router-script.php ├── IMPROVEMENTS.md ├── PATCH_SUPEE-4755_EE_1.13.1.0_v1.sh ├── README.md ├── bootstrap.php ├── composer.json ├── composer.lock ├── lib └── Convenient │ └── Core │ └── Model │ └── Config.php ├── phpunit.xml └── tests └── ConfigurationTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.idea 2 | vendor 3 | -------------------------------------------------------------------------------- /100-router-script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/100-router-script.php -------------------------------------------------------------------------------- /IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/IMPROVEMENTS.md -------------------------------------------------------------------------------- /PATCH_SUPEE-4755_EE_1.13.1.0_v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/PATCH_SUPEE-4755_EE_1.13.1.0_v1.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/composer.lock -------------------------------------------------------------------------------- /lib/Convenient/Core/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/lib/Convenient/Core/Model/Config.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idhlagency/magento-ce-ee-config-corruption-bug/HEAD/tests/ConfigurationTest.php --------------------------------------------------------------------------------