From 0b7c279cffe1c366a7d0bd9c959209204f29c921 Mon Sep 17 00:00:00 2001 From: diDroid Date: Fri, 17 Nov 2023 14:05:41 +0530 Subject: [PATCH 01/13] changes for enabling hostgator US --- includes/Brands.php | 88 +++++++++++++++++++++++++++++++++++++++- includes/Flows/Flows.php | 2 +- 2 files changed, 87 insertions(+), 3 deletions(-) diff --git a/includes/Brands.php b/includes/Brands.php index 8adab6f..dedd43e 100644 --- a/includes/Brands.php +++ b/includes/Brands.php @@ -375,6 +375,91 @@ public static function get_brands() { ), ), ), + 'hostgator-us' => array( + 'brand' => 'hostgator-us', + 'name' => 'HostGator', + 'url' => 'https://www.hostgator.com', + 'knowledgeBaseUrl' => 'https://www.hostgator.com/help', + 'helpUrl' => 'https://www.hostgator.com/help', + 'blogUrl' => 'https://www.hostgator.com/blog/', + 'facebookUrl' => 'https://www.facebook.com/HostGator/', + 'twitterName' => '@HostGator', + 'twitterUrl' => 'https://twitter.com/hostgator', + 'youtubeUrl' => 'https://www.youtube.com/user/hostgator', + 'linkedinUrl' => 'https://www.linkedin.com/company/hostgator-com/', + 'accountUrl' => Config::is_jarvis() ? + 'https://www.hostgator.com/my-account/login' + : 'https://portal.hostgator.com/', + 'domainsUrl' => Config::is_jarvis() ? + 'https://www.hostgator.com/my-account/domain-center/domain-list' + : 'https://portal.hostgator.com/domain/manage', + 'emailUrl' => Config::is_jarvis() ? + 'https://www.hostgator.com/my-account/hosting/details/email' + : 'https://portal.hostgator.com/email', + 'pluginDashboardPage' => \admin_url( 'admin.php?page=hostgator' ), + 'phoneNumbers' => array( + 'support' => '866-964-2867', + 'intl' => '+1-713-574-5287', + ), + 'hireExpertsInfo' => array( + 'defaultLink' => 'https://www.hostgator.com/services/web-design', + 'fragment' => '', + 'queryParameters' => array( + 'utm_source' => 'wp-onboarding', + 'utm_medium' => 'brand-plugin', + 'utm_campaign' => 'wp-setup', + ), + ), + 'expertsInfo' => array( + 'defaultLink' => 'https://www.hostgator.com/services/web-design', + 'queryParams' => array( + 'utm_source' => 'wp-onboarding', + 'utm_medium' => 'brand-plugin', + ), + ), + 'fullServiceCreativeTeamInfo' => array( + 'defaultLink' => 'https://www.hostgator.com/services/web-design', + 'fragment' => '', + 'queryParams' => array( + 'utm_source' => 'wp-onboarding', + 'utm_medium' => 'brand-plugin', + ), + ), + 'techSupportInfo' => array( + 'defaultLink' => 'https://www.hostgator.com/help', + 'queryParams' => array( + 'utm_source' => 'wp-onboarding', + 'utm_medium' => 'brand-plugin', + ), + ), + 'migrationInfo' => array(), + 'config' => array( + 'enabled_flows' => array( + 'ecommerce' => true, + 'wp-setup' => true, + ), + 'wonder_blocks' => true, + 'prioritization' => false, + 'views' => array( + 'sidebar' => array( + 'illustration' => array( + 'shown' => false, + ), + 'experts' => array( + 'shown' => false, + ), + 'fullService' => array( + 'shown' => false, + ), + 'infoPanel' => array( + 'headingWithDescriptions' => array( + 'shown' => array( 0 ), + ), + ), + ), + ), + ), + ), ); } @@ -391,13 +476,12 @@ public static function set_current_brand( $container ) { $brand = 'wordpress'; } - if ( false !== strpos( $brand, 'hostgator' ) ) { + if ( false !== stripos( $brand, 'hostgator' ) ) { $region = strtolower( $container->plugin()->region ); $brand = "hostgator-{$region}"; } $brand = sanitize_title_with_dashes( str_replace( '_', '-', $brand ) ); - define( 'NFD_ONBOARDING_PLUGIN_BRAND', $brand ); return $brand; diff --git a/includes/Flows/Flows.php b/includes/Flows/Flows.php index eea9af1..a6c9359 100644 --- a/includes/Flows/Flows.php +++ b/includes/Flows/Flows.php @@ -16,7 +16,7 @@ final class Flows { * @var array */ protected static $data = array( - 'version' => '1.0.3', + 'version' => '1.0.4', // Each time step is viewed, insert GMT timestamp to array. 'isViewed' => array(), From 1d9173626f329f4e944b5690d7eea2572bb60da6 Mon Sep 17 00:00:00 2001 From: diDroid Date: Fri, 17 Nov 2023 14:30:29 +0530 Subject: [PATCH 02/13] flow version revert --- includes/Flows/Flows.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Flows/Flows.php b/includes/Flows/Flows.php index a6c9359..eea9af1 100644 --- a/includes/Flows/Flows.php +++ b/includes/Flows/Flows.php @@ -16,7 +16,7 @@ final class Flows { * @var array */ protected static $data = array( - 'version' => '1.0.4', + 'version' => '1.0.3', // Each time step is viewed, insert GMT timestamp to array. 'isViewed' => array(), From f3c839899e3b5a569c3ed56735ff50f39df7e24c Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Wed, 29 Nov 2023 00:44:02 +0530 Subject: [PATCH 03/13] Remove redirect_param option name. --- includes/Options.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/Options.php b/includes/Options.php index 0d1e586..c25aaa6 100644 --- a/includes/Options.php +++ b/includes/Options.php @@ -19,7 +19,6 @@ final class Options { */ protected static $options = array( 'redirect' => 'redirect', - 'redirect_param' => 'redirect_param', 'activate' => 'activate', 'activate_param' => 'activate_param', 'new_coming_soon' => 'nfd_coming_soon', From 6783a2ba7755f6d42b41d32933cd393959b79001 Mon Sep 17 00:00:00 2001 From: Brad Parbs Date: Mon, 4 Dec 2023 17:59:07 -0600 Subject: [PATCH 04/13] Update URL for Satis Updates the Satis url from `newfold.github.io` to the correct `newfold-labs.github.io`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 999dc82..3790dc6 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A non-toggleable module containing a standardized interface for interacting with ### 1. Add the Newfold Satis to your `composer.json`. ```bash - composer config repositories.newfold composer https://newfold.github.io/satis + composer config repositories.newfold composer https://newfold-labs.github.io/satis ``` ### 2. Require the `newfold-labs/wp-module-onboarding-data` package. From fddabb8dbdd8a717f6efb215d3a1f47d7ecd7c43 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Fri, 8 Dec 2023 15:29:27 -0500 Subject: [PATCH 05/13] Update redirect to be should_redirect Old redirect value was set to true in many cases and the new logic in the onboarding module caused lots of people to be forcibly redirected to onboarding. Changing the name ensures the normal logic flow is followed. --- includes/Options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Options.php b/includes/Options.php index c25aaa6..76cefd7 100644 --- a/includes/Options.php +++ b/includes/Options.php @@ -18,7 +18,7 @@ final class Options { * @var array */ protected static $options = array( - 'redirect' => 'redirect', + 'redirect' => 'should_redirect', 'activate' => 'activate', 'activate_param' => 'activate_param', 'new_coming_soon' => 'nfd_coming_soon', From 2c650b15e06108c07cc84c595bd7b3cf927f0ca0 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Fri, 8 Dec 2023 15:38:14 -0500 Subject: [PATCH 06/13] Add dependabot.yml file --- .github/dependabot.yml | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..bbf5c93 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,56 @@ +version: 2 +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "develop" + allow: + - dependency-type: direct + schedule: + interval: "daily" + commit-message: + prefix: "GitHub Actions" + include: "scope" + labels: + - "dependencies" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + target-branch: "develop" + allow: + - dependency-type: direct + schedule: + interval: "daily" + versioning-strategy: increase + commit-message: + prefix: "NPM" + prefix-development: "NPM Dev" + include: "scope" + labels: + - "dependencies" + - "javascript" + registries: + npm-github: + type: npm-registry + url: https://npm.pkg.github.com + token: ${{ secrets.NEWFOLD_ACCESS_TOKEN }} + replaces-base: true + + # Maintain dependencies for Composer + - package-ecosystem: "composer" + directory: "/" + target-branch: "develop" + schedule: + interval: "daily" + allow: + - dependency-type: direct + versioning-strategy: increase + commit-message: + prefix: "Composer" + prefix-development: "Composer Dev" + include: "scope" + labels: + - "dependencies" + - "php" \ No newline at end of file From 03b3ae5fd2e3788a3ac9bac92fb9abb450ed3d02 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Fri, 8 Dec 2023 15:38:21 -0500 Subject: [PATCH 07/13] Update checkout action --- .github/workflows/lint-check-php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-check-php.yml b/.github/workflows/lint-check-php.yml index afabfa2..1ef8d6a 100644 --- a/.github/workflows/lint-check-php.yml +++ b/.github/workflows/lint-check-php.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # User PHP 7.4 here for compatibility with the WordPress codesniffer rules. - name: Setup PHP From bcb128d21e154dea5c9be3590991ef063411dc27 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Fri, 8 Dec 2023 15:38:29 -0500 Subject: [PATCH 08/13] Update Satis workflow --- .github/workflows/satis-update.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/satis-update.yml b/.github/workflows/satis-update.yml index eb36715..757a871 100644 --- a/.github/workflows/satis-update.yml +++ b/.github/workflows/satis-update.yml @@ -15,14 +15,14 @@ jobs: id: package env: REPO: ${{ github.repository }} - run: echo ::set-output name=PACKAGE::${REPO##*/} + run: echo "PACKAGE=${REPO##*/}" >> $GITHUB_OUTPUT - name: Set Version id: tag - run: echo ::set-output name=VERSION::${GITHUB_REF##*/} + run: echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT - name: Repository Dispatch - uses: peter-evans/repository-dispatch@v1 + uses: peter-evans/repository-dispatch@v2 with: token: ${{ secrets.WEBHOOK_TOKEN }} repository: newfold-labs/satis From acff6662448ccafc536e62c0026fb160a5bcb092 Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Fri, 5 Jan 2024 17:04:09 +0530 Subject: [PATCH 09/13] Add the onboarding status option and a coming soon helper --- includes/Options.php | 2 +- includes/Services/FlowService.php | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/includes/Options.php b/includes/Options.php index 76cefd7..ff9075c 100644 --- a/includes/Options.php +++ b/includes/Options.php @@ -57,6 +57,7 @@ final class Options { 'wc_calc_taxes' => 'woocommerce_calc_taxes', 'wc_no_sales_tax' => 'woocommerce_no_sales_tax', 'filter_active_plugins' => 'filter_active_plugins', + 'status' => 'status', ); /** @@ -68,7 +69,6 @@ final class Options { 'close_comments_for_old_posts' => 1, 'close_comments_days_old' => 28, 'comments_per_page' => 20, - 'new_coming_soon' => 'true', 'allow_major_auto_core_updates' => 'true', 'allow_minor_auto_core_updates' => 'true', 'auto_update_plugin' => 'true', diff --git a/includes/Services/FlowService.php b/includes/Services/FlowService.php index cbeddea..9132bdd 100644 --- a/includes/Services/FlowService.php +++ b/includes/Services/FlowService.php @@ -423,4 +423,14 @@ public static function get_experience_level() { $data = self::read_data_from_wp_option( false ); return isset( $data['data']['wpComfortLevel'] ) ? $data['data']['wpComfortLevel'] : false; } + + /** + * Retrieve the coming soon value that was selected during onboarding. + * + * @return boolean|null + */ + public static function get_onboarding_coming_soon() { + $data = self::read_data_from_wp_option( false ); + return isset( $data['data']['comingSoon'] ) ? $data['data']['comingSoon'] : null; + } } From cfe124fc254cf37c0505f6e5ea05cf3555d36a3a Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Tue, 9 Jan 2024 12:44:18 +0530 Subject: [PATCH 10/13] Update Data Module to 2.4.16 --- composer.json | 2 +- composer.lock | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index e663cc6..1658eb9 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ }, "require": { "newfold-labs/wp-module-installer": "^1.1", - "newfold-labs/wp-module-data": "^2.4.3", + "newfold-labs/wp-module-data": "^2.4.16", "wp-forge/wp-upgrade-handler": "^1.0" }, "require-dev": { diff --git a/composer.lock b/composer.lock index ce29750..024ad4d 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "5dd5bd8915ff6fb8c0761abb91ef3a19", + "content-hash": "a20c7bad07fde1c241db7254acd60607", "packages": [ { "name": "newfold-labs/wp-module-data", - "version": "2.4.6", + "version": "2.4.16", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-data.git", - "reference": "03bc7b42c7957ee983944721f8251d772985abee" + "reference": "633712f1d717c564f62bd6cfc4e70d56959d8a22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/03bc7b42c7957ee983944721f8251d772985abee", - "reference": "03bc7b42c7957ee983944721f8251d772985abee", + "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/633712f1d717c564f62bd6cfc4e70d56959d8a22", + "reference": "633712f1d717c564f62bd6cfc4e70d56959d8a22", "shasum": "" }, "require": { @@ -31,7 +31,7 @@ "type": "library", "autoload": { "psr-4": { - "NewfoldLabs\\WP\\Module\\Data\\": "src/" + "NewfoldLabs\\WP\\Module\\Data\\": "includes/" }, "files": [ "bootstrap.php" @@ -50,10 +50,10 @@ ], "description": "Newfold Data Module", "support": { - "source": "https://github.com/newfold-labs/wp-module-data/tree/2.4.6", + "source": "https://github.com/newfold-labs/wp-module-data/tree/2.4.16", "issues": "https://github.com/newfold-labs/wp-module-data/issues" }, - "time": "2023-09-22T19:59:31+00:00" + "time": "2024-01-08T20:37:18+00:00" }, { "name": "newfold-labs/wp-module-installer", From b09d8e1d5ad4b714aa172e21bf27d2f3097c09bc Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Tue, 9 Jan 2024 12:59:36 +0530 Subject: [PATCH 11/13] Fix lint issues --- includes/Brands.php | 6 +++--- includes/Data.php | 1 - includes/Patterns.php | 2 -- includes/Plugins.php | 1 - includes/SiteFeatures.php | 1 - 5 files changed, 3 insertions(+), 8 deletions(-) diff --git a/includes/Brands.php b/includes/Brands.php index dedd43e..7050c2f 100644 --- a/includes/Brands.php +++ b/includes/Brands.php @@ -387,13 +387,13 @@ public static function get_brands() { 'twitterUrl' => 'https://twitter.com/hostgator', 'youtubeUrl' => 'https://www.youtube.com/user/hostgator', 'linkedinUrl' => 'https://www.linkedin.com/company/hostgator-com/', - 'accountUrl' => Config::is_jarvis() ? + 'accountUrl' => Config::is_jarvis() ? 'https://www.hostgator.com/my-account/login' : 'https://portal.hostgator.com/', - 'domainsUrl' => Config::is_jarvis() ? + 'domainsUrl' => Config::is_jarvis() ? 'https://www.hostgator.com/my-account/domain-center/domain-list' : 'https://portal.hostgator.com/domain/manage', - 'emailUrl' => Config::is_jarvis() ? + 'emailUrl' => Config::is_jarvis() ? 'https://www.hostgator.com/my-account/hosting/details/email' : 'https://portal.hostgator.com/email', 'pluginDashboardPage' => \admin_url( 'admin.php?page=hostgator' ), diff --git a/includes/Data.php b/includes/Data.php index 078ee4c..f2720f5 100644 --- a/includes/Data.php +++ b/includes/Data.php @@ -146,5 +146,4 @@ public static function coming_soon() { // Assume site has been launched if both options do not exist. return false; } - } diff --git a/includes/Patterns.php b/includes/Patterns.php index 6fe9179..653195e 100644 --- a/includes/Patterns.php +++ b/includes/Patterns.php @@ -344,7 +344,6 @@ private static function get_selected_header_from_flow_data() { 'slug' => $slug, 'type' => 'yith-wonder', ); - } /** @@ -529,5 +528,4 @@ public static function get_count_of_patterns() { } return $theme_pattern_count; } - } diff --git a/includes/Plugins.php b/includes/Plugins.php index 2a42b39..c3fa52f 100644 --- a/includes/Plugins.php +++ b/includes/Plugins.php @@ -232,5 +232,4 @@ public static function get_init() { public static function wc_prevent_redirect_on_activation() { \delete_transient( '_wc_activation_redirect' ); } - } diff --git a/includes/SiteFeatures.php b/includes/SiteFeatures.php index b6a8252..cfe63d4 100644 --- a/includes/SiteFeatures.php +++ b/includes/SiteFeatures.php @@ -338,5 +338,4 @@ public static function get_selected() { public static function get_unselected() { return self::filter( self::get_init(), false ); } - } From 1600d11c30d4f9facce0f77102d591d7c6ba5c6f Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Wed, 10 Jan 2024 12:44:07 +0530 Subject: [PATCH 12/13] Use the new coming soon API's --- composer.json | 3 ++- composer.lock | 52 +++++++++++++++++++++++++++++++++++++++++++- includes/Data.php | 19 +++++----------- includes/Options.php | 2 -- 4 files changed, 59 insertions(+), 17 deletions(-) diff --git a/composer.json b/composer.json index e663cc6..b634f59 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,8 @@ "require": { "newfold-labs/wp-module-installer": "^1.1", "newfold-labs/wp-module-data": "^2.4.3", - "wp-forge/wp-upgrade-handler": "^1.0" + "wp-forge/wp-upgrade-handler": "^1.0", + "newfold-labs/wp-module-coming-soon": "^1.1.13" }, "require-dev": { "newfold-labs/wp-php-standards": "^1.2" diff --git a/composer.lock b/composer.lock index ce29750..b258c77 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,58 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "5dd5bd8915ff6fb8c0761abb91ef3a19", + "content-hash": "93c255879b2fb769890a9a2bc12d7a6f", "packages": [ + { + "name": "newfold-labs/wp-module-coming-soon", + "version": "1.1.13", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-coming-soon.git", + "reference": "9719bae8534e6c86d389b769a1757eceed5f1dd5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/9719bae8534e6c86d389b769a1757eceed5f1dd5", + "reference": "9719bae8534e6c86d389b769a1757eceed5f1dd5", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\ComingSoon\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "scripts": { + "fix": [ + "vendor/bin/phpcbf . --standard=phpcs.xml" + ], + "lint": [ + "vendor/bin/phpcs . --standard=phpcs.xml -s" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Evan Mullins", + "homepage": "https://evanmullins.com" + } + ], + "description": "Coming Soon module for WordPress sites.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.1.13", + "issues": "https://github.com/newfold-labs/wp-module-coming-soon/issues" + }, + "time": "2024-01-08T18:13:10+00:00" + }, { "name": "newfold-labs/wp-module-data", "version": "2.4.6", diff --git a/includes/Data.php b/includes/Data.php index 078ee4c..fbc3381 100644 --- a/includes/Data.php +++ b/includes/Data.php @@ -5,6 +5,8 @@ use NewfoldLabs\WP\Module\Onboarding\Data\Flows\Flows; use NewfoldLabs\WP\Module\Installer\Services\PluginInstaller; +use function NewfoldLabs\WP\ModuleLoader\container; + /** * CRUD methods for Onboarding config for use in API, CLI and runtime. */ @@ -131,20 +133,11 @@ public static function customer_data() { * @return boolean */ public static function coming_soon() { - // Check if nfd_coming_soon is set to true. - $coming_soon = \get_option( Options::get_option_name( 'new_coming_soon', false ), null ); - if ( null !== $coming_soon ) { - return 'true' === $coming_soon; - } - - // Check if legacy mm_coming_soon is set to true. - $coming_soon = \get_option( Options::get_option_name( 'old_coming_soon', false ), null ); - if ( null !== $coming_soon ) { - return 'true' === $coming_soon; + if ( ! container()->has( 'comingSoon' ) ) { + return false; } - // Assume site has been launched if both options do not exist. - return false; + $coming_soon_service = container()->get( 'comingSoon' ); + return $coming_soon_service->is_enabled(); } - } diff --git a/includes/Options.php b/includes/Options.php index ff9075c..db31704 100644 --- a/includes/Options.php +++ b/includes/Options.php @@ -21,8 +21,6 @@ final class Options { 'redirect' => 'should_redirect', 'activate' => 'activate', 'activate_param' => 'activate_param', - 'new_coming_soon' => 'nfd_coming_soon', - 'old_coming_soon' => 'mm_coming_soon', 'brand' => 'mm_brand', 'close_comments_for_old_posts' => 'close_comments_for_old_posts', 'close_comments_days_old' => 'close_comments_days_old', From 76fc51d1680ad7275473664cc49d78aada3b8f3e Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Thu, 11 Jan 2024 15:15:24 +0530 Subject: [PATCH 13/13] Update the data module --- composer.json | 2 +- composer.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index b634f59..a9428f8 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ }, "require": { "newfold-labs/wp-module-installer": "^1.1", - "newfold-labs/wp-module-data": "^2.4.3", + "newfold-labs/wp-module-data": "^2.4.16", "wp-forge/wp-upgrade-handler": "^1.0", "newfold-labs/wp-module-coming-soon": "^1.1.13" }, diff --git a/composer.lock b/composer.lock index d0071bd..b7741bd 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "93c255879b2fb769890a9a2bc12d7a6f", + "content-hash": "69018fa72a38a7c24cd1445d6c6610c0", "packages": [ { "name": "newfold-labs/wp-module-coming-soon",