├── Helper └── Config.php ├── Plugin └── HttpResponsePlugin.php ├── README.md ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ └── system.xml ├── config.xml ├── frontend │ └── di.xml └── module.xml └── registration.php /Helper/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/Helper/Config.php -------------------------------------------------------------------------------- /Plugin/HttpResponsePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/Plugin/HttpResponsePlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/magento-module-performance/HEAD/registration.php --------------------------------------------------------------------------------