$appVersionRequired minimum and maximum
Permalink
For a package you can set a required version in order to be able to install the package. But this is only a minimum required version. There is no possibility to set a maximum required version. This can be a problem since some changes in newer version of Concrete are fatal for packages that used to work perfect on an older version.
Example:
$appVersionRequiredMin = '5.5';
$appVersionRequiredMax = '5.6'; // the addon does not work with version higher than 5.6
If no maximum is defined, it means that the package is still working with the latest version of Concrete.
It's a feature request which I would like to start a discussion about whether it's a good or a bad idea to implement this.
Example:
$appVersionRequiredMin = '5.5';
$appVersionRequiredMax = '5.6'; // the addon does not work with version higher than 5.6
If no maximum is defined, it means that the package is still working with the latest version of Concrete.
It's a feature request which I would like to start a discussion about whether it's a good or a bad idea to implement this.