netresearch / module-compatibility-m2
Magento2 Extension for enabling extensions to support multiple Magento2 versions at once
Installs: 173 820
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 10
Forks: 0
Open Issues: 1
Type:magento2-module
Requires
- php: ~7.1.3|^7.2.0
- magento/framework: ^102.0.0
This package is auto-updated.
Last update: 2023-01-21 23:58:36 UTC
README
The target of this 'extension' is to provide forward/backward compatibility ports of functionality within Magento2. This is aimed at extension developers to allow them to only have to maintain one development branch of their extension, that can be compatible with all Magento versions.
Example
Magento 2.3 introduced the CsrfAwareActionInterface which allows controllers to receive POST requests from outside of the shop (e.g. for postsale activities of payment service providers). To retain functionality the extension provider would have to maintain two development branches of their extension, one for Magento 2.3 with the interface, and one without.
To avoid this, this extension provides an abstract controller that can be extended by controllers within third party extensions that need this functionality (implementing the CsrfAwareInterface). They will have to implement some abstract methods, however they can use one development branch for their extension.
How to use
This extension has multiple versions:
- 1.* - supporting Magento 2.1.*
- 2.* - supporting Magento 2.2.*
- 3.* - supporting Magento 2.3.*
- ...
To use the features of this extension add an requirement in your extensions composer.json:
{ "require": { "netresearch/module-compatibility-m2": "*" } }
Yes we recommend *
, if you don't care or e.g. >=2.0.0
if you want to support Magento 2.2.*.
This extension will itself require the affected Magento components (e.g. magento/framework
) in the related versions,
which will only allow a specific version of this extension on the merchants installation through composer.
Supported Forward/Backward compatibilities
CsrfAwareActionInterface (Magento\Framework\App\CsrfAwareActionInterface
)
Compatibility breaking version: Magento 2.3.0
To have a backward compatible controller for Magento 2.3 that can accept external POST requests, just extend {{Netresearch\Compatibility\Controller\CsrfAware\Action}} and implement the abstract methods. For Magento 2.2 and 2.1 that will likely result in dead code (unless you refer to those functions in the rest of you Controller), but you don't have to worry about managing the Interface implementation yourself.
License
Open Software License v. 3.0 (OSL-3.0)
Copyright
Netresearch DTT GmbH (www.netresearch.de)