Skip to content

Commit

Permalink
feat(dependence): updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Mte90 committed Jul 11, 2024
1 parent dd17a9f commit 9ba1cf7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ These are options in wpbp.json.
| [WPBP/Page-Madness-Detector](https://github.com/WPBP/Page-Madness-Detector)<br>Detect if the website is using a pagebuilder/visual builder.| [origgami/CMB2-grid](https://github.com/origgami/cmb2-grid)<br>CMB2 grid columns.|
| [WPBP/Template](https://github.com/WPBP/Template)<br>Load template files with autosearch and multilanguage folder for email template.| [johnbillion/extended-cpts](https://github.com/johnbillion/extended-cpts/)<br>A library which provides extended functionality to WordPress custom post types and taxonomies.|
| [WPBP/Debug](https://github.com/WPBP/Debug)<br>Query Monitor Wrapper.| [Freemius/wordpress-sdk](https://github.com/Freemius/wordpress-sdk)<br>Freemius truly empowers developers to create prosperous subscription-based businesses.|
| [WPBP/CPT_Columns](https://github.com/WPBP/CPT_Columns)<br>Improve the CPT list in the backend.| [wpdesk/wp-notice](https://gitlab.com/wpdesk/wp-notice/)<br>Library to display notices in wp-admin.|
| [WPBP/CPT_Columns](https://github.com/WPBP/CPT_Columns)<br>Improve the CPT list in the backend.| [wpdesk/wp-notice](https://packagist.org/packages/wpdesk/wp-notice)<br>Library to display notices in wp-admin.|
| [WPBP/i18n-notice](https://github.com/WPBP/i18n-notice)<br>Handle i18n for plugins, based on Yoast i18n-module.| [julien731/WP-Review-Me](https://github.com/julien731/WP-Review-Me)<br>A lightweight library to include in your WordPress theme/plugin to ask the user to review it on WordPress.org|
| | [stevegrunwell/wp-cache-remember](https://github.com/stevegrunwell/wp-cache-remember)<br>Helper for the object cache and transients.|
| | [Seravo/wp-custom-bulk-actions](https://github.com/Seravo/wp-custom-bulk-actions)<br>Custom bulk actions for any type of post.|
Expand Down
18 changes: 9 additions & 9 deletions plugin-name/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"homepage": "https://github.com/WPBP/WordPress-Plugin-Boilerplate-Powered",
"require": {
"php": ">=7.4",
"cmb2/cmb2": "~2.9.0",
"cmb2/cmb2": "~2.10.0",
"composer/installers": "1.x",
"decodelabs/tagged": "^0.11.9",
"freemius/wordpress-sdk": "~2.6.0",
"decodelabs/tagged": "^0.15.3",
"freemius/wordpress-sdk": "~2.7.3",
"inpsyde/assets": "^2.8",
"inpsyde/wp-context": "~1.3.0",
"johnbillion/extended-cpts": "~4.5.0",
"inpsyde/wp-context": "~1.5.0",
"johnbillion/extended-cpts": "~5.0.8",
"julien731/wp-review-me": "dev-develop",
"micropackage/requirements": "^1.0",
"micropackage/requirements": "^1.2",
"mte90/wp-super-duper": "dev-fork",
"origgami/cmb2-grid": "dev-master",
"seravo/wp-custom-bulk-actions": "dev-master",
Expand All @@ -35,7 +35,7 @@
"wpbp/template": "~1.0.0",
"wpbp/widgets-helper": "~1.0.0",
"wpdesk/wp-notice": "^3.2",
"yahnis-elsts/plugin-update-checker": "^4.9"
"yahnis-elsts/plugin-update-checker": "^5.4"
},
"require-dev": {
"codeatcode/codeatcs": "^1.0",
Expand All @@ -51,9 +51,9 @@
"dealerdirect/phpcodesniffer-composer-installer": "1.0.0",
"ergebnis/composer-normalize": "^2.6",
"lucatume/function-mocker": "^1.0",
"lucatume/wp-browser": "^3.1",
"lucatume/wp-browser": "^3.6",
"php-stubs/wp-cli-stubs": "^2.0",
"phpro/grumphp": "^1.13",
"phpro/grumphp": "^2.6",
"phpunit/phpunit": "^9.2",
"szepeviktor/phpstan-wordpress": "^1.1.6"
},
Expand Down
2 changes: 1 addition & 1 deletion plugin-name/internals/ShortcodeBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Create Shortcode and Gutenberg Block with Widget support
*/
class ShortcodeBlock extends \WP_Super_Duper {
class ShortcodeBlock extends \WP_V2_Super_Duper {

/**
* Parameters shared between methods
Expand Down
3 changes: 2 additions & 1 deletion plugin-name/plugin-name.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ static function ( $wp_org_support_forum_url ) { //phpcs:ignore

// WPBPGen{{#if libraries_yahnis-elsts__plugin-update-checker}}
// Documentation to integrate GitHub, GitLab or BitBucket https://github.com/YahnisElsts/plugin-update-checker/blob/master/README.md
Puc_v4_Factory::buildUpdateChecker( 'https://github.com/user-name/repo-name/', __FILE__, 'unique-plugin-or-theme-slug' );
use YahnisElsts\PluginUpdateChecker\v5\PucFactory;
PucFactory::buildUpdateChecker( 'https://github.com/user-name/repo-name/', __FILE__, 'unique-plugin-or-theme-slug' );
// {{/if}}

if ( ! wp_installing() ) {
Expand Down

0 comments on commit 9ba1cf7

Please sign in to comment.