├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── magento-installation.yml │ └── magento_version.txt ├── .travis.yml ├── README.md └── composer.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-replace-all/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/magento-installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-replace-all/HEAD/.github/workflows/magento-installation.yml -------------------------------------------------------------------------------- /.github/workflows/magento_version.txt: -------------------------------------------------------------------------------- 1 | 2.4.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-replace-all/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-replace-all/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-replace-all/HEAD/composer.json --------------------------------------------------------------------------------