├── .module.ini ├── CHANGELOG.md ├── PWA.md ├── Plugin └── ControllerPlugin.php ├── README.md ├── Response └── Http.php ├── Test └── Integration │ ├── CheckResponseTest.php │ ├── ModuleTest.php │ └── PluginTest.php ├── Utils ├── RequestResponseValidator.php └── ResponseGenerator.php ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ └── system.xml ├── config.xml ├── di.xml └── module.xml └── registration.php /.module.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/.module.ini -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /PWA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/PWA.md -------------------------------------------------------------------------------- /Plugin/ControllerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/Plugin/ControllerPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/README.md -------------------------------------------------------------------------------- /Response/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/Response/Http.php -------------------------------------------------------------------------------- /Test/Integration/CheckResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/Test/Integration/CheckResponseTest.php -------------------------------------------------------------------------------- /Test/Integration/ModuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/Test/Integration/ModuleTest.php -------------------------------------------------------------------------------- /Test/Integration/PluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/Test/Integration/PluginTest.php -------------------------------------------------------------------------------- /Utils/RequestResponseValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/Utils/RequestResponseValidator.php -------------------------------------------------------------------------------- /Utils/ResponseGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/Utils/ResponseGenerator.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yireo/magento2-corshack/HEAD/registration.php --------------------------------------------------------------------------------