blakewilson/wp-enforce-semver
最新稳定版本:3.0.1
Composer 安装命令:
composer require blakewilson/wp-enforce-semver
包简介
A class to enforce SemVer in your WordPress plugins.
README 文档
README
Easily enforce SemVer in your WordPress plugins.
By using this class, auto updates will be disabled when the plugin's new version is a major update, and provide a helpful notice in the update section of the plugin that there may be breaking changes.
Usage
- Install the class as a dependency via composer:
composer require blakewilson/wp-enforce-semver
- Initialize the class in your plugin:
// Init autoloader from Composer if ( file_exists( plugin_dir_path( __FILE__ ) . 'vendor/autoload.php' ) ) { require plugin_dir_path( __FILE__ ) . 'vendor/autoload.php'; } use EnforceSemVer\EnforceSemVer; new EnforceSemVer('my-plugin/my-plugin.php');
And that's it! Once your end-users install your plugin, they will be protected against auto updates for major releases, and see a helpful message in the plugins list next to your plugin update:
Additionally, this notice text can be modified via a filter:
add_filter( 'semantic_versioning_notice_text', function($notice_text, $plugin_file_name) { // Modify notice text here. return $notice_text; });
统计信息
- 总下载量: 13.19k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-20
