Use versions range in plugin dependencies

This commit is contained in:
Dmitriy Simushev 2014-11-18 14:36:42 +00:00
parent 2d702f5542
commit c205c9ff94
3 changed files with 23 additions and 4 deletions

View File

@ -25,7 +25,8 @@
"symfony/yaml": "2.5.*",
"symfony/translation": "2.5.*",
"tedivm/stash": "0.12.*",
"canteen/html5": "1.1.*"
"canteen/html5": "1.1.*",
"vierbergenlars/php-semver": "3.0.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "1.*"

View File

@ -19,6 +19,9 @@
namespace Mibew\Plugin;
use vierbergenlars\SemVer\version as Version;
use vierbergenlars\SemVer\expression as VersionExpression;
/**
* Manage plugins
*/
@ -141,12 +144,13 @@ class Manager
continue 2;
}
$version_constrain = new VersionExpression($required_version);
$dependency_version = call_user_func(array(
self::$loadedPlugins[$dependency],
'getVersion'
));
if ($required_version !== $dependency_version) {
if (!$version_constrain->satisfiedBy(new Version($dependency_version))) {
$error_message = "Plugin '{$dependency}' has version "
. "incompatible with '{$plugin_name}' requirements!";
trigger_error($error_message, E_USER_WARNING);

View File

@ -61,8 +61,22 @@ interface PluginInterface
* Returns list of plugin's dependencies.
*
* Each key in the array is a string with a plugin name. Each value is
* required plugin version. If the plugin have no dependencies an empty
* array should be returned.
* plugin version constrain. A constrain can be in one of the following
* formats:
* - "1.2.3": exact version number;
* - ">1.2.3": grater than a specific version;
* - ">=1.2.3": greater than a specific version or equal to it;
* - "<1.2.3": less than a specific version;
* - "<=1.2.3": less than a specific version or equal to it;
* - "1.2.3 - 2.3.4": equals to ">=1.2.3 <=2.3.4";
* - "~1.2.3": equivalent for ">=1.2.3 <1.3.0";
* - "~1.2": equivalent for ">=1.2.0 <2.0.0";
* - "^1.2.3" equivalent for ">=1.2.3 <2.0.0";
* - "^0.1.2" equivalent for ">=0.1.2 <0.2.0";
* - "1.2.x": equivalent for ">=1.2.0 <2.0.0";
* - "1.x": equivalent for ">=1.0.0 <2.0.0";
*
* If the plugin have no dependencies an empty array should be returned.
*
* @return array List of plugin's dependencies.
*/