From 7b0599968a75e0446a76dc159fb9528602f917ed Mon Sep 17 00:00:00 2001 From: Brad Parbs Date: Wed, 6 Dec 2023 13:00:55 -0600 Subject: [PATCH] Fix removed composer deps --- composer.json | 162 +++-- composer.lock | 1744 +++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 1769 insertions(+), 137 deletions(-) diff --git a/composer.json b/composer.json index 0f0d6729c..9a911dcab 100644 --- a/composer.json +++ b/composer.json @@ -1,77 +1,97 @@ { - "name": "bluehost/bluehost-wordpress-plugin", - "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", - "type": "wordpress-plugin", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Evan Mullins", - "homepage": "https://evanmullins.com" - } - ], - "config": { - "optimize-autoloader": true, - "sort-packages": true, - "platform": { - "php": "7.1.0" + "name": "bluehost/bluehost-wordpress-plugin", + "description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.", + "type": "wordpress-plugin", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Evan Mullins", + "homepage": "https://evanmullins.com" + } + ], + "config": { + "optimize-autoloader": true, + "sort-packages": true, + "platform": { + "php": "7.1.0" + }, + "platform-check": false, + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + }, + "preferred-install": { + "newfold-labs/*": "source", + "*": "dist" + } }, - "platform-check": false, - "allow-plugins": { - "dealerdirect/phpcodesniffer-composer-installer": true + "repositories": { + "newfold": { + "type": "composer", + "url": "https://newfold-labs.github.io/satis/", + "only": [ + "newfold-labs/*" + ] + } }, - "preferred-install": { - "newfold-labs/*": "source", - "*": "dist" - } - }, - "repositories": { - "newfold": { - "type": "composer", - "url": "https://newfold-labs.github.io/satis/", - "only": [ - "newfold-labs/*" + "scripts": { + "fix:standards": [ + "./vendor/bin/phpcbf --standard=./.phpcs.dist.xml", + "PHP_CS_FIXER_IGNORE_ENV=true ./vendor/bin/php-cs-fixer fix -v --diff" + ], + "fix": "@fix:standards", + "i18n": [ + "vendor/bin/wp i18n make-pot . ./languages/bluehost-wordpress-plugin.pot --headers=Report-Msgid-Bugs-To:https://github.com/bluehost/bluehost-wordpress-plugin/issues --exclude=assets,storybook,tests,src", + "vendor/bin/wp i18n make-pot . ./languages/bluehost-wordpress-plugin.pot --headers=POT-Creation-Date:null --exclude=assets,storybook,tests,src" + ], + "lint": "@test", + "test": "@test:standards", + "test:standards": [ + "./vendor/bin/phpcs --standard=./.phpcs.dist.xml", + "PHP_CS_FIXER_IGNORE_ENV=true ./vendor/bin/php-cs-fixer fix -v --diff --dry-run" ] + }, + "scripts-descriptions": { + "fix:standards": "Automatically fix coding standards issues where possible.", + "fix": "Run all fix scripts, currently just the code standards.", + "i18n": "Generate a .pot file for translation.", + "lint": "Backwards compatibility alias for test.", + "test:standards": "Check coding standards.", + "test": "Run all test scripts, currently just the code standards." + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "@stable", + "friendsofphp/php-cs-fixer": "^2.19", + "newfold-labs/wp-php-standards": "^1.2", + "phpcompatibility/phpcompatibility-wp": "@stable", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "@stable", + "wp-cli/i18n-command": "^2.4.4", + "wp-coding-standards/wpcs": "^3.0", + "wp-phpunit/wp-phpunit": "^6.3.1" + }, + "require": { + "newfold-labs/wp-module-business-reviews": "^1.1.1", + "newfold-labs/wp-module-coming-soon": "^1.1.12", + "newfold-labs/wp-module-ctb": "^1.1.2", + "newfold-labs/wp-module-customer-bluehost": "^1.6.0", + "newfold-labs/wp-module-data": "^2.4.13", + "newfold-labs/wp-module-deactivation": "^1.0.3", + "newfold-labs/wp-module-ecommerce": "^1.3.9", + "newfold-labs/wp-module-global-ctb": "^1.0.9", + "newfold-labs/wp-module-help-center": "1.0.21", + "newfold-labs/wp-module-loader": "^1.0.10", + "newfold-labs/wp-module-marketplace": "^2.1.0", + "newfold-labs/wp-module-notifications": "^1.2.1", + "newfold-labs/wp-module-onboarding": "^1.11.8", + "newfold-labs/wp-module-patterns": "^0.1.10", + "newfold-labs/wp-module-performance": "^1.2.2", + "newfold-labs/wp-module-runtime": "^1.0.7", + "newfold-labs/wp-module-secure-passwords": "^1.1", + "newfold-labs/wp-module-sso": "^1.0.4", + "newfold-labs/wp-module-staging": "^1.1.1", + "wp-forge/wp-update-handler": "^1.0", + "wp-forge/wp-upgrade-handler": "^1.0" } - }, - "scripts": { - "fix:standards": [ - "./vendor/bin/phpcbf --standard=./.phpcs.dist.xml", - "PHP_CS_FIXER_IGNORE_ENV=true ./vendor/bin/php-cs-fixer fix -v --diff" - ], - "fix": "@fix:standards", - "i18n": [ - "vendor/bin/wp i18n make-pot . ./languages/bluehost-wordpress-plugin.pot --headers=Report-Msgid-Bugs-To:https://github.com/bluehost/bluehost-wordpress-plugin/issues --exclude=assets,storybook,tests,src", - "vendor/bin/wp i18n make-pot . ./languages/bluehost-wordpress-plugin.pot --headers=POT-Creation-Date:null --exclude=assets,storybook,tests,src" - ], - "lint": "@test", - "test": "@test:standards", - "test:standards": [ - "./vendor/bin/phpcs --standard=./.phpcs.dist.xml", - "PHP_CS_FIXER_IGNORE_ENV=true ./vendor/bin/php-cs-fixer fix -v --diff --dry-run" - ] - }, - "scripts-descriptions": { - "fix:standards": "Automatically fix coding standards issues where possible.", - "fix": "Run all fix scripts, currently just the code standards.", - "i18n": "Generate a .pot file for translation.", - "lint": "Backwards compatibility alias for test.", - "test:standards": "Check coding standards.", - "test": "Run all test scripts, currently just the code standards." - }, - "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "@stable", - "friendsofphp/php-cs-fixer": "^2.19", - "newfold-labs/wp-php-standards": "^1.2", - "phpcompatibility/phpcompatibility-wp": "@stable", - "roave/security-advisories": "dev-latest", - "squizlabs/php_codesniffer": "@stable", - "wp-cli/i18n-command": "^2.4.4", - "wp-coding-standards/wpcs": "^3.0", - "wp-phpunit/wp-phpunit": "^6.3.1" - }, - "require": { - "newfold-labs/wp-module-business-reviews": "^1.1.1" } -} diff --git a/composer.lock b/composer.lock index de60aeda3..7022a4749 100644 --- a/composer.lock +++ b/composer.lock @@ -4,42 +4,1702 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3a8a2c8ffeda4ff732a1df4616fc1e6d", + "content-hash": "3aa07f2d3301f7b5cfa6b6f1953c4314", "packages": [ + { + "name": "doctrine/inflector", + "version": "1.4.4", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", + "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^8.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan-strict-rules": "^0.12", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector", + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/1.4.4" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2021-04-16T17:34:40+00:00" + }, + { + "name": "mustache/mustache", + "version": "v2.14.2", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/mustache.php.git", + "reference": "e62b7c3849d22ec55f3ec425507bf7968193a6cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/e62b7c3849d22ec55f3ec425507bf7968193a6cb", + "reference": "e62b7c3849d22ec55f3ec425507bf7968193a6cb", + "shasum": "" + }, + "require": { + "php": ">=5.2.4" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "~1.11", + "phpunit/phpunit": "~3.7|~4.0|~5.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "Mustache": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "A Mustache implementation in PHP.", + "homepage": "https://github.com/bobthecow/mustache.php", + "keywords": [ + "mustache", + "templating" + ], + "support": { + "issues": "https://github.com/bobthecow/mustache.php/issues", + "source": "https://github.com/bobthecow/mustache.php/tree/v2.14.2" + }, + "time": "2022-08-23T13:07:01+00:00" + }, + { + "name": "newfold-labs/container", + "version": "1.2.2", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/container.git", + "reference": "19bb75bb4a64a282f7d142fff9f3418177022851" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/container/zipball/19bb75bb4a64a282f7d142fff9f3418177022851", + "reference": "19bb75bb4a64a282f7d142fff9f3418177022851", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\Container\\": "includes" + } + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A lightweight, PHP 7.0+ compatible, PSR-11 dependency injection container.", + "support": { + "source": "https://github.com/newfold-labs/container/tree/1.2.2" + }, + "time": "2022-08-26T17:23:54+00:00" + }, + { + "name": "newfold-labs/wp-module-ai", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-ai.git", + "reference": "623eaabcbcbd691e877ff6f3dce3854cc8cfc202" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ai/zipball/623eaabcbcbd691e877ff6f3dce3854cc8cfc202", + "reference": "623eaabcbcbd691e877ff6f3dce3854cc8cfc202", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-data": "^2.3.1" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\AI\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@bluehost.com" + } + ], + "description": "A module for providing artificial intelligence capabilities.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-ai/tree/1.0.4", + "issues": "https://github.com/newfold-labs/wp-module-ai/issues" + }, + "time": "2023-11-17T12:53:44+00:00" + }, { "name": "newfold-labs/wp-module-business-reviews", "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/newfold-labs/wp-module-business-reviews.git", - "reference": "b5319eeef7ec72ecceb857f0ae8c6ae61ffa8027" + "url": "https://github.com/newfold-labs/wp-module-business-reviews.git", + "reference": "b5319eeef7ec72ecceb857f0ae8c6ae61ffa8027" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-business-reviews/zipball/b5319eeef7ec72ecceb857f0ae8c6ae61ffa8027", + "reference": "b5319eeef7ec72ecceb857f0ae8c6ae61ffa8027", + "shasum": "" + }, + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "William Earnhardt", + "email": "william.earnhardt@endurance.com" + } + ], + "description": "Newfold Bluehost Business Reviews Integration", + "support": { + "source": "https://github.com/newfold-labs/wp-module-business-reviews/tree/1.1.1" + }, + "time": "2023-06-06T17:53:42+00:00" + }, + { + "name": "newfold-labs/wp-module-coming-soon", + "version": "1.1.12", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-coming-soon.git", + "reference": "65e6437b7b6a1e1c6775d8e54d91d26fce804a0f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/65e6437b7b6a1e1c6775d8e54d91d26fce804a0f", + "reference": "65e6437b7b6a1e1c6775d8e54d91d26fce804a0f", + "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.12", + "issues": "https://github.com/newfold-labs/wp-module-coming-soon/issues" + }, + "time": "2023-11-02T16:42:03+00:00" + }, + { + "name": "newfold-labs/wp-module-ctb", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-ctb.git", + "reference": "d896de153a7425b904e6efc01e194fdeefa49c82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ctb/zipball/d896de153a7425b904e6efc01e194fdeefa49c82", + "reference": "d896de153a7425b904e6efc01e194fdeefa49c82", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\CTB\\": "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": "Newfold module for 'Click to Buy' functionality in brand plugins", + "support": { + "source": "https://github.com/newfold-labs/wp-module-ctb/tree/1.1.2", + "issues": "https://github.com/newfold-labs/wp-module-ctb/issues" + }, + "time": "2023-09-19T22:33:48+00:00" + }, + { + "name": "newfold-labs/wp-module-customer-bluehost", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-customer-bluehost.git", + "reference": "c0b205c9619c657264e0eb7efa29fba191102045" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-customer-bluehost/zipball/c0b205c9619c657264e0eb7efa29fba191102045", + "reference": "c0b205c9619c657264e0eb7efa29fba191102045", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-data": "^2.2.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\CustomerBluehost\\": "includes" + }, + "files": [ + "bootstrap.php", + "includes/AccessToken.php", + "includes/CustomerBluehost.php", + "includes/ResponseUtilities.php", + "includes/SiteMeta.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Evan Mullins", + "homepage": "https://evanmullins.com" + } + ], + "description": "Customer module to interface with bluehost and the data module.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-customer-bluehost/tree/1.6.0", + "issues": "https://github.com/newfold-labs/wp-module-customer-bluehost/issues" + }, + "time": "2023-05-30T21:27:34+00:00" + }, + { + "name": "newfold-labs/wp-module-data", + "version": "2.4.14", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-data.git", + "reference": "3bdc70e9f0784832c2955bd2f887215cd38c4425" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/3bdc70e9f0784832c2955bd2f887215cd38c4425", + "reference": "3bdc70e9f0784832c2955bd2f887215cd38c4425", + "shasum": "" + }, + "require": { + "wp-forge/wp-query-builder": "^1.0", + "wp-forge/wp-upgrade-handler": "^1.0", + "wpscholar/url": "^1.2" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Data\\": "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" + ], + "description": "Newfold Data Module", + "support": { + "source": "https://github.com/newfold-labs/wp-module-data/tree/2.4.14", + "issues": "https://github.com/newfold-labs/wp-module-data/issues" + }, + "time": "2023-12-04T19:34:50+00:00" + }, + { + "name": "newfold-labs/wp-module-deactivation", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-deactivation.git", + "reference": "5668c206ea868c0baaca201042ca7c24404c7be1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-deactivation/zipball/5668c206ea868c0baaca201042ca7c24404c7be1", + "reference": "5668c206ea868c0baaca201042ca7c24404c7be1", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-data": "^2.0.0" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Deactivation\\": "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": "Micah Wood", + "email": "micah@wpscholar.com" + }, + { + "name": "Evan Mullins", + "email": "evanrm@gmail.com" + }, + { + "name": "Al Ani", + "email": "hey@alani.dev" + } + ], + "description": "A Module for handling WordPress brand plugins and modules deactivations", + "support": { + "source": "https://github.com/newfold-labs/wp-module-deactivation/tree/1.0.3", + "issues": "https://github.com/newfold-labs/wp-module-deactivation/issues" + }, + "time": "2023-11-29T19:20:56+00:00" + }, + { + "name": "newfold-labs/wp-module-ecommerce", + "version": "v1.3.14", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-ecommerce.git", + "reference": "769ac1baa102829e4a90f9aa2fcc120a08fcfc7e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/769ac1baa102829e4a90f9aa2fcc120a08fcfc7e", + "reference": "769ac1baa102829e4a90f9aa2fcc120a08fcfc7e", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-installer": "^1.1", + "newfold-labs/wp-module-onboarding-data": "^0.0" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "@stable", + "wp-cli/i18n-command": "@stable", + "wp-cli/wp-cli-bundle": "@stable" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\ECommerce\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "scripts": { + "i18n": [ + "vendor/bin/wp i18n make-pot . ./languages/wp-module-ecommerce.pot --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/newfold-labs/wp-module-ecommerce/issues\",\"POT-Creation-Date\":null}' --exclude=node_modules,src,tests" + ], + "fix": [ + "vendor/bin/phpcbf --standard=phpcs.xml ." + ], + "lint": [ + "vendor/bin/phpcs --standard=phpcs.xml -s ." + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Beyond", + "email": "team-spartans@newfold.com" + } + ], + "description": "Brand Agnostic eCommerce Experience", + "support": { + "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.14", + "issues": "https://github.com/newfold-labs/wp-module-ecommerce/issues" + }, + "time": "2023-12-04T21:59:52+00:00" + }, + { + "name": "newfold-labs/wp-module-global-ctb", + "version": "1.0.9", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-global-ctb.git", + "reference": "a759fb17949c82977987391727de063fe2ded594" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-global-ctb/zipball/a759fb17949c82977987391727de063fe2ded594", + "reference": "a759fb17949c82977987391727de063fe2ded594", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\GlobalCTB\\": "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": "Newfold module for 'Click to Buy' functionality in brand plugins", + "support": { + "source": "https://github.com/newfold-labs/wp-module-global-ctb/tree/1.0.9", + "issues": "https://github.com/newfold-labs/wp-module-global-ctb/issues" + }, + "time": "2023-11-03T15:59:01+00:00" + }, + { + "name": "newfold-labs/wp-module-help-center", + "version": "1.0.21", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-help-center.git", + "reference": "0826b1623fd710877ac4ceeafa1265820de13b1b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-help-center/zipball/0826b1623fd710877ac4ceeafa1265820de13b1b", + "reference": "0826b1623fd710877ac4ceeafa1265820de13b1b", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-ai": "^1.0.3", + "newfold-labs/wp-module-data": "^2.3.4" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "@stable" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\HelpCenter\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Faizaan Mohammed", + "email": "faizaan.md@newfold.com" + } + ], + "description": "HelpCenter", + "support": { + "source": "https://github.com/newfold-labs/wp-module-help-center/tree/1.0.21", + "issues": "https://github.com/newfold-labs/wp-module-help-center/issues" + }, + "time": "2023-10-24T15:24:33+00:00" + }, + { + "name": "newfold-labs/wp-module-install-checker", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-install-checker.git", + "reference": "7d6574b297fb7a8a459ec9e53706bd956ef35490" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-install-checker/zipball/7d6574b297fb7a8a459ec9e53706bd956ef35490", + "reference": "7d6574b297fb7a8a459ec9e53706bd956ef35490", + "shasum": "" + }, + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "NewfoldLabs\\WP\\Module\\InstallChecker\\": "includes/" + } + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "homepage": "https://wpscholar.com" + } + ], + "description": "A module that handles checking a WordPress installation to see if it is a fresh install and to fetch the estimated installation date.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-install-checker/tree/1.0.2", + "issues": "https://github.com/newfold-labs/wp-module-install-checker/issues" + }, + "time": "2023-11-29T20:35:54+00:00" + }, + { + "name": "newfold-labs/wp-module-installer", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-installer.git", + "reference": "a5a683c2b6d2422a4e18c50919bdb8fd4bd89a5c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-installer/zipball/a5a683c2b6d2422a4e18c50919bdb8fd4bd89a5c", + "reference": "a5a683c2b6d2422a4e18c50919bdb8fd4bd89a5c", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Installer\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah.wood@newfold.com" + } + ], + "description": "An installer for WordPress plugins and themes.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-installer/tree/1.1.2", + "issues": "https://github.com/newfold-labs/wp-module-installer/issues" + }, + "time": "2023-09-18T06:42:43+00:00" + }, + { + "name": "newfold-labs/wp-module-loader", + "version": "1.0.10", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-loader.git", + "reference": "8ab6725a6b3bc9ed10b89127f09bcb3e81f795c6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-loader/zipball/8ab6725a6b3bc9ed10b89127f09bcb3e81f795c6", + "reference": "8ab6725a6b3bc9ed10b89127f09bcb3e81f795c6", + "shasum": "" + }, + "require": { + "newfold-labs/container": "^1.2", + "wp-forge/collection": "^1.0", + "wp-forge/fluent": "^1.0", + "wp-forge/wp-options": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\ModuleLoader\\": "includes" + }, + "files": [ + "bootstrap.php", + "includes/functions.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A module that handles registration and management of Newfold modules used within our WordPress plugins.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-loader/tree/1.0.10", + "issues": "https://github.com/newfold-labs/wp-module-loader/issues" + }, + "time": "2022-10-03T20:07:41+00:00" + }, + { + "name": "newfold-labs/wp-module-marketplace", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-marketplace.git", + "reference": "89984da21a9b069a1c47320d3b2bffbf89201e17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-marketplace/zipball/89984da21a9b069a1c47320d3b2bffbf89201e17", + "reference": "89984da21a9b069a1c47320d3b2bffbf89201e17", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-data": "^2.0.0" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Marketplace\\": "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": "Micah Wood", + "email": "micah@wpscholar.com" + }, + { + "name": "Evan Mullins", + "email": "evanrm@gmail.com" + } + ], + "description": "A module for rendering product data and interacting with the Hiive marketplace API.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-marketplace/tree/2.2.0", + "issues": "https://github.com/newfold-labs/wp-module-marketplace/issues" + }, + "time": "2023-12-04T23:25:24+00:00" + }, + { + "name": "newfold-labs/wp-module-notifications", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-notifications.git", + "reference": "802de89e0a94f59f93b5637fdcce62d80a30af1c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-notifications/zipball/802de89e0a94f59f93b5637fdcce62d80a30af1c", + "reference": "802de89e0a94f59f93b5637fdcce62d80a30af1c", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-data": "^2.0.0", + "wp-forge/collection": "^1.0", + "wp-forge/helpers": "^1.1.0", + "wpscholar/url": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewFoldLabs\\WP\\Module\\Notifications\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A module for managing Newfold in-site notifications.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-notifications/tree/1.2.1", + "issues": "https://github.com/newfold-labs/wp-module-notifications/issues" + }, + "time": "2023-11-13T22:55:16+00:00" + }, + { + "name": "newfold-labs/wp-module-onboarding", + "version": "1.11.10", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-onboarding.git", + "reference": "f1cc93205e8304c92eaa931ea6d71eda756c91a6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding/zipball/f1cc93205e8304c92eaa931ea6d71eda756c91a6", + "reference": "f1cc93205e8304c92eaa931ea6d71eda756c91a6", + "shasum": "" + }, + "require": { + "mustache/mustache": "^2.14", + "newfold-labs/wp-module-install-checker": "^1.0", + "newfold-labs/wp-module-onboarding-data": "^0.0.8", + "newfold-labs/wp-module-patterns": "^0.1.9", + "wp-cli/wp-config-transformer": "^1.3" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2", + "wp-cli/i18n-command": "^2.4.3", + "wp-phpunit/wp-phpunit": "^6.2", + "yoast/phpunit-polyfills": "^2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Onboarding\\": "includes/" + }, + "files": [ + "bootstrap.php" + ] + }, + "scripts": { + "lint": [ + "vendor/bin/phpcs . --standard=Newfold" + ], + "clean": [ + "vendor/bin/phpcbf . --standard=Newfold" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Dave Ryan", + "email": "dave@bluehost.com" + } + ], + "description": "Next-generation WordPress Onboarding for WordPress sites at Newfold Digital.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-onboarding/tree/1.11.10", + "issues": "https://github.com/newfold-labs/wp-module-onboarding/issues" + }, + "time": "2023-11-29T09:55:24+00:00" + }, + { + "name": "newfold-labs/wp-module-onboarding-data", + "version": "0.0.8", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-onboarding-data.git", + "reference": "3d9265b2c2e75978f9a4b6d430518817b2244301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-onboarding-data/zipball/3d9265b2c2e75978f9a4b6d430518817b2244301", + "reference": "3d9265b2c2e75978f9a4b6d430518817b2244301", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-data": "^2.4.3", + "newfold-labs/wp-module-installer": "^1.1", + "wp-forge/wp-upgrade-handler": "^1.0" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Onboarding\\Data\\": "includes/" + } + }, + "authors": [ + { + "name": "arunshenoy99", + "email": "devarunshenoy99@gmail.com" + } + ], + "description": "A non-toggleable module containing a standardized interface for interacting with Onboarding data.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-onboarding-data/tree/0.0.8", + "issues": "https://github.com/newfold-labs/wp-module-onboarding-data/issues" + }, + "time": "2023-11-29T09:37:19+00:00" + }, + { + "name": "newfold-labs/wp-module-patterns", + "version": "0.1.11", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-patterns.git", + "reference": "ebec3c249969d86fd74e95c2f86860b7f5918ee5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/ebec3c249969d86fd74e95c2f86860b7f5918ee5", + "reference": "ebec3c249969d86fd74e95c2f86860b7f5918ee5", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Patterns\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "scripts": { + "lint": [ + "vendor/bin/phpcs . --ignore=*/build/* --standard=Newfold -d error_reporting=\"E_ALL&~E_DEPRECATED\"" + ], + "clean": [ + "vendor/bin/phpcbf . --ignore=*/build/* --standard=Newfold -d error_reporting=\"E_ALL&~E_DEPRECATED\"" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Hristina Conjic", + "email": "hristina.conjic@newfold.com" + } + ], + "description": "WordPress Cloud Patterns", + "support": { + "source": "https://github.com/newfold-labs/wp-module-patterns/tree/0.1.11", + "issues": "https://github.com/newfold-labs/wp-module-patterns/issues" + }, + "time": "2023-12-05T20:56:40+00:00" + }, + { + "name": "newfold-labs/wp-module-performance", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-performance.git", + "reference": "4ac17a7ad77bb39cd90ebbb5cb207ede5336dbac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-performance/zipball/4ac17a7ad77bb39cd90ebbb5cb207ede5336dbac", + "reference": "4ac17a7ad77bb39cd90ebbb5cb207ede5336dbac", + "shasum": "" + }, + "require": { + "wp-forge/collection": "^1.0", + "wp-forge/wp-htaccess-manager": "^1.0", + "wpscholar/url": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Performance\\": "includes" + }, + "files": [ + "includes/functions.php", + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A module for managing caching functionality.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-performance/tree/1.3.0", + "issues": "https://github.com/newfold-labs/wp-module-performance/issues" + }, + "time": "2023-12-04T23:27:28+00:00" + }, + { + "name": "newfold-labs/wp-module-runtime", + "version": "v1.0.7", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-runtime.git", + "reference": "af938ea9e3a00e981c7452954e1835339951b9aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-runtime/zipball/af938ea9e3a00e981c7452954e1835339951b9aa", + "reference": "af938ea9e3a00e981c7452954e1835339951b9aa", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "@stable", + "wp-cli/i18n-command": "@stable", + "wp-cli/wp-cli-bundle": "@stable" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Runtime\\": "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": "Beyond", + "email": "team-spartans@newfold.com" + } + ], + "description": "Runtime for Newfold WP modules and plugins", + "support": { + "source": "https://github.com/newfold-labs/wp-module-runtime/tree/v1.0.7", + "issues": "https://github.com/newfold-labs/wp-module-runtime/issues" + }, + "time": "2023-10-10T18:58:42+00:00" + }, + { + "name": "newfold-labs/wp-module-secure-passwords", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-secure-passwords.git", + "reference": "f5faa8d7c8edb0e8d0bb717feaf30576f6689c6b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-secure-passwords/zipball/f5faa8d7c8edb0e8d0bb717feaf30576f6689c6b", + "reference": "f5faa8d7c8edb0e8d0bb717feaf30576f6689c6b", + "shasum": "" + }, + "require-dev": { + "bluehost/wp-php-standards": "^1.1", + "wp-phpunit/wp-phpunit": "^5.9", + "yoast/phpunit-polyfills": "^1.0" + }, + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "scripts": { + "fix": [ + "vendor/bin/phpcbf . --standard=Bluehost" + ], + "lint": [ + "vendor/bin/phpcs . --standard=Bluehost -s" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Jonathan Desrosiers", + "email": "jonathan.desrosiers@newfold.com" + } + ], + "description": "Prevents passwords exposed in data breaches from being used and encourages better password hygiene.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-secure-passwords/tree/1.1.0", + "issues": "https://github.com/newfold-labs/wp-module-secure-passwords/issues" + }, + "time": "2022-09-27T15:14:06+00:00" + }, + { + "name": "newfold-labs/wp-module-sso", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-sso.git", + "reference": "cf93ca94508d522ffb91c04b99b7c70b01580cd4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-sso/zipball/cf93ca94508d522ffb91c04b99b7c70b01580cd4", + "reference": "cf93ca94508d522ffb91c04b99b7c70b01580cd4", + "shasum": "" + }, + "require": { + "newfold-labs/wp-module-data": ">=2.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewFoldLabs\\WP\\Module\\SSO\\": "includes" + }, + "files": [ + "bootstrap.php" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@bluehost.com" + } + ], + "description": "Single sign-on functionality for Newfold WordPress sites.", + "support": { + "source": "https://github.com/newfold-labs/wp-module-sso/tree/1.0.4", + "issues": "https://github.com/newfold-labs/wp-module-sso/issues" + }, + "time": "2023-05-26T18:37:51+00:00" + }, + { + "name": "newfold-labs/wp-module-staging", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/newfold-labs/wp-module-staging.git", + "reference": "87a8f2659ad256fa03a0ae2932950cb6d745dfa4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/newfold-labs/wp-module-staging/zipball/87a8f2659ad256fa03a0ae2932950cb6d745dfa4", + "reference": "87a8f2659ad256fa03a0ae2932950cb6d745dfa4", + "shasum": "" + }, + "require-dev": { + "newfold-labs/wp-php-standards": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "NewfoldLabs\\WP\\Module\\Staging\\": "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": "Newfold module for staging functionality in brand plugins", + "support": { + "source": "https://github.com/newfold-labs/wp-module-staging/tree/1.2.3", + "issues": "https://github.com/newfold-labs/wp-module-staging/issues" + }, + "time": "2023-12-05T18:18:33+00:00" + }, + { + "name": "wp-cli/wp-config-transformer", + "version": "v1.3.4", + "source": { + "type": "git", + "url": "https://github.com/wp-cli/wp-config-transformer.git", + "reference": "1f80df413c0d779a813223d9dd5dd58358eee60c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/1f80df413c0d779a813223d9dd5dd58358eee60c", + "reference": "1f80df413c0d779a813223d9dd5dd58358eee60c", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0 || ^8.0" + }, + "require-dev": { + "wp-cli/wp-cli-tests": "^4.0" + }, + "type": "library", + "autoload": { + "files": [ + "src/WPConfigTransformer.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frankie Jarrett", + "email": "fjarrett@gmail.com" + } + ], + "description": "Programmatically edit a wp-config.php file.", + "homepage": "https://github.com/wp-cli/wp-config-transformer", + "support": { + "issues": "https://github.com/wp-cli/wp-config-transformer/issues", + "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.3.4" + }, + "time": "2023-08-31T10:11:36+00:00" + }, + { + "name": "wp-forge/collection", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/collection.git", + "reference": "e304ddc0130d466dcc55e3a8dee79f0d745ca47a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-forge/collection/zipball/e304ddc0130d466dcc55e3a8dee79f0d745ca47a", + "reference": "e304ddc0130d466dcc55e3a8dee79f0d745ca47a", + "shasum": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "WP_Forge\\Collection\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A PHP utility class for manipulating collections.", + "support": { + "issues": "https://github.com/wp-forge/collection/issues", + "source": "https://github.com/wp-forge/collection/tree/1.0.2" + }, + "time": "2022-08-26T17:42:31+00:00" + }, + { + "name": "wp-forge/fluent", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/fluent.git", + "reference": "b7d6e54f86bd2bbc229faeefd2772f1f1354ad8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-forge/fluent/zipball/b7d6e54f86bd2bbc229faeefd2772f1f1354ad8c", + "reference": "b7d6e54f86bd2bbc229faeefd2772f1f1354ad8c", + "shasum": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "WP_Forge\\Fluent\\": "includes" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "An instance of the Laravel Fluent class for use with WordPress.", + "support": { + "issues": "https://github.com/wp-forge/fluent/issues", + "source": "https://github.com/wp-forge/fluent/tree/1.0.1" + }, + "time": "2022-08-26T17:38:37+00:00" + }, + { + "name": "wp-forge/helpers", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/helpers.git", + "reference": "59e97eeeba51f195f8f7478efb6820295ae218e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-business-reviews/zipball/b5319eeef7ec72ecceb857f0ae8c6ae61ffa8027", - "reference": "b5319eeef7ec72ecceb857f0ae8c6ae61ffa8027", + "url": "https://api.github.com/repos/wp-forge/helpers/zipball/59e97eeeba51f195f8f7478efb6820295ae218e4", + "reference": "59e97eeeba51f195f8f7478efb6820295ae218e4", "shasum": "" }, + "require": { + "doctrine/inflector": "^1.3", + "ext-mbstring": "*" + }, "type": "library", "autoload": { "files": [ - "bootstrap.php" - ] + "includes/functions.php" + ], + "psr-4": { + "WP_Forge\\Helpers\\": "includes" + } }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "authors": [ { - "name": "William Earnhardt", - "email": "william.earnhardt@endurance.com" + "name": "Micah Wood", + "email": "micah@wpscholar.com" } ], - "description": "Newfold Bluehost Business Reviews Integration", + "description": "A collection of helpers for WordPress and PHP development.", "support": { - "source": "https://github.com/newfold-labs/wp-module-business-reviews/tree/1.1.1" + "issues": "https://github.com/wp-forge/helpers/issues", + "source": "https://github.com/wp-forge/helpers/tree/1.1.1" }, - "time": "2023-06-06T17:53:42+00:00" + "time": "2021-07-15T11:41:27+00:00" + }, + { + "name": "wp-forge/wp-htaccess-manager", + "version": "1.0", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/wp-htaccess-manager.git", + "reference": "f1fac7af85c0d75a211a5d0e73cd43a7d62debe8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-forge/wp-htaccess-manager/zipball/f1fac7af85c0d75a211a5d0e73cd43a7d62debe8", + "reference": "f1fac7af85c0d75a211a5d0e73cd43a7d62debe8", + "shasum": "" + }, + "type": "library", + "autoload": { + "files": [ + "includes/functions.php" + ], + "psr-4": { + "WP_Forge\\WP_Htaccess_Manager\\": "includes" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A helper library for making changes to .htaccess files in WordPress.", + "support": { + "issues": "https://github.com/wp-forge/wp-htaccess-manager/issues", + "source": "https://github.com/wp-forge/wp-htaccess-manager/tree/1.0" + }, + "time": "2022-04-01T16:21:01+00:00" + }, + { + "name": "wp-forge/wp-options", + "version": "1.1", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/wp-options.git", + "reference": "df8899255dee19365599caa8801c75803e94e413" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-forge/wp-options/zipball/df8899255dee19365599caa8801c75803e94e413", + "reference": "df8899255dee19365599caa8801c75803e94e413", + "shasum": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "WP_Forge\\Options\\": "includes" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A WordPress helper class for managing plugin options.", + "support": { + "issues": "https://github.com/wp-forge/wp-options/issues", + "source": "https://github.com/wp-forge/wp-options/tree/1.1" + }, + "time": "2022-03-04T16:23:42+00:00" + }, + { + "name": "wp-forge/wp-query-builder", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/wp-query-builder.git", + "reference": "34959e5618969afd8350a8206744a7810d9f253b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-forge/wp-query-builder/zipball/34959e5618969afd8350a8206744a7810d9f253b", + "reference": "34959e5618969afd8350a8206744a7810d9f253b", + "shasum": "" + }, + "require": { + "php": ">=5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "WP_Forge\\QueryBuilder\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A lightweight and efficient SQL query builder for WordPress.", + "keywords": [ + "database", + "query builder", + "wordpress" + ], + "support": { + "issues": "https://github.com/wp-forge/wp-query-builder/issues", + "source": "https://github.com/wp-forge/wp-query-builder/tree/1.0.3" + }, + "time": "2023-04-29T19:26:54+00:00" + }, + { + "name": "wp-forge/wp-update-handler", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/wp-update-handler.git", + "reference": "deb2beae787381158dc8c60b1cdcd241333a8784" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-forge/wp-update-handler/zipball/deb2beae787381158dc8c60b1cdcd241333a8784", + "reference": "deb2beae787381158dc8c60b1cdcd241333a8784", + "shasum": "" + }, + "require": { + "wp-forge/helpers": "^1.1" + }, + "require-dev": { + "wpscholar/phpcs-standards-wpscholar": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "WP_Forge\\WPUpdateHandler\\": "includes/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A WordPress package for updating custom plugins and themes based on an API response from a custom update server.", + "support": { + "issues": "https://github.com/wp-forge/wp-update-handler/issues", + "source": "https://github.com/wp-forge/wp-update-handler/tree/1.0.1" + }, + "time": "2022-08-26T17:36:12+00:00" + }, + { + "name": "wp-forge/wp-upgrade-handler", + "version": "1.0", + "source": { + "type": "git", + "url": "https://github.com/wp-forge/wp-upgrade-handler.git", + "reference": "b0a7f4c66710f95b4c5702fea3af505ea72fb215" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-forge/wp-upgrade-handler/zipball/b0a7f4c66710f95b4c5702fea3af505ea72fb215", + "reference": "b0a7f4c66710f95b4c5702fea3af505ea72fb215", + "shasum": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "WP_Forge\\UpgradeHandler\\": "includes" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com" + } + ], + "description": "A drop-in library for handling upgrade routines in WordPress plugins and themes.", + "support": { + "issues": "https://github.com/wp-forge/wp-upgrade-handler/issues", + "source": "https://github.com/wp-forge/wp-upgrade-handler/tree/1.0" + }, + "time": "2020-05-21T00:04:44+00:00" + }, + { + "name": "wpscholar/url", + "version": "1.2.2", + "source": { + "type": "git", + "url": "https://github.com/wpscholar/url.git", + "reference": "c339972ed8e6876f1cfacbc512c6205db63645d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wpscholar/url/zipball/c339972ed8e6876f1cfacbc512c6205db63645d0", + "reference": "c339972ed8e6876f1cfacbc512c6205db63645d0", + "shasum": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "wpscholar\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Micah Wood", + "email": "micah@wpscholar.com", + "homepage": "http://wpscholar.com" + } + ], + "description": "A PHP class for parsing and manipulating URLs.", + "support": { + "issues": "https://github.com/wpscholar/url/issues", + "source": "https://github.com/wpscholar/url/tree/1.2.2" + }, + "time": "2020-10-27T20:10:04+00:00" } ], "packages-dev": [ @@ -911,56 +2571,6 @@ }, "time": "2023-08-12T08:29:29+00:00" }, - { - "name": "mustache/mustache", - "version": "v2.14.2", - "source": { - "type": "git", - "url": "https://github.com/bobthecow/mustache.php.git", - "reference": "e62b7c3849d22ec55f3ec425507bf7968193a6cb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/e62b7c3849d22ec55f3ec425507bf7968193a6cb", - "reference": "e62b7c3849d22ec55f3ec425507bf7968193a6cb", - "shasum": "" - }, - "require": { - "php": ">=5.2.4" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "~1.11", - "phpunit/phpunit": "~3.7|~4.0|~5.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "Mustache": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" - } - ], - "description": "A Mustache implementation in PHP.", - "homepage": "https://github.com/bobthecow/mustache.php", - "keywords": [ - "mustache", - "templating" - ], - "support": { - "issues": "https://github.com/bobthecow/mustache.php/issues", - "source": "https://github.com/bobthecow/mustache.php/tree/v2.14.2" - }, - "time": "2022-08-23T13:07:01+00:00" - }, { "name": "newfold-labs/wp-php-standards", "version": "1.2.2", @@ -1484,12 +3094,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "92ace54210a1b0d6f89afe14f08dda4212854288" + "reference": "498a07ca22004364fc54bc909b77de792a10c127" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/92ace54210a1b0d6f89afe14f08dda4212854288", - "reference": "92ace54210a1b0d6f89afe14f08dda4212854288", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/498a07ca22004364fc54bc909b77de792a10c127", + "reference": "498a07ca22004364fc54bc909b77de792a10c127", "shasum": "" }, "conflict": { @@ -1613,6 +3223,7 @@ "ectouch/ectouch": "<=2.7.2", "elefant/cms": "<2.0.7", "elgg/elgg": "<3.3.24|>=4,<4.0.5", + "elijaa/phpmemcacheadmin": "<=1.3", "encore/laravel-admin": "<=1.8.19", "endroid/qr-code-bundle": "<3.4.2", "enshrined/svg-sanitize": "<0.15", @@ -1904,6 +3515,7 @@ "pterodactyl/panel": "<1.7", "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2", "ptrofimov/beanstalk_console": "<1.7.14", + "pubnub/pubnub": "<6.1", "pusher/pusher-php-server": "<2.2.1", "pwweb/laravel-core": "<=0.3.6.0-beta", "pyrocms/pyrocms": "<=3.9.1", @@ -2187,7 +3799,7 @@ "type": "tidelift" } ], - "time": "2023-12-05T23:04:26+00:00" + "time": "2023-12-06T18:04:43+00:00" }, { "name": "squizlabs/php_codesniffer",